aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
authorknarf <knarf@b2a53a04-0f4f-0410-87ed-f9f25ced00cf>2006-08-09 10:56:41 +0000
committerknarf <knarf@b2a53a04-0f4f-0410-87ed-f9f25ced00cf>2006-08-09 10:56:41 +0000
commitc43f5da3419ef01e09ee6b4d1599a1a7006d4b3a (patch)
treef6c942163bde2e9a7337e0aa303bfc3aeb97500e /schedule.ccl
parent1e0c86eaad4427d0b760868890184c54f5c4de17 (diff)
- add a parameter to choose when to schedule the ID
- add a parameter for multiplying an already computed lapse to the one computed here This does not change the default behaviour. However, the testsuite fails - but it also failed before this change in the same way. Does anybody know anything about this? -> It fails at exactly one point in the 1D-slices, but only in y and z directions git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/TwoPunctures/trunk@59 b2a53a04-0f4f-0410-87ed-f9f25ced00cf
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl22
1 files changed, 17 insertions, 5 deletions
diff --git a/schedule.ccl b/schedule.ccl
index bc410ca..4d6e4ee 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -12,10 +12,22 @@ if (CCTK_Equals(initial_data, "twopunctures"))
LANG: C
} "Check parameters and thorn needs"
- SCHEDULE TwoPunctures IN ADMBase_InitialData
+ if (schedule_in_ADMBase_InitialData)
{
- LANG: C
- STORAGE: puncture_u
- SYNC: ADMBase::metric ADMBase::curv ADMBase::lapse
- } "Create puncture black hole initial data"
+ SCHEDULE TwoPunctures IN ADMBase_InitialData
+ {
+ LANG: C
+ STORAGE: puncture_u
+ SYNC: ADMBase::metric ADMBase::curv ADMBase::lapse
+ } "Create puncture black hole initial data"
+ }
+ else
+ {
+ SCHEDULE TwoPunctures AT Initial AFTER ADMBase_InitialData BEFORE ADMBase_PostInitial AFTER TOV_Initial_Data
+ {
+ LANG: C
+ STORAGE: puncture_u
+ SYNC: ADMBase::metric ADMBase::curv ADMBase::lapse
+ } "Create puncture black hole initial data"
+ }
}