aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
authorhawke <hawke@578cdeb0-5ea1-4b81-8215-5a3b8777ee0b>2005-05-09 13:25:35 +0000
committerhawke <hawke@578cdeb0-5ea1-4b81-8215-5a3b8777ee0b>2005-05-09 13:25:35 +0000
commit9d6165856a6a21b91b686c71064525fef6295599 (patch)
treeb0dce67f215af0fb8a0b5a991c5a57a3bcdec5c3 /schedule.ccl
parent4cd986841fb0640801ba497f7d0b52a7f302a264 (diff)
Provide a new schedule bin MoL_RHSBoundaries:
############################################################### ### Certain operations, specifically boundary conditions ### ### applied to the RHS must be performed after all other ### ### operations. These can be scheduled in this bin, under ### ### the assumption that things like dissipation are ### ### scheduled in the MoL_PostRHS bin. It is the users ### ### problem to ensure that this is really done. ### ############################################################### Fixes PR/1924. git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/MoL/trunk@90 578cdeb0-5ea1-4b81-8215-5a3b8777ee0b
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl13
1 files changed, 13 insertions, 0 deletions
diff --git a/schedule.ccl b/schedule.ccl
index 55af153..add994d 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -508,6 +508,19 @@ schedule GROUP MoL_PostRHS IN MoL_Step AFTER MoL_CalcRHS BEFORE (MoL_NaNCheck Mo
{
} "Modify RHS functions"
+###############################################################
+### Certain operations, specifically boundary conditions ###
+### applied to the RHS must be performed after all other ###
+### operations. These can be scheduled in this bin, under ###
+### the assumption that things like dissipation are ###
+### scheduled in the MoL_PostRHS bin. It is the users ###
+### problem to ensure that this is really done. ###
+###############################################################
+
+schedule GROUP MoL_RHSBoundaries IN MoL_Step AFTER MoL_PostRHS BEFORE (MoL_NaNCheck MoL_Add)
+{
+} "Any 'final' modifications to the RHS functions (boundaries etc.)"
+
#####################################################
### If required, check for any NaNs in the RHSs ###
#####################################################