aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/nuc_eos_cxx/nuc_eos.hh6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/nuc_eos_cxx/nuc_eos.hh b/src/nuc_eos_cxx/nuc_eos.hh
index 576290f..6483d88 100644
--- a/src/nuc_eos_cxx/nuc_eos.hh
+++ b/src/nuc_eos_cxx/nuc_eos.hh
@@ -3,6 +3,8 @@
#include "cctk.h"
+// TODO: remove hard coded constants
+// TODO: introduce defines for table index of variables
#define HAVEGR 1
#define MAX(x, y) (((x) > (y)) ? (x) : (y))
#define MIN(x, y) (((x) < (y)) ? (x) : (y))
@@ -70,7 +72,9 @@ namespace nuc_eos {
// 16 Abar
// 17 Zbar
// 18 Gamma
-
+ enum eos_var {i_logpress=0, i_logenergy, i_entropy, i_munu, i_cs2, i_dedt,
+ i_dpdrhoe, i_dpderho, i_muhat, i_mu_e, i_mu_p, i_mu_n, i_Xa,
+ i_Xh, i_Xn, i_Xp, i_Abar, i_Zbar, i_Gamma};
}
#endif // NUC_EOS_HH