forked from seahorce-scidac/REMORA
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request seahorce-scidac#222 from seahorce-scidac/fix_spelling
fix some spelling
- Loading branch information
Showing
37 changed files
with
131 additions
and
49 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 |
---|---|---|
@@ -1,2 +1,4 @@ | ||
Blocs | ||
inout | ||
parms | ||
ptd |
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
# ------------------ INPUTS TO MAIN PROGRAM ------------------- | ||
max_step = 300 | ||
stop_time = 30000.0 | ||
max_step = 80 | ||
|
||
amrex.fpe_trap_invalid = 1 | ||
|
||
fabarray.mfiter_tile_size = 1024 1024 1024 | ||
|
||
# PROBLEM SIZE & GEOMETRY | ||
geometry.prob_lo = 0. 0. -150. | ||
geometry.prob_hi = 41000. 80000. 0. | ||
|
||
amr.n_cell = 41 80 16 | ||
|
||
# periodic in x to match WRF setup | ||
geometry.is_periodic = 1 1 0 | ||
#ylo.type = "SlipWall" | ||
#yhi.type = "SlipWall" | ||
zlo.type = "SlipWall" | ||
zhi.type = "SlipWall" | ||
|
||
# TIME STEP CONTROL | ||
remora.fixed_dt = 300.0 # Timestep size (seconds) | ||
# NDTFAST = 30.0 # Number of baratropic steps => 300.0/30.0 = 10.0 | ||
remora.fixed_fast_dt = 10.0 # Baratropic timestep size (seconds) | ||
# remora.fixed_fast_dt = 300.0 # Baratropic timestep size (seconds) testing value | ||
remora.fixed_ndtfast_ratio = 30 # Baratropic timestep size (seconds) | ||
|
||
# PARTICLES | ||
remora.use_tracer_particles = 1 | ||
tracer_particles.initial_distribution_type = box | ||
tracer_particles.particle_box_lo = 20000. 20000. -100000. | ||
tracer_particles.particle_box_hi = 25000. 40000. 100000. | ||
tracer_particles.place_randomly_in_cells = false | ||
|
||
# DIAGNOSTICS & VERBOSITY | ||
remora.sum_interval = 1 # timesteps between computing mass | ||
remora.v = 0 # verbosity in REMORA.cpp (0: none, 1: print boxes, etc, 2: print values) | ||
amr.v = 1 # verbosity in Amr.cpp | ||
|
||
# REFINEMENT / REGRIDDING | ||
amr.max_level = 1 # maximum level number allowed | ||
amr.ref_ratio_vect = 2 2 1 | ||
|
||
remora.refinement_indicators = hi_pc | ||
remora.hi_pc.max_level = 1 | ||
remora.hi_pc.field_name = tracer_particles_count | ||
remora.hi_pc.value_greater = 0.5 | ||
|
||
# CHECKPOINT FILES | ||
remora.check_file = chk # root name of checkpoint file | ||
remora.check_int = -57600 # number of timesteps between checkpoints | ||
|
||
# PLOTFILES | ||
remora.plot_file = plt # prefix of plotfile name | ||
remora.plot_int = 5 # number of timesteps between plotfiles | ||
remora.plot_vars = salt temp x_velocity y_velocity z_velocity tracer_particles_count | ||
remora.plotfile_type = amrex | ||
|
||
# SOLVER CHOICE | ||
remora.use_coriolis = true | ||
remora.horizontal_advection_scheme = "upstream3" # upstream3 or centered4 | ||
remora.spatial_order = 2 | ||
|
||
# Coriolis params | ||
remora.coriolis_f0 = -8.26e-5 | ||
remora.coriolis_beta = 0.0 | ||
|
||
# LINEAR EOS PARAMETERS (optional) | ||
remora.R0 = 1027.0 | ||
remora.S0 = 35.0 | ||
remora.T0 = 14.0 | ||
|
||
# PROBLEM PARAMETERS (shear) | ||
prob.u_0 = 0.0 | ||
prob.v_0 = 0.0 | ||
prob.z0 = 0.1 | ||
prob.zRef = 80.0e-3 | ||
prob.uRef = 8.0e-3 |
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
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
Oops, something went wrong.