@@ -83,14 +83,14 @@ https://python-hydro.github.io/pyro2
8383 ```python
8484 import matplotlib.pyplot
8585 print matplotlib.pyplot.get_backend()
86- ```
86+ ```
8787
8888 - If you want to run the unit tests, you need to have `pytest` installed.
8989
9090 - Finally, you can run a quick test of the advection solver:
9191
9292 ```
93- pyro-sim .py advection smooth inputs.smooth
93+ pyro_sim .py advection smooth inputs.smooth
9494 ```
9595
9696 you should see a graphing window pop up with a smooth pulse
@@ -102,13 +102,13 @@ https://python-hydro.github.io/pyro2
102102The main data structures that describe the grid and the data the lives
103103on the grid are described in a jupyter notebook:
104104
105- https://github.com/python-hydro/pyro2/blob/main/mesh/mesh-examples.ipynb
105+ https://github.com/python-hydro/pyro2/blob/main/pyro/ mesh/mesh-examples.ipynb
106106
107107
108108Many of the methods here rely on multigrid. The multigrid solver is
109109demonstrated in the juputer notebook:
110110
111- https://github.com/python-hydro/pyro2/blob/main/multigrid/multigrid-examples.ipynb
111+ https://github.com/python-hydro/pyro2/blob/main/pyro/ multigrid/multigrid-examples.ipynb
112112
113113
114114## Solvers
@@ -136,16 +136,16 @@ pyro provides the following solvers (all in 2-d):
136136
137137 - `compressible`: a second-order unsplit solver for the Euler
138138 equations of compressible hydrodynamics. This uses characteristic
139- tracing and corner coupling for the prediction of the interface
140- states and a 2-shock or HLLC approximate Riemann solver.
139+ tracing and corner coupling for the prediction of the interface
140+ states and a 2-shock or HLLC approximate Riemann solver.
141141
142142 - `compressible_fv4`: a fourth-order accurate finite-volume compressible
143143 hydro solver that uses RK4 time integration. This is built from the
144144 method of McCourquodale and Colella (2011).
145145
146146 - `compressible_rk`: a second-order unsplit solver for Euler
147147 equations that uses Runge-Kutta integration instead of
148- characteristic tracing.
148+ characteristic tracing.
149149
150150 - `compressible_sdc`: a fourth-order compressible solver,
151151 using spectral-deferred correction (SDC) for the time integration.
0 commit comments