Skip to content

Commit

Permalink
Update Source/driver/Castro_advance_ctu.cpp
Browse files Browse the repository at this point in the history
Co-authored-by: Eric T. Johnson <[email protected]>
  • Loading branch information
zingale and yut23 authored Apr 18, 2024
1 parent c060788 commit cea5564
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/driver/Castro_advance_ctu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ Castro::retry_advance_ctu(Real dt, const advance_status& status)
if (status.suggested_dt > 0.0_rt && status.suggested_dt < dt) {
getLevel(lev).dt_subcycle = status.suggested_dt;
} else {
getLevel(lev).dt_subcycle = std::min(dt, dt_subcycle) * retry_subcycle_factor;
getLevel(lev).dt_subcycle = std::min(dt, getLevel(lev).dt_subcycle) * retry_subcycle_factor;
}
}

Expand Down

0 comments on commit cea5564

Please sign in to comment.