Skip to content

Commit

Permalink
Fix offset temp.
Browse files Browse the repository at this point in the history
  • Loading branch information
AMLattanzi committed Jul 9, 2024
1 parent ea49ef7 commit 026381f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Utils/Microphysics_Utils.H
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ amrex::Real erf_esatw (amrex::Real t) {
amrex::Real a7i = -0.468258100e-12;
amrex::Real a8i = 0.466533033e-15;
amrex::Real Tc = std::max(-80.0, t-273.16);
amrex::Real Tc = std::max(-80.0, t-273.15);
amrex::Real esatw;
if (t<=273.15){
Expand Down

0 comments on commit 026381f

Please sign in to comment.