Skip to content

Commit

Permalink
Merge branch 'master' into ruff2
Browse files Browse the repository at this point in the history
  • Loading branch information
mbkumar committed Oct 30, 2023
2 parents 31618fa + 065bef6 commit cc26cc4
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 @@ -90,6 +90,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 @@ -114,7 +115,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 @@ -130,5 +131,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 cc26cc4

Please sign in to comment.