@@ -40,25 +40,54 @@ The overall structure is:
4040 * ``problems/ ``: The problem setups for the advection solver.
4141 * ``tests/ ``: Reference advection output files for comparison and regression testing.
4242
43+ * ``advection_fv4/ ``: The fourth-order accurate finite-volume advection
44+ solver that uses RK4 time integration.
45+
46+ * ``problems/ ``: The problem setups for the fourth-order advection solver.
47+ * ``tests/ ``: Reference advection output files for comparison and regression testing.
48+
49+ * ``advection_nonuniform/ ``: The solver for advection with a non-uniform velocity field.
50+
51+ * ``problems/ ``: The problem setups for the non-uniform advection solver.
52+ * ``tests/ ``: Reference advection output files for comparison and regression testing.
53+
4354* ``advection_rk/ ``: The linear advection equation solver using the
4455 method-of-lines approach.
4556
4657 * ``problems/ ``: This is a symbolic link to the advection/problems/ directory.
4758 * ``tests/ ``: Reference advection output files for comparison and regression testing.
4859
60+ * ``advection_weno/ ``: The method-of-lines WENO solver for linear
61+ advection.
62+
63+ * ``problems/ ``: This is a symbolic link to the advection/problems/ directory.
64+
4965* ``analysis/ ``: Various analysis scripts for processing pyro output files.
5066
51- * ``compressible/ ``: The compressible hydrodynamics solver using the
67+ * ``compressible/ ``: The fourth-order accurate finite-volume compressible
68+ hydro solver that uses RK4 time integration. This is built from the
69+ method of McCourquodale and Colella (2011).
70+
71+ * ``problems/ ``: The problem setups for the fourth-order compressible hydrodynamics solver.
72+ * ``tests/ ``: Reference compressible hydro output for regression testing.
73+
74+ * ``compressible_fv4/ ``: The compressible hydrodynamics solver using the
5275 CTU method. All source files specific to this solver live here.
5376
54- * ``problems/ ``: The problem setups for the compressible hydrodynamics solver .
77+ * ``problems/ ``: This is a symbolic link to the compressible/problems/ directory .
5578 * ``tests/ ``: Reference compressible hydro output for regression testing.
5679
5780* ``compressible_rk/ ``: The compressible hydrodynamics solver using method of lines integration.
5881
5982 * ``problems/ ``: This is a symbolic link to the compressible/problems/ directory.
6083 * ``tests/ ``: Reference compressible hydro output for regression testing.
6184
85+ * ``compressible_sdc/ ``: The fourth-order compressible solver,
86+ using spectral-deferred correction (SDC) for the time integration.
87+
88+ * ``problems/ ``: This is a symbolic link to the compressible/problems/ directory.
89+ * ``tests/ ``: Reference compressible hydro output for regression testing.
90+
6291* ``diffusion/ ``: The implicit (thermal) diffusion solver. All diffusion-specific routines live here.
6392
6493 * ``problems/ ``: The problem setups for the diffusion solver.
@@ -85,6 +114,10 @@ The overall structure is:
85114 * ``problems/ ``: The problem setups for when the multigrid solver is used in a stand-alone fashion.
86115 * ``tests/ ``: Reference multigrid solver solutions (from when the multigrid solver is used stand-alone) for regression testing.
87116
117+ * ``particles/ ``: The solver for Lagrangian tracer particles.
118+
119+ * ``tests/ ``: Particle solver testing.
120+
88121* ``swe/ ``: The shallow water solver.
89122
90123 * ``problems/ ``: The problem setups for the shallow water solver.
0 commit comments