# ------------------  INPUTS TO MAIN PROGRAM  -------------------
max_step = 1000000
stop_time = 7.0

# PROBLEM SIZE & GEOMETRY
geometry.is_periodic =  1  1  1
geometry.coord_sys   =  0       # 0 => cart
geometry.prob_lo     = -1.0 -1.0 -1.0 
geometry.prob_hi     =  1.0  1.0  1.0
amr.n_cell           =  64   64   64

# TIME STEP CONTROL
adv.cfl            = 0.9     # cfl number for hyperbolic system

# VERBOSITY
adv.v              = 1       # verbosity in Adv
amr.v              = 1       # verbosity in Amr
#amr.grid_log         = grdlog  # name of grid logging file

# REFINEMENT / REGRIDDING
amr.max_level       = 2       # maximum level number allowed
amr.ref_ratio       = 2 2 2 2 # refinement ratio
amr.regrid_int      = 2       # how often to regrid
amr.blocking_factor = 8       # block factor in grid generation
amr.max_grid_size   = 16

# CHECKPOINT FILES
amr.checkpoint_files_output = 0     # 0 will disable checkpoint files
amr.check_file              = chk   # root name of checkpoint file
amr.check_int               = 10    # number of timesteps between checkpoints

# PLOTFILES
amr.plot_files_output = 1      # 0 will disable plot files
amr.plot_file         = plt    # root name of plot file
amr.plot_int          = 10     # number of timesteps between plot files

# TRACER PARTICLES
adv.do_tracers = 0

# PROBLEM-SPECIFIC PARAMETERS
prob.adv_vel =  1.0  1.0  1.0

# ERROR TAGGING
tagging.phierr =  1.01  1.1   1.5
tagging.max_phierr_lev = 10
