Skip to content

Commit

Permalink
fixed bug
Browse files Browse the repository at this point in the history
  • Loading branch information
psharda committed Jul 25, 2023
1 parent 58d27e7 commit 9f60a17
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/RadBeam/test_radiation_beam.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ constexpr double c = 2.99792458e10; // cm s^-1

template <> struct quokka::EOS_Traits<BeamProblem> {
static constexpr double mean_molecular_weight = C::m_u;
static constexpr double boltzmann_constant = quokka::boltzmann_constant_cgs;
static constexpr double boltzmann_constant = C::k_B;
static constexpr double gamma = 5. / 3.;
static constexpr double mass_code_units = C::m_u;
};
Expand Down
2 changes: 1 addition & 1 deletion src/RayleighTaylor3D/test_hydro3d_rt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ struct RTProblem {

template <> struct quokka::EOS_Traits<RTProblem> {
static constexpr double gamma = 1.4;
static constexpr double mean_molecular_weight = C::m_U;
static constexpr double mean_molecular_weight = C::m_u;
static constexpr double boltzmann_constant = C::k_B;
static constexpr double mass_code_units = C::m_u;
};
Expand Down

0 comments on commit 9f60a17

Please sign in to comment.