aboutsummaryrefslogtreecommitdiff
path: root/CarpetExtra/HydroToy/schedule.ccl
blob: 29d27ecc26f1daa651396fbdbb8f0919d0f87a62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Schedule definitions for thorn HydroToy
# $Header: /home/eschnett/C/carpet/Carpet/CarpetExtra/HydroToy/schedule.ccl,v 1.3 2002/04/29 11:28:01 schnetter Exp $

if (hydrotoy_active) {



STORAGE: hydroevolve[3]



# Startup

schedule HydroToy_Startup at STARTUP
{
  LANG: Fortran
} "Register banner"

schedule HydroToy_InitSymBound at BASEGRID
{
  LANG: Fortran
  OPTIONS: global
} "Schedule symmetries"



# Euler Predictor-Corrector integration

schedule HydroToy_EulerPredictor at EVOL
{
  LANG: Fortran
  STORAGE: hydrotemps
  SYNC: hydroevolve
} "Euler predictor step"

schedule HydroToy_EulerCorrector at EVOL after HydroToy_EulerPredictor
{
  LANG: Fortran
  STORAGE: hydrotemps
  SYNC: hydroevolve
} "Euler corrector step"



}