From f67b099b9c163bbb871fab364f73796b7fbb6a89 Mon Sep 17 00:00:00 2001 From: Michael Zingale Date: Thu, 7 Dec 2023 13:38:01 -0500 Subject: [PATCH] add missing file --- nse_tabular/nse_table_type.H | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 nse_tabular/nse_table_type.H diff --git a/nse_tabular/nse_table_type.H b/nse_tabular/nse_table_type.H new file mode 100644 index 0000000000..82cebe863d --- /dev/null +++ b/nse_tabular/nse_table_type.H @@ -0,0 +1,23 @@ +#ifndef NSE_TABLE_TYPE_H +#define NSE_TABLE_TYPE_H + +#include +#include + +struct nse_table_t { + + amrex::Real T; + amrex::Real rho; + amrex::Real Ye; + amrex::Real abar; + amrex::Real bea; + amrex::Real dyedt; + amrex::Real dabardt; + amrex::Real dbeadt; + amrex::Real e_nu; + amrex::Real X[NumSpec]; + +}; + + +#endif