Skip to content

Commit

Permalink
initialize nse_table_t members (#1418)
Browse files Browse the repository at this point in the history
this syncs up with eos_t
  • Loading branch information
zingale authored Dec 20, 2023
1 parent 925e0ce commit 4a44497
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 4a44497

Please sign in to comment.