aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcott <cott@57fe0bb3-ccba-405f-9b23-de0201f165b7>2011-02-21 17:14:39 +0000
committercott <cott@57fe0bb3-ccba-405f-9b23-de0201f165b7>2011-02-21 17:14:39 +0000
commit4f428fa0cb738ce35740188fde8c7e7176f799b1 (patch)
treeec75fef5ebfd442910916723d472b684d711c9b5
parent1f8cb1d9234965b533dced81053887057070fee7 (diff)
* add variable w_lorentz for the Lorentz factor
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinBase/HydroBase/trunk@38 57fe0bb3-ccba-405f-9b23-de0201f165b7
-rwxr-xr-xinterface.ccl2
-rwxr-xr-xschedule.ccl3
2 files changed, 5 insertions, 0 deletions
diff --git a/interface.ccl b/interface.ccl
index fd14190..a0d4ac8 100755
--- a/interface.ccl
+++ b/interface.ccl
@@ -35,6 +35,8 @@ CCTK_REAL eps type = GF Timelevels = 3 tags='ProlongationParameter="HydroBas
CCTK_REAL vel[3] type = GF Timelevels = 3 tags='ProlongationParameter="HydroBase::prolongation_type" tensortypealias="U" interpolator="matter"' "velocity v^i"
+CCTK_REAL w_lorentz type = GF Timelevels = 3 tags='ProlongationParameter="HydroBase::prolongation_type" tensortypealias="U" interpolator="matter"' "Lorentz Factor"
+
CCTK_REAL Y_e type = GF Timelevels = 3 tags='ProlongationParameter="HydroBase::prolongation_type" tensortypealias="Scalar" interpolator="matter"' "Electron Fraction"
CCTK_REAL temperature type = GF Timelevels = 3 tags='ProlongationParameter="HydroBase::prolongation_type" tensortypealias="Scalar" interpolator="matter"' "Temperature [MeV]"
CCTK_REAL entropy type = GF Timelevels = 3 tags='ProlongationParameter="HydroBase::prolongation_type" tensortypealias="Scalar" interpolator="matter"' "Specific Entropy [k_b/baryon]"
diff --git a/schedule.ccl b/schedule.ccl
index f52cbb7..2e8207e 100755
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -6,6 +6,7 @@ if (timelevels == 1)
STORAGE: press[1]
STORAGE: eps[1]
STORAGE: vel[1]
+ STORAGE: w_lorentz[1]
if (!CCTK_EQUALS(initial_Y_e, "none"))
{
STORAGE: Y_e[1]
@@ -29,6 +30,7 @@ else if (timelevels == 2)
STORAGE: press[2]
STORAGE: eps[2]
STORAGE: vel[2]
+ STORAGE: w_lorentz[2]
if (!CCTK_EQUALS(initial_Y_e, "none"))
{
STORAGE: Y_e[2]
@@ -52,6 +54,7 @@ else if (timelevels == 3)
STORAGE: press[3]
STORAGE: eps[3]
STORAGE: vel[3]
+ STORAGE: w_lorentz[3]
if (!CCTK_EQUALS(initial_Y_e, "none"))
{
STORAGE: Y_e[3]