# Schedule definitions for thorn WaveToy # $Header$ # Only schedule wavetoy routines if user is running wavetoy # --------------------------------------------------------- #if (use_wavetoy == 1) #{ schedule WaveToy_InitSymBound at CCTK_BASEGRID { LANG: Fortran } "Schedule symmetries for Wave Toy" schedule WaveToy_CheckParameters at CCTK_PARAMCHECK { LANG: Fortran } "Check parameters for Wave Toy" # The basic fields always need memory and communication # ----------------------------------------------------- STORAGE: scalarfields COMMUNICATION: scalarfields schedule WaveToy_InitialData at CCTK_INITIAL { LANG: Fortran } "Initialisation of example 3D wave equation" # Scalartmps are needed, without communication, during evolution # -------------------------------------------------------------- schedule wavetoy_evolution at CCTK_EVOL { LANG: Fortran STORAGE: scalartmps } "Evolution of example 3D wave equation" #}