ansys-mechanical-core 0.11.11__py3-none-any.whl → 0.11.13__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ansys/mechanical/core/_version.py +1 -0
- ansys/mechanical/core/embedding/app.py +2 -3
- ansys/mechanical/core/embedding/background.py +11 -2
- ansys/mechanical/core/embedding/enum_importer.py +1 -1
- ansys/mechanical/core/embedding/imports.py +2 -0
- ansys/mechanical/core/embedding/initializer.py +6 -1
- ansys/mechanical/core/embedding/logger/__init__.py +1 -1
- ansys/mechanical/core/embedding/poster.py +33 -1
- ansys/mechanical/core/embedding/resolver.py +12 -5
- ansys/mechanical/core/embedding/rpc/__init__.py +36 -0
- ansys/mechanical/core/embedding/rpc/client.py +237 -0
- ansys/mechanical/core/embedding/rpc/server.py +382 -0
- ansys/mechanical/core/embedding/rpc/utils.py +120 -0
- ansys/mechanical/core/embedding/runtime.py +22 -0
- ansys/mechanical/core/feature_flags.py +1 -0
- ansys/mechanical/core/ide_config.py +5 -5
- ansys/mechanical/core/mechanical.py +34 -15
- ansys/mechanical/core/misc.py +2 -2
- ansys/mechanical/core/pool.py +8 -8
- ansys/mechanical/core/run.py +3 -3
- {ansys_mechanical_core-0.11.11.dist-info → ansys_mechanical_core-0.11.13.dist-info}/METADATA +42 -29
- {ansys_mechanical_core-0.11.11.dist-info → ansys_mechanical_core-0.11.13.dist-info}/RECORD +25 -21
- {ansys_mechanical_core-0.11.11.dist-info → ansys_mechanical_core-0.11.13.dist-info}/LICENSE +0 -0
- {ansys_mechanical_core-0.11.11.dist-info → ansys_mechanical_core-0.11.13.dist-info}/WHEEL +0 -0
- {ansys_mechanical_core-0.11.11.dist-info → ansys_mechanical_core-0.11.13.dist-info}/entry_points.txt +0 -0
@@ -32,12 +32,12 @@ import pathlib
|
|
32
32
|
import socket
|
33
33
|
import threading
|
34
34
|
import time
|
35
|
+
from typing import Optional
|
36
|
+
import warnings
|
35
37
|
import weakref
|
36
38
|
|
37
39
|
import ansys.api.mechanical.v0.mechanical_pb2 as mechanical_pb2
|
38
40
|
import ansys.api.mechanical.v0.mechanical_pb2_grpc as mechanical_pb2_grpc
|
39
|
-
import ansys.platform.instancemanagement as pypim
|
40
|
-
from ansys.platform.instancemanagement import Instance
|
41
41
|
import ansys.tools.path as atp
|
42
42
|
import grpc
|
43
43
|
|
@@ -57,6 +57,16 @@ from ansys.mechanical.core.misc import (
|
|
57
57
|
threaded,
|
58
58
|
)
|
59
59
|
|
60
|
+
# Check if PyPIM is installed
|
61
|
+
try:
|
62
|
+
import ansys.platform.instancemanagement as pypim # pragma: nocover noqa: F401
|
63
|
+
|
64
|
+
_HAS_ANSYS_PIM = True
|
65
|
+
"""Whether or not PyPIM exists."""
|
66
|
+
except ImportError:
|
67
|
+
_HAS_ANSYS_PIM = False
|
68
|
+
|
69
|
+
|
60
70
|
# Checking if tqdm is installed.
|
61
71
|
# If it is, the default value for progress_bar is true.
|
62
72
|
try:
|
@@ -235,7 +245,7 @@ def check_valid_mechanical():
|
|
235
245
|
|
236
246
|
>>> from ansys.mechanical.core import mechanical
|
237
247
|
>>> from ansys.tools.path import change_default_mechanical_path
|
238
|
-
>>> mechanical_path = 'C:/Program Files/ANSYS Inc/
|
248
|
+
>>> mechanical_path = 'C:/Program Files/ANSYS Inc/v251/aisol/bin/win64/AnsysWBU.exe'
|
239
249
|
>>> change_default_mechanical_path(mechanical_pth)
|
240
250
|
>>> mechanical.check_valid_mechanical()
|
241
251
|
True
|
@@ -450,8 +460,8 @@ class Mechanical(object):
|
|
450
460
|
|
451
461
|
# connect and validate to the channel
|
452
462
|
self._multi_connect(timeout=timeout)
|
453
|
-
|
454
463
|
self.log_info("Mechanical is ready to accept grpc calls.")
|
464
|
+
self._rpc_type = "grpc"
|
455
465
|
|
456
466
|
def __del__(self): # pragma: no cover
|
457
467
|
"""Clean up on exit."""
|
@@ -479,7 +489,7 @@ class Mechanical(object):
|
|
479
489
|
Get the version of the connected Mechanical instance.
|
480
490
|
|
481
491
|
>>> mechanical.version
|
482
|
-
'
|
492
|
+
'251'
|
483
493
|
"""
|
484
494
|
if self._version is None:
|
485
495
|
try:
|
@@ -940,7 +950,7 @@ class Mechanical(object):
|
|
940
950
|
Return a string value from Project object.
|
941
951
|
|
942
952
|
>>> mechanical.run_python_script('ExtAPI.DataModel.Project.ProductVersion')
|
943
|
-
'
|
953
|
+
'2025 R1'
|
944
954
|
|
945
955
|
Return an empty string, when you try to return the Project object.
|
946
956
|
|
@@ -1904,7 +1914,7 @@ def launch_grpc(
|
|
1904
1914
|
|
1905
1915
|
Launch Mechanical using a specified executable file.
|
1906
1916
|
|
1907
|
-
>>> exec_file_path = 'C:/Program Files/ANSYS Inc/
|
1917
|
+
>>> exec_file_path = 'C:/Program Files/ANSYS Inc/v251/aisol/bin/win64/AnsysWBU.exe'
|
1908
1918
|
>>> mechanical = launch_mechanical(exec_file_path)
|
1909
1919
|
|
1910
1920
|
"""
|
@@ -1932,7 +1942,9 @@ def launch_grpc(
|
|
1932
1942
|
return port
|
1933
1943
|
|
1934
1944
|
|
1935
|
-
def launch_remote_mechanical(
|
1945
|
+
def launch_remote_mechanical(
|
1946
|
+
version=None,
|
1947
|
+
) -> (grpc.Channel, Optional["Instance"]): # pragma: no cover
|
1936
1948
|
"""Start Mechanical remotely using the Product Instance Management (PIM) API.
|
1937
1949
|
|
1938
1950
|
When calling this method, you must ensure that you are in an environment
|
@@ -1943,14 +1955,21 @@ def launch_remote_mechanical(version=None) -> (grpc.Channel, Instance): # pragm
|
|
1943
1955
|
Parameters
|
1944
1956
|
----------
|
1945
1957
|
version : str, optional
|
1946
|
-
Mechanical version to run in the three-digit format. For example, ``"
|
1947
|
-
run
|
1958
|
+
Mechanical version to run in the three-digit format. For example, ``"251"`` to
|
1959
|
+
run 2025 R1. The default is ``None``, in which case the server runs the latest
|
1948
1960
|
installed version.
|
1949
1961
|
|
1950
1962
|
Returns
|
1951
1963
|
-------
|
1952
1964
|
Tuple containing channel, remote_instance.
|
1953
1965
|
"""
|
1966
|
+
# Display warning if PyPIM is not installed
|
1967
|
+
if not _HAS_ANSYS_PIM:
|
1968
|
+
warnings.warn(
|
1969
|
+
"Installation of pim option required! Use ``pip install ansys-mechanical-core[pim]``."
|
1970
|
+
)
|
1971
|
+
return
|
1972
|
+
|
1954
1973
|
pim = pypim.connect()
|
1955
1974
|
instance = pim.create_instance(product_name="mechanical", product_version=version)
|
1956
1975
|
|
@@ -2060,9 +2079,9 @@ def launch_mechanical(
|
|
2060
2079
|
When ``False``, Mechanical is not exited when the garbage for this Mechanical
|
2061
2080
|
instance is collected.
|
2062
2081
|
version : str, optional
|
2063
|
-
Mechanical version to run in the three-digit format. For example, ``"
|
2064
|
-
for
|
2065
|
-
latest installed version. If PyPIM is configured and ``
|
2082
|
+
Mechanical version to run in the three-digit format. For example, ``"251"``
|
2083
|
+
for 2025 R1. The default is ``None``, in which case the server runs the
|
2084
|
+
latest installed version. If PyPIM is configured and ``exec_file=None``,
|
2066
2085
|
PyPIM launches Mechanical using its ``version`` parameter.
|
2067
2086
|
keep_connection_alive : bool, optional
|
2068
2087
|
Whether to keep the gRPC connection alive by running a background thread
|
@@ -2089,7 +2108,7 @@ def launch_mechanical(
|
|
2089
2108
|
|
2090
2109
|
Launch Mechanical using a specified executable file.
|
2091
2110
|
|
2092
|
-
>>> exec_file_path = 'C:/Program Files/ANSYS Inc/
|
2111
|
+
>>> exec_file_path = 'C:/Program Files/ANSYS Inc/v251/aisol/bin/win64/AnsysWBU.exe'
|
2093
2112
|
>>> mech = launch_mechanical(exec_file_path)
|
2094
2113
|
|
2095
2114
|
Connect to an existing Mechanical instance at IP address ``192.168.1.30`` on port
|
@@ -2099,7 +2118,7 @@ def launch_mechanical(
|
|
2099
2118
|
"""
|
2100
2119
|
# Start Mechanical with PyPIM if the environment is configured for it
|
2101
2120
|
# and a directive on how to launch Mechanical was not passed.
|
2102
|
-
if pypim.is_configured() and exec_file is None: # pragma: no cover
|
2121
|
+
if _HAS_ANSYS_PIM and pypim.is_configured() and exec_file is None: # pragma: no cover
|
2103
2122
|
LOG.info("Starting Mechanical remotely. The startup configuration will be ignored.")
|
2104
2123
|
channel, remote_instance = launch_remote_mechanical(version=version)
|
2105
2124
|
return Mechanical(
|
ansys/mechanical/core/misc.py
CHANGED
@@ -47,8 +47,8 @@ def get_mechanical_bin(release_version):
|
|
47
47
|
Parameters
|
48
48
|
----------
|
49
49
|
release_version: str
|
50
|
-
Mechanical version using the three-digit format. For example, ``"
|
51
|
-
|
50
|
+
Mechanical version using the three-digit format. For example, ``"251"`` for
|
51
|
+
2025 R1.
|
52
52
|
"""
|
53
53
|
if is_windows(): # pragma: no cover
|
54
54
|
program_files = os.getenv("PROGRAMFILES", os.path.join("c:\\", "Program Files"))
|
ansys/mechanical/core/pool.py
CHANGED
@@ -26,11 +26,11 @@ import os
|
|
26
26
|
import time
|
27
27
|
import warnings
|
28
28
|
|
29
|
-
import ansys.platform.instancemanagement as pypim
|
30
29
|
from ansys.tools.path import version_from_path
|
31
30
|
|
32
31
|
from ansys.mechanical.core.errors import VersionError
|
33
32
|
from ansys.mechanical.core.mechanical import (
|
33
|
+
_HAS_ANSYS_PIM,
|
34
34
|
_HAS_TQDM,
|
35
35
|
LOG,
|
36
36
|
MECHANICAL_DEFAULT_PORT,
|
@@ -111,19 +111,19 @@ class LocalMechanicalPool:
|
|
111
111
|
|
112
112
|
On Windows, create a pool while specifying the Mechanical executable file.
|
113
113
|
|
114
|
-
>>> exec_file = 'C:/Program Files/ANSYS Inc/
|
114
|
+
>>> exec_file = 'C:/Program Files/ANSYS Inc/v251/aisol/bin/winx64/AnsysWBU.exe'
|
115
115
|
>>> pool = LocalMechanicalPool(10, exec_file=exec_file)
|
116
116
|
Creating Pool: 100%|########| 10/10 [00:01<00:00, 1.43it/s]
|
117
117
|
|
118
118
|
On Linux, create a pool while specifying the Mechanical executable file.
|
119
119
|
|
120
|
-
>>> exec_file = '/ansys_inc/
|
120
|
+
>>> exec_file = '/ansys_inc/v251/aisol/.workbench'
|
121
121
|
>>> pool = LocalMechanicalPool(10, exec_file=exec_file)
|
122
122
|
Creating Pool: 100%|########| 10/10 [00:01<00:00, 1.43it/s]
|
123
123
|
|
124
124
|
In the PyPIM environment, create a pool.
|
125
125
|
|
126
|
-
>>> pool = LocalMechanicalPool(10, version="
|
126
|
+
>>> pool = LocalMechanicalPool(10, version="251")
|
127
127
|
Creating Pool: 100%|########| 10/10 [00:01<00:00, 1.43it/s]
|
128
128
|
|
129
129
|
"""
|
@@ -170,12 +170,12 @@ class LocalMechanicalPool:
|
|
170
170
|
self._spawn_kwargs = kwargs
|
171
171
|
self._remote = False
|
172
172
|
|
173
|
-
#
|
173
|
+
# Verify that Mechanical is 2023R2 or newer
|
174
174
|
exec_file = None
|
175
175
|
if "exec_file" in kwargs:
|
176
176
|
exec_file = kwargs["exec_file"]
|
177
177
|
else:
|
178
|
-
if pypim.is_configured(): # pragma: no cover
|
178
|
+
if _HAS_ANSYS_PIM and pypim.is_configured(): # pragma: no cover
|
179
179
|
if "version" in kwargs:
|
180
180
|
version = kwargs["version"]
|
181
181
|
self._remote = True
|
@@ -529,8 +529,8 @@ class LocalMechanicalPool:
|
|
529
529
|
>>> mechanical = pool.next_available()
|
530
530
|
>>> mechanical
|
531
531
|
Ansys Mechanical [Ansys Mechanical Enterprise]
|
532
|
-
Product Version:
|
533
|
-
Software build date:
|
532
|
+
Product Version:251
|
533
|
+
Software build date: 11/27/2024 09:34:44
|
534
534
|
"""
|
535
535
|
# loop until the next instance is available
|
536
536
|
while True:
|
ansys/mechanical/core/run.py
CHANGED
@@ -269,7 +269,7 @@ The ``exit`` command is only supported in version 2024 R1 or later.",
|
|
269
269
|
"--revision",
|
270
270
|
default=None,
|
271
271
|
type=int,
|
272
|
-
help='Ansys Revision number, e.g. "
|
272
|
+
help='Ansys Revision number, e.g. "251" or "242". If none is specified\
|
273
273
|
, uses the default from ansys-tools-path',
|
274
274
|
)
|
275
275
|
@click.option(
|
@@ -298,9 +298,9 @@ def cli(
|
|
298
298
|
|
299
299
|
The following example demonstrates the main use of this tool:
|
300
300
|
|
301
|
-
$ ansys-mechanical -r
|
301
|
+
$ ansys-mechanical -r 251 -g
|
302
302
|
|
303
|
-
Starting Ansys Mechanical version
|
303
|
+
Starting Ansys Mechanical version 2025R1 in graphical mode...
|
304
304
|
"""
|
305
305
|
exe = atp.get_mechanical_path(allow_input=False, version=revision)
|
306
306
|
version = atp.version_from_path("mechanical", exe)
|
{ansys_mechanical_core-0.11.11.dist-info → ansys_mechanical_core-0.11.13.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: ansys-mechanical-core
|
3
|
-
Version: 0.11.
|
3
|
+
Version: 0.11.13
|
4
4
|
Summary: A python wrapper for Ansys Mechanical
|
5
5
|
Keywords: pymechanical,mechanical,ansys,pyansys
|
6
6
|
Author-email: "ANSYS, Inc." <pyansys.core@ansys.com>
|
@@ -17,44 +17,46 @@ Classifier: Programming Language :: Python :: 3.13
|
|
17
17
|
Classifier: License :: OSI Approved :: MIT License
|
18
18
|
Classifier: Operating System :: OS Independent
|
19
19
|
Requires-Dist: ansys-api-mechanical==0.1.2
|
20
|
-
Requires-Dist: ansys-mechanical-env==0.1.
|
21
|
-
Requires-Dist: ansys-mechanical-stubs==0.1.
|
22
|
-
Requires-Dist: ansys-
|
23
|
-
Requires-Dist: ansys-pythonnet>=3.1.0rc2
|
20
|
+
Requires-Dist: ansys-mechanical-env==0.1.9
|
21
|
+
Requires-Dist: ansys-mechanical-stubs==0.1.6
|
22
|
+
Requires-Dist: ansys-pythonnet>=3.1.0rc6
|
24
23
|
Requires-Dist: ansys-tools-path>=0.3.1
|
25
24
|
Requires-Dist: appdirs>=1.4.0
|
26
25
|
Requires-Dist: click>=8.1.3
|
27
|
-
Requires-Dist: clr-loader
|
26
|
+
Requires-Dist: clr-loader>=0.2.6
|
28
27
|
Requires-Dist: grpcio>=1.30.0
|
29
28
|
Requires-Dist: protobuf>=3.12.2,<6
|
30
|
-
Requires-Dist: psutil
|
29
|
+
Requires-Dist: psutil>=6
|
31
30
|
Requires-Dist: tqdm>=4.45.0
|
32
31
|
Requires-Dist: requests>=2,<3
|
33
32
|
Requires-Dist: sphinx==8.1.3 ; extra == "doc"
|
34
|
-
Requires-Dist: ansys-sphinx-theme[autoapi]==1.
|
35
|
-
Requires-Dist: grpcio==1.
|
36
|
-
Requires-Dist: imageio-ffmpeg==0.
|
37
|
-
Requires-Dist: imageio==2.
|
33
|
+
Requires-Dist: ansys-sphinx-theme[autoapi, changelog]==1.3.1 ; extra == "doc"
|
34
|
+
Requires-Dist: grpcio==1.70.0 ; extra == "doc"
|
35
|
+
Requires-Dist: imageio-ffmpeg==0.6.0 ; extra == "doc"
|
36
|
+
Requires-Dist: imageio==2.37.0 ; extra == "doc"
|
38
37
|
Requires-Dist: jupyter_sphinx==0.5.3 ; extra == "doc"
|
39
38
|
Requires-Dist: jupyterlab>=3.2.8 ; extra == "doc"
|
40
39
|
Requires-Dist: matplotlib==3.10.0 ; extra == "doc"
|
41
|
-
Requires-Dist: numpy==2.2.
|
40
|
+
Requires-Dist: numpy==2.2.2 ; extra == "doc"
|
42
41
|
Requires-Dist: numpydoc==1.8.0 ; extra == "doc"
|
43
42
|
Requires-Dist: pandas==2.2.3 ; extra == "doc"
|
44
|
-
Requires-Dist: panel==1.
|
45
|
-
Requires-Dist: plotly==
|
46
|
-
Requires-Dist: pypandoc==1.
|
43
|
+
Requires-Dist: panel==1.6.0 ; extra == "doc"
|
44
|
+
Requires-Dist: plotly==6.0.0 ; extra == "doc"
|
45
|
+
Requires-Dist: pypandoc==1.15 ; extra == "doc"
|
47
46
|
Requires-Dist: pytest-sphinx==0.6.3 ; extra == "doc"
|
48
47
|
Requires-Dist: pythreejs==2.4.2 ; extra == "doc"
|
49
48
|
Requires-Dist: pyvista>=0.39.1 ; extra == "doc"
|
50
49
|
Requires-Dist: sphinx-autobuild==2024.10.3 ; extra == "doc"
|
51
|
-
Requires-Dist: sphinx-autodoc-typehints==3.0.
|
50
|
+
Requires-Dist: sphinx-autodoc-typehints==3.0.1 ; extra == "doc"
|
52
51
|
Requires-Dist: sphinx-copybutton==0.5.2 ; extra == "doc"
|
53
52
|
Requires-Dist: sphinx_design==0.6.1 ; extra == "doc"
|
54
53
|
Requires-Dist: sphinx-gallery==0.18.0 ; extra == "doc"
|
55
|
-
Requires-Dist: sphinx-notfound-page==1.0
|
54
|
+
Requires-Dist: sphinx-notfound-page==1.1.0 ; extra == "doc"
|
56
55
|
Requires-Dist: sphinxcontrib-websupport==2.0.0 ; extra == "doc"
|
57
56
|
Requires-Dist: sphinxemoji==0.3.1 ; extra == "doc"
|
57
|
+
Requires-Dist: ansys-platform-instancemanagement>=1.0.1 ; extra == "pim"
|
58
|
+
Requires-Dist: rpyc==6.0.1 ; extra == "rpc"
|
59
|
+
Requires-Dist: toolz==1.0.0 ; extra == "rpc"
|
58
60
|
Requires-Dist: pytest==8.3.4 ; extra == "tests"
|
59
61
|
Requires-Dist: pytest-cov==6.0.0 ; extra == "tests"
|
60
62
|
Requires-Dist: pytest-print==1.0.2 ; extra == "tests"
|
@@ -67,6 +69,8 @@ Project-URL: Homepage, https://github.com/ansys/pymechanical
|
|
67
69
|
Project-URL: Issues, https://github.com/ansys/pymechanical/issues
|
68
70
|
Project-URL: Repository, https://github.com/ansys/pymechanical
|
69
71
|
Provides-Extra: doc
|
72
|
+
Provides-Extra: pim
|
73
|
+
Provides-Extra: rpc
|
70
74
|
Provides-Extra: tests
|
71
75
|
Provides-Extra: viz
|
72
76
|
|
@@ -141,16 +145,17 @@ session must be reachable from your Python program.
|
|
141
145
|
Getting started
|
142
146
|
---------------
|
143
147
|
|
148
|
+
.. _scripting_guide: https://ansyshelp.ansys.com/Views/Secured/corp/v251/en/act_script/act_script.html
|
149
|
+
|
144
150
|
PyMechanical uses the built-in scripting capabilities of Mechanical. For information on the
|
145
|
-
scripting APIs available, see the `Scripting in Mechanical Guide
|
146
|
-
<https://ansyshelp.ansys.com/Views/Secured/corp/v242/en/act_script/act_script.html>`_ in the
|
151
|
+
scripting APIs available, see the `Scripting in Mechanical Guide <_scripting_guide>`_ in the
|
147
152
|
Ansys Help.
|
148
153
|
|
149
154
|
Configuring the mechanical installation
|
150
155
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
151
156
|
|
152
157
|
On a Windows system, the environment variable ``AWP_ROOT<ver>`` is configured when Mechanical is
|
153
|
-
installed, where ``<ver>`` is the Mechanical release number, such as ``
|
158
|
+
installed, where ``<ver>`` is the Mechanical release number, such as ``251`` for release 2025 R1.
|
154
159
|
PyMechanical automatically uses this environment variable (or variables if there are multiple
|
155
160
|
installations of different versions) to locate the latest Mechanical installation. On a Linux
|
156
161
|
system, you must configure the ``AWP_ROOT<ver>`` environment variable to point to the
|
@@ -195,8 +200,23 @@ on Windows and Linux for version 2023 R2 and later. Here is an example:
|
|
195
200
|
app.update_globals(globals())
|
196
201
|
project_dir = DataModel.Project.ProjectDirectory
|
197
202
|
|
198
|
-
|
199
|
-
|
203
|
+
How to report issues
|
204
|
+
--------------------
|
205
|
+
|
206
|
+
If you encounter any issues or limitations with PyMechanical that hinder your work, please create
|
207
|
+
an issue or discussion so our team can address them promptly:
|
208
|
+
|
209
|
+
* `PyMechanical Issues <https://github.com/ansys/pymechanical/issues>`_: Report bugs and request new features.
|
210
|
+
* `PyMechanical Discussions <https://github.com/ansys/pymechanical/discussions>`_: Post questions, share ideas, and get community feedback.
|
211
|
+
|
212
|
+
For issues pertaining to `Mechanical scripting <https://mechanical.docs.pyansys.com/version/stable/user_guide_scripting/index.html>`_,
|
213
|
+
please make a post on the `Developer Portal <https://forum.ansys.com/categories/structures>`_.
|
214
|
+
|
215
|
+
If you have general questions about PyAnsys or are unsure which repository to place an issue in,
|
216
|
+
email `pyansys.core@ansys.com <pyansys.core@ansys.com>`_.
|
217
|
+
|
218
|
+
Documentation resources
|
219
|
+
-----------------------
|
200
220
|
|
201
221
|
Documentation for the latest stable release of PyMechanical is hosted at `PyMechanical documentation
|
202
222
|
<https://mechanical.docs.pyansys.com/>`_.
|
@@ -210,13 +230,6 @@ You can also `view <https://cheatsheets.docs.pyansys.com/pymechanical_cheat_shee
|
|
210
230
|
PyMechanical cheat sheet. This one-page reference provides syntax rules and commands
|
211
231
|
for using PyMechanical.
|
212
232
|
|
213
|
-
On the `PyMechanical Issues <https://github.com/ansys/pymechanical/issues>`_ page,
|
214
|
-
you can create issues to report bugs and request new features. On the `PyMechanical Discussions
|
215
|
-
<https://github.com/ansys/pymechanical/discussions>`_ page or the `Discussions <https://discuss.ansys.com/>`_
|
216
|
-
page on the Ansys Developer portal, you can post questions, share ideas, and get community feedback.
|
217
|
-
|
218
|
-
To reach the project support team, email `pyansys.core@ansys.com <pyansys.core@ansys.com>`_.
|
219
|
-
|
220
233
|
Testing and development
|
221
234
|
-----------------------
|
222
235
|
|
@@ -1,45 +1,49 @@
|
|
1
1
|
ansys/mechanical/core/__init__.py,sha256=u0OpMtxVeEO9GvfxzUN0yf0x3mtox0Gjn4f0kO1qk7A,2564
|
2
|
-
ansys/mechanical/core/_version.py,sha256=
|
2
|
+
ansys/mechanical/core/_version.py,sha256=nRlEBl4c6kNOE78hhqJwYuPk86jhu70lOSRuZphT81M,1763
|
3
3
|
ansys/mechanical/core/errors.py,sha256=k0hJ89FwbFexLsjVApCbqfy2K7d-MekTPf3-QdtXZK4,4508
|
4
|
-
ansys/mechanical/core/feature_flags.py,sha256=
|
5
|
-
ansys/mechanical/core/ide_config.py,sha256=
|
4
|
+
ansys/mechanical/core/feature_flags.py,sha256=bIRHaURLi70Yor1aJH3Fhlt9xvvyr9GG7JcJ1V59GNg,2078
|
5
|
+
ansys/mechanical/core/ide_config.py,sha256=Yic_KFrxuZA0HUsuRsfld-j37YnfYuM97PRLYhnm-Y8,7334
|
6
6
|
ansys/mechanical/core/launcher.py,sha256=Rd5kDcC58MZIjsk2d40Bx4qc0DVHzrYuNA3irDvsFKA,6675
|
7
7
|
ansys/mechanical/core/logging.py,sha256=TmIY5L-IrkyAQMKszotcbVCxyHLsMZQDAwbvcrSKwfs,24554
|
8
|
-
ansys/mechanical/core/mechanical.py,sha256=
|
9
|
-
ansys/mechanical/core/misc.py,sha256=
|
10
|
-
ansys/mechanical/core/pool.py,sha256=
|
11
|
-
ansys/mechanical/core/run.py,sha256=
|
8
|
+
ansys/mechanical/core/mechanical.py,sha256=FNxMHv8FWcpP92jYqNTo6uPlmH0HnsGRHSnivaVyYjg,83663
|
9
|
+
ansys/mechanical/core/misc.py,sha256=f_LjwIvCGaHSIKJ6LuREbCr7gbv9rg2aFQaQ28Edna8,5369
|
10
|
+
ansys/mechanical/core/pool.py,sha256=xii4fNxNH_Xnyom9-ZpvsyXCxoUxa2mDu8brS339B2Y,26572
|
11
|
+
ansys/mechanical/core/run.py,sha256=wUsGPyZx2NwNlrdzIO1cWmDAZeZU0tOY1OvT-8pqjaw,9928
|
12
12
|
ansys/mechanical/core/embedding/__init__.py,sha256=QAUe-offKZZDPz0IYBIUtYi4Dgt02_U93yTeSWXO9fU,1356
|
13
13
|
ansys/mechanical/core/embedding/addins.py,sha256=6n3wCaD36cBbXWCbpniuABgvW6uBSN6xYXA5KkNgfLg,2167
|
14
|
-
ansys/mechanical/core/embedding/app.py,sha256=
|
14
|
+
ansys/mechanical/core/embedding/app.py,sha256=spB7yuxHO3n7I_UkQVnRaYft3iO77LuCUpExtzddLcU,22084
|
15
15
|
ansys/mechanical/core/embedding/app_libraries.py,sha256=_czRZ5cPwRo9SIZNitlgmBf2riLdzlGmmD4BJt9Nvng,2922
|
16
16
|
ansys/mechanical/core/embedding/appdata.py,sha256=98BYek_AKH5LaN5J3o8Mx8QDy23_6EpwKyBSiQpiu0E,4273
|
17
|
-
ansys/mechanical/core/embedding/background.py,sha256=
|
17
|
+
ansys/mechanical/core/embedding/background.py,sha256=dNwi45q8y8iXpMKathDMQd2k7CUfl4X6wIhngQvJcEc,4178
|
18
18
|
ansys/mechanical/core/embedding/cleanup_gui.py,sha256=TEF3l4A7UxMacmlkUwBBymTdqM6h8Be9piID4Hpn_jg,2354
|
19
|
-
ansys/mechanical/core/embedding/enum_importer.py,sha256
|
20
|
-
ansys/mechanical/core/embedding/imports.py,sha256=
|
21
|
-
ansys/mechanical/core/embedding/initializer.py,sha256=
|
19
|
+
ansys/mechanical/core/embedding/enum_importer.py,sha256=-DN4N5Sh-nRQAud4izyTfo-EvGwOfGAiZ8zELPiuj8A,1606
|
20
|
+
ansys/mechanical/core/embedding/imports.py,sha256=m-ywpl29iB1r57Mt9qS2GYFF2HfZ37kNt-01OkKqAwM,4414
|
21
|
+
ansys/mechanical/core/embedding/initializer.py,sha256=knq3HzfQD8-yUB-cGHjzA4IKG_bOsEPd57tle_cvVNs,8086
|
22
22
|
ansys/mechanical/core/embedding/loader.py,sha256=e2KWBrVv5001MP6DPJWI0UwrEauUnlTLpz9X6WYFdhk,2503
|
23
|
-
ansys/mechanical/core/embedding/poster.py,sha256
|
24
|
-
ansys/mechanical/core/embedding/resolver.py,sha256=
|
25
|
-
ansys/mechanical/core/embedding/runtime.py,sha256=
|
23
|
+
ansys/mechanical/core/embedding/poster.py,sha256=-V1GYrvRDyv8nbaBJze7Uo3PUb1hfOIidf1YI7-cT60,3065
|
24
|
+
ansys/mechanical/core/embedding/resolver.py,sha256=VrUbSV0oLsz0fhoR8C4M9IFFElV-j7nvUaJlO4Su4r0,2200
|
25
|
+
ansys/mechanical/core/embedding/runtime.py,sha256=6ZQsD1qvB2VMJsoLkm9vvsWbVX-buj8jLDAm4Qyc65k,2982
|
26
26
|
ansys/mechanical/core/embedding/shims.py,sha256=LP5px-ED4JNbqFEpYnmBkGiGDdfDkLQ-v1tNnPbz3E8,1732
|
27
27
|
ansys/mechanical/core/embedding/ui.py,sha256=1XXkKSvui9iHKGqFROJQZMW-3iY-Hh2i1Ixq8Iav8cY,8480
|
28
28
|
ansys/mechanical/core/embedding/utils.py,sha256=7KSFCl9VM_WhrQEtI3Jc9OwhmH9wI7PH0n17ab_ytfo,1900
|
29
29
|
ansys/mechanical/core/embedding/warnings.py,sha256=Iyo95YOneMdCxOImXjnohhQZ86tD3xcnvJPUstlvHy0,3071
|
30
|
-
ansys/mechanical/core/embedding/logger/__init__.py,sha256=
|
30
|
+
ansys/mechanical/core/embedding/logger/__init__.py,sha256=6NZHzFXzHHlV_NAa1gZsLyQjsRK3kBODvYwcCum9vSU,7998
|
31
31
|
ansys/mechanical/core/embedding/logger/environ.py,sha256=Jo9OEyag2ub_DIshxEX6Re8UzIrXCfmge5hFrn3exKk,5757
|
32
32
|
ansys/mechanical/core/embedding/logger/linux_api.py,sha256=wM95m4ArlF3gvqKFvKP7DzWWRHSngB3fe51D26CUD3Y,5988
|
33
33
|
ansys/mechanical/core/embedding/logger/sinks.py,sha256=-lAS-M7k3WHAblbrM7nzpOBJiCjN8e6i52GoEeQo_gE,1392
|
34
34
|
ansys/mechanical/core/embedding/logger/windows_api.py,sha256=GoFPfO-_umcCRAQeYrEdYQCTYpeNLB_IrY4hHh_LmTo,5276
|
35
|
+
ansys/mechanical/core/embedding/rpc/__init__.py,sha256=Vk1nDMlxG1pCW7aWf6BEEqBR1UDIaQCUIVyin5uatBQ,1650
|
36
|
+
ansys/mechanical/core/embedding/rpc/client.py,sha256=w8S_dzPmtR4qwKTdPCbrFTXhiEvnqda-nEBSsdOqexM,8841
|
37
|
+
ansys/mechanical/core/embedding/rpc/server.py,sha256=l0nHrptN3tui1iDfAZ3MhrH1pex_dEtRDFIrsPfrZC8,13101
|
38
|
+
ansys/mechanical/core/embedding/rpc/utils.py,sha256=Jr40xwvGCnlZZJE4fw6QoXsb8fqeGhres8bwE9ISez8,4342
|
35
39
|
ansys/mechanical/core/embedding/viz/__init__.py,sha256=KHZQAzlfgEVhi-G0msA6ca1o-2RecoNGzkpYfBIoCTA,1206
|
36
40
|
ansys/mechanical/core/embedding/viz/embedding_plotter.py,sha256=d2GjQiQgDHXfNTgETEIKRZYymkvB8-3KBHs7fF9PW_c,3689
|
37
41
|
ansys/mechanical/core/embedding/viz/usd_converter.py,sha256=kMKmGLThbWf7iR9bYn24mdmgKBkLDdkwdHrOokFvg_U,5329
|
38
42
|
ansys/mechanical/core/embedding/viz/utils.py,sha256=AYvp0okbEk3y9611eGAtvhgh65ytfpHkywVT7qk_liQ,3660
|
39
43
|
ansys/mechanical/core/examples/__init__.py,sha256=Y0T8CKmaALL3diLfhsz3opfBgckD85DfHdzDrVsSwzg,1267
|
40
44
|
ansys/mechanical/core/examples/downloads.py,sha256=5_Krq3HqVeAeD4z3dx9uujLk1u6rPFoAuwQus9eYWjg,4295
|
41
|
-
ansys_mechanical_core-0.11.
|
42
|
-
ansys_mechanical_core-0.11.
|
43
|
-
ansys_mechanical_core-0.11.
|
44
|
-
ansys_mechanical_core-0.11.
|
45
|
-
ansys_mechanical_core-0.11.
|
45
|
+
ansys_mechanical_core-0.11.13.dist-info/entry_points.txt,sha256=tErx6bIM27HGgwyM6ryyTUTw30Ab2F9J3FFkX2TPkhI,130
|
46
|
+
ansys_mechanical_core-0.11.13.dist-info/LICENSE,sha256=AVOPDv4UX26lKidhDvFf_fMR13Pr-n4wVAYSVyvD7Ww,1098
|
47
|
+
ansys_mechanical_core-0.11.13.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
|
48
|
+
ansys_mechanical_core-0.11.13.dist-info/METADATA,sha256=lrlhVb1Cw40iMS_9bpm8gNpu9t4lnqIMck3rZymH0Gs,10487
|
49
|
+
ansys_mechanical_core-0.11.13.dist-info/RECORD,,
|
File without changes
|
File without changes
|
{ansys_mechanical_core-0.11.11.dist-info → ansys_mechanical_core-0.11.13.dist-info}/entry_points.txt
RENAMED
File without changes
|