We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f35b911 commit 643b52eCopy full SHA for 643b52e
src/pybella/tests/test_unstable_lamb.py
@@ -131,6 +131,7 @@ def __init__(self):
131
self.init_forcing = self.forcing
132
self.rayleigh_bdry_switch = True
133
134
+ tol = 1.0e-2
135
self.diag_state = DiagnosticState(
136
test_name="test_unstable_lamb",
137
file_name="target_unstable_lamb",
@@ -139,13 +140,13 @@ def __init__(self):
139
140
steps=[self.stepmax - 1],
141
plot_compare=True,
142
tolerances={
- "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,
+ "rho": tol,
+ "rhou": tol,
+ "rhov": tol,
+ "rhow": tol,
+ "rhoY": tol,
+ "rhoX": tol,
149
+ "p2_nodes": tol,
150
}
151
)
152
0 commit comments