aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpollney <pollney@57bc7290-fb3d-4efd-a9b1-28e84cce6043>2000-03-02 10:28:39 +0000
committerpollney <pollney@57bc7290-fb3d-4efd-a9b1-28e84cce6043>2000-03-02 10:28:39 +0000
commit9c56b9c643061497c2f6128a2b30878a0833469a (patch)
treeb216418b5ba957ab52a510a500bf89dba9daa313
parent8c66b19ac2a2a11ff76a331510728807c2332f42 (diff)
Switch signs for M and N in the EllBase interface so that it now solves
L\phi + M\phi + N\phi = 0 (in line with BAM_Elliptic). git-svn-id: http://svn.cactuscode.org/arrangements/CactusElliptic/EllBase/trunk@40 57bc7290-fb3d-4efd-a9b1-28e84cce6043
-rw-r--r--doc/ThornGuide.tex10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/ThornGuide.tex b/doc/ThornGuide.tex
index bfa65df..18f6c6e 100644
--- a/doc/ThornGuide.tex
+++ b/doc/ThornGuide.tex
@@ -34,16 +34,16 @@ routine is registered.
{\tt EllBase} itself defines the elliptic classes
\begin{enumerate}
\item{\bf flat:} {\tt Ell\_LinFlat}\\
-solves a linear elliptic equation in flat space: $\nabla \phi - M \phi
-- N = 0 $
+solves a linear elliptic equation in flat space: $\nabla \phi + M \phi
++N = 0 $
\item{\bf metric:} {\tt Ell\_LinMetric}\\
solves a linear elliptic equation for a given metric: $\nabla_{g} \phi
-- M \phi - N = 0 $
++ M \phi + N = 0 $
\item{\bf conformal metric:} {\tt Ell\_LinConfMetric}\\
solves a linear elliptic equation for a
-given metric and a conformal factor: $\nabla_{cg} \phi - M \phi
-- N = 0 $
+given metric and a conformal factor: $\nabla_{cg} \phi + M \phi
++ N = 0 $
\item{\bf generic:} solves a linear elliptic equation by passing the
stencil functions. There is support for a maximum of 27 stencil
functions ($3^3$). {\em This is not implemented, yet}