ansys-mechanical-core 0.10.10__py3-none-any.whl → 0.11.12__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/__init__.py +11 -4
- ansys/mechanical/core/_version.py +48 -47
- ansys/mechanical/core/embedding/__init__.py +1 -1
- ansys/mechanical/core/embedding/addins.py +1 -7
- ansys/mechanical/core/embedding/app.py +610 -281
- ansys/mechanical/core/embedding/app_libraries.py +24 -5
- ansys/mechanical/core/embedding/appdata.py +16 -4
- ansys/mechanical/core/embedding/background.py +106 -0
- ansys/mechanical/core/embedding/cleanup_gui.py +61 -0
- ansys/mechanical/core/embedding/enum_importer.py +2 -2
- ansys/mechanical/core/embedding/imports.py +27 -7
- ansys/mechanical/core/embedding/initializer.py +105 -53
- ansys/mechanical/core/embedding/loader.py +19 -9
- ansys/mechanical/core/embedding/logger/__init__.py +219 -216
- ansys/mechanical/core/embedding/logger/environ.py +1 -1
- ansys/mechanical/core/embedding/logger/linux_api.py +1 -1
- ansys/mechanical/core/embedding/logger/sinks.py +1 -1
- ansys/mechanical/core/embedding/logger/windows_api.py +2 -2
- ansys/mechanical/core/embedding/poster.py +38 -4
- ansys/mechanical/core/embedding/resolver.py +41 -44
- ansys/mechanical/core/embedding/runtime.py +1 -1
- ansys/mechanical/core/embedding/shims.py +9 -8
- ansys/mechanical/core/embedding/ui.py +228 -0
- ansys/mechanical/core/embedding/utils.py +1 -1
- ansys/mechanical/core/embedding/viz/__init__.py +1 -1
- ansys/mechanical/core/embedding/viz/{pyvista_plotter.py → embedding_plotter.py} +24 -8
- ansys/mechanical/core/embedding/viz/usd_converter.py +59 -25
- ansys/mechanical/core/embedding/viz/utils.py +32 -2
- ansys/mechanical/core/embedding/warnings.py +1 -1
- ansys/mechanical/core/errors.py +2 -1
- ansys/mechanical/core/examples/__init__.py +1 -1
- ansys/mechanical/core/examples/downloads.py +10 -5
- ansys/mechanical/core/feature_flags.py +51 -0
- ansys/mechanical/core/ide_config.py +212 -0
- ansys/mechanical/core/launcher.py +9 -9
- ansys/mechanical/core/logging.py +14 -2
- ansys/mechanical/core/mechanical.py +2324 -2237
- ansys/mechanical/core/misc.py +176 -176
- ansys/mechanical/core/pool.py +712 -712
- ansys/mechanical/core/run.py +321 -246
- {ansys_mechanical_core-0.10.10.dist-info → ansys_mechanical_core-0.11.12.dist-info}/LICENSE +7 -7
- {ansys_mechanical_core-0.10.10.dist-info → ansys_mechanical_core-0.11.12.dist-info}/METADATA +57 -56
- ansys_mechanical_core-0.11.12.dist-info/RECORD +45 -0
- {ansys_mechanical_core-0.10.10.dist-info → ansys_mechanical_core-0.11.12.dist-info}/WHEEL +1 -1
- {ansys_mechanical_core-0.10.10.dist-info → ansys_mechanical_core-0.11.12.dist-info}/entry_points.txt +1 -0
- ansys_mechanical_core-0.10.10.dist-info/RECORD +0 -40
{ansys_mechanical_core-0.10.10.dist-info → ansys_mechanical_core-0.11.12.dist-info}/METADATA
RENAMED
@@ -1,71 +1,78 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.3
|
2
2
|
Name: ansys-mechanical-core
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.11.12
|
4
4
|
Summary: A python wrapper for Ansys Mechanical
|
5
|
+
Keywords: pymechanical,mechanical,ansys,pyansys
|
5
6
|
Author-email: "ANSYS, Inc." <pyansys.core@ansys.com>
|
6
7
|
Maintainer-email: "ANSYS, Inc." <pyansys.core@ansys.com>
|
7
|
-
Requires-Python: >=3.
|
8
|
+
Requires-Python: >=3.10,<4.0
|
8
9
|
Description-Content-Type: text/x-rst
|
9
10
|
Classifier: Development Status :: 4 - Beta
|
10
11
|
Classifier: Intended Audience :: Science/Research
|
11
12
|
Classifier: Topic :: Scientific/Engineering :: Information Analysis
|
12
|
-
Classifier: Programming Language :: Python :: 3.9
|
13
13
|
Classifier: Programming Language :: Python :: 3.10
|
14
14
|
Classifier: Programming Language :: Python :: 3.11
|
15
15
|
Classifier: Programming Language :: Python :: 3.12
|
16
|
+
Classifier: Programming Language :: Python :: 3.13
|
16
17
|
Classifier: License :: OSI Approved :: MIT License
|
17
18
|
Classifier: Operating System :: OS Independent
|
18
|
-
Requires-Dist:
|
19
|
-
Requires-Dist: ansys-mechanical-env==0.1.
|
19
|
+
Requires-Dist: ansys-api-mechanical==0.1.2
|
20
|
+
Requires-Dist: ansys-mechanical-env==0.1.9
|
21
|
+
Requires-Dist: ansys-mechanical-stubs==0.1.6
|
20
22
|
Requires-Dist: ansys-platform-instancemanagement>=1.0.1
|
21
23
|
Requires-Dist: ansys-pythonnet>=3.1.0rc2
|
22
24
|
Requires-Dist: ansys-tools-path>=0.3.1
|
23
25
|
Requires-Dist: appdirs>=1.4.0
|
24
26
|
Requires-Dist: click>=8.1.3
|
25
|
-
Requires-Dist: clr-loader==0.2.
|
27
|
+
Requires-Dist: clr-loader==0.2.7.post0
|
26
28
|
Requires-Dist: grpcio>=1.30.0
|
27
|
-
Requires-Dist: protobuf>=3.12.2
|
29
|
+
Requires-Dist: protobuf>=3.12.2,<6
|
30
|
+
Requires-Dist: psutil==6.1.1
|
28
31
|
Requires-Dist: tqdm>=4.45.0
|
29
|
-
Requires-Dist:
|
30
|
-
Requires-Dist:
|
31
|
-
Requires-Dist:
|
32
|
-
Requires-Dist:
|
33
|
-
Requires-Dist: imageio==
|
32
|
+
Requires-Dist: requests>=2,<3
|
33
|
+
Requires-Dist: sphinx==8.1.3 ; extra == "doc"
|
34
|
+
Requires-Dist: ansys-sphinx-theme[autoapi]==1.2.6 ; extra == "doc"
|
35
|
+
Requires-Dist: grpcio==1.69.0 ; extra == "doc"
|
36
|
+
Requires-Dist: imageio-ffmpeg==0.5.1 ; extra == "doc"
|
37
|
+
Requires-Dist: imageio==2.36.1 ; extra == "doc"
|
34
38
|
Requires-Dist: jupyter_sphinx==0.5.3 ; extra == "doc"
|
35
39
|
Requires-Dist: jupyterlab>=3.2.8 ; extra == "doc"
|
36
|
-
Requires-Dist: matplotlib==3.
|
37
|
-
Requires-Dist: numpy==
|
38
|
-
Requires-Dist: numpydoc==1.
|
39
|
-
Requires-Dist: pandas==2.2.
|
40
|
-
Requires-Dist: panel==1.
|
41
|
-
Requires-Dist: plotly==5.
|
42
|
-
Requires-Dist: pypandoc==1.
|
40
|
+
Requires-Dist: matplotlib==3.10.0 ; extra == "doc"
|
41
|
+
Requires-Dist: numpy==2.2.1 ; extra == "doc"
|
42
|
+
Requires-Dist: numpydoc==1.8.0 ; extra == "doc"
|
43
|
+
Requires-Dist: pandas==2.2.3 ; extra == "doc"
|
44
|
+
Requires-Dist: panel==1.5.5 ; extra == "doc"
|
45
|
+
Requires-Dist: plotly==5.24.1 ; extra == "doc"
|
46
|
+
Requires-Dist: pypandoc==1.15 ; extra == "doc"
|
43
47
|
Requires-Dist: pytest-sphinx==0.6.3 ; extra == "doc"
|
44
48
|
Requires-Dist: pythreejs==2.4.2 ; extra == "doc"
|
45
|
-
Requires-Dist: pyvista
|
46
|
-
Requires-Dist: sphinx-autobuild==2024.
|
47
|
-
Requires-Dist: sphinx-autodoc-typehints==
|
49
|
+
Requires-Dist: pyvista>=0.39.1 ; extra == "doc"
|
50
|
+
Requires-Dist: sphinx-autobuild==2024.10.3 ; extra == "doc"
|
51
|
+
Requires-Dist: sphinx-autodoc-typehints==3.0.0 ; extra == "doc"
|
48
52
|
Requires-Dist: sphinx-copybutton==0.5.2 ; extra == "doc"
|
49
|
-
Requires-Dist: sphinx_design==0.
|
50
|
-
Requires-Dist: sphinx-gallery==0.
|
51
|
-
Requires-Dist: sphinx-notfound-page==1.0.
|
52
|
-
Requires-Dist: sphinxcontrib-websupport==
|
53
|
+
Requires-Dist: sphinx_design==0.6.1 ; extra == "doc"
|
54
|
+
Requires-Dist: sphinx-gallery==0.18.0 ; extra == "doc"
|
55
|
+
Requires-Dist: sphinx-notfound-page==1.0.4 ; extra == "doc"
|
56
|
+
Requires-Dist: sphinxcontrib-websupport==2.0.0 ; extra == "doc"
|
53
57
|
Requires-Dist: sphinxemoji==0.3.1 ; extra == "doc"
|
54
|
-
Requires-Dist: pytest==8.
|
55
|
-
Requires-Dist: pytest-cov==
|
56
|
-
Requires-Dist: pytest-print==1.0.
|
57
|
-
Requires-Dist:
|
58
|
-
Requires-Dist:
|
58
|
+
Requires-Dist: pytest==8.3.4 ; extra == "tests"
|
59
|
+
Requires-Dist: pytest-cov==6.0.0 ; extra == "tests"
|
60
|
+
Requires-Dist: pytest-print==1.0.2 ; extra == "tests"
|
61
|
+
Requires-Dist: psutil==6.1.1 ; extra == "tests"
|
62
|
+
Requires-Dist: ansys-tools-visualization-interface>=0.2.6 ; extra == "viz"
|
63
|
+
Requires-Dist: usd-core==24.11 ; extra == "viz"
|
64
|
+
Project-URL: Changelog, https://mechanical.docs.pyansys.com/version/stable/changelog.html
|
59
65
|
Project-URL: Documentation, https://mechanical.docs.pyansys.com
|
60
66
|
Project-URL: Homepage, https://github.com/ansys/pymechanical
|
61
|
-
Project-URL:
|
62
|
-
Project-URL:
|
67
|
+
Project-URL: Issues, https://github.com/ansys/pymechanical/issues
|
68
|
+
Project-URL: Repository, https://github.com/ansys/pymechanical
|
63
69
|
Provides-Extra: doc
|
64
70
|
Provides-Extra: tests
|
65
71
|
Provides-Extra: viz
|
66
72
|
|
67
|
-
.. image:: https://raw.githubusercontent.com/ansys/pymechanical/main/doc/source/_static/logo/pymechanical-logo
|
73
|
+
.. image:: https://raw.githubusercontent.com/ansys/pymechanical/main/doc/source/_static/logo/pymechanical-logo.png
|
68
74
|
:alt: PyMechanical logo
|
75
|
+
:width: 580px
|
69
76
|
|
70
77
|
|
71
78
|
|pyansys| |pypi| |python| |GH-CI| |codecov| |MIT| |black|
|
@@ -83,7 +90,7 @@ Provides-Extra: viz
|
|
83
90
|
:alt: Python
|
84
91
|
|
85
92
|
.. |codecov| image:: https://codecov.io/gh/ansys/pymechanical/branch/main/graph/badge.svg
|
86
|
-
:target: https://codecov.io/gh/ansys/
|
93
|
+
:target: https://app.codecov.io/gh/ansys/pymechanical
|
87
94
|
:alt: Codecov
|
88
95
|
|
89
96
|
.. |GH-CI| image:: https://github.com/ansys/pymechanical/actions/workflows/ci_cd.yml/badge.svg
|
@@ -98,9 +105,13 @@ Provides-Extra: viz
|
|
98
105
|
:target: https://github.com/psf/black
|
99
106
|
:alt: Black
|
100
107
|
|
108
|
+
.. |pre-commit| image:: https://results.pre-commit.ci/badge/github/ansys/pymechanical/main.svg?style=flat
|
109
|
+
:target: https://results.pre-commit.ci/latest/github/ansys/pymechanical/main
|
110
|
+
:alt: pre-commit
|
101
111
|
|
102
112
|
Overview
|
103
113
|
--------
|
114
|
+
|
104
115
|
PyMechanical brings Ansys Mechanical to Python. It enables your Python programs to use
|
105
116
|
Mechanical within Python's ecosystem. It includes the ability to:
|
106
117
|
|
@@ -110,7 +121,8 @@ Mechanical within Python's ecosystem. It includes the ability to:
|
|
110
121
|
|
111
122
|
Install the package
|
112
123
|
-------------------
|
113
|
-
|
124
|
+
|
125
|
+
Install PyMechanical using ``pip`` with::
|
114
126
|
|
115
127
|
pip install ansys-mechanical-core
|
116
128
|
|
@@ -129,16 +141,17 @@ session must be reachable from your Python program.
|
|
129
141
|
Getting started
|
130
142
|
---------------
|
131
143
|
|
144
|
+
.. _scripting_guide: https://ansyshelp.ansys.com/Views/Secured/corp/v251/en/act_script/act_script.html
|
145
|
+
|
132
146
|
PyMechanical uses the built-in scripting capabilities of Mechanical. For information on the
|
133
|
-
scripting APIs available, see the `Scripting in Mechanical Guide
|
134
|
-
<https://ansyshelp.ansys.com/Views/Secured/corp/v241/en/act_script/act_script.html>`_ in the
|
147
|
+
scripting APIs available, see the `Scripting in Mechanical Guide <_scripting_guide>`_ in the
|
135
148
|
Ansys Help.
|
136
149
|
|
137
150
|
Configuring the mechanical installation
|
138
151
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
139
152
|
|
140
153
|
On a Windows system, the environment variable ``AWP_ROOT<ver>`` is configured when Mechanical is
|
141
|
-
installed, where ``<ver>`` is the Mechanical release number, such as ``
|
154
|
+
installed, where ``<ver>`` is the Mechanical release number, such as ``251`` for release 2025 R1.
|
142
155
|
PyMechanical automatically uses this environment variable (or variables if there are multiple
|
143
156
|
installations of different versions) to locate the latest Mechanical installation. On a Linux
|
144
157
|
system, you must configure the ``AWP_ROOT<ver>`` environment variable to point to the
|
@@ -173,21 +186,21 @@ Using an embedded instance of Mechanical as a Python object
|
|
173
186
|
|
174
187
|
PyMechanical also supports directly embedding an instance of Mechanical as a Python object.
|
175
188
|
In this mode, there is no externally running instance of Mechanical. This feature is supported
|
176
|
-
on Windows for version 2023
|
177
|
-
and later. Here is an example:
|
189
|
+
on Windows and Linux for version 2023 R2 and later. Here is an example:
|
178
190
|
|
179
191
|
.. code:: python
|
180
192
|
|
181
193
|
import ansys.mechanical.core as pymechanical
|
182
194
|
|
183
195
|
app = pymechanical.App()
|
184
|
-
|
196
|
+
app.update_globals(globals())
|
197
|
+
project_dir = DataModel.Project.ProjectDirectory
|
185
198
|
|
186
199
|
Documentation and issues
|
187
200
|
------------------------
|
188
201
|
|
189
202
|
Documentation for the latest stable release of PyMechanical is hosted at `PyMechanical documentation
|
190
|
-
<https://mechanical.docs.pyansys.com
|
203
|
+
<https://mechanical.docs.pyansys.com/>`_.
|
191
204
|
|
192
205
|
In the upper right corner of the documentation's title bar, there is an option for switching from
|
193
206
|
viewing the documentation for the latest stable release to viewing the documentation for the
|
@@ -211,15 +224,3 @@ Testing and development
|
|
211
224
|
If you would like to test or contribute to the development of PyMechanical, see
|
212
225
|
`Contribute <https://mechanical.docs.pyansys.com/version/stable/contributing.html>`_ in
|
213
226
|
the PyMechanical documentation.
|
214
|
-
|
215
|
-
.. LINKS AND REFERENCES
|
216
|
-
.. _black: https://github.com/psf/black
|
217
|
-
.. _flake8: https://flake8.pycqa.org/en/latest/
|
218
|
-
.. _isort: https://github.com/PyCQA/isort
|
219
|
-
.. _pip: https://pypi.org/project/pip/
|
220
|
-
.. _pre-commit: https://pre-commit.com/
|
221
|
-
.. _PyAnsys Developer's Guide: https://dev.docs.pyansys.com/
|
222
|
-
.. _pytest: https://docs.pytest.org/en/stable/
|
223
|
-
.. _Sphinx: https://www.sphinx-doc.org/en/master/
|
224
|
-
.. _tox: https://tox.wiki/
|
225
|
-
|
@@ -0,0 +1,45 @@
|
|
1
|
+
ansys/mechanical/core/__init__.py,sha256=u0OpMtxVeEO9GvfxzUN0yf0x3mtox0Gjn4f0kO1qk7A,2564
|
2
|
+
ansys/mechanical/core/_version.py,sha256=hcJkv5uIqSunbAdGddekAME0YCgg9eGFpmtqwSW9ek8,1811
|
3
|
+
ansys/mechanical/core/errors.py,sha256=k0hJ89FwbFexLsjVApCbqfy2K7d-MekTPf3-QdtXZK4,4508
|
4
|
+
ansys/mechanical/core/feature_flags.py,sha256=W-0QFcMJ2UIcq61t-PpK0KJL6olrajPNAYvvQwO0HIc,2032
|
5
|
+
ansys/mechanical/core/ide_config.py,sha256=TaiuKW87WnqB0nWlxDRTuran6QYj3RFcs5W5H7GsIoU,7546
|
6
|
+
ansys/mechanical/core/launcher.py,sha256=Rd5kDcC58MZIjsk2d40Bx4qc0DVHzrYuNA3irDvsFKA,6675
|
7
|
+
ansys/mechanical/core/logging.py,sha256=TmIY5L-IrkyAQMKszotcbVCxyHLsMZQDAwbvcrSKwfs,24554
|
8
|
+
ansys/mechanical/core/mechanical.py,sha256=Gfk3eutPw9BHfNRXGAdHJs8VV7GK_fr469neuZ5GhYQ,85522
|
9
|
+
ansys/mechanical/core/misc.py,sha256=JxhmeW83R7aDVzaeG5IqZWfqyvLuDoGWtUeW1Uj6tuE,5545
|
10
|
+
ansys/mechanical/core/pool.py,sha256=WNTvQSRinWerwRQpWsk3_ZAw37nlYIAJiZgAKYfrWwM,27295
|
11
|
+
ansys/mechanical/core/run.py,sha256=_QM8lObixpdTff6I-5uCwLjT6lmN0QYgfU5yH44nUUY,10249
|
12
|
+
ansys/mechanical/core/embedding/__init__.py,sha256=QAUe-offKZZDPz0IYBIUtYi4Dgt02_U93yTeSWXO9fU,1356
|
13
|
+
ansys/mechanical/core/embedding/addins.py,sha256=6n3wCaD36cBbXWCbpniuABgvW6uBSN6xYXA5KkNgfLg,2167
|
14
|
+
ansys/mechanical/core/embedding/app.py,sha256=N5YZT8REng5ykCYzK5bdLUik1SBkJ6bGFIvfUNPTjlU,22694
|
15
|
+
ansys/mechanical/core/embedding/app_libraries.py,sha256=_czRZ5cPwRo9SIZNitlgmBf2riLdzlGmmD4BJt9Nvng,2922
|
16
|
+
ansys/mechanical/core/embedding/appdata.py,sha256=98BYek_AKH5LaN5J3o8Mx8QDy23_6EpwKyBSiQpiu0E,4273
|
17
|
+
ansys/mechanical/core/embedding/background.py,sha256=MCE8MnVYLO49t2peJdmwI_PoLLjHHPXUkTgvtUm7SVQ,3815
|
18
|
+
ansys/mechanical/core/embedding/cleanup_gui.py,sha256=TEF3l4A7UxMacmlkUwBBymTdqM6h8Be9piID4Hpn_jg,2354
|
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
|
+
ansys/mechanical/core/embedding/loader.py,sha256=e2KWBrVv5001MP6DPJWI0UwrEauUnlTLpz9X6WYFdhk,2503
|
23
|
+
ansys/mechanical/core/embedding/poster.py,sha256=-V1GYrvRDyv8nbaBJze7Uo3PUb1hfOIidf1YI7-cT60,3065
|
24
|
+
ansys/mechanical/core/embedding/resolver.py,sha256=0roF0EuSuHVTiwobUM1N8qPRY0SlPH5lb263aZZbWPA,1919
|
25
|
+
ansys/mechanical/core/embedding/runtime.py,sha256=T0cikodMaI7mi1Xpa1dbLQIPZbz8SHfv7vammQT8A7Y,2285
|
26
|
+
ansys/mechanical/core/embedding/shims.py,sha256=LP5px-ED4JNbqFEpYnmBkGiGDdfDkLQ-v1tNnPbz3E8,1732
|
27
|
+
ansys/mechanical/core/embedding/ui.py,sha256=1XXkKSvui9iHKGqFROJQZMW-3iY-Hh2i1Ixq8Iav8cY,8480
|
28
|
+
ansys/mechanical/core/embedding/utils.py,sha256=7KSFCl9VM_WhrQEtI3Jc9OwhmH9wI7PH0n17ab_ytfo,1900
|
29
|
+
ansys/mechanical/core/embedding/warnings.py,sha256=Iyo95YOneMdCxOImXjnohhQZ86tD3xcnvJPUstlvHy0,3071
|
30
|
+
ansys/mechanical/core/embedding/logger/__init__.py,sha256=_DS8o4L8JaN0whQzYxdzk5ZY_YxTWchtvq4I0Nr9jLI,8217
|
31
|
+
ansys/mechanical/core/embedding/logger/environ.py,sha256=Jo9OEyag2ub_DIshxEX6Re8UzIrXCfmge5hFrn3exKk,5757
|
32
|
+
ansys/mechanical/core/embedding/logger/linux_api.py,sha256=wM95m4ArlF3gvqKFvKP7DzWWRHSngB3fe51D26CUD3Y,5988
|
33
|
+
ansys/mechanical/core/embedding/logger/sinks.py,sha256=-lAS-M7k3WHAblbrM7nzpOBJiCjN8e6i52GoEeQo_gE,1392
|
34
|
+
ansys/mechanical/core/embedding/logger/windows_api.py,sha256=GoFPfO-_umcCRAQeYrEdYQCTYpeNLB_IrY4hHh_LmTo,5276
|
35
|
+
ansys/mechanical/core/embedding/viz/__init__.py,sha256=KHZQAzlfgEVhi-G0msA6ca1o-2RecoNGzkpYfBIoCTA,1206
|
36
|
+
ansys/mechanical/core/embedding/viz/embedding_plotter.py,sha256=d2GjQiQgDHXfNTgETEIKRZYymkvB8-3KBHs7fF9PW_c,3689
|
37
|
+
ansys/mechanical/core/embedding/viz/usd_converter.py,sha256=kMKmGLThbWf7iR9bYn24mdmgKBkLDdkwdHrOokFvg_U,5329
|
38
|
+
ansys/mechanical/core/embedding/viz/utils.py,sha256=AYvp0okbEk3y9611eGAtvhgh65ytfpHkywVT7qk_liQ,3660
|
39
|
+
ansys/mechanical/core/examples/__init__.py,sha256=Y0T8CKmaALL3diLfhsz3opfBgckD85DfHdzDrVsSwzg,1267
|
40
|
+
ansys/mechanical/core/examples/downloads.py,sha256=5_Krq3HqVeAeD4z3dx9uujLk1u6rPFoAuwQus9eYWjg,4295
|
41
|
+
ansys_mechanical_core-0.11.12.dist-info/entry_points.txt,sha256=tErx6bIM27HGgwyM6ryyTUTw30Ab2F9J3FFkX2TPkhI,130
|
42
|
+
ansys_mechanical_core-0.11.12.dist-info/LICENSE,sha256=AVOPDv4UX26lKidhDvFf_fMR13Pr-n4wVAYSVyvD7Ww,1098
|
43
|
+
ansys_mechanical_core-0.11.12.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
|
44
|
+
ansys_mechanical_core-0.11.12.dist-info/METADATA,sha256=bsIcOF7ID-IKAVAH2aCnl-6nb7XcGOmwNyLOSZ4quiw,9985
|
45
|
+
ansys_mechanical_core-0.11.12.dist-info/RECORD,,
|
@@ -1,40 +0,0 @@
|
|
1
|
-
ansys/mechanical/core/__init__.py,sha256=J6vF9X56sZnt4P4Kyry7M8UwbgnpzYyHGekYfsY2wrU,2390
|
2
|
-
ansys/mechanical/core/_version.py,sha256=meo3W697_K1HLinX4jJWjOZBKhxa_ijU_maSwRkGpEY,1709
|
3
|
-
ansys/mechanical/core/errors.py,sha256=a9f9cSIDjkA2N0E-WVz4bSJALtHqvJ0Pjw323weoKuo,4466
|
4
|
-
ansys/mechanical/core/launcher.py,sha256=-I1hoscyc5HY8EHL07gPUeoeRgUJaW8agdQWOpqK30A,6659
|
5
|
-
ansys/mechanical/core/logging.py,sha256=suKY2HCrAQX58HSc8z9fT78qs-OXwBs-Php9_O6c4hw,24130
|
6
|
-
ansys/mechanical/core/mechanical.py,sha256=ef-2Oxd2q-sMXs_Qk9tErfkjBim0fq48vE_5kfwoG3U,79705
|
7
|
-
ansys/mechanical/core/misc.py,sha256=Kd3dal7H9BWukhgRS04Pf0WYkhKBSqPrG0lLjueX-us,5369
|
8
|
-
ansys/mechanical/core/pool.py,sha256=R6w04L9YIZakBlOUuwMUbvmHDtUxiyt7G3NAFlJ5Wvk,26433
|
9
|
-
ansys/mechanical/core/run.py,sha256=aPLKI9PBorhUjF1NgssVjO_d9nTCjUnza8Nta8LJOtg,7681
|
10
|
-
ansys/mechanical/core/embedding/__init__.py,sha256=y0yp3dnBW2oj9Jh_L_qfZstAbpON974EMmpV9w3kT3g,1356
|
11
|
-
ansys/mechanical/core/embedding/addins.py,sha256=yRG8CT1f1MgQj0y_mP3ISePVp7t9erw0o5Sbn1tFNkc,2370
|
12
|
-
ansys/mechanical/core/embedding/app.py,sha256=AdlLoTq501QWYC2n6BwD044lnpZfsr_5mDO5ApU4MQQ,9504
|
13
|
-
ansys/mechanical/core/embedding/app_libraries.py,sha256=afYvNDJvh_Or0jVxKzSglM9OQnGz88NUxht8GPIf5lM,2208
|
14
|
-
ansys/mechanical/core/embedding/appdata.py,sha256=q1Du9Mgm9vtRhtudQvBVccjL1GBsCujszINL_RULwtM,3904
|
15
|
-
ansys/mechanical/core/embedding/enum_importer.py,sha256=3REw7SI_WmfPuzD0i9mdC7k53S-1jxhowqSxjzw7UGk,1543
|
16
|
-
ansys/mechanical/core/embedding/imports.py,sha256=Rw9YIFvVqjKGB3qlPNbEZKdcS2aa8NyWnlClZbaIjCw,3717
|
17
|
-
ansys/mechanical/core/embedding/initializer.py,sha256=kUbGabV7urSS74s1H5hl5ssbR1unaLsLemqn0EuF0Pk,6597
|
18
|
-
ansys/mechanical/core/embedding/loader.py,sha256=bmdJQmaKUHIoqdczyyHpuswrWD7PtH1ETrESy_HBiss,2194
|
19
|
-
ansys/mechanical/core/embedding/poster.py,sha256=F49n0IIThzJweaM_QvYAz-gyD0WFzLeKgK_uvMFOG8k,2027
|
20
|
-
ansys/mechanical/core/embedding/resolver.py,sha256=n-Eb-6XA-SmnshtIMRGcUfj8PqmYeSTDVgMgVWxdSpg,2006
|
21
|
-
ansys/mechanical/core/embedding/runtime.py,sha256=zDxwKDTc23cR_kc63M9u4zDWVoJ2efEtF3djHGwicG4,2285
|
22
|
-
ansys/mechanical/core/embedding/shims.py,sha256=2lm6vrqsCnxxYRIdw2bJx6LE2AcWGk99mm-CNhi_wM0,1857
|
23
|
-
ansys/mechanical/core/embedding/utils.py,sha256=UObL4XBvx19aAYV8iVM4eCQR9vfqNSDsdwqkb1VFwTY,1900
|
24
|
-
ansys/mechanical/core/embedding/warnings.py,sha256=igXfTCkDb8IDQqYP02Cynsqr7ewnueR12Dr0zpku7Kw,3071
|
25
|
-
ansys/mechanical/core/embedding/logger/__init__.py,sha256=sPLYcI9v9lBhaquJdSLGJINPzUOHCB7ngoH3qcSD86o,7915
|
26
|
-
ansys/mechanical/core/embedding/logger/environ.py,sha256=UR9-fVxUEzwlVX-s0XnX5FrnSJc_ygRQwk-LE5tSEhE,5757
|
27
|
-
ansys/mechanical/core/embedding/logger/linux_api.py,sha256=VrsO9F4NwHFWYJJE6F7biOzZUiRTvQOxYqk2R2c1Ymw,5988
|
28
|
-
ansys/mechanical/core/embedding/logger/sinks.py,sha256=FYmV2iWt-7KuGw40E5WcNm4AnDsWqw6aQKSMKlivYoo,1392
|
29
|
-
ansys/mechanical/core/embedding/logger/windows_api.py,sha256=OCJ-SJEY7EjigZiW6H5qufQ39N_mL7sXeoivOVl9FHc,5248
|
30
|
-
ansys/mechanical/core/embedding/viz/__init__.py,sha256=xgpBdf3yfEq3sn0bNewLwtje-SCH6vVWEmHfCdh6078,1206
|
31
|
-
ansys/mechanical/core/embedding/viz/pyvista_plotter.py,sha256=JYO2M1dUVGt3C6V1r9y5qjJtWsjuz9-F8o_yfzxBSE0,2887
|
32
|
-
ansys/mechanical/core/embedding/viz/usd_converter.py,sha256=dWo5NDqK60uxnoH4gtnw4M9I-NrMZ593Q6iHbrnsOP4,4278
|
33
|
-
ansys/mechanical/core/embedding/viz/utils.py,sha256=pIROh87BI_OxJtkM8To9KYulpygdQ6I3g1f1BJQ-SBE,2441
|
34
|
-
ansys/mechanical/core/examples/__init__.py,sha256=A1iS8nknTU1ylafHZpYC9LQJ0sY83x8m1cDXsgvFOBo,1267
|
35
|
-
ansys/mechanical/core/examples/downloads.py,sha256=lJ2SrX9Qs0t2FSmMwUBB4UgSpk6Qb2-coY1PLlzPzHU,4144
|
36
|
-
ansys_mechanical_core-0.10.10.dist-info/entry_points.txt,sha256=wRXPv0eRXSmodweJHjF_Y3x5wmeSmjWcY3Bo6B4tAiM,66
|
37
|
-
ansys_mechanical_core-0.10.10.dist-info/LICENSE,sha256=T7JUr-yCdctLJsq3CnvIej8IdX34-k4fMHLu4yxzNME,1089
|
38
|
-
ansys_mechanical_core-0.10.10.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
|
39
|
-
ansys_mechanical_core-0.10.10.dist-info/METADATA,sha256=XUyppw8A3G2xTFHmya08iXLi9saLq1laA58fCXAUmYE,9837
|
40
|
-
ansys_mechanical_core-0.10.10.dist-info/RECORD,,
|