Skip to content

Commit

Permalink
add tolerance to boundary file write time check (#1447)
Browse files Browse the repository at this point in the history
  • Loading branch information
mbkuhn authored Jan 16, 2025
1 parent 2dd8805 commit 6583842
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion amr-wind/wind_energy/ABLBoundaryPlane.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ void ABLBoundaryPlane::write_file()

// Only output data if at the desired timestep
if ((t_step % m_write_frequency != 0) || ((m_io_mode != io_mode::output)) ||
(time < m_out_start_time)) {
(time < m_out_start_time - constants::LOOSE_TOL)) {
return;
}

Expand Down

0 comments on commit 6583842

Please sign in to comment.