Skip to content

Commit 643b52e

Browse files
committed
further increase tolerance for unstable lamb test
1 parent f35b911 commit 643b52e

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

src/pybella/tests/test_unstable_lamb.py

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ def __init__(self):
131131
self.init_forcing = self.forcing
132132
self.rayleigh_bdry_switch = True
133133

134+
tol = 1.0e-2
134135
self.diag_state = DiagnosticState(
135136
test_name="test_unstable_lamb",
136137
file_name="target_unstable_lamb",
@@ -139,13 +140,13 @@ def __init__(self):
139140
steps=[self.stepmax - 1],
140141
plot_compare=True,
141142
tolerances={
142-
"rho": 1.0e-4,
143-
"rhou": 1.0e-4,
144-
"rhov": 1.0e-4,
145-
"rhow": 1.0e-4,
146-
"rhoY": 1.0e-4,
147-
"rhoX": 1.0e-4,
148-
"p2_nodes": 1.0e-4,
143+
"rho": tol,
144+
"rhou": tol,
145+
"rhov": tol,
146+
"rhow": tol,
147+
"rhoY": tol,
148+
"rhoX": tol,
149+
"p2_nodes": tol,
149150
}
150151
)
151152

0 commit comments

Comments
 (0)