aboutsummaryrefslogtreecommitdiff
path: root/ML_ADMQuantities_MP
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@cct.lsu.edu>2010-02-19 13:21:48 -0800
committerErik Schnetter <schnetter@cct.lsu.edu>2010-02-19 13:21:48 -0800
commitfa724eab3321b1f0414ecc970e1831f0afecc294 (patch)
tree6139594c333645483ff0b06a5ff5a962d35b2d0a /ML_ADMQuantities_MP
parente9c90af31aa4826501fb53b183b88e7d430a50ce (diff)
Use new schedule group MoL_PseudoEvolution for the ADM constraints and the ADM quantities.
Re-generate all code.
Diffstat (limited to 'ML_ADMQuantities_MP')
-rw-r--r--ML_ADMQuantities_MP/schedule.ccl4
-rw-r--r--ML_ADMQuantities_MP/src/ML_ADMQuantities_MP.c20
2 files changed, 12 insertions, 12 deletions
diff --git a/ML_ADMQuantities_MP/schedule.ccl b/ML_ADMQuantities_MP/schedule.ccl
index 9ae52f6..b45d58b 100644
--- a/ML_ADMQuantities_MP/schedule.ccl
+++ b/ML_ADMQuantities_MP/schedule.ccl
@@ -23,14 +23,14 @@ schedule ML_ADMQuantities_MP_RegisterSymmetries in SymmetryRegister
OPTIONS: meta
} "register symmetries"
-schedule ML_ADMQuantities_MP AT evol AFTER MoL_Evolution
+schedule ML_ADMQuantities_MP IN MoL_PseudoEvolution
{
LANG: C
SYNC: ML_Jadm
SYNC: ML_Madm
} "ML_ADMQuantities_MP"
-schedule ML_ADMQuantities_MP_boundary AT evol AFTER MoL_Evolution AFTER ML_ADMQuantities_MP
+schedule ML_ADMQuantities_MP_boundary IN MoL_PseudoEvolution AFTER ML_ADMQuantities_MP
{
LANG: C
} "ML_ADMQuantities_MP_boundary"
diff --git a/ML_ADMQuantities_MP/src/ML_ADMQuantities_MP.c b/ML_ADMQuantities_MP/src/ML_ADMQuantities_MP.c
index 948c148..eed4822 100644
--- a/ML_ADMQuantities_MP/src/ML_ADMQuantities_MP.c
+++ b/ML_ADMQuantities_MP/src/ML_ADMQuantities_MP.c
@@ -251,16 +251,16 @@ void ML_ADMQuantities_MP_Body(cGH const * restrict const cctkGH, int const dir,
CCTK_REAL const dJ322L = dJ322[index];
CCTK_REAL const dJ323L = dJ323[index];
CCTK_REAL const dJ333L = dJ333[index];
- CCTK_REAL const eTttL = (stress_energy_state) ? (eTtt[index]) : 0.0;
- CCTK_REAL const eTtxL = (stress_energy_state) ? (eTtx[index]) : 0.0;
- CCTK_REAL const eTtyL = (stress_energy_state) ? (eTty[index]) : 0.0;
- CCTK_REAL const eTtzL = (stress_energy_state) ? (eTtz[index]) : 0.0;
- CCTK_REAL const eTxxL = (stress_energy_state) ? (eTxx[index]) : 0.0;
- CCTK_REAL const eTxyL = (stress_energy_state) ? (eTxy[index]) : 0.0;
- CCTK_REAL const eTxzL = (stress_energy_state) ? (eTxz[index]) : 0.0;
- CCTK_REAL const eTyyL = (stress_energy_state) ? (eTyy[index]) : 0.0;
- CCTK_REAL const eTyzL = (stress_energy_state) ? (eTyz[index]) : 0.0;
- CCTK_REAL const eTzzL = (stress_energy_state) ? (eTzz[index]) : 0.0;
+ CCTK_REAL const eTttL = (*stress_energy_state) ? (eTtt[index]) : 0.0;
+ CCTK_REAL const eTtxL = (*stress_energy_state) ? (eTtx[index]) : 0.0;
+ CCTK_REAL const eTtyL = (*stress_energy_state) ? (eTty[index]) : 0.0;
+ CCTK_REAL const eTtzL = (*stress_energy_state) ? (eTtz[index]) : 0.0;
+ CCTK_REAL const eTxxL = (*stress_energy_state) ? (eTxx[index]) : 0.0;
+ CCTK_REAL const eTxyL = (*stress_energy_state) ? (eTxy[index]) : 0.0;
+ CCTK_REAL const eTxzL = (*stress_energy_state) ? (eTxz[index]) : 0.0;
+ CCTK_REAL const eTyyL = (*stress_energy_state) ? (eTyy[index]) : 0.0;
+ CCTK_REAL const eTyzL = (*stress_energy_state) ? (eTyz[index]) : 0.0;
+ CCTK_REAL const eTzzL = (*stress_energy_state) ? (eTzz[index]) : 0.0;
CCTK_REAL const gt11L = gt11[index];
CCTK_REAL const gt12L = gt12[index];
CCTK_REAL const gt13L = gt13[index];