Skip to content

Commit

Permalink
CHG: Adjusted tolerances
Browse files Browse the repository at this point in the history
  • Loading branch information
TidbitSoftware committed May 30, 2024
1 parent 1eecdda commit 7c9d257
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/NightlyRun/test206.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ md=solve(md,'Thermal');

//Fields and tolerances to track changes
field_names =['Temperature','BasalforcingsGroundediceMeltingRate'];
field_tolerances=[1e-13,5e-6];
field_tolerances=[1e-13,6e-6];
field_values=[
(md.results.ThermalSolution[0].Temperature),
(md.results.ThermalSolution[0].BasalforcingsGroundediceMeltingRate),
Expand Down
2 changes: 1 addition & 1 deletion test/NightlyRun/test206.m
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

%Fields and tolerances to track changes
field_names ={'Temperature','BasalforcingsGroundediceMeltingRate'};
field_tolerances={1e-13,5e-6};
field_tolerances={1e-13,6e-6};
field_values={...
(md.results.ThermalSolution.Temperature),...
(md.results.ThermalSolution.BasalforcingsGroundediceMeltingRate),...
Expand Down
2 changes: 1 addition & 1 deletion test/NightlyRun/test206.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@
# Fields and tolerances to track changes

field_names = ['Temperature', 'BasalforcingsGroundediceMeltingRate']
field_tolerances = [1e-13, 5e-6]
field_tolerances = [1e-13, 6e-6]
field_values = [md.results.ThermalSolution.Temperature, md.results.ThermalSolution.BasalforcingsGroundediceMeltingRate]

0 comments on commit 7c9d257

Please sign in to comment.