aboutsummaryrefslogtreecommitdiff
path: root/src/EOS_GP_Setup.c
blob: 7bc3aa2a28215ecd0f867695ac1445715a91574c (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#include "cctk.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"

#include "util_String.h"
#include "util_ErrorCodes.h"
#include "util_Table.h"

#include "EOS_GP.h"

void EOS_GP_Startup (CCTK_ARGUMENTS)
{
  DECLARE_CCTK_ARGUMENTS;
  DECLARE_CCTK_PARAMETERS;
  
  CCTK_INT ierr, table_handle;
  
  table_handle = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
  
  Util_TableSetInt(table_handle,
                   N_INDEPS,
                   "N independent variables");
  Util_TableSetInt(table_handle,
                   N_DEPS,
                   "N dependent variables");
  Util_TableSetString(table_handle,
                      "Rho",
                      "Independent variable names");
  Util_TableSetString(table_handle,
                      "Pressure SpecificInternalEnergy DPressureDRho DPressureDSpecificInternalEnergy c_s^2",
                      "Dependent variable names");
  Util_TableSetString(table_handle,
                      "Polytrope",
                      "EOS Name");

  ierr = EOS_RegisterCall(table_handle,
                          EOS_GP_SetArray);
  if (ierr)
  {
    CCTK_WARN(0, "Failed to set up EOS_Polytrope call");
  }

  Util_TableSetString(table_handle,
                      "Pressure",
                      "Independent variable names");
  Util_TableSetString(table_handle,
                      "Rho SpecificInternalEnergy DPressureDRho DPressureDSpecificInternalEnergy c_s^2",
                      "Dependent variable names");
  Util_TableSetString(table_handle,
                      "Inverse Polytrope",
                      "EOS Name");

  ierr = EOS_RegisterCall(table_handle,
                          EOS_GP_Inverse_SetArray);
  if (ierr)
  {
    CCTK_WARN(0, "Failed to set up EOS_Polytrope (inverse) call");
  }
}