aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
authorhinder <hinder@b2a53a04-0f4f-0410-87ed-f9f25ced00cf>2011-09-25 21:43:44 +0000
committerhinder <hinder@b2a53a04-0f4f-0410-87ed-f9f25ced00cf>2011-09-25 21:43:44 +0000
commit32ae652a29c362e93582fbbb718a37152a09cf33 (patch)
tree4ca6d34122e8bd200bb49538032d324381bc4061 /schedule.ccl
parent94234d2c4c76ac16e6e888f1bc62b2564586022b (diff)
Add output of metadata file TwoPunctures.bbh
The format and keys are defined in http://arxiv.org/abs/0709.0093 with additional draft keys defined for the NR-AR project (to be committed to the arXiv version when finalized). Also introduced grid scalars for the ADM energy and angular momentum and the puncture ADM masses. git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/TwoPunctures/trunk@124 b2a53a04-0f4f-0410-87ed-f9f25ced00cf
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl33
1 files changed, 21 insertions, 12 deletions
diff --git a/schedule.ccl b/schedule.ccl
index 4353c66..643ddb5 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -2,6 +2,8 @@
if (CCTK_Equals(initial_data, "twopunctures"))
{
+ STORAGE: energy, angular_momentum, puncture_adm_mass
+
if (keep_u_around) {
STORAGE: puncture_u bare_mass
}
@@ -13,20 +15,27 @@ if (CCTK_Equals(initial_data, "twopunctures"))
if (schedule_in_ADMBase_InitialData)
{
- SCHEDULE TwoPunctures IN ADMBase_InitialData
- {
- LANG: C
- STORAGE: puncture_u bare_mass
- # SYNC: ADMBase::metric ADMBase::curv ADMBase::lapse
- } "Create puncture black hole initial data"
+ SCHEDULE GROUP TwoPunctures_Group IN ADMBase_InitialData
+ {
+ } "TwoPunctures initial data group"
}
else
{
- SCHEDULE TwoPunctures AT Initial AFTER ADMBase_InitialData BEFORE ADMBase_PostInitial AFTER HydroBase_Initial before SetTmunu before HydroBase_Prim2ConInitial
- {
- LANG: C
- STORAGE: puncture_u bare_mass
- # SYNC: ADMBase::metric ADMBase::curv ADMBase::lapse
- } "Create puncture black hole initial data"
+ SCHEDULE GROUP TwoPunctures_Group AT Initial AFTER ADMBase_InitialData BEFORE ADMBase_PostInitial AFTER HydroBase_Initial before SetTmunu before HydroBase_Prim2ConInitial
+ {
+ } "TwoPunctures initial data group"
}
+
+ SCHEDULE TwoPunctures IN TwoPunctures_Group
+ {
+ LANG: C
+ STORAGE: puncture_u bare_mass
+ # SYNC: ADMBase::metric ADMBase::curv ADMBase::lapse
+ } "Create puncture black hole initial data"
+
+ SCHEDULE TwoPunctures_Metadata IN TwoPunctures_Group after TwoPunctures
+ {
+ LANG: C
+ OPTIONS: global
+ } "Output TwoPunctures metadata"
}