aboutsummaryrefslogtreecommitdiff
path: root/src/slice_evolve.F
diff options
context:
space:
mode:
authorjthorn <jthorn@e296648e-0e4f-0410-bd07-d597d9acff87>2003-05-23 16:35:45 +0000
committerjthorn <jthorn@e296648e-0e4f-0410-bd07-d597d9acff87>2003-05-23 16:35:45 +0000
commit9f93f647107ef10be6284416f956a82c9065eb6d (patch)
treede315bf543d9d413573f8c1847bd14f95df4802c /src/slice_evolve.F
parent9b2f9a42cc6d4e2dc876ee390cd76f6164be1520 (diff)
* document Gowdy-wave model (this was missing from the thorn guide)
* add a new feature that any vacuum non-cosmological-constant solution can be Lorentz-boosted by any 3-velocity (previously, Kerr/Kerr-Schild had the ability to do a z-axis boost, but the new code works for most of the models, and can boost in any direction) * general cleanup of most of the individual models to systematize comment conventions for subroutine arguments: input arguments, output arguments, static local variables, local variables, parameters * cleanup comments in various places to describe conformal factor being passed to/from individual models (this was in the code before, but not consistently documented) * various other cleanups in documentation There should be no change in the operation of any of the existing models. git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/Exact/trunk@162 e296648e-0e4f-0410-bd07-d597d9acff87
Diffstat (limited to 'src/slice_evolve.F')
-rw-r--r--src/slice_evolve.F4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/slice_evolve.F b/src/slice_evolve.F
index 75b12f4..c296b41 100644
--- a/src/slice_evolve.F
+++ b/src/slice_evolve.F
@@ -17,6 +17,7 @@ c #define-ing the symbol EXACT_NO_F90 will turn this subroutine into a no-op
CCTK_REAL s1d(4,3), nd(4), nu(4), norm, gd(4,4), gu(4,4)
CCTK_REAL dx,dy,dz,dt
+ CCTK_REAL psi
C Grid parameters.
@@ -84,7 +85,8 @@ C x^A.
$ gd(1,2), gd(2,3), gd(1,3),
$ gu(4,4), gu(1,4), gu(2,4), gu(3,4),
$ gu(1,1), gu(2,2), gu(3,3),
- $ gu(1,2), gu(2,3), gu(1,3))
+ $ gu(1,2), gu(2,3), gu(1,3),
+ $ psi)
C Calculate n^A and dx^A/dt
#include "include/slice_normal.inc"