aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/documentation.tex4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/documentation.tex b/doc/documentation.tex
index 928c337..35c85ed 100644
--- a/doc/documentation.tex
+++ b/doc/documentation.tex
@@ -473,7 +473,7 @@ All the generic methods evolve the equation
\end{equation}
using the following algorithm for an $N$-step method:
\begin{eqnarray}
- \label{CactusBase_MoL_eq:genrk1}
+ \label{CactusBase_MoL_eq:genrk1-scheme}
{\bf q}^{(0)} & = & {\bf q}^n, \nonumber \\
{\bf q}^{(i)} & = & \sum_{k=0}^{i-1} \left( \alpha_{ik} {\bf
q}^{(k)} \right) + \Delta t \beta_{i-1} {\bf L} ( {\bf q}^{(i-1)} ),
@@ -490,7 +490,7 @@ will use. This table is created from the string parameter {\tt
As an example, the standard TVD RK2 method that is implemented both in
optimized and generic form is written as
\begin{eqnarray}
- \label{CactusBase_MoL_eq:rk2}
+ \label{CactusBase_MoL_eq:rk2-scheme}
{\bf q}^{(1)} & = & {\bf q}^n + \Delta t {\bf L} ({\bf q}^n), \\
{\bf q}^{n+1} & = & \frac{1}{2} \left( {\bf q}^n + {\bf q}^{(1)} +
\Delta t {\bf L} ({\bf q}^{(1)}) \right).