aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
blob: 9e1723eda93053d7d8d6c68e268703e2ba0a099d (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
# Schedule definitions for thorn EOS_Omni


schedule EOS_Omni_Startup AT WRAGH
{
 LANG: Fortran
 OPTIONS: global
} "Set up conversion factors and other fun stuff"

if (nuceos_read_table)
{
  SCHEDULE nuc_eos_readtable_cactus_wrapper AT CCTK_BASEGRID
  {
    LANG: C
    OPTIONS: global
  } "Read EOS HDF5 table"

  SCHEDULE EOS_OMNI_get_energy_shift AT CCTK_BASEGRID AFTER nuc_eos_readtable_cactus_wrapper
  {
    LANG: Fortran
    OPTIONS: global
  } "setup energy_shift in EOS_Omni_Module"

}

if (coldeos_read_table)
{
  SCHEDULE EOS_OMNI_ReadColdTable AT CCTK_BASEGRID
  {
    LANG: Fortran
    OPTIONS: global
  } "Read Cold EOS ASCII table"
}

if (barotropiceos_read_table)
{
  SCHEDULE EOS_OMNI_BarotropicReadTable AT CCTK_BASEGRID
  {
    LANG: Fortran
    OPTIONS: global
  } "Read barotropic EOS ASCII table"
}