We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47a87cc commit 6775d12Copy full SHA for 6775d12
1 file changed
tests/test_static_problem_Holzapfel.py
@@ -67,7 +67,11 @@ def dirichlet_bc(
67
68
# With the HolzapfelOgden model the hydrostatic pressure
69
# should equal the negative of the material parameter a
70
- assert np.allclose(p.x.array, -material_params["a"].to_base_units())
+ # assert np.allclose(p.x.array, -material_params["a"].to_base_units())
71
+
72
+ # However when using the deviatoric strain only,
73
+ # the hydrostatic pressure should be zero
74
+ assert np.allclose(p.x.array, 0.0)
75
# And with no external forces, there should be no displacement
76
assert np.allclose(u.x.array, 0.0)
77
0 commit comments