aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
authorrideout <rideout@80bd93c7-81bc-453a-9e3f-619c0b4f6fe4>2003-05-21 13:48:09 +0000
committerrideout <rideout@80bd93c7-81bc-453a-9e3f-619c0b4f6fe4>2003-05-21 13:48:09 +0000
commit1b7e1fbf33f4c8e8d4d6e02cbe08426b39ca8a14 (patch)
tree88e084776cfd19023e2254bc2026d0e751cbb2ef /schedule.ccl
parent5bfd18a89278c2c2ecee86d6fcdf135cb8794bb3 (diff)
Use the new boundary api.
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/ADMAnalysis/trunk@18 80bd93c7-81bc-453a-9e3f-619c0b4f6fe4
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl12
1 files changed, 10 insertions, 2 deletions
diff --git a/schedule.ccl b/schedule.ccl
index 9f119ce..52cadac 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -33,9 +33,17 @@ SCHEDULE ADMAnalysis_CurvCartToSphere AT CCTK_ANALYSIS
TRIGGERS: spherical_curv
} "Calculate the spherical ex. curvature in r, theta(q), phi(p)"
-SCHEDULE ADMAnalysis_Ricci AT CCTK_ANALYSIS
+schedule group RicciGroup at CCTK_ANALYSIS
{
STORAGE: ricci_tensor, ricci_scalar, detofg
- LANG: C
TRIGGERS: ricci_tensor, ricci_scalar
+} "Calculate Ricci tensor, with boundary conditions"
+
+SCHEDULE ADMAnalysis_Ricci in RicciGroup
+{
+ LANG: C
} "Calculation of the Ricci tensor"
+
+schedule GROUP ApplyBCs as ADMAnalysis_ApplyBCs in RicciGroup after ADMAnalysis_Ricci
+{
+} "Apply boundary conditions"