aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
authorrhaas <rhaas@c83d129a-5a75-4d5a-9c4d-ed3a5855bf45>2013-01-14 14:23:40 +0000
committerrhaas <rhaas@c83d129a-5a75-4d5a-9c4d-ed3a5855bf45>2013-01-14 14:23:40 +0000
commitd7d05c61775119772db5ca37faf2fd06b0457510 (patch)
tree76248226400321a135ce8fb74c184012db9d5d0a /schedule.ccl
parent3d793e03c6cd0a1e452b0b4d9f1a8bff38e5569e (diff)
GRHydro: Starting to push vector potential changes
* incl boundary calls for Avec * disable call to BvecfromAvec from within loop, this one is a schedule function call now. From: Philipp Moesta <pmoesta@tapir.caltech.edu> git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinEvolve/GRHydro/trunk@458 c83d129a-5a75-4d5a-9c4d-ed3a5855bf45
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl17
1 files changed, 11 insertions, 6 deletions
diff --git a/schedule.ccl b/schedule.ccl
index 29ec81f..fa71107 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -1066,10 +1066,17 @@ if (CCTK_Equals(GRHydro_eos_type,"General"))
{
LANG: Fortran
} "Convert initial data given in primive variables to conserved variables - MHD version"
- }
- else if(CCTK_Equals(Bvec_evolution_method,"GRHydro_Avec"))
+ } else if(CCTK_Equals(Bvec_evolution_method,"GRHydro_Avec"))
{
- schedule Conservative2PrimitiveAM IN HydroBase_Con2Prim AS Con2Prim IF GRHydro::execute_MoL_PostStep
+ schedule GRHydro_BvecfromAvec IN HydroBase_Con2Prim
+ {
+ LANG: Fortran
+ } "Populate Bvec from Avec"
+# SCHEDULE group HydroBase_Boundaries AT CCTK_POSTINITIAL AFTER GRHydro_PoloidalMagFieldM AFTER GRHydro_BvecfromAvec
+ SCHEDULE group HydroBase_Boundaries IN HydroBase_Con2Prim AFTER GRHydro_BvecfromAvec
+ {
+ } "Call boundary conditions after magnetic field initial data setup"
+ schedule Conservative2PrimitiveAM IN HydroBase_Con2Prim AS Con2Prim AFTER HydroBase_Boundaries IF GRHydro::execute_MoL_PostStep
{
LANG: Fortran
} "Convert back to primitive variables (general) - MHD with Avec version"
@@ -1078,9 +1085,7 @@ if (CCTK_Equals(GRHydro_eos_type,"General"))
{
LANG: Fortran
} "Convert initial data given in primive variables to conserved variables - MHD with Avec version"
- }
- else
- {
+ } else {
schedule Conservative2Primitive IN HydroBase_Con2Prim AS Con2Prim IF GRHydro::execute_MoL_PostStep
{
LANG: Fortran