From a30f95ac5f5e40f04706cc3aef4f3d71cf53c238 Mon Sep 17 00:00:00 2001 From: AMReX-Fusion <97451237+AMReX-Fusion@users.noreply.github.com> Date: Tue, 31 May 2022 14:31:46 +0200 Subject: [PATCH] fixed wrong variable names (#2218) --- Docs/source/Hydrodynamics.rst | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Docs/source/Hydrodynamics.rst b/Docs/source/Hydrodynamics.rst index 613bd17004..d2bb74ee4e 100644 --- a/Docs/source/Hydrodynamics.rst +++ b/Docs/source/Hydrodynamics.rst @@ -199,21 +199,21 @@ several main data structures that hold the state. +-----------------------+-----------------------+-----------------------+ | **variable** | **quantity** | **note** | +=======================+=======================+=======================+ - | ``QGDRHO`` | :math:`\rho` | | + | ``GDRHO`` | :math:`\rho` | | +-----------------------+-----------------------+-----------------------+ - | ``QDU`` | :math:`u` | | + | ``GDU`` | :math:`u` | | +-----------------------+-----------------------+-----------------------+ - | ``QDV`` | :math:`v` | | + | ``GDV`` | :math:`v` | | +-----------------------+-----------------------+-----------------------+ - | ``QDW`` | :math:`w` | | + | ``GDW`` | :math:`w` | | +-----------------------+-----------------------+-----------------------+ - | ``QDPRES`` | :math:`p` | regardless of whether | + | ``GDPRES`` | :math:`p` | regardless of whether | | | | ``RADIATION`` is | | | | defined, | | | | this is always just | | | | the gas pressure | +-----------------------+-----------------------+-----------------------+ - | ``QDLAMS`` | :math:`{\lambda_f}` | the starting index | + | ``GDLAMS`` | :math:`{\lambda_f}` | the starting index | | | | for the flux | | | | limiter—there are | | | | ngroups components | @@ -221,7 +221,7 @@ several main data structures that hold the state. | | | ``RADIATION`` is | | | | defined) | +-----------------------+-----------------------+-----------------------+ - | ``QDERADS`` | :math:`E_r` | the starting index | + | ``GDERADS`` | :math:`E_r` | the starting index | | | | for the radiation | | | | energy—there are | | | | ngroups components |