diff --git a/doc/RTD/source/HydroSchemes/gizmo.rst b/doc/RTD/source/HydroSchemes/gizmo.rst index de6db297f8661404330493a45dc9f5771138e7ae..365e1dc41c27f7c92bfb33859bedad2d96f35248 100644 --- a/doc/RTD/source/HydroSchemes/gizmo.rst +++ b/doc/RTD/source/HydroSchemes/gizmo.rst @@ -16,5 +16,12 @@ this, and configure as follows: .. code-block:: bash - ./configure --with-hydro="gizmo" --with-riemann-solver="hllc" --disable-vec + ./configure --with-hydro="gizmo-mfv" --with-riemann-solver="hllc" + +We also have the meshless finite mass (MFM) GIZMO-like scheme. You can select +this at compile-time with the following configuration flags: + +.. code-block:: bash + + ./configure --with-hydro="gizmo-mfm" --with-riemann-solver="hllc" diff --git a/doc/RTD/source/HydroSchemes/hopkins_sph.rst b/doc/RTD/source/HydroSchemes/hopkins_sph.rst index 49add2b2b19ca7d1d52058f2a466881dfa0f1b7a..bcc51e0ad96b18956f1c8e54f7bf2bf3b352c138 100644 --- a/doc/RTD/source/HydroSchemes/hopkins_sph.rst +++ b/doc/RTD/source/HydroSchemes/hopkins_sph.rst @@ -15,10 +15,16 @@ This includes a Monaghan AV scheme and a Balsara switch. .. code-block:: bash - ./configure --with-hydro="hopkins" + ./configure --with-hydro="pressure-entropy" Pressure-Energy SPH =================== -A pressure-energy SPH scheme is currently being implemented in SWIFT. +Pressure-energy SPH is now implemented in SWIFT, and like the pressure-entropy +scheme it includes a Monaghan AV scheme and a Balsara switch. + + +.. code-block:: bash + + ./configure --with-hydro="pressure-energy" diff --git a/doc/RTD/source/HydroSchemes/minimal_sph.rst b/doc/RTD/source/HydroSchemes/minimal_sph.rst index 0440f6c7afade727d57131143934933d285bc8b5..1a16a23360aaba8b28920150af0d4f4b05c74c2f 100644 --- a/doc/RTD/source/HydroSchemes/minimal_sph.rst +++ b/doc/RTD/source/HydroSchemes/minimal_sph.rst @@ -12,4 +12,9 @@ Minimal (Density-Energy) SPH This scheme is a textbook implementation of Density-Energy SPH, and can be used as a pedagogical example. It also implements a Monaghan AV scheme, like the GADGET-2 scheme. It uses very similar equations, but differs in implementation -details. +details; namely it tracks the internal energy \(u\) as the thermodynamic +variable, rather than entropy \(A\). To use the minimal scheme, use + +.. code-block:: bash + + ./configure --with-hydro="minimal"