-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix nvar=2 in InteriorGhostCells and add new inputs_ml for Scalar Reg…
… tests (#1309)
- Loading branch information
Showing
4 changed files
with
83 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
# ------------------ INPUTS TO MAIN PROGRAM ------------------- | ||
max_step = 10 | ||
|
||
amrex.fpe_trap_invalid = 1 | ||
|
||
erf.no_substepping=0 | ||
|
||
fabarray.mfiter_tile_size = 1024 1024 1024 | ||
|
||
# PROBLEM SIZE & GEOMETRY | ||
geometry.prob_extent = 1 1 1 | ||
amr.n_cell = 32 32 32 | ||
|
||
geometry.is_periodic = 1 1 0 | ||
|
||
zlo.type = "SlipWall" | ||
zhi.type = "SlipWall" | ||
|
||
# TIME STEP CONTROL | ||
erf.fixed_dt = 5e-5 | ||
erf.fixed_fast_dt = 2.5e-5 | ||
|
||
# DIAGNOSTICS & VERBOSITY | ||
erf.sum_interval = 1 # timesteps between computing mass | ||
erf.v = 1 # verbosity in ERF.cpp | ||
amr.v = 1 # verbosity in Amr.cpp | ||
|
||
# CHECKPOINT FILES | ||
erf.check_file = chk # root name of checkpoint file | ||
erf.check_int = -100 # number of timesteps between checkpoints | ||
|
||
# PLOTFILES | ||
erf.plot_file_1 = plt # prefix of plotfile name | ||
erf.plot_int_1 = 1 # number of timesteps between plotfiles | ||
erf.plot_vars_1 = density rhoadv_0 x_velocity y_velocity z_velocity pressure temp theta | ||
|
||
# SOLVER CHOICE | ||
erf.alpha_T = 0.0 | ||
erf.alpha_C = 1.0 | ||
erf.use_gravity = false | ||
|
||
erf.les_type = "None" | ||
erf.molec_diff_type = "None" | ||
erf.rho0_trans = 1.0 | ||
erf.dynamicViscosity = 0.0 | ||
|
||
erf.dycore_horiz_adv_type = "Centered_2nd" | ||
erf.dycore_vert_adv_type = "Centered_2nd" | ||
erf.dryscal_horiz_adv_type = "Centered_2nd" | ||
erf.dryscal_vert_adv_type = "Centered_2nd" | ||
|
||
erf.init_type = "uniform" | ||
# PROBLEM PARAMETERS | ||
prob.rho_0 = 1.0 | ||
prob.A_0 = 1.0 | ||
prob.u_0 = 100.0 | ||
prob.v_0 = 0.0 | ||
|
||
prob.prob_type = 10 | ||
|
||
# REFINEMENT / REGRIDDING | ||
amr.max_level = 1 # maximum level number allowed | ||
|
||
amr.ref_ratio_vect = 2 2 1 | ||
erf.refinement_indicators = box1 | ||
erf.box1.max_level = 1 | ||
erf.box1.in_box_lo = 0.25 0.0 | ||
erf.box1.in_box_hi = 0.75 1.0 | ||
|
||
erf.coupling_type = "TwoWay" | ||
erf.coupling_type = "Mixed" | ||
erf.coupling_type = "OneWay" | ||
|
||
erf.cf_width = 3 | ||
erf.cf_set_width = 1 |
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
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