ansys-pyensight-core 0.11.0__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/pyensight/core/__init__.py +41 -0
- ansys/pyensight/core/common.py +341 -0
- ansys/pyensight/core/deep_pixel_view.html +98 -0
- ansys/pyensight/core/dockerlauncher.py +1124 -0
- ansys/pyensight/core/dvs.py +872 -0
- ansys/pyensight/core/enscontext.py +345 -0
- ansys/pyensight/core/enshell_grpc.py +641 -0
- ansys/pyensight/core/ensight_grpc.py +874 -0
- ansys/pyensight/core/ensobj.py +515 -0
- ansys/pyensight/core/launch_ensight.py +296 -0
- ansys/pyensight/core/launcher.py +388 -0
- ansys/pyensight/core/libuserd.py +2110 -0
- ansys/pyensight/core/listobj.py +280 -0
- ansys/pyensight/core/locallauncher.py +579 -0
- ansys/pyensight/core/py.typed +0 -0
- ansys/pyensight/core/renderable.py +880 -0
- ansys/pyensight/core/session.py +1923 -0
- ansys/pyensight/core/sgeo_poll.html +24 -0
- ansys/pyensight/core/utils/__init__.py +21 -0
- ansys/pyensight/core/utils/adr.py +111 -0
- ansys/pyensight/core/utils/dsg_server.py +1220 -0
- ansys/pyensight/core/utils/export.py +606 -0
- ansys/pyensight/core/utils/omniverse.py +769 -0
- ansys/pyensight/core/utils/omniverse_cli.py +614 -0
- ansys/pyensight/core/utils/omniverse_dsg_server.py +1196 -0
- ansys/pyensight/core/utils/omniverse_glb_server.py +848 -0
- ansys/pyensight/core/utils/parts.py +1221 -0
- ansys/pyensight/core/utils/query.py +487 -0
- ansys/pyensight/core/utils/readers.py +300 -0
- ansys/pyensight/core/utils/resources/Materials/000_sky.exr +0 -0
- ansys/pyensight/core/utils/support.py +128 -0
- ansys/pyensight/core/utils/variables.py +2019 -0
- ansys/pyensight/core/utils/views.py +674 -0
- ansys_pyensight_core-0.11.0.dist-info/METADATA +309 -0
- ansys_pyensight_core-0.11.0.dist-info/RECORD +37 -0
- ansys_pyensight_core-0.11.0.dist-info/WHEEL +4 -0
- ansys_pyensight_core-0.11.0.dist-info/licenses/LICENSE +21 -0
|
@@ -0,0 +1,309 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ansys-pyensight-core
|
|
3
|
+
Version: 0.11.0
|
|
4
|
+
Summary: A python wrapper for Ansys EnSight
|
|
5
|
+
Author-email: "ANSYS, Inc." <pyansys.core@ansys.com>
|
|
6
|
+
Maintainer-email: "ANSYS, Inc." <pyansys.core@ansys.com>
|
|
7
|
+
Requires-Python: >=3.10,<3.14
|
|
8
|
+
Description-Content-Type: text/x-rst
|
|
9
|
+
Classifier: Development Status :: 4 - Beta
|
|
10
|
+
Classifier: Intended Audience :: Science/Research
|
|
11
|
+
Classifier: Topic :: Scientific/Engineering :: Information Analysis
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
18
|
+
License-File: LICENSE
|
|
19
|
+
Requires-Dist: importlib-metadata>=4.0; python_version<='3.8'
|
|
20
|
+
Requires-Dist: ansys-api-pyensight==0.4.9
|
|
21
|
+
Requires-Dist: requests>=2.28.2
|
|
22
|
+
Requires-Dist: docker>=6.1.0
|
|
23
|
+
Requires-Dist: urllib3<3
|
|
24
|
+
Requires-Dist: numpy>=1.21.0,<3
|
|
25
|
+
Requires-Dist: Pillow>=9.3.0
|
|
26
|
+
Requires-Dist: pypng>=0.0.20
|
|
27
|
+
Requires-Dist: psutil>=5.9.2
|
|
28
|
+
Requires-Dist: usd-core==25.11; platform_machine != 'aarch64'
|
|
29
|
+
Requires-Dist: pygltflib>=1.16.2
|
|
30
|
+
Requires-Dist: grpcio<1.68.0
|
|
31
|
+
Requires-Dist: ansys-tools-common>=0.3.0
|
|
32
|
+
Requires-Dist: build>=0.10.0 ; extra == "dev"
|
|
33
|
+
Requires-Dist: bump2version>=1.0.1 ; extra == "dev"
|
|
34
|
+
Requires-Dist: ipdb>=0.9.4 ; extra == "dev"
|
|
35
|
+
Requires-Dist: dill>=0.3.5.1 ; extra == "dev"
|
|
36
|
+
Requires-Dist: pre-commit>=3.3.3 ; extra == "dev"
|
|
37
|
+
Requires-Dist: Sphinx==8.1.3 ; extra == "doc"
|
|
38
|
+
Requires-Dist: numpydoc==1.10.0 ; extra == "doc"
|
|
39
|
+
Requires-Dist: ansys-sphinx-theme==1.6.3 ; extra == "doc"
|
|
40
|
+
Requires-Dist: sphinx-copybutton==0.5.2 ; extra == "doc"
|
|
41
|
+
Requires-Dist: sphinx-gallery==0.20.0 ; extra == "doc"
|
|
42
|
+
Requires-Dist: sphinxcontrib-mermaid==1.2.3 ; extra == "doc"
|
|
43
|
+
Requires-Dist: docker>=6.1.0 ; extra == "doc"
|
|
44
|
+
Requires-Dist: matplotlib==3.10.1 ; extra == "doc"
|
|
45
|
+
Requires-Dist: requests>=2.28.2 ; extra == "doc"
|
|
46
|
+
Requires-Dist: sphinxcontrib.jquery==4.1 ; extra == "doc"
|
|
47
|
+
Requires-Dist: sphinxcontrib-openapi==0.8.4 ; extra == "doc"
|
|
48
|
+
Requires-Dist: coverage-badge==1.1.2 ; extra == "doc"
|
|
49
|
+
Requires-Dist: sphinxcontrib-video==0.4.1 ; extra == "doc"
|
|
50
|
+
Requires-Dist: usd-core>=25.8 ; extra == "doc"
|
|
51
|
+
Requires-Dist: pygltflib>=1.16.2 ; extra == "doc"
|
|
52
|
+
Requires-Dist: pytest==9.0.1 ; extra == "tests"
|
|
53
|
+
Requires-Dist: pytest-cov==5.0.0 ; extra == "tests"
|
|
54
|
+
Requires-Dist: dill>=0.3.5.1 ; extra == "tests"
|
|
55
|
+
Requires-Dist: pytest-mock==3.15.1 ; extra == "tests"
|
|
56
|
+
Requires-Dist: urllib3<3.0.0 ; extra == "tests"
|
|
57
|
+
Requires-Dist: requests>=2.28.2 ; extra == "tests"
|
|
58
|
+
Requires-Dist: docker>=6.1.0 ; extra == "tests"
|
|
59
|
+
Requires-Dist: pytest-xdist==3.8.0 ; extra == "tests"
|
|
60
|
+
Requires-Dist: pytest-rerunfailures>=14,<17 ; extra == "tests"
|
|
61
|
+
Project-URL: Changelog, https://github.com/ansys/pyensight/blob/main/CHANGELOG.rst
|
|
62
|
+
Project-URL: Documentation, https://ensight.docs.pyansys.com/
|
|
63
|
+
Project-URL: Homepage, https://github.com/ansys/pyensight
|
|
64
|
+
Project-URL: Source, https://github.com/ansys/pyensight
|
|
65
|
+
Project-URL: Tracker, https://github.com/ansys/pyensight/issues
|
|
66
|
+
Provides-Extra: dev
|
|
67
|
+
Provides-Extra: doc
|
|
68
|
+
Provides-Extra: tests
|
|
69
|
+
|
|
70
|
+
PyEnSight
|
|
71
|
+
=========
|
|
72
|
+
|pyansys| |pypi| |python| |ci| |MIT| |pre-commit| |black| |isort| |bandit|
|
|
73
|
+
|
|
74
|
+
.. |pyansys| image:: https://img.shields.io/badge/Py-Ansys-ffc107.svg?logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAABDklEQVQ4jWNgoDfg5mD8vE7q/3bpVyskbW0sMRUwofHD7Dh5OBkZGBgW7/3W2tZpa2tLQEOyOzeEsfumlK2tbVpaGj4N6jIs1lpsDAwMJ278sveMY2BgCA0NFRISwqkhyQ1q/Nyd3zg4OBgYGNjZ2ePi4rB5loGBhZnhxTLJ/9ulv26Q4uVk1NXV/f///////69du4Zdg78lx//t0v+3S88rFISInD59GqIH2esIJ8G9O2/XVwhjzpw5EAam1xkkBJn/bJX+v1365hxxuCAfH9+3b9/+////48cPuNehNsS7cDEzMTAwMMzb+Q2u4dOnT2vWrMHu9ZtzxP9vl/69RVpCkBlZ3N7enoDXBwEAAA+YYitOilMVAAAAAElFTkSuQmCC
|
|
75
|
+
:target: https://docs.pyansys.com/
|
|
76
|
+
|
|
77
|
+
.. |pypi| image:: https://img.shields.io/pypi/v/ansys-pyensight-core.svg?logo=python&logoColor=white
|
|
78
|
+
:target: https://pypi.org/project/ansys-pyensight-core
|
|
79
|
+
|
|
80
|
+
.. |python| image:: https://img.shields.io/pypi/pyversions/ansys-pyensight-core?logo=pypi
|
|
81
|
+
:target: https://pypi.org/project/ansys-pyensight-core
|
|
82
|
+
|
|
83
|
+
.. |MIT| image:: https://img.shields.io/badge/License-MIT-yellow.svg
|
|
84
|
+
:target: https://opensource.org/licenses/MIT
|
|
85
|
+
|
|
86
|
+
.. |black| image:: https://img.shields.io/badge/code_style-black-000000.svg
|
|
87
|
+
:target: https://github.com/psf/black
|
|
88
|
+
|
|
89
|
+
.. |isort| image:: https://img.shields.io/badge/imports-isort-%231674b1.svg?style=flat&labelColor=ef8336
|
|
90
|
+
:target: https://pycqa.github.io/isort/
|
|
91
|
+
|
|
92
|
+
.. |pre-commit| image:: https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white
|
|
93
|
+
:target: https://github.com/pre-commit/pre-commit
|
|
94
|
+
|
|
95
|
+
.. |bandit| image:: https://img.shields.io/badge/security-bandit-yellow.svg
|
|
96
|
+
:target: https://github.com/PyCQA/bandit
|
|
97
|
+
:alt: Security Status
|
|
98
|
+
|
|
99
|
+
.. |ci| image:: https://github.com/ansys/pyensight/actions/workflows/ci_cd.yml/badge.svg?branch=main
|
|
100
|
+
:target: https://github.com/ansys/pyensight/actions?query=branch%3Amain
|
|
101
|
+
|
|
102
|
+
.. |title| image:: https://s3.amazonaws.com/www3.ensight.com/build/media/pyensight_title.png
|
|
103
|
+
|
|
104
|
+
.. _EnSight: https://www.ansys.com/products/fluids/ansys-ensight
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
Overview
|
|
108
|
+
--------
|
|
109
|
+
PyEnSight is a Python wrapper for EnSight_, the Ansys simulation postprocessor.
|
|
110
|
+
It supports Pythonic access to EnSight so that you communicate directly with it
|
|
111
|
+
from Python. With PyEnSight, you can perform these essential actions:
|
|
112
|
+
|
|
113
|
+
* Start a new EnSight session or connect to an existing one.
|
|
114
|
+
* Read simulation data from any supported solver output format into the session.
|
|
115
|
+
* Generate complex postprocessing results in a Pythonic fashion.
|
|
116
|
+
* Visualize the processed data, extract it, or get a widget to embed it in an external app.
|
|
117
|
+
|
|
118
|
+
Documentation and Issues
|
|
119
|
+
------------------------
|
|
120
|
+
Documentation for the latest stable release of PyEnSight is hosted at
|
|
121
|
+
`PyEnSight documentation <https://ensight.docs.pyansys.com/version/stable/>`_.
|
|
122
|
+
|
|
123
|
+
In the upper right corner of the documentation's title bar, there is an option for switching from
|
|
124
|
+
viewing the documentation for the latest stable release to viewing the documentation for the
|
|
125
|
+
development version or previously released versions.
|
|
126
|
+
|
|
127
|
+
You can also `view <https://cheatsheets.docs.pyansys.com/pyensight_cheat_sheet.png>`_ or
|
|
128
|
+
`download <https://cheatsheets.docs.pyansys.com/pyensight_cheat_sheet.pdf>`_ the
|
|
129
|
+
PyEnSight cheat sheet. This one-page reference provides syntax rules and commands
|
|
130
|
+
for using PyEnSight.
|
|
131
|
+
|
|
132
|
+
On the `PyEnSight Issues <https://github.com/ansys/pyensight/issues>`_ page, you can
|
|
133
|
+
create issues to report bugs and request new features. On the
|
|
134
|
+
`PyEnSight Discussions <https://github.com/ansys/pyensight/discussions>`_ page or the
|
|
135
|
+
`Discussions <https://discuss.ansys.com/>`_ page on the Ansys Developer portal,
|
|
136
|
+
you can post questions, share ideas, and get community feedback.
|
|
137
|
+
|
|
138
|
+
To reach the project support team, email `pyansys.core@ansys.com <pyansys.core@ansys.com>`_.
|
|
139
|
+
|
|
140
|
+
Installation
|
|
141
|
+
------------
|
|
142
|
+
To use PyEnSight, you must have a locally installed and licensed copy of
|
|
143
|
+
Ansys EnSight 2022 R2 or later. The ``ansys-pyensight-core`` package supports
|
|
144
|
+
Python 3.10 through Python 3.12 on Windows and Linux.
|
|
145
|
+
|
|
146
|
+
Two modes of installation are available:
|
|
147
|
+
|
|
148
|
+
- User installation
|
|
149
|
+
- Developer installation
|
|
150
|
+
|
|
151
|
+
User installation
|
|
152
|
+
~~~~~~~~~~~~~~~~~
|
|
153
|
+
Install the latest release from `PyPI <https://pypi.org/project/ansys-pyensight-core/>`_
|
|
154
|
+
with this command:
|
|
155
|
+
|
|
156
|
+
.. code::
|
|
157
|
+
|
|
158
|
+
pip install ansys-pyensight-core
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
Developer installation
|
|
162
|
+
~~~~~~~~~~~~~~~~~~~~~~
|
|
163
|
+
If you plan on doing local *development* of PyEnSight with GitHub, consider
|
|
164
|
+
using a `virtual environment <https://docs.python.org/3/library/venv.html>`_.
|
|
165
|
+
|
|
166
|
+
To clone PyEnSight and then install it in a virtual environment, run these
|
|
167
|
+
commands:
|
|
168
|
+
|
|
169
|
+
.. code::
|
|
170
|
+
|
|
171
|
+
git clone https://github.com/ansys/pyensight
|
|
172
|
+
cd pyensight
|
|
173
|
+
pip install virtualenv
|
|
174
|
+
virtualenv venv # create virtual environment
|
|
175
|
+
source venv/bin/activate # (.\venv\Scripts\activate for Windows shell)
|
|
176
|
+
pip install .[dev] # install development dependencies
|
|
177
|
+
|
|
178
|
+
A developer installation allows you to edit ``ansys-pyensight`` files locally.
|
|
179
|
+
Any changes that you make are reflected in your setup after restarting the
|
|
180
|
+
Python kernel.
|
|
181
|
+
|
|
182
|
+
To build and install PyEnSight, run these commands:
|
|
183
|
+
|
|
184
|
+
.. code::
|
|
185
|
+
|
|
186
|
+
python -m build # build
|
|
187
|
+
# this will replace the editable install done previously. If you don't want to replace,
|
|
188
|
+
# switch your virtual environments to test the new install separately.
|
|
189
|
+
pip install .[tests] # install test dependencies
|
|
190
|
+
pytest # Run the tests
|
|
191
|
+
|
|
192
|
+
Pre-commit setup
|
|
193
|
+
----------------
|
|
194
|
+
|
|
195
|
+
``pre-commit`` is a multi-language package manager for pre-commit hooks.
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
To install pre-commit into your git hooks, run this command:
|
|
199
|
+
|
|
200
|
+
.. code::
|
|
201
|
+
|
|
202
|
+
pre-commit install
|
|
203
|
+
|
|
204
|
+
``pre-commit`` then runs on every commit. Each time you clone a project,
|
|
205
|
+
installing ``pre-commit`` should always be the first action that you take.
|
|
206
|
+
|
|
207
|
+
If you want to manually run all pre-commit hooks on a repository, run this
|
|
208
|
+
command:
|
|
209
|
+
|
|
210
|
+
.. code::
|
|
211
|
+
|
|
212
|
+
pre-commit run --all-files
|
|
213
|
+
|
|
214
|
+
A bunch of formatters run on your source files.
|
|
215
|
+
|
|
216
|
+
To run individual hooks, use this command, where ``<hook_id>`` is obtained from
|
|
217
|
+
from the ``.pre-commit-config.yaml`` file:
|
|
218
|
+
|
|
219
|
+
.. code::
|
|
220
|
+
|
|
221
|
+
pre-commit run <hook_id>
|
|
222
|
+
|
|
223
|
+
The first time pre-commit runs on a file, it automatically downloads, installs,
|
|
224
|
+
and runs the hook.
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
Local GitHub actions
|
|
228
|
+
--------------------
|
|
229
|
+
Simulating GitHub Actions on your local desktop is recommended. After installing the
|
|
230
|
+
`act <https://github.com/nektos/act#readme>`_ package, you can run a job. For
|
|
231
|
+
example, this command runs the ``docs`` job defined in the ``ci_cd.yml`` file:
|
|
232
|
+
|
|
233
|
+
.. code::
|
|
234
|
+
|
|
235
|
+
act -j docs
|
|
236
|
+
|
|
237
|
+
Deploy and upload steps **must always** be ignored. If they are not ignored, before
|
|
238
|
+
running a job, add ``if: ${{ !env.ACT }}`` to the workflow step (and commit if required).
|
|
239
|
+
|
|
240
|
+
Usage
|
|
241
|
+
-----
|
|
242
|
+
You can use this code to start the simplest PyEnSight session:
|
|
243
|
+
|
|
244
|
+
.. code:: python
|
|
245
|
+
|
|
246
|
+
>>> from ansys.pyensight.core import LocalLauncher
|
|
247
|
+
>>> session = LocalLauncher().start()
|
|
248
|
+
>>> data = session.render(1920, 1080, aa=4)
|
|
249
|
+
>>> with open("image.png", "wb") as f:
|
|
250
|
+
... f.write(data)
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
Optionally, EnSight can work with an EnSight Docker container using code like this:
|
|
254
|
+
|
|
255
|
+
.. code:: python
|
|
256
|
+
|
|
257
|
+
>>> from ansys.pyensight.core import DockerLauncher
|
|
258
|
+
>>> launcher = DockerLauncher(data_directory="d:/data", use_dev=True)
|
|
259
|
+
>>> launcher.pull()
|
|
260
|
+
>>> session = launcher.start()
|
|
261
|
+
>>> data = session.render(1920, 1080, aa=4)
|
|
262
|
+
>>> with open("image.png", "wb") as f:
|
|
263
|
+
... f.write(data)
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
In the preceding code, the ``data_directory`` argument specifies the host directory
|
|
267
|
+
to map into the container at the mount point, providing access to the data within
|
|
268
|
+
the container. This provides a method for EnSight running in the container to access
|
|
269
|
+
the host's file system to read or write data. The optional ``use_dev=True`` argument
|
|
270
|
+
specifies that the latest development version of EnSight should be used.
|
|
271
|
+
|
|
272
|
+
Also, PyEnSight can be launched as other PyAnsys products with the ``launch_ensight`` method:
|
|
273
|
+
|
|
274
|
+
.. code:: python
|
|
275
|
+
|
|
276
|
+
>>> from ansys.pyensight.core import launch_ensight
|
|
277
|
+
>>> session = launch_ensight(use_sos=3)
|
|
278
|
+
>>> data = session.render(1920, 1080, aa=4)
|
|
279
|
+
>>> with open("image.png", "wb") as f:
|
|
280
|
+
... f.write(data)
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
Dependencies
|
|
284
|
+
------------
|
|
285
|
+
You will need a locally installed and licensed copy of Ansys to run EnSight, with the
|
|
286
|
+
first supported version being Ansys 2022 R2.
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
Documentation and Issues
|
|
290
|
+
------------------------
|
|
291
|
+
Please see the latest release `documentation <https://ensight.docs.pyansys.com/>`_
|
|
292
|
+
page for more details.
|
|
293
|
+
|
|
294
|
+
Please feel free to post issues and other questions at `PyEnSight Issues
|
|
295
|
+
<https://github.com/ansys/pyensight/issues>`_. This is the best place
|
|
296
|
+
to post questions and code.
|
|
297
|
+
|
|
298
|
+
License
|
|
299
|
+
-------
|
|
300
|
+
PyEnSight is licensed under the MIT license.
|
|
301
|
+
|
|
302
|
+
PyEnsight makes no commercial claim over Ansys whatsoever. This library extends the functionality
|
|
303
|
+
of Ansys EnSight by adding a remote Python interface to EnSight without changing the core behavior
|
|
304
|
+
or license of the original software. The use of interactive control of PyEnSight requires a
|
|
305
|
+
legally licensed local copy of Ansys.
|
|
306
|
+
|
|
307
|
+
For more information on EnSight, see the `Ansys Ensight <https://www.ansys.com/products/fluids/ansys-ensight>`_
|
|
308
|
+
page on the Ansys website.
|
|
309
|
+
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
ansys/pyensight/core/__init__.py,sha256=6fo_ycTlEiX5Z0-Sg4GbUDQN7S7Ah_7tqyv-_jB8FN0,1999
|
|
2
|
+
ansys/pyensight/core/common.py,sha256=-UzeohMEg4Vy9L_eH65xgKoC1SeRdD19mVJUHla4d2c,12626
|
|
3
|
+
ansys/pyensight/core/deep_pixel_view.html,sha256=6u4mGOuzJiPze8N8pIKJsEGPv5y6-zb38m9IfrarATE,3510
|
|
4
|
+
ansys/pyensight/core/dockerlauncher.py,sha256=WFEYe7xvC1pG_MfoYOxUplK13PEOwAXalRN2MFaiKIc,45590
|
|
5
|
+
ansys/pyensight/core/dvs.py,sha256=7VPgQqd89TLTJldbhNxk1u6ldwyhc5RKuqMlFQIudeM,35927
|
|
6
|
+
ansys/pyensight/core/enscontext.py,sha256=MK9y2nq--MJwbaeVjxU_P7WIanAFsBIhhefzoY-_5_c,13295
|
|
7
|
+
ansys/pyensight/core/enshell_grpc.py,sha256=XnQJsLYaNc0rAh9fH_epmQCfAJRbj4swE1Si08Z_kP8,24777
|
|
8
|
+
ansys/pyensight/core/ensight_grpc.py,sha256=l6Ml1GXzlM0hGRcIomJVtN_9JUO2a57pcy0eVvdk_2Y,35470
|
|
9
|
+
ansys/pyensight/core/ensobj.py,sha256=3Et3v_MNJCIPT0-xO4kd1fI0I_SXpdWaeRuHl6-fFnc,19712
|
|
10
|
+
ansys/pyensight/core/launch_ensight.py,sha256=14YHJ5uA6DTBLPUV81RPTjjFM9wThH0_KYeypkJkl1w,11408
|
|
11
|
+
ansys/pyensight/core/launcher.py,sha256=NlDmN-s0av1jiW7rFYgoY7UXTFW0x8y2fYm3uQIUDDM,15438
|
|
12
|
+
ansys/pyensight/core/libuserd.py,sha256=Z1Hb8fAhoTxkTJ9teK7A8STsfssttDeAYGZ8nYDa57Q,77174
|
|
13
|
+
ansys/pyensight/core/listobj.py,sha256=CZ3qPVJYU8qfStSw1w0XmE19f_MgyM4xwZw0TJ1ZL3A,10489
|
|
14
|
+
ansys/pyensight/core/locallauncher.py,sha256=fHaEQlfEYMljhsdGAlpCENzgxc7y2JDavel6Vkem_hk,24939
|
|
15
|
+
ansys/pyensight/core/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
+
ansys/pyensight/core/renderable.py,sha256=cDrvzcbyx-xinVYDH1N_OGxjUVvKWB-vpcIpK2N8JJw,37516
|
|
17
|
+
ansys/pyensight/core/session.py,sha256=fhl9yOrfWVyRpZHhAUl-hBYS2Z0pSQpdcchIb3qsr8o,78048
|
|
18
|
+
ansys/pyensight/core/sgeo_poll.html,sha256=1M4BIc5CZpYA3b40qzk22NcPCLhjFnWdoS2PrS6Rhn4,752
|
|
19
|
+
ansys/pyensight/core/utils/__init__.py,sha256=70ClrxZSR0DtoOsIgx1_vB5lbI-tWBr7Yrp1hFu7svI,1153
|
|
20
|
+
ansys/pyensight/core/utils/adr.py,sha256=m7ie3FRS1R23w6kFiFjwOnrxSJtb1SIG86C3ARzJe8c,4724
|
|
21
|
+
ansys/pyensight/core/utils/dsg_server.py,sha256=2ZEyq6HOTShMD9u1_oWQVjxZ2D9G3jWxMJhgfPUQXv8,49821
|
|
22
|
+
ansys/pyensight/core/utils/export.py,sha256=CbpLL-0H_YH8Zimel6rZzMPpyJPtqc0WnEI4WIqUkFk,23758
|
|
23
|
+
ansys/pyensight/core/utils/omniverse.py,sha256=_AeZ0lH1OqlyY5UYodQwxVHiwt9utvWb3Z_LwbKZcsA,28821
|
|
24
|
+
ansys/pyensight/core/utils/omniverse_cli.py,sha256=B-za_NT7tELjlD8Gf4Yuk96h_jH-hZ5TWjR0tcK7S1c,23953
|
|
25
|
+
ansys/pyensight/core/utils/omniverse_dsg_server.py,sha256=EHYypyKtBWSXMyh0qFMNE67WrrFgIhmWjEqQdT0YEBs,46141
|
|
26
|
+
ansys/pyensight/core/utils/omniverse_glb_server.py,sha256=QRKia3uogYbimQk9LAE_9rt7RMfJVmcqB66Tktq2HKE,33321
|
|
27
|
+
ansys/pyensight/core/utils/parts.py,sha256=Y5zzEPq9fObD-hrcJGtEktC1L0x-Udu1yKZs5SR8pdc,53327
|
|
28
|
+
ansys/pyensight/core/utils/query.py,sha256=RFtcsOVlH2Y2WmTuB_DnS5rbetGNdjGFazQzrwB2gj8,20982
|
|
29
|
+
ansys/pyensight/core/utils/readers.py,sha256=JzbxB80cBwAIDFvBejVCgjSCfnIqGMJEeHptmHrt2g4,13292
|
|
30
|
+
ansys/pyensight/core/utils/support.py,sha256=kHblfv4d286qz50P7q3aZr58G7yARSH9KhSMJemnxWg,5243
|
|
31
|
+
ansys/pyensight/core/utils/variables.py,sha256=qy3Hup_3wUegwxDqoFoe_5xZ85J2ZvXF-mSZgiDYhCU,96287
|
|
32
|
+
ansys/pyensight/core/utils/views.py,sha256=2BJS3z0lmiV5VVl36zaiLtO94t6eiADSFwVMCO0Uoqo,25862
|
|
33
|
+
ansys/pyensight/core/utils/resources/Materials/000_sky.exr,sha256=xAR1gFd2uxPZDnvgfegdhEhRaqKtZldQDiR_-1rHKO0,8819933
|
|
34
|
+
ansys_pyensight_core-0.11.0.dist-info/licenses/LICENSE,sha256=GkjtkVXMdcP9M4oZ-zdBaDA6JeocW5nItUIRr1ATj9s,1097
|
|
35
|
+
ansys_pyensight_core-0.11.0.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
|
36
|
+
ansys_pyensight_core-0.11.0.dist-info/METADATA,sha256=QG85l_mXbhnHRdfYDVZmU9bXY9g096h-NQ-PUwI4zDI,12237
|
|
37
|
+
ansys_pyensight_core-0.11.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2022 - 2026 ANSYS, Inc. and/or its affiliates.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
6
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
7
|
+
the Software without restriction, including without limitation the rights to
|
|
8
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
9
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
|
10
|
+
so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|