Skip to content

Commit

Permalink
adjust error tol
Browse files Browse the repository at this point in the history
  • Loading branch information
BenWibking committed Jan 24, 2024
1 parent 79e7323 commit f658fef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BinaryOrbitCIC/binary_orbit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ auto problem_main() -> int
amrex::Print() << "max particle separation = " << max_err << " cell widths.\n";

int status = 1;
const float max_err_tol = 0.15;
const float max_err_tol = 0.18; // max error tol in cell widths
if (max_err < max_err_tol) {
status = 0;
}
Expand Down

0 comments on commit f658fef

Please sign in to comment.