Skip to content

Commit

Permalink
adjust error tolerance for ChannelFlow
Browse files Browse the repository at this point in the history
  • Loading branch information
BenWibking committed Nov 6, 2024
1 parent 98797d1 commit e474732
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/problems/NSCBC/channel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ auto problem_main() -> int

// Compute test success condition
int status = 0;
const double error_tol = 3.0e-5;
const double error_tol = 3.5e-5;
if (epsilon > error_tol) {
status = 1;
}
Expand Down

0 comments on commit e474732

Please sign in to comment.