Skip to content

Commit 4ae8d47

Browse files
committed
fix names
1 parent 60b01b8 commit 4ae8d47

15 files changed

Lines changed: 80 additions & 0 deletions

docs/source/_defaults.inc

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
2+
**driver**
3+
4+
+----------------------------------+------------+----------------------------------------------------+
5+
| option | value | description |
6+
+==================================+============+====================================================+
7+
| tmax | 1.0 | maximum simulation time to evolve |
8+
+----------------------------------+------------+----------------------------------------------------+
9+
| max_steps | 10000 | maximum number of steps to take |
10+
+----------------------------------+------------+----------------------------------------------------+
11+
| fix_dt | -1.0 | |
12+
+----------------------------------+------------+----------------------------------------------------+
13+
| init_tstep_factor | 0.01 | first timestep = init_tstep_factor * CFL timestep |
14+
+----------------------------------+------------+----------------------------------------------------+
15+
| max_dt_change | 2.0 | max amount the timestep can change between steps |
16+
+----------------------------------+------------+----------------------------------------------------+
17+
| verbose | 1.0 | verbosity |
18+
+----------------------------------+------------+----------------------------------------------------+
19+
20+
**io**
21+
22+
+----------------------------------+------------+----------------------------------------------------+
23+
| option | value | description |
24+
+==================================+============+====================================================+
25+
| basename | pyro_ | basename for output files |
26+
+----------------------------------+------------+----------------------------------------------------+
27+
| dt_out | 0.1 | simulation time between writing output files |
28+
+----------------------------------+------------+----------------------------------------------------+
29+
| n_out | 10000 | number of timesteps between writing output files |
30+
+----------------------------------+------------+----------------------------------------------------+
31+
| do_io | 1 | do we output at all? |
32+
+----------------------------------+------------+----------------------------------------------------+
33+
34+
**mesh**
35+
36+
+----------------------------------+------------+----------------------------------------------------+
37+
| option | value | description |
38+
+==================================+============+====================================================+
39+
| xmin | 0.0 | domain minumum x-coordinate |
40+
+----------------------------------+------------+----------------------------------------------------+
41+
| xmax | 1.0 | domain maximum x-coordinate |
42+
+----------------------------------+------------+----------------------------------------------------+
43+
| ymin | 0.0 | domain minimum y-coordinate |
44+
+----------------------------------+------------+----------------------------------------------------+
45+
| ymax | 1.0 | domain maximum y-coordinate |
46+
+----------------------------------+------------+----------------------------------------------------+
47+
| xlboundary | reflect | minimum x BC ('reflect', 'outflow', or 'periodic') |
48+
+----------------------------------+------------+----------------------------------------------------+
49+
| xrboundary | reflect | maximum x BC ('reflect', 'outflow', or 'periodic') |
50+
+----------------------------------+------------+----------------------------------------------------+
51+
| ylboundary | reflect | minimum y BC ('reflect', 'outflow', or 'periodic') |
52+
+----------------------------------+------------+----------------------------------------------------+
53+
| yrboundary | reflect | maximum y BC ('reflect', 'outflow', or 'periodic') |
54+
+----------------------------------+------------+----------------------------------------------------+
55+
| nx | 25 | number of zones in the x-direction |
56+
+----------------------------------+------------+----------------------------------------------------+
57+
| ny | 25 | number of zones in the y-direction |
58+
+----------------------------------+------------+----------------------------------------------------+
59+
60+
**particles**
61+
62+
+----------------------------------+------------+----------------------------------------------------+
63+
| option | value | description |
64+
+==================================+============+====================================================+
65+
| do_particles | 0 | include particles? (1=yes, 0=no) |
66+
+----------------------------------+------------+----------------------------------------------------+
67+
| n_particles | 100 | number of particles |
68+
+----------------------------------+------------+----------------------------------------------------+
69+
| particle_generator | random | how do we generate particles? (random, grid) |
70+
+----------------------------------+------------+----------------------------------------------------+
71+
72+
**vis**
73+
74+
+----------------------------------+------------+----------------------------------------------------+
75+
| option | value | description |
76+
+==================================+============+====================================================+
77+
| dovis | 1 | runtime visualization? (1=yes, 0=no) |
78+
+----------------------------------+------------+----------------------------------------------------+
79+
| store_images | 0 | store vis images to files (1=yes, 0=no) |
80+
+----------------------------------+------------+----------------------------------------------------+
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)