Skip to content

Commit

Permalink
Remove mention of fixed point iterations if not taking any (#1306)
Browse files Browse the repository at this point in the history
  • Loading branch information
marchdf authored Oct 21, 2024
1 parent 8972c0f commit eec57d1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions amr-wind/incflo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -328,8 +328,10 @@ void incflo::do_advance(const int fixed_point_iteration)
if (m_prescribe_vel && fixed_point_iteration == 0) {
prescribe_advance();
} else {
amrex::Print() << "Fixed point iteration " << fixed_point_iteration
<< std::endl;
if (m_fixed_point_iterations > 1) {
amrex::Print() << "Fixed point iteration " << fixed_point_iteration
<< std::endl;
}
advance(fixed_point_iteration);
}
if (m_sim.has_overset()) {
Expand Down

0 comments on commit eec57d1

Please sign in to comment.