Skip to content

Commit

Permalink
TestODESolvers: Correct schedule
Browse files Browse the repository at this point in the history
  • Loading branch information
eschnett committed Nov 1, 2024
1 parent 472ac7d commit 88ef4ee
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions TestODESolvers/schedule.ccl
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,26 @@ SCHEDULE TestODESolvers_Initial AT initial
WRITES: state2(everywhere)
} "Initialize state vector"

SCHEDULE TestODESolvers_PostStep IN ODESolvers_PostStep
{
LANG: C
OPTIONS: global
SYNC: state state2
} "Synchronize"

SCHEDULE TestODESolvers_RHS IN ODESolvers_RHS
{
LANG: C
READS: state(everywhere), state2(everywhere)
WRITES: rhs(everywhere), rhs2(everywhere)
} "RHS function"
} "Calculate RHS"

SCHEDULE TestODESolvers_PostStep IN ODESolvers_PostStep
SCHEDULE TestODESolvers_RHS AT analysis
{
LANG: C
OPTIONS: global
SYNC: state state2
} "Synchronize"
READS: state(everywhere), state2(everywhere)
WRITES: rhs(everywhere), rhs2(everywhere)
} "Calculate RHS for output"

SCHEDULE TestODESolvers_Error AT analysis
{
Expand Down

0 comments on commit 88ef4ee

Please sign in to comment.