Skip to content

Commit

Permalink
Tighten tolerances even more
Browse files Browse the repository at this point in the history
  • Loading branch information
A-CGray committed Jun 1, 2023
1 parent a769c19 commit a558e6e
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion tests/constitutive_tests/test_basic_beam_constitutive.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def setUp(self):
self.rtol = 1e-11
else:
self.dh = 1e-8
self.rtol = 1e-3
self.rtol = 1e-6
self.dtype = TACS.dtype

self.atol = np.clip(1e-5 * self.rtol, 1e-8, 1e-14)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def setUp(self):
self.rtol = 1e-12
else:
self.dh = 1e-8
self.rtol = 1e-3
self.rtol = 1e-6
self.dtype = TACS.dtype

self.atol = np.clip(1e-5 * self.rtol, 1e-8, 1e-14)
Expand Down
2 changes: 1 addition & 1 deletion tests/constitutive_tests/test_dof_spring_constitutive.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def setUp(self):
self.rtol = 1e-11
else:
self.dh = 1e-8
self.rtol = 1e-3
self.rtol = 1e-6
self.dtype = TACS.dtype

self.atol = np.clip(1e-5 * self.rtol, 1e-8, 1e-14)
Expand Down
2 changes: 1 addition & 1 deletion tests/constitutive_tests/test_general_mass_constitutive.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def setUp(self):
self.rtol = 1e-11
else:
self.dh = 1e-8
self.rtol = 1e-3
self.rtol = 1e-6
self.dtype = TACS.dtype

self.atol = np.clip(1e-5 * self.rtol, 1e-8, 1e-14)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def setUp(self):
self.rtol = 1e-11
else:
self.dh = 1e-8
self.rtol = 1e-3
self.rtol = 1e-6
self.dtype = TACS.dtype

self.atol = np.clip(1e-5 * self.rtol, 1e-8, 1e-14)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def setUp(self):
self.atol = 1e-5
else:
self.dh = 1e-8
self.rtol = 1e-3
self.rtol = 1e-6
self.atol = 1e-1

self.dtype = TACS.dtype
Expand Down
2 changes: 1 addition & 1 deletion tests/constitutive_tests/test_iso_shell_constitutive.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def setUp(self):
self.rtol = 1e-11
else:
self.dh = 1e-8
self.rtol = 1e-3
self.rtol = 1e-6
self.dtype = TACS.dtype

self.atol = np.clip(1e-5 * self.rtol, 1e-8, 1e-14)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def setUp(self):
self.atol = 1e-5
else:
self.dh = 1e-8
self.rtol = 1e-3
self.rtol = 1e-6
self.atol = 1e-1
self.dtype = TACS.dtype

Expand Down
2 changes: 1 addition & 1 deletion tests/constitutive_tests/test_pcm_constitutive.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def setUp(self):
self.rtol = 1e-11
else:
self.dh = 1e-8
self.rtol = 1e-3
self.rtol = 1e-6
self.dtype = TACS.dtype

self.atol = np.clip(1e-5 * self.rtol, 1e-8, 1e-14)
Expand Down
2 changes: 1 addition & 1 deletion tests/constitutive_tests/test_plane_stress_constitutive.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def setUp(self):
self.rtol = 1e-11
else:
self.dh = 1e-8
self.rtol = 1e-3
self.rtol = 1e-6
self.dtype = TACS.dtype

self.atol = np.clip(1e-5 * self.rtol, 1e-8, 1e-14)
Expand Down
2 changes: 1 addition & 1 deletion tests/constitutive_tests/test_point_mass_constitutive.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def setUp(self):
self.rtol = 1e-11
else:
self.dh = 1e-8
self.rtol = 1e-3
self.rtol = 1e-6
self.dtype = TACS.dtype

self.atol = np.clip(1e-5 * self.rtol, 1e-8, 1e-14)
Expand Down
2 changes: 1 addition & 1 deletion tests/constitutive_tests/test_solid_constitutive.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def setUp(self):
self.rtol = 1e-11
else:
self.dh = 1e-8
self.rtol = 1e-3
self.rtol = 1e-6
self.dtype = TACS.dtype

self.atol = np.clip(1e-5 * self.rtol, 1e-8, 1e-14)
Expand Down

0 comments on commit a558e6e

Please sign in to comment.