11# ---- -------------- INPUTS TO MAIN PROGRAM -------------------
2- amr .plot_files_output = 1
3- amr .checkpoint_files_output = 1
4-
52max_step = 1000000
63stop_time = 10.0
74
@@ -13,8 +10,6 @@ geometry.prob_hi = 5.12e9 1.024e10
1310
1411amr .n_cell = 1280 2560
1512
16- amr .max_level = 1 # maximum level number allowed
17-
1813castro .lo_bc = 3 2
1914castro .hi_bc = 2 2
2015
@@ -63,7 +58,7 @@ castro.sponge_timescale = 1.e-3
6358castro .cfl = 0.2 # cfl number for hyperbolic system
6459castro .init_shrink = 0.05 # scale back initial timestep by this factor
6560castro .change_max = 1.025 # factor by which dt is allowed to change each timestep
66- castro .sum_interval = 0 # timesteps between computing and printing volume averages
61+ castro .sum_interval = 5 # timesteps between computing and printing volume averages
6762castro .update_sources_after_reflux = 0
6863castro .time_integration_method = 3
6964
@@ -73,32 +68,44 @@ castro.max_subcycles = 32
7368
7469castro .abundance_failure_rho_cutoff = 1.0
7570
71+ amr .v = 1 # control verbosity in Amr .cpp
72+ castro .v = 1 # control verbosity in Castro .cpp
73+
74+ castro .small_dens = 1.e-5
75+ castro .small_temp = 1.e5
76+
7677# castro .dtnuc_e = 0.25
7778# castro .dtnuc_X = 0.25
7879
80+ # gridding
81+
82+ amr .max_level = 1 # maximum level number allowed
83+
7984amr .ref_ratio = 2 2 2 2 # refinement ratio
8085amr .regrid_int = 2 # how often to regrid
8186amr .n_error_buf = 2 2 2 2 # number of buffer cells in error est
8287amr .grid_eff = 0.7 # what constitutes an efficient grid
8388
89+ amr .max_grid_size = 256 # maximum grid size allowed -- used to control parallelism
90+ amr .blocking_factor = 32 # block factor in grid generation
91+
92+ # I / O
93+
94+ amr .plot_files_output = 1
95+ amr .checkpoint_files_output = 1
96+ # with the SLURM HUP functionality , we get a checkpoint near
97+ # the end of the queue window -- don't do a plotfile then too
98+ amr .write_plotfile_with_checkpoint = 0
99+
84100amr .check_file = subch_chk # root name of checkpoint file
85101amr .check_int = 50 # number of timesteps between checkpoints
86102amr .plot_file = subch_plt # root name of plot file
87103amr .plot_int = - 1 # number of timesteps between plotfiles
88104amr .plot_per = 2.e-3
89105
90- amr .max_grid_size = 256 # maximum grid size allowed -- used to control parallelism
91- amr .blocking_factor = 32 # block factor in grid generation
92-
93- amr .v = 1 # control verbosity in Amr .cpp
94- castro .v = 1 # control verbosity in Castro .cpp
95-
96106amr .derive_plot_vars = ALL
97107castro .store_burn_weights = 1
98108
99- castro .small_dens = 1.e-5
100- castro .small_temp = 1.e5
101-
102109# problem parameters
103110
104111problem .pert_temp_factor = 20.0
0 commit comments