Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Mechanical name as it is a product. #197

Merged
merged 3 commits into from
Mar 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions examples/00_basic/example_01_simple_structural_solve.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
print(f"Downloaded the geometry file to: {geometry_path}")

# %%
# Launch mechanical
# Launch Mechanical
# ~~~~~~~~~~~~~~~~~
# Launch a new Mechanical session in batch, setting the ``cleanup_on_exit``
# argument to ``False``. To close this Mechanical session when finished,
Expand Down Expand Up @@ -210,8 +210,8 @@ def write_file_contents_to_console(path):
os.remove(solve_out_local_path)

# %%
# Close mechanical
# Close Mechanical
# ~~~~~~~~~~~~~~~~
# Close the mechanical instance.
# Close the Mechanical session.

mechanical.exit()
6 changes: 3 additions & 3 deletions examples/00_basic/example_02_capture_images.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
print(f"Downloaded the script files to: {script_file_path}")

# %%
# Launch mechanical
# Launch Mechanical
# ~~~~~~~~~~~~~~~~~
# Launch a new Mechanical session in batch, setting the ``cleanup_on_exit``
# argument to ``False``. To close this Mechanical session when finished,
Expand Down Expand Up @@ -136,8 +136,8 @@ def display_image(path):
mechanical.clear()

###########################################################
# Close mechanical
# Close Mechanical
# ~~~~~~~~~~~~~~~~
# Close the mechanical instance.
# Close the Mechanical instance.

mechanical.exit()
6 changes: 3 additions & 3 deletions examples/00_basic/example_03_show_object_properties.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
print(f"Downloaded the MECHDAT file to: {mechdat_path}")

# %%
# Launch mechanical
# Launch Mechanical
# ~~~~~~~~~~~~~~~~~
# Launch a new Mechanical session in batch, setting the ``cleanup_on_exit``
# argument to ``False``. To close this Mechanical session when finished,
Expand Down Expand Up @@ -86,8 +86,8 @@
mechanical.clear()

# %%
# Close mechanical
# Close Mechanical
# ~~~~~~~~~~~~~~~~
# Close the mechanical instance.
# Close the Mechanical instance.

mechanical.exit()
Loading