aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschnetter <schnetter@e296648e-0e4f-0410-bd07-d597d9acff87>2005-05-11 16:07:21 +0000
committerschnetter <schnetter@e296648e-0e4f-0410-bd07-d597d9acff87>2005-05-11 16:07:21 +0000
commit524023c9e80dd7af19e8df4cf5d493b70275f9d0 (patch)
tree6e6633530d5b5b87677e95da6969a5710f300a34
parente79303970804099dd00486c4c74379dfc67ac335 (diff)
Schedule initial data in the ADMBase_InitialData group instead of only
in the group initial, so that it is guaranteed that initial data are calculated before BSSN converts to its variables. git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/Exact/trunk@229 e296648e-0e4f-0410-bd07-d597d9acff87
-rw-r--r--schedule.ccl10
1 files changed, 5 insertions, 5 deletions
diff --git a/schedule.ccl b/schedule.ccl
index a3c4634..09a7d32 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -29,7 +29,7 @@ OPTIONS: global
# decode/copy parameters into grid scalars
# (to share them properly so Calc_Tmunu code can see them even
# though it's compiled in other thorns)
-Schedule Exact__decode_pars at INITIAL
+Schedule Exact__decode_pars in ADMBase_InitialData
{
LANG: Fortran
} "decode/copy thorn Exact parameters into grid scalars"
@@ -38,7 +38,7 @@ LANG: Fortran
if (CCTK_Equals(initial_data,"exact"))
{
- schedule Exact__initialize at CCTK_INITIAL after Exact__decode_pars
+ schedule Exact__initialize in ADMBase_InitialData after Exact__decode_pars
{
LANG: Fortran
} "Set initial data from exact solution on a trivial slice"
@@ -50,7 +50,7 @@ if (CCTK_Equals(initial_data,"exact"))
if ( (CCTK_Equals(initial_data,"slice")) && ! (CCTK_Equals(evolution_method,"slice")) )
{
- schedule Exact__slice_initialize at CCTK_INITIAL after Exact__decode_pars
+ schedule Exact__slice_initialize in ADMBase_InitialData after Exact__decode_pars
{
STORAGE: Exact_slice
LANG: Fortran
@@ -66,7 +66,7 @@ if ( (CCTK_Equals(initial_data,"slice")) && ! (CCTK_Equals(evolution_method,"sli
if ( (CCTK_Equals(initial_lapse,"exact")) || (CCTK_Equals(initial_shift,"exact")) )
{
- schedule Exact__gauge at CCTK_INITIAL after Exact__decode_pars
+ schedule Exact__gauge in ADMBase_InitialData after Exact__decode_pars
{
LANG: Fortran
} "Set initial lapse and/or shift from exact solution on a trivial slice"
@@ -105,7 +105,7 @@ if ( (CCTK_Equals(evolution_method,"slice")) && (CCTK_Equals(initial_data,"slice
STORAGE: Exact_slicetemp1
STORAGE: Exact_slicetemp2
- schedule Exact__slice_initialize at CCTK_INITIAL after Exact__decode_pars
+ schedule Exact__slice_initialize in ADMBase_InitialData after Exact__decode_pars
{
LANG: Fortran
} "Set initial data from exact solution on arbitrary slice"