Skip to content

Applynig Pressure To Shell Element #3926

Answered by mikerife
AltoAuto asked this question in Q&A
Discussion options

You must be logged in to vote

Hi @AltoAuto I can't really comment as I don't have access to the solid element script. And the results you posted don't match the input (pressure is normal to the material but the results show a in-plane pulling of the material). Here is a example so we can discuss:

from ansys.mapdl.core import launch_mapdl
import os
path = os.getcwd()
mapdl = launch_mapdl(run_location=path)
mapdl.clear()
mapdl.prep7()

# 1. Define Element Type, Section, Material
mapdl.et(1, "SHELL181")
mapdl.sectype(1, "SHELL")
mapdl.secdata(2)  # thickness

mapdl.et(2, "186")

mapdl.mp("EX", 1, 210000)  # MPa
mapdl.mp("NUXY", 1, 0.3)

# 2. Create Geometry (100 mm x 20 mm)
mapdl.blc4(0, 0, 100, 20)
mapdl.block(0, 100, 0, 

Replies: 3 comments 1 reply

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@AltoAuto
Comment options

Comment options

You must be logged in to vote
0 replies
Answer selected by AltoAuto
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants