aboutsummaryrefslogtreecommitdiff
path: root/CarpetExtra/HydroToy/schedule.ccl
blob: 2a1e5d5362c230617e0cdb59c4d40adc9f99b4bf (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.4 2003/11/05 16:18:39 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"



}