Skip to content
Snippets Groups Projects
Commit 58c967bb authored by Paul Bartholomew's avatar Paul Bartholomew
Browse files

Remove Jet case

parent 53f952f3
No related branches found
No related tags found
No related merge requests found
......@@ -55,7 +55,7 @@ SRCDECOMP = $(DECOMPDIR)/decomp_2d.f90 $(DECOMPDIR)/glassman.f90 $(DECOMPDIR)/ff
OBJDECOMP = $(SRCDECOMP:%.f90=%.o)
SRC = $(SRCDIR)/module_param.f90 $(SRCDIR)/variables.f90 $(SRCDIR)/poisson.f90 $(SRCDIR)/derive.f90 $(SRCDIR)/implicit.f90 $(SRCDIR)/schemes.f90 $(SRCDIR)/parameters.f90 $(SRCDIR)/*.f90
OBJ = $(SRC:%.f90=%.o)
SRC = $(SRCDIR)/module_param.f90 $(SRCDIR)/variables.f90 $(SRCDIR)/BC-dbg-schemes.f90 $(SRCDIR)/poisson.f90 $(SRCDIR)/ibm.f90 $(SRCDIR)/derive.f90 $(SRCDIR)/implicit.f90 $(SRCDIR)/schemes.f90 $(SRCDIR)/forces.f90 $(SRCDIR)/probes.f90 $(SRCDIR)/navier.f90 $(SRCDIR)/tools.f90 $(SRCDIR)/visu.f90 $(SRCDIR)/BC-TBL.f90 $(SRCDIR)/BC-ABL.f90 $(SRCDIR)/les_models.f90 $(SRCDIR)/BC-Lock-exchange.f90 $(SRCDIR)/time_integrators.f90 $(SRCDIR)/filters.f90 $(SRCDIR)/parameters.f90 $(SRCDIR)/BC-User.f90 $(SRCDIR)/BC-TGV.f90 $(SRCDIR)/BC-Channel-flow.f90 $(SRCDIR)/BC-Periodic-hill.f90 $(SRCDIR)/BC-Cylinder.f90 $(SRCDIR)/BC-Mixing-layer.f90 $(SRCDIR)/BC-Jet.f90 $(SRCDIR)/BC-Sandbox.f90 $(SRCDIR)/BC-Uniform.f90 $(SRCDIR)/BC-Cavity.f90 $(TURBDIR)/constants.f90 $(TURBDIR)/acl_utils.f90 $(TURBDIR)/airfoils.f90 $(TURBDIR)/dynstall.f90 $(TURBDIR)/dynstall_legacy.f90 $(TURBDIR)/acl_elem.f90 $(TURBDIR)/acl_controller.f90 $(TURBDIR)/acl_turb.f90 $(TURBDIR)/acl_out.f90 $(TURBDIR)/acl_farm_controller.f90 $(TURBDIR)/acl_model.f90 $(TURBDIR)/acl_source.f90 $(TURBDIR)/adm.f90 $(TURBDIR)/turbine.f90 $(SRCDIR)/statistics.f90 $(SRCDIR)/case.f90 $(SRCDIR)/transeq.f90 $(SRCDIR)/genepsi3d.f90 $(SRCDIR)/xcompact3d.f90
SRC = $(SRCDIR)/module_param.f90 $(SRCDIR)/variables.f90 $(SRCDIR)/BC-dbg-schemes.f90 $(SRCDIR)/poisson.f90 $(SRCDIR)/ibm.f90 $(SRCDIR)/derive.f90 $(SRCDIR)/implicit.f90 $(SRCDIR)/schemes.f90 $(SRCDIR)/forces.f90 $(SRCDIR)/probes.f90 $(SRCDIR)/navier.f90 $(SRCDIR)/tools.f90 $(SRCDIR)/visu.f90 $(SRCDIR)/BC-TBL.f90 $(SRCDIR)/BC-ABL.f90 $(SRCDIR)/les_models.f90 $(SRCDIR)/BC-Lock-exchange.f90 $(SRCDIR)/time_integrators.f90 $(SRCDIR)/filters.f90 $(SRCDIR)/parameters.f90 $(SRCDIR)/BC-User.f90 $(SRCDIR)/BC-TGV.f90 $(SRCDIR)/BC-Channel-flow.f90 $(SRCDIR)/BC-Periodic-hill.f90 $(SRCDIR)/BC-Cylinder.f90 $(SRCDIR)/BC-Mixing-layer.f90 $(SRCDIR)/BC-Sandbox.f90 $(SRCDIR)/BC-Uniform.f90 $(SRCDIR)/BC-Cavity.f90 $(TURBDIR)/constants.f90 $(TURBDIR)/acl_utils.f90 $(TURBDIR)/airfoils.f90 $(TURBDIR)/dynstall.f90 $(TURBDIR)/dynstall_legacy.f90 $(TURBDIR)/acl_elem.f90 $(TURBDIR)/acl_controller.f90 $(TURBDIR)/acl_turb.f90 $(TURBDIR)/acl_out.f90 $(TURBDIR)/acl_farm_controller.f90 $(TURBDIR)/acl_model.f90 $(TURBDIR)/acl_source.f90 $(TURBDIR)/adm.f90 $(TURBDIR)/turbine.f90 $(SRCDIR)/statistics.f90 $(SRCDIR)/case.f90 $(SRCDIR)/transeq.f90 $(SRCDIR)/genepsi3d.f90 $(SRCDIR)/xcompact3d.f90
#######FFT settings##########
......
This diff is collapsed.
......@@ -15,7 +15,6 @@ module case
use dbg_schemes
use channel
use mixlayer
use jet
use lockexch
use tbl
use abl
......@@ -91,10 +90,10 @@ contains
call init_mixlayer(rho1, ux1, uy1, uz1)
elseif (itype.eq.itype_jet) then
call init_jet(rho1, ux1, uy1, uz1, ep1, phi1)
!!! elseif (itype.eq.itype_jet) then
!!!
!!! call init_jet(rho1, ux1, uy1, uz1, ep1, phi1)
!!!
elseif (itype.eq.itype_tbl) then
call init_tbl (ux1, uy1, uz1, ep1, phi1)
......@@ -179,10 +178,10 @@ contains
call boundary_conditions_dbg (ux, uy, uz, phi)
elseif (itype.eq.itype_jet) then
call boundary_conditions_jet (rho,ux,uy,uz,phi)
!!! elseif (itype.eq.itype_jet) then
!!!
!!! call boundary_conditions_jet (rho,ux,uy,uz,phi)
!!!
elseif (itype.eq.itype_tbl) then
call boundary_conditions_tbl (ux, uy, uz, phi)
......@@ -328,10 +327,10 @@ contains
call postprocess_dbg (ux, uy, uz, phi, ep)
elseif (itype.eq.itype_jet) then
call postprocess_jet (ux, uy, uz, phi, ep)
!!! elseif (itype.eq.itype_jet) then
!!!
!!! call postprocess_jet (ux, uy, uz, phi, ep)
!!!
elseif (itype.eq.itype_tbl) then
call postprocess_tbl (ux, uy, uz, ep)
......@@ -482,10 +481,10 @@ contains
call momentum_forcing_channel(dux1, duy1, duz1, ux1, uy1, uz1)
elseif (itype.eq.itype_jet) then
call momentum_forcing_jet(dux1, duy1, duz1, rho1, ux1, uy1, uz1)
!!! elseif (itype.eq.itype_jet) then
!!!
!!! call momentum_forcing_jet(dux1, duy1, duz1, rho1, ux1, uy1, uz1)
!!!
elseif (itype.eq.itype_abl) then
call momentum_forcing_abl(dux1, duy1, duz1, ux1, uy1, uz1, phi1)
......
......@@ -336,7 +336,8 @@ subroutine parameter(input_i3d)
elseif (itype.eq.itype_mixlayer) then
print *,'Mixing layer'
elseif (itype.eq.itype_jet) then
print *,'Jet'
print *,'Jet is currently unsupported!'
stop
elseif (itype.eq.itype_tbl) then
print *,'Turbulent boundary layer'
elseif (itype.eq.itype_abl) then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment