Skip to content

Commit

Permalink
Small style fix to lathe example (#1553)
Browse files Browse the repository at this point in the history
Small style fix
  • Loading branch information
germa89 authored Oct 21, 2022
1 parent 6535f87 commit 7a94491
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions examples/00-mapdl-examples/lathe_cutter.py
Original file line number Diff line number Diff line change
@@ -56,7 +56,7 @@
Demonstrate extended methods and writing a list to a file.
7. **Advanced plotting**
Use of `mesh.grid <https://mapdldocs.pyansys.com/mapdl_commands/graphics/_autosummary/ansys.mapdl.core.Mapdl.grid.html>`_
Use of :class:`pyvista.UnstructuredGrid`
for additional postprocessing.
@@ -85,9 +85,9 @@
# has become ``run_location``.
# You could use ``run_location`` to specify the MAPDL run location. For example:
#
# ..code:: python3
# .. code:: python3
#
# mapdl = launch_mapdl(run_location=path)
# mapdl = launch_mapdl(run_location=path)
#
# Otherwise, the MAPDL working directory is stored in ``mapdl.directory``. In this
# directory, MAPDL will create some of the images we will show later.
@@ -339,8 +339,7 @@
###############################################################################
# Results as lists, arrays, and DataFrames
# -----------------------------------------
# Using `mapdl.prnsol <https://mapdldocs.pyansys.com/mapdl_commands/post1/_autosummary/ansys.mapdl.core.Mapdl.prnsol.html>`_
# to check
# Using :meth:`mapdl.prnsol` to check
print(mapdl.prnsol("S", "PRIN"))

###############################################################################

0 comments on commit 7a94491

Please sign in to comment.