Skip to content

Commit

Permalink
Using solution() call.
Browse files Browse the repository at this point in the history
  • Loading branch information
germa89 committed Dec 11, 2023
1 parent 6da9edb commit 7ce4447
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/00-mapdl-examples/2d_plate_with_a_hole.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@
# Solve the Static Problem
# ~~~~~~~~~~~~~~~~~~~~~~~~
# Solve the static analysis
mapdl.run("/SOLU")
mapdl.solution()
mapdl.antype("STATIC")
output = mapdl.solve()
mapdl.finish()
Expand Down Expand Up @@ -314,7 +314,7 @@ def compute_stress_con(ratio):

# Solve the Static Problem
# ~~~~~~~~~~~~~~~~~~~~~~~~
mapdl.run("/SOLU")
mapdl.solution()
mapdl.antype("STATIC")
mapdl.solve()
mapdl.finish()
Expand Down

0 comments on commit 7ce4447

Please sign in to comment.