Skip to content

Commit

Permalink
initialize nse_table_t members
Browse files Browse the repository at this point in the history
this syncs up with eos_t
  • Loading branch information
zingale committed Dec 19, 2023
1 parent 4d7d029 commit c3d126d
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions nse_tabular/nse_table_type.H
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@

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];
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]{};

};

Expand Down

0 comments on commit c3d126d

Please sign in to comment.