-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Expand some indices when checking for inflows, make GetRange usable f…
…or boundary ranges
- Loading branch information
Ben Prather
committed
Nov 13, 2023
1 parent
546594e
commit ece0e53
Showing
6 changed files
with
104 additions
and
18 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
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,67 @@ | ||
# SANE model emulating a real run for performance testing | ||
# Takes only 1k steps, dramatically reduced dump files | ||
# Uses HARM driver harm_driver.cpp | ||
|
||
# (Also no archival parfile, B cleanup, or two-sync) | ||
|
||
<parthenon/job> | ||
problem_id = torus | ||
|
||
# 8 meshblocks -> up to 2 nodes. | ||
# Pretty representative size for a long simulation | ||
# Larger simulations have smaller in-simulation timesteps | ||
<parthenon/mesh> | ||
refinement = none | ||
numlevel = 1 | ||
nx1 = 256 | ||
nx2 = 128 | ||
nx3 = 256 | ||
|
||
<parthenon/meshblock> | ||
nx1 = 128 | ||
nx2 = 32 | ||
nx3 = 128 | ||
|
||
<coordinates> | ||
base = spherical_ks | ||
transform = fmks | ||
r_out = 1000 | ||
a = 0.9375 | ||
|
||
<parthenon/time> | ||
tlim = 10000.0 | ||
# Limit to 1k steps | ||
nlim = 1000 | ||
|
||
<GRMHD> | ||
cfl = 0.8 | ||
gamma = 1.666667 | ||
reconstruction = weno5 | ||
|
||
|
||
|
||
<driver> | ||
type = kharma | ||
two_sync = true | ||
|
||
<torus> | ||
rin = 6.0 | ||
rmax = 12.0 | ||
|
||
<perturbation> | ||
u_jitter = 0.04 | ||
|
||
<b_field> | ||
type = sane | ||
beta_min = 100. | ||
|
||
<floors> | ||
rho_min_geom = 1e-6 | ||
u_min_geom = 1e-8 | ||
bsq_over_rho_max = 100 | ||
u_over_rho_max = 2 | ||
|
||
<debug> | ||
verbose = 1 | ||
extra_checks = 1 | ||
flag_verbose = 0 |
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