Skip to content

Commit

Permalink
fixed warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
psharda committed Jul 27, 2023
1 parent c9ffd1c commit 95db069
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/RadMarshak/test_radiation_marshak.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ constexpr double alpha_SuOlson = 4.0 * a_rad / eps_SuOlson;
constexpr double T_initial = 1.0e-2;

template <> struct quokka::EOS_Traits<SuOlsonProblem> {
static constexpr double mean_molecular_mass = 1.0;
static constexpr double mean_molecular_weight = 1.0;
static constexpr double boltzmann_constant = 1.0;
static constexpr double gamma = 5. / 3.;
};
Expand Down
2 changes: 1 addition & 1 deletion src/RadMarshakCGS/test_radiation_marshak_cgs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ constexpr double alpha_SuOlson = 4.0 * a_rad / eps_SuOlson;
constexpr double T_initial = 1.0e4; // K

template <> struct quokka::EOS_Traits<SuOlsonProblemCgs> {
static constexpr double mean_molecular_mass = C::m_u;
static constexpr double mean_molecular_weight = C::m_u;
static constexpr double boltzmann_constant = C::k_B;
static constexpr double gamma = 5. / 3.;
};
Expand Down
2 changes: 1 addition & 1 deletion src/RadMatterCoupling/test_radiation_matter_coupling.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ template <> struct SimulationData<CouplingProblem> {
};

template <> struct quokka::EOS_Traits<CouplingProblem> {
static constexpr double mean_molecular_mass = C::m_u;
static constexpr double mean_molecular_weight = C::m_u;
static constexpr double boltzmann_constant = C::k_B;
static constexpr double gamma = 5. / 3.;
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ template <> struct SimulationData<CouplingProblem> {
};

template <> struct quokka::EOS_Traits<CouplingProblem> {
static constexpr double mean_molecular_mass = C::m_u;
static constexpr double mean_molecular_weight = C::m_u;
static constexpr double boltzmann_constant = C::k_B;
static constexpr double gamma = 5. / 3.;
};
Expand Down

0 comments on commit 95db069

Please sign in to comment.