Skip to content

Commit

Permalink
Merge branch 'master' into ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
mbkumar committed Oct 30, 2023
2 parents b21c626 + 065bef6 commit 03390ef
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/geo/test_strainopt.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ def subtest_binormal_curvature(self, order, centroid):
J.x = dofs - eps*h
f2 = J.J()
errf = np.abs((f1-f2)/(2*eps) - df)
assert errf < 0.3 * errf_old
errf_old = errf
else:
# Binormal curvature vanishes in Frenet frame
Expand All @@ -115,7 +116,7 @@ def subtest_torsion(self, order, centroid):
else:
framedcurve = FramedCurveFrenet(c, rotation)

J = LPTorsionalStrainPenalty(framedcurve, width=1e-3, p=2, threshold=1e-4)
J = LPTorsionalStrainPenalty(framedcurve, width=1e-3, p=2, threshold=1e-8)

dofs = J.x

Expand All @@ -131,5 +132,6 @@ def subtest_torsion(self, order, centroid):
J.x = dofs - eps*h
f2 = J.J()
errf = np.abs((f1-f2)/(2*eps) - df)
assert errf < 0.3 * errf_old
errf_old = errf

0 comments on commit 03390ef

Please sign in to comment.