-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add 2d and 3d inputs files for inout testing
- Loading branch information
Showing
2 changed files
with
81 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
#¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨# | ||
# SIMULATION STOP # | ||
#.......................................# | ||
max_step = 10 # Max number of time steps | ||
steady_state = 0 # Steady-state solver? | ||
|
||
incflo.do_initial_proj = 1 | ||
incflo.initial_iterations = 2 | ||
|
||
#¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨# | ||
# TIME STEP COMPUTATION # | ||
#.......................................# | ||
incflo.fixed_dt = 0.01 # Use this constant dt if > 0 | ||
|
||
#¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨# | ||
# INPUT AND OUTPUT # | ||
#.......................................# | ||
amr.plot_int = 50 # Steps between plot files | ||
amr.check_int = 1000 # Steps between checkpoint files | ||
amr.restart = "" # Checkpoint to restart from | ||
|
||
#¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨# | ||
# PHYSICS # | ||
#.......................................# | ||
incflo.gravity = 0. 0. 0. # Gravitational force (3D) | ||
incflo.ro_0 = 1. # Reference density | ||
|
||
incflo.fluid_model = "newtonian" # Fluid model (rheology) | ||
incflo.mu = 0. # Dynamic viscosity coefficient | ||
|
||
incflo.advect_tracer = 0 | ||
|
||
incflo.advection_type = "Godunov" | ||
|
||
#¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨# | ||
# ADAPTIVE MESH REFINEMENT # | ||
#.......................................# | ||
amr.n_cell = 64 32 32 # Grid cells at coarsest AMRlevel | ||
amr.max_level = 0 # Max AMR level in hierarchy | ||
|
||
amr.max_grid_size_x = 16 | ||
amr.max_grid_size_y = 16 | ||
|
||
#¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨# | ||
# GEOMETRY # | ||
#.......................................# | ||
geometry.prob_lo = 0. 0. 0. # Lo corner coordinates | ||
geometry.prob_hi = 2. 1. 1. # Hi corner coordinates | ||
|
||
geometry.is_periodic = 0 0 0 # Periodicity x y z (0/1) | ||
|
||
incflo.delp = 0. 0. 0. # Prescribed (cyclic) pressure gradient | ||
|
||
incflo.probtype = 43 | ||
|
||
# Boundary conditions | ||
xlo.type = "direction_dependent" | ||
xhi.type = "direction_dependent" | ||
|
||
ylo.type = "sw" # Slip wall | ||
yhi.type = "sw" # Slip wall | ||
|
||
zlo.type = "sw" # Slip wall | ||
zhi.type = "sw" # Slip wall | ||
|
||
#¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨# | ||
# VERBOSITY # | ||
#.......................................# | ||
amr.verbose = 3 # incflo_level | ||
incflo.verbose = 3 # incflo_level | ||
mac_proj.verbose = 1 # MAC Projector | ||
nodal_proj.verbose = 1 # Nodal Projector | ||
|
||
scalar_diffusion.verbose = 0 # DiffusionEquation | ||
tensor_diffusion.verbose = 0 # DiffusionEquation | ||
|
||
amr.plt_ccse_regtest = 1 |