Roller compression analysis: null pressure output #859
-
Hello, I used a previous script using Felupe for computing radial deformation and pressure contact of a rubber roller on flat shape. This model integrates a Mooney-Rivlin model for the rubber, and isotropic material for the roller coating (outer skin). Could you please help ? here is the python script: |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Remark: it is strange, but this script does not work if launched as a notebook in VS Code (does not converge): |
Beta Was this translation helpful? Give feedback.
-
Hi @yvanblanchard, you have to replace boundary = fem.RegionQuadBoundary(container.meshes[0], mask=outer, ensure_3d=True) with boundary = fem.RegionQuadBoundary(container.meshes[1], mask=outer, ensure_3d=True) or boundary = fem.RegionQuadBoundary(mesh, mask=outer, ensure_3d=True) because the first sub-mesh |
Beta Was this translation helpful? Give feedback.
-
Thank you @adtzlr , it works fine |
Beta Was this translation helpful? Give feedback.
Hi @yvanblanchard,
you have to replace
with
or
because the first sub-mesh
container.meshes[0]
does not contain cells which are connected to points on the outer radius.