Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 26 additions & 13 deletions Tests/test_files/cylinder_turek_2d2/cylinder_turek_2d2.inp
Original file line number Diff line number Diff line change
@@ -1,42 +1,55 @@
max_step = 1000
max_step = 100000

# geometry parameters
geometry.prob_lo = 0.0 0.0 -2.0
geometry.prob_hi = 22.0 4.1 2.0
geometry.prob_hi = 660.0 123.0 2.0
geometry.is_periodic = 0 0 1

# timestepping
amr.n_cell = 440 82 4
amr.n_cell = 660 123 4
amr.max_level = 0
amr.max_grid_size = 32
amr.blocking_factor = 2
amr.plot_int = 10
amr.chk_int = 10
amr.blocking_factor_x = 2
amr.blocking_factor_y = 1
amr.blocking_factor_z = 1
amr.plot_int = 100
amr.chk_int = 1000
amr.file_name_digits = 5

lbm.bc_lo = 2 1 0
lbm.bc_hi = 5 1 0
lbm.dx_outer = 1.0
lbm.dt_outer = 1.0
lbm.nu = 0.00282

#nu = u D / Re
#nu = M a D / Re
#nu = M sqrt(gamma R T) D / Re
#nu = 0.1 sqrt(1.4 1 0.03333) 30 / 100

lbm.nu = 0.00648
lbm.alpha = 0.00648
lbm.initial_temperature = 0.03333
lbm.adiabatic_exponent = 1.4
lbm.save_streaming = 0
lbm.compute_forces = 1

lbm.velocity_bc_type = "parabolic"
velocity_bc_parabolic.Mach_ref = 0.06
velocity_bc_parabolic.Mach_ref = 0.1
velocity_bc_parabolic.normal_dir = 1
velocity_bc_parabolic.tangential_dir = 0
velocity_bc_parabolic.initial_density = 1.0
velocity_bc_parabolic.initial_temperature = 0.03
velocity_bc_parabolic.initial_temperature = 0.03333
velocity_bc_parabolic.adiabatic_exponent = 1.4

lbm.ic_type = "constant"
ic_constant.mach_components = 0.1 0.0 0.0
ic_constant.density = 1.0
ic_constant.initial_temperature = 0.03
ic_constant.mach_components = 0.0 0.0 0.0
ic_constant.initial_temperature = 0.03333
ic_constant.adiabatic_exponent = 1.4

eb2.geom_type = "cylinder"
eb2.cylinder_radius = 0.5
eb2.cylinder_center = 2.0 2.0 0.0
eb2.cylinder_radius = 15.0
eb2.cylinder_center = 60.0 60.0 0.0
eb2.cylinder_has_fluid_inside = 0
eb2.cylinder_height = 1000.0
eb2.cylinder_direction = 2
Expand Down