You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/design.rst
-3Lines changed: 0 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -141,9 +141,6 @@ time you run the same bit of code, Numba will use the saved version rather than
141
141
compiling the code again, saving some compilation time at the start of the
142
142
simulation.
143
143
144
-
.. note::
145
-
146
-
Because we have chosen to cache the compiled code, Numba will save it in the ``__pycache__`` directories. If you change the code, a new version will be compiled and saved, but the old version will not be deleted. Over time, you may end up with many unneeded files saved in the ``__pycache__`` directories. To clean up these files, you can run ``./mk.sh clean`` in the main ``pyro2`` directory.
Copy file name to clipboardExpand all lines: docs/source/multigrid_basics.rst
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,16 +8,16 @@ of grids. Chapter 9 of the `pdf notes <http://bender.astro.sunysb.edu/hydro_by_e
8
8
9
9
There are three solvers:
10
10
11
-
* The core solver, provided in the class :func:`MG.CellCenterMG2d <multigrid.MG.CellCenterMG2d>` solves constant-coefficient Helmholtz problems of the form
11
+
* The core solver, provided in the class :func:`MG.CellCenterMG2d <pyro.multigrid.MG.CellCenterMG2d>` solves constant-coefficient Helmholtz problems of the form
12
12
:math:`(\alpha - \beta\nabla^2) \phi = f`
13
13
14
-
* The class :func:`variable_coeff_MG.VarCoeffCCMG2d <multigrid.variable_coeff_MG.VarCoeffCCMG2d>` solves variable coefficient Poisson problems of the form
14
+
* The class :func:`variable_coeff_MG.VarCoeffCCMG2d <pyro.multigrid.variable_coeff_MG.VarCoeffCCMG2d>` solves variable coefficient Poisson problems of the form
15
15
:math:`\nabla\cdot (\eta\nabla\phi ) = f`. This class inherits the core functionality from ``MG.CellCenterMG2d``.
16
16
17
-
* The class :func:`general_MG.GeneralMG2d <multigrid.general_MG.GeneralMG2d>` solves a general elliptic
17
+
* The class :func:`general_MG.GeneralMG2d <pyro.multigrid.general_MG.GeneralMG2d>` solves a general elliptic
18
18
equation of the form :math:`\alpha\phi + \nabla\cdot ( \beta
19
19
\nabla\phi) + \gamma\cdot\nabla\phi = f`. This class inherits
20
-
the core functionality from :func:`MG.CellCenterMG2d <multigrid.MG.CellCenterMG2d>`.
20
+
the core functionality from :func:`MG.CellCenterMG2d <pyro.multigrid.MG.CellCenterMG2d>`.
21
21
22
22
This solver is the only one to support inhomogeneous boundary
0 commit comments