ansys-turbogrid-core 0.4.dev0__tar.gz → 0.4.dev1__tar.gz
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_turbogrid_core-0.4.dev0 → ansys_turbogrid_core-0.4.dev1}/PKG-INFO +10 -8
- {ansys_turbogrid_core-0.4.dev0 → ansys_turbogrid_core-0.4.dev1}/pyproject.toml +10 -19
- {ansys_turbogrid_core-0.4.dev0 → ansys_turbogrid_core-0.4.dev1}/src/ansys/turbogrid/core/launcher/launcher.py +5 -1
- ansys_turbogrid_core-0.4.dev1/src/ansys/turbogrid/core/multi_blade_row/__init__.py +0 -0
- ansys_turbogrid_core-0.4.dev1/src/ansys/turbogrid/core/multi_blade_row/multi_blade_row.py +1081 -0
- ansys_turbogrid_core-0.4.dev1/src/ansys/turbogrid/core/multi_blade_row/report_template.html +78 -0
- ansys_turbogrid_core-0.4.dev1/src/ansys/turbogrid/core/multi_blade_row/summary_template.html +73 -0
- ansys_turbogrid_core-0.4.dev1/src/ansys/turbogrid/core/ndf_parser/__init__.py +0 -0
- ansys_turbogrid_core-0.4.dev1/src/ansys/turbogrid/core/ndf_parser/ndf_parser.py +61 -0
- {ansys_turbogrid_core-0.4.dev0 → ansys_turbogrid_core-0.4.dev1}/LICENSE +0 -0
- {ansys_turbogrid_core-0.4.dev0 → ansys_turbogrid_core-0.4.dev1}/README.rst +0 -0
- {ansys_turbogrid_core-0.4.dev0 → ansys_turbogrid_core-0.4.dev1}/src/ansys/turbogrid/core/__init__.py +0 -0
- {ansys_turbogrid_core-0.4.dev0 → ansys_turbogrid_core-0.4.dev1}/src/ansys/turbogrid/core/mesh_statistics/__init__.py +0 -0
- {ansys_turbogrid_core-0.4.dev0 → ansys_turbogrid_core-0.4.dev1}/src/ansys/turbogrid/core/mesh_statistics/mesh_statistics.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: ansys-turbogrid-core
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.dev1
|
|
4
4
|
Summary: A python wrapper for Ansys TurboGrid
|
|
5
5
|
Author-email: "ANSYS, Inc." <pyansys.core@ansys.com>
|
|
6
6
|
Maintainer-email: "ANSYS, Inc." <pyansys.core@ansys.com>
|
|
@@ -19,23 +19,25 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
19
19
|
Requires-Dist: ansys-turbogrid-api>=0.4.dev1
|
|
20
20
|
Requires-Dist: matplotlib>=3.5.1
|
|
21
21
|
Requires-Dist: importlib-metadata>=4.0
|
|
22
|
-
Requires-Dist:
|
|
22
|
+
Requires-Dist: fabric>=3.2.2
|
|
23
|
+
Requires-Dist: Jinja2>=3.1.2
|
|
24
|
+
Requires-Dist: ansys-sphinx-theme==0.13.0 ; extra == "doc"
|
|
23
25
|
Requires-Dist: autodocsumm==0.2.11 ; extra == "doc"
|
|
24
26
|
Requires-Dist: ipyvtklink==0.2.3 ; extra == "doc"
|
|
25
27
|
Requires-Dist: jupyter_sphinx==0.4.0 ; extra == "doc"
|
|
26
28
|
Requires-Dist: jupytext==1.14.6 ; extra == "doc"
|
|
27
|
-
Requires-Dist: nbconvert==7.
|
|
29
|
+
Requires-Dist: nbconvert==7.14.1 ; extra == "doc"
|
|
28
30
|
Requires-Dist: nbsphinx==0.9.2 ; extra == "doc"
|
|
29
31
|
Requires-Dist: notebook==6.5.4 ; extra == "doc"
|
|
30
32
|
Requires-Dist: numpydoc==1.5.0 ; extra == "doc"
|
|
31
|
-
Requires-Dist: panel==1.
|
|
32
|
-
Requires-Dist: Sphinx==7.
|
|
33
|
-
Requires-Dist: sphinx-autoapi==
|
|
34
|
-
Requires-Dist: sphinx-autodoc-typehints==1.
|
|
33
|
+
Requires-Dist: panel==1.3.6 ; extra == "doc"
|
|
34
|
+
Requires-Dist: Sphinx==7.2.6 ; extra == "doc"
|
|
35
|
+
Requires-Dist: sphinx-autoapi==3.0.0 ; extra == "doc"
|
|
36
|
+
Requires-Dist: sphinx-autodoc-typehints==1.25.2 ; extra == "doc"
|
|
35
37
|
Requires-Dist: sphinx-copybutton==0.5.2 ; extra == "doc"
|
|
36
38
|
Requires-Dist: sphinx-gallery==0.13.0 ; extra == "doc"
|
|
37
39
|
Requires-Dist: matplotlib>=3.5.1 ; extra == "tests"
|
|
38
|
-
Requires-Dist: pytest==7.
|
|
40
|
+
Requires-Dist: pytest==7.4.4 ; extra == "tests"
|
|
39
41
|
Requires-Dist: pytest-cov==4.1.0 ; extra == "tests"
|
|
40
42
|
Project-URL: Documentation, https://turbogrid.docs.pyansys.com/version/stable/
|
|
41
43
|
Project-URL: Homepage, https://turbogrid.docs.pyansys.com
|
|
@@ -5,7 +5,7 @@ build-backend = "flit_core.buildapi"
|
|
|
5
5
|
[project]
|
|
6
6
|
# Check https://flit.readthedocs.io/en/latest/pyproject_toml.html for all available sections
|
|
7
7
|
name = "ansys-turbogrid-core"
|
|
8
|
-
version = "0.4.
|
|
8
|
+
version = "0.4.dev1"
|
|
9
9
|
description = "A python wrapper for Ansys TurboGrid"
|
|
10
10
|
readme = "README.rst"
|
|
11
11
|
requires-python = ">=3.8,<4"
|
|
@@ -35,28 +35,30 @@ dependencies = [
|
|
|
35
35
|
"ansys-turbogrid-api>=0.4.dev1",
|
|
36
36
|
"matplotlib>=3.5.1",
|
|
37
37
|
"importlib-metadata>=4.0",
|
|
38
|
+
"fabric>=3.2.2",
|
|
39
|
+
"Jinja2>=3.1.2",
|
|
38
40
|
]
|
|
39
41
|
|
|
40
42
|
[project.optional-dependencies]
|
|
41
43
|
tests = [
|
|
42
44
|
"matplotlib>=3.5.1",
|
|
43
|
-
"pytest==7.
|
|
45
|
+
"pytest==7.4.4",
|
|
44
46
|
"pytest-cov==4.1.0",
|
|
45
47
|
]
|
|
46
48
|
doc = [
|
|
47
|
-
"ansys-sphinx-theme==0.
|
|
49
|
+
"ansys-sphinx-theme==0.13.0",
|
|
48
50
|
"autodocsumm==0.2.11",
|
|
49
51
|
"ipyvtklink==0.2.3",
|
|
50
52
|
"jupyter_sphinx==0.4.0",
|
|
51
53
|
"jupytext==1.14.6",
|
|
52
|
-
"nbconvert==7.
|
|
54
|
+
"nbconvert==7.14.1",
|
|
53
55
|
"nbsphinx==0.9.2",
|
|
54
56
|
"notebook==6.5.4",
|
|
55
57
|
"numpydoc==1.5.0",
|
|
56
|
-
"panel==1.
|
|
57
|
-
"Sphinx==7.
|
|
58
|
-
"sphinx-autoapi==
|
|
59
|
-
"sphinx-autodoc-typehints==1.
|
|
58
|
+
"panel==1.3.6",
|
|
59
|
+
"Sphinx==7.2.6",
|
|
60
|
+
"sphinx-autoapi==3.0.0",
|
|
61
|
+
"sphinx-autodoc-typehints==1.25.2",
|
|
60
62
|
"sphinx-copybutton==0.5.2",
|
|
61
63
|
"sphinx-gallery==0.13.0",
|
|
62
64
|
]
|
|
@@ -80,17 +82,6 @@ line_length = 120
|
|
|
80
82
|
default_section = "THIRDPARTY"
|
|
81
83
|
src_paths = ["doc", "src", "tests"]
|
|
82
84
|
|
|
83
|
-
[[tool.poetry.source]]
|
|
84
|
-
name = "privatepypi"
|
|
85
|
-
url = "https://pkgs.dev.azure.com/pyansys/_packaging/pyansys/pypi/simple/"
|
|
86
|
-
default = false
|
|
87
|
-
secondary = true
|
|
88
|
-
|
|
89
|
-
[tool.poetry.dependencies]
|
|
90
|
-
python = ">=3.7,<4.0"
|
|
91
|
-
ansys-turbogrid-api = {source = "privatepypi"}
|
|
92
|
-
|
|
93
|
-
|
|
94
85
|
[tool.coverage.run]
|
|
95
86
|
source = ["ansys.turbogrid.core"]
|
|
96
87
|
|
|
@@ -122,6 +122,7 @@ def launch_turbogrid(
|
|
|
122
122
|
additional_kw_args: dict = None,
|
|
123
123
|
port: Optional[int] = None,
|
|
124
124
|
host: str = "127.0.0.1",
|
|
125
|
+
log_filename_suffix: str = "",
|
|
125
126
|
**kwargs,
|
|
126
127
|
) -> pyturbogrid_core.PyTurboGrid:
|
|
127
128
|
"""Launch TurboGrid locally in server mode.
|
|
@@ -147,7 +148,9 @@ def launch_turbogrid(
|
|
|
147
148
|
Port for TurboGrid communications. The default is ``None``, in which case
|
|
148
149
|
an available port is automatically selected.
|
|
149
150
|
host : str, default: ``127.0.0.1 (this is the local host IP for windows and linux)``
|
|
150
|
-
|
|
151
|
+
Host for TurboGrid communications. The default is ``127.0.0.1, or the local host``
|
|
152
|
+
log_filename_suffix : str, default: ""
|
|
153
|
+
Suffix for name of the log files written out.
|
|
151
154
|
|
|
152
155
|
Returns
|
|
153
156
|
-------
|
|
@@ -170,6 +173,7 @@ def launch_turbogrid(
|
|
|
170
173
|
additional_kw_args=additional_kw_args,
|
|
171
174
|
log_level=log_level,
|
|
172
175
|
host_ip=host,
|
|
176
|
+
log_filename_suffix=log_filename_suffix,
|
|
173
177
|
)
|
|
174
178
|
|
|
175
179
|
|
|
File without changes
|