forked from MSUNumRel/pyro2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_defaults
45 lines (30 loc) · 1.59 KB
/
_defaults
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[driver]
tmax = 1.0 ; maximum simulation time to evolve
max_steps = 10000 ; maximum number of steps to take
fix_dt = -1.0
init_tstep_factor = 0.01 ; first timestep = init_tstep_factor * CFL timestep
max_dt_change = 2.0 ; max amount the timestep can change between steps
verbose = 1.0 ; verbosity
[io]
basename = pyro_ ; basename for output files
dt_out = 0.1 ; simulation time between writing output files
n_out = 10000 ; number of timesteps between writing output files
do_io = 1 ; do we output at all?
[vis]
dovis = 1 ; runtime visualization? (1=yes, 0=no)
store_images = 0 ; store vis images to files (1=yes, 0=no)
[mesh]
xmin = 0.0 ; domain minumum x-coordinate
xmax = 1.0 ; domain maximum x-coordinate
ymin = 0.0 ; domain minimum y-coordinate
ymax = 1.0 ; domain maximum y-coordinate
xlboundary = reflect ; minimum x BC ('reflect', 'outflow', or 'periodic')
xrboundary = reflect ; maximum x BC ('reflect', 'outflow', or 'periodic')
ylboundary = reflect ; minimum y BC ('reflect', 'outflow', or 'periodic')
yrboundary = reflect ; maximum y BC ('reflect', 'outflow', or 'periodic')
nx = 25 ; number of zones in the x-direction
ny = 25 ; number of zones in the y-direction
[particles]
do_particles = 0 ; include particles? (1=yes, 0=no)
n_particles = 100 ; number of particles
particle_generator = random ; how do we generate particles? (random, grid)