ansys-fluent-core 0.31.dev1__py3-none-any.whl → 0.31.1__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.
Potentially problematic release.
This version of ansys-fluent-core might be problematic. Click here for more details.
- ansys/fluent/core/__init__.py +11 -3
- ansys/fluent/core/codegen/settingsgen.py +6 -0
- ansys/fluent/core/codegen/tuigen.py +1 -2
- ansys/fluent/core/docker/docker_compose.py +243 -0
- ansys/fluent/core/field_data_interfaces.py +6 -0
- ansys/fluent/core/file_session.py +158 -128
- ansys/fluent/core/filereader/data_file.py +11 -0
- ansys/fluent/core/filereader/pre_processor.py +22 -0
- ansys/fluent/core/fluent_connection.py +48 -20
- ansys/fluent/core/generated/api_tree/api_objects.json +1 -1
- ansys/fluent/core/generated/datamodel_231/flicing.py +35 -35
- ansys/fluent/core/generated/datamodel_231/meshing.py +189 -189
- ansys/fluent/core/generated/datamodel_232/flicing.py +35 -35
- ansys/fluent/core/generated/datamodel_232/meshing.py +237 -237
- ansys/fluent/core/generated/datamodel_241/flicing.py +45 -45
- ansys/fluent/core/generated/datamodel_241/meshing.py +295 -295
- ansys/fluent/core/generated/datamodel_242/flicing.py +60 -60
- ansys/fluent/core/generated/datamodel_242/meshing.py +285 -285
- ansys/fluent/core/generated/datamodel_242/part_management.py +6 -6
- ansys/fluent/core/generated/datamodel_251/flicing.py +55 -55
- ansys/fluent/core/generated/datamodel_251/meshing.py +370 -370
- ansys/fluent/core/generated/datamodel_251/part_management.py +6 -6
- ansys/fluent/core/generated/datamodel_252/flicing.py +55 -55
- ansys/fluent/core/generated/datamodel_252/meshing.py +790 -428
- ansys/fluent/core/generated/datamodel_252/part_management.py +10 -10
- ansys/fluent/core/generated/datamodel_252/preferences.py +1 -1
- ansys/fluent/core/generated/fluent_version_252.py +4 -4
- ansys/fluent/core/generated/meshing/tui_252.py +1133 -1178
- ansys/fluent/core/generated/solver/settings_252.py +2241 -1649
- ansys/fluent/core/generated/solver/settings_252.pyi +1785 -1430
- ansys/fluent/core/generated/solver/settings_builtin.pyi +104 -0
- ansys/fluent/core/generated/solver/tui_252.py +2174 -2005
- ansys/fluent/core/launcher/container_launcher.py +39 -8
- ansys/fluent/core/launcher/fluent_container.py +61 -22
- ansys/fluent/core/launcher/launcher.py +24 -13
- ansys/fluent/core/launcher/launcher_utils.py +8 -0
- ansys/fluent/core/launcher/process_launch_string.py +2 -6
- ansys/fluent/core/launcher/slurm_launcher.py +1 -0
- ansys/fluent/core/report.py +2 -0
- ansys/fluent/core/services/deprecated_field_data.py +74 -46
- ansys/fluent/core/services/field_data.py +104 -69
- ansys/fluent/core/services/reduction.py +55 -66
- ansys/fluent/core/services/solution_variables.py +9 -1
- ansys/fluent/core/session.py +15 -12
- ansys/fluent/core/session_meshing.py +3 -0
- ansys/fluent/core/session_solver.py +20 -43
- ansys/fluent/core/session_utilities.py +429 -0
- ansys/fluent/core/solver/flobject.py +28 -0
- ansys/fluent/core/utils/deprecate.py +46 -0
- ansys/fluent/core/utils/file_transfer_service.py +19 -3
- ansys/fluent/core/utils/fluent_version.py +42 -11
- ansys/fluent/core/variable_strategies/__init__.py +29 -0
- ansys/fluent/core/variable_strategies/expr.py +186 -0
- ansys/fluent/core/variable_strategies/field.py +186 -0
- ansys/fluent/core/variable_strategies/svar.py +61 -0
- {ansys_fluent_core-0.31.dev1.dist-info → ansys_fluent_core-0.31.1.dist-info}/METADATA +9 -6
- {ansys_fluent_core-0.31.dev1.dist-info → ansys_fluent_core-0.31.1.dist-info}/RECORD +59 -53
- {ansys_fluent_core-0.31.dev1.dist-info → ansys_fluent_core-0.31.1.dist-info}/WHEEL +1 -1
- {ansys_fluent_core-0.31.dev1.dist-info → ansys_fluent_core-0.31.1.dist-info/licenses}/LICENSE +0 -0
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# Copyright (C) 2021 - 2025 ANSYS, Inc. and/or its affiliates.
|
|
2
|
+
# SPDX-License-Identifier: MIT
|
|
3
|
+
#
|
|
4
|
+
#
|
|
5
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
# of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
# in the Software without restriction, including without limitation the rights
|
|
8
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
# copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
# furnished to do 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.
|
|
22
|
+
|
|
23
|
+
"""
|
|
24
|
+
Provides a ConversionStrategy for mapping VariableDescriptor to Fluent's SVAR names.
|
|
25
|
+
"""
|
|
26
|
+
|
|
27
|
+
try:
|
|
28
|
+
from ansys.units.variable_descriptor import (
|
|
29
|
+
MappingConversionStrategy,
|
|
30
|
+
VariableCatalog,
|
|
31
|
+
)
|
|
32
|
+
except ModuleNotFoundError:
|
|
33
|
+
MappingConversionStrategy = None
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
if MappingConversionStrategy:
|
|
37
|
+
|
|
38
|
+
class FluentSVarNamingStrategy(MappingConversionStrategy):
|
|
39
|
+
"""This strategy handles conversion of selected VariableCatalog into Fluent's
|
|
40
|
+
server-side field variable naming conventions (e.g., "SV_P" for pressure).
|
|
41
|
+
"""
|
|
42
|
+
|
|
43
|
+
_c = VariableCatalog
|
|
44
|
+
|
|
45
|
+
_mapping = {
|
|
46
|
+
# pressure
|
|
47
|
+
_c.PRESSURE: "SV_P",
|
|
48
|
+
_c.STATIC_PRESSURE: "SV_P",
|
|
49
|
+
# velocity
|
|
50
|
+
_c.VELOCITY_X: "SV_U",
|
|
51
|
+
_c.VELOCITY_Y: "SV_V",
|
|
52
|
+
_c.VELOCITY_Z: "SV_W",
|
|
53
|
+
# density
|
|
54
|
+
_c.DENSITY: "SV_DENSITY",
|
|
55
|
+
# temperature
|
|
56
|
+
_c.SPECIFIC_ENTHALPY: "SV_H",
|
|
57
|
+
_c.TEMPERATURE: "SV_T",
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
else:
|
|
61
|
+
FluentSVarNamingStrategy = None
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: ansys-fluent-core
|
|
3
|
-
Version: 0.31.
|
|
3
|
+
Version: 0.31.1
|
|
4
4
|
Summary: PyFluent provides Pythonic access to Ansys Fluent.
|
|
5
5
|
Author-email: "ANSYS, Inc." <pyansys.core@ansys.com>
|
|
6
6
|
Maintainer-email: "ANSYS, Inc." <pyansys.core@ansys.com>
|
|
@@ -10,11 +10,13 @@ Classifier: Development Status :: 4 - Beta
|
|
|
10
10
|
Classifier: Programming Language :: Python :: 3
|
|
11
11
|
Classifier: License :: OSI Approved :: MIT License
|
|
12
12
|
Classifier: Operating System :: OS Independent
|
|
13
|
+
License-File: LICENSE
|
|
13
14
|
Requires-Dist: ansys-api-fluent>=0.3.35
|
|
14
15
|
Requires-Dist: ansys-platform-instancemanagement~=1.1
|
|
15
16
|
Requires-Dist: ansys-tools-filetransfer>=0.1,<0.3
|
|
16
|
-
Requires-Dist: ansys-units>=0.
|
|
17
|
+
Requires-Dist: ansys-units>=0.5.1,<1.0
|
|
17
18
|
Requires-Dist: defusedxml>=0.7.1
|
|
19
|
+
Requires-Dist: deprecated>=1.2.18
|
|
18
20
|
Requires-Dist: docker>=7.1.0
|
|
19
21
|
Requires-Dist: grpcio>=1.30.0
|
|
20
22
|
Requires-Dist: grpcio-health-checking>=1.30.0
|
|
@@ -40,19 +42,20 @@ Requires-Dist: sphinxcontrib-websupport==2.0.0 ; extra == "docs"
|
|
|
40
42
|
Requires-Dist: sphinxemoji==0.3.1 ; extra == "docs"
|
|
41
43
|
Requires-Dist: sphinx-toggleprompt==0.6.0 ; extra == "docs"
|
|
42
44
|
Requires-Dist: autodocsumm==0.2.14 ; extra == "docs"
|
|
43
|
-
Requires-Dist: beautifulsoup4==4.13.
|
|
45
|
+
Requires-Dist: beautifulsoup4==4.13.4 ; extra == "docs"
|
|
44
46
|
Requires-Dist: openpyxl>=3.1.5 ; extra == "docs"
|
|
45
47
|
Requires-Dist: plotly>=5.22.0 ; extra == "docs"
|
|
46
48
|
Requires-Dist: python-pptx>=0.6.23 ; extra == "docs"
|
|
47
|
-
Requires-Dist: quarto-cli==1.
|
|
49
|
+
Requires-Dist: quarto-cli==1.7.29 ; extra == "docs"
|
|
48
50
|
Requires-Dist: pdf2image==1.17.0 ; extra == "docs"
|
|
49
51
|
Requires-Dist: seaborn>=0.13.2 ; extra == "docs"
|
|
50
52
|
Requires-Dist: tensorflow>=2.17.0 ; extra == "docs"
|
|
51
53
|
Requires-Dist: h5py==3.13.0 ; extra == "reader"
|
|
52
54
|
Requires-Dist: pytest==8.3.5 ; extra == "tests"
|
|
53
|
-
Requires-Dist: pytest-cov==6.1.
|
|
55
|
+
Requires-Dist: pytest-cov==6.1.1 ; extra == "tests"
|
|
54
56
|
Requires-Dist: pytest-mock==3.14.0 ; extra == "tests"
|
|
55
57
|
Requires-Dist: pytest-xdist==3.6.1 ; extra == "tests"
|
|
58
|
+
Requires-Dist: pyfakefs==5.8.0 ; extra == "tests"
|
|
56
59
|
Project-URL: Documentation, https://fluent.docs.pyansys.com/
|
|
57
60
|
Project-URL: Source, https://github.com/ansys/pyfluent
|
|
58
61
|
Project-URL: Tracker, https://github.com/ansys/pyfluent/issues
|
|
@@ -1,30 +1,31 @@
|
|
|
1
|
-
ansys/fluent/core/__init__.py,sha256=
|
|
1
|
+
ansys/fluent/core/__init__.py,sha256=mRP2uqMUmuCDuRqUmIEeAftGrtV6t-EeOEQTrddTlgk,6092
|
|
2
2
|
ansys/fluent/core/data_model_cache.py,sha256=MVnBuH7s5Yr_AI8f0F9kPw-gMExDopUKvW9a99MX2RE,16963
|
|
3
3
|
ansys/fluent/core/exceptions.py,sha256=fNOlOANWh1UJE2qBqOFxBjLXYQFvKzszX3KDQbVdEIY,2006
|
|
4
|
-
ansys/fluent/core/field_data_interfaces.py,sha256=
|
|
5
|
-
ansys/fluent/core/file_session.py,sha256=
|
|
6
|
-
ansys/fluent/core/fluent_connection.py,sha256=
|
|
4
|
+
ansys/fluent/core/field_data_interfaces.py,sha256=YEDGNQdVx6sBpx0c5FY66PguC7tHbeI8eeHGKht4pRc,19656
|
|
5
|
+
ansys/fluent/core/file_session.py,sha256=WWSCJNSXsFwr1mRSt36i_VJOdknAzKyfB433Zc6MXT0,40286
|
|
6
|
+
ansys/fluent/core/fluent_connection.py,sha256=BRdSDLuJ98nfBOJoepbT1xBncypho2CDa-yQ_nVDM3g,30519
|
|
7
7
|
ansys/fluent/core/get_build_details.py,sha256=FaXqFh4xJ_gUuB9VrEQxruVdr-pJLhkKo-kIMNQEiv4,2441
|
|
8
8
|
ansys/fluent/core/journaling.py,sha256=HnskC_eUwjslXsUZTJYkrLtBQAeMSiW4ZpUuXrgmtow,2299
|
|
9
9
|
ansys/fluent/core/logger.py,sha256=WlTeYxkyRxIA1AGNqJC7D0rLwPpYDcjtd6Ii_yL6LVc,9443
|
|
10
10
|
ansys/fluent/core/logging_config.yaml,sha256=vRRU5i-XxnAJgPxgJPfSrMUDXFVh0XJ2kBNrZsxwrB0,1408
|
|
11
11
|
ansys/fluent/core/parametric.py,sha256=msLDlV7fSB4vBjb1HnKNENZBDWvjcIPNli-s0PjX4cY,11377
|
|
12
12
|
ansys/fluent/core/pyfluent_warnings.py,sha256=_v47xiF743i8XQbdIT_yW4jz36Z4VDp-1a3AeeBANo8,2028
|
|
13
|
-
ansys/fluent/core/report.py,sha256=
|
|
13
|
+
ansys/fluent/core/report.py,sha256=5EPGsCfHjR6pnJhW8VbkbToP-sp_uUGSfOobydNrImE,2822
|
|
14
14
|
ansys/fluent/core/rpvars.py,sha256=32_hibh-lQ5z6C2yPeCdL0BEKJuPUvUp-f5-F5bxam0,4640
|
|
15
15
|
ansys/fluent/core/search.py,sha256=bkT4jjkYhNgzd-yDDTNaCkRoD-wZ_z88fU7kV9VKS1w,17530
|
|
16
|
-
ansys/fluent/core/session.py,sha256=
|
|
16
|
+
ansys/fluent/core/session.py,sha256=73Z79ACwxZOVx_QOiDQ7DapzygaOGZV3YVRTuXvHlY0,17345
|
|
17
17
|
ansys/fluent/core/session_base_meshing.py,sha256=wpg68zJZ6EUOZhWqFqu18itwNqI0H4cwQtU7Le4xiko,10155
|
|
18
|
-
ansys/fluent/core/session_meshing.py,sha256=
|
|
18
|
+
ansys/fluent/core/session_meshing.py,sha256=xNouJiB8iHEyRRT7DBmKc-BVCVukTR5cH5NDQBdC0wY,5121
|
|
19
19
|
ansys/fluent/core/session_meshing.pyi,sha256=hIEo5NdrES6ACe89N3HCEBXoyo7yM8VVP-67zIT8i6g,2289
|
|
20
20
|
ansys/fluent/core/session_pure_meshing.py,sha256=mEHg4xn18iK_yHlr5qRRddRZPNIaTolwHNVz7YMvM0k,8608
|
|
21
21
|
ansys/fluent/core/session_pure_meshing.pyi,sha256=NpthfsqNz3M4LNU9jgIrbfILgSRJMV2DvJb79Gy1f30,2776
|
|
22
22
|
ansys/fluent/core/session_shared.py,sha256=gce6Ce_quDwBE4-FvJ3tdBYF_vIxi9EXoC7DVgOJASI,3273
|
|
23
|
-
ansys/fluent/core/session_solver.py,sha256=
|
|
23
|
+
ansys/fluent/core/session_solver.py,sha256=hP-1rjpl1WeCQXNdzp4dXCyc-ICn7LfpndrqxNN-afk,13257
|
|
24
24
|
ansys/fluent/core/session_solver.pyi,sha256=-mls29iDdVxU7wrh6do3zoEir0qHyO14koD16I2xhq8,2046
|
|
25
25
|
ansys/fluent/core/session_solver_aero.py,sha256=6XuZR6JsWhiX5Wppty4BImG-LG7RFxXeqZ-VlyQDA2g,4492
|
|
26
26
|
ansys/fluent/core/session_solver_icing.py,sha256=_-gsew_0gan9mx2QZSycXAzNOvGS3MxykBacORS5Kqg,3649
|
|
27
27
|
ansys/fluent/core/session_solver_lite.py,sha256=LHiGY6qdNOY7OwtnZwlWyTDSd3T_fGF4pL2M-M_xW14,3101
|
|
28
|
+
ansys/fluent/core/session_utilities.py,sha256=mhjpAboBNS_-YIflt6P20TtLnGXmxCFqEg12m7xrCng,20380
|
|
28
29
|
ansys/fluent/core/system_coupling.py,sha256=6HjfMPV1IHAtAHoILu9RQI51rJBHew0a-8BcvN_LHYk,13843
|
|
29
30
|
ansys/fluent/core/workflow.py,sha256=yt2N9x5PmsL1mMhU2Wqtx0ye3xnnRUIYTsJvYOwE-p8,60399
|
|
30
31
|
ansys/fluent/core/_stand_alone_datamodel_client/_datamodel_client.py,sha256=0RNLFEcHva7X3HxMaDuC-Ry2qZqkNkbm8jMkFNcuyP0,2118
|
|
@@ -33,8 +34,8 @@ ansys/fluent/core/codegen/allapigen.py,sha256=Ga0l683Oh_U9yRKWlFGNP3K1grjTR8K18k
|
|
|
33
34
|
ansys/fluent/core/codegen/builtin_settingsgen.py,sha256=LY8wkDSQu08bZQSjKbnK9mZ5Ro0y3kWPi72w-7E_gVI,5255
|
|
34
35
|
ansys/fluent/core/codegen/datamodelgen.py,sha256=LrAXcIOEREnEa8hK36lt3qFfDChgmPPpzQuJmL1L_80,25323
|
|
35
36
|
ansys/fluent/core/codegen/print_fluent_version.py,sha256=4Oy8olebE3LLyQfIHtJ0f-2CEMzAQGo_141VG_3nFCw,2063
|
|
36
|
-
ansys/fluent/core/codegen/settingsgen.py,sha256=
|
|
37
|
-
ansys/fluent/core/codegen/tuigen.py,sha256=
|
|
37
|
+
ansys/fluent/core/codegen/settingsgen.py,sha256=6A3__5pqVUsJQFZJ6c10lyW7j9E8ZrI_HLOi8Gds6zk,16093
|
|
38
|
+
ansys/fluent/core/codegen/tuigen.py,sha256=L6GQb2IFxrvMB-ICyIjctBcLyEluxnViI-swb4PBWBY,13898
|
|
38
39
|
ansys/fluent/core/codegen/walk_api.py,sha256=sD3stBx47XfKl7IdxAYln7IGe_n7cntTZqZ_c6d5OAg,4430
|
|
39
40
|
ansys/fluent/core/codegen/write_settings_yaml.py,sha256=HPWqpzUiDZTkbVOD-Nl-8ihPgqDNgsRCwXHqNrw_cJU,2540
|
|
40
41
|
ansys/fluent/core/codegen/data/__init__.py,sha256=iU3iD1C8euFedGFX4o1-NVuoI7OKhEgjmbXR1tqjv0o,1153
|
|
@@ -42,74 +43,75 @@ ansys/fluent/core/codegen/data/fluent_gui_help_patch.py,sha256=5Tv9iBFzFaVwl11_r
|
|
|
42
43
|
ansys/fluent/core/codegen/data/meshing_utilities_examples.py,sha256=W3LvwDCLAFtnpMwBTDaDPct8fncDJr2sB3msZJjQG20,47646
|
|
43
44
|
ansys/fluent/core/codegen/data/static_info_222_meshing.pickle,sha256=W77lAHK8zE8NK_Vjcy9z3HgcLvBlXf-b2sk9PG_RyOg,288626
|
|
44
45
|
ansys/fluent/core/codegen/data/static_info_222_solver.pickle,sha256=rdXZm32IyvhztClk5mirzlf3_hczC-3FYFW8JEMoK3Y,1196326
|
|
46
|
+
ansys/fluent/core/docker/docker_compose.py,sha256=PTWVlh14xeHue19-RfGrQrY_EX3-G1eezslyMt8waTs,8237
|
|
45
47
|
ansys/fluent/core/docs/.gitignore,sha256=ez7QK8c9wGt9uQbPl6qR3sKy6yHy2SvFyqdh31u8Fo8,10
|
|
46
48
|
ansys/fluent/core/examples/__init__.py,sha256=Umpy8-WcLFES08kiG_i9V9ILw85Q1KzedIJQd9aFBjw,1281
|
|
47
49
|
ansys/fluent/core/examples/downloads.py,sha256=lS4lpitG6KAfeuW9Fnymv2xCNTOWV9REOdnf77lxUY0,7750
|
|
48
50
|
ansys/fluent/core/filereader/__init__.py,sha256=iU3iD1C8euFedGFX4o1-NVuoI7OKhEgjmbXR1tqjv0o,1153
|
|
49
51
|
ansys/fluent/core/filereader/case_file.py,sha256=MDSZ1Q5ZfI2LohTVFnOl7Ss4j8zC583o7NJxcrksXnY,23578
|
|
50
52
|
ansys/fluent/core/filereader/casereader.py,sha256=W1D9N69Q3AYqbMbVunLupEfoCYPCTyJW5zJxNChguDw,1486
|
|
51
|
-
ansys/fluent/core/filereader/data_file.py,sha256=
|
|
53
|
+
ansys/fluent/core/filereader/data_file.py,sha256=jJ3p81_sf-q0EdOAXXiebCJSNotSq7Jdr88yRf0_Ppg,8870
|
|
52
54
|
ansys/fluent/core/filereader/lispy.py,sha256=oTtcdh8XveutpBcCK5N7zi8OHHRg9QhJ0Nn1NVguUC4,17455
|
|
53
|
-
ansys/fluent/core/filereader/pre_processor.py,sha256=
|
|
55
|
+
ansys/fluent/core/filereader/pre_processor.py,sha256=eGXvPEKKg1anMylD_eygy_G5FFLFyUVtNqq-qNVmrhs,1485
|
|
54
56
|
ansys/fluent/core/generated/fluent_version_222.py,sha256=g38e3ctUL71_k29qiHAvApjzm4CjL37i2gCSgNEcpjg,158
|
|
55
57
|
ansys/fluent/core/generated/fluent_version_231.py,sha256=KEimazbeoKgKAxljiOwth1WpPK0Df99MTOEbd3Ze80s,167
|
|
56
58
|
ansys/fluent/core/generated/fluent_version_232.py,sha256=tA4sMzKfssaeUwlM6WSk0qAVI0PG9jmWHxyy9Q2r_GM,167
|
|
57
59
|
ansys/fluent/core/generated/fluent_version_241.py,sha256=R60bDiS2y_VYuI49NMPWTYgSaNDJsoESO163fY_KTJ0,167
|
|
58
60
|
ansys/fluent/core/generated/fluent_version_242.py,sha256=098i_ge1V5f_MZxu9hIjNAF_nYL5RTEzsGNkrgVIn0A,167
|
|
59
61
|
ansys/fluent/core/generated/fluent_version_251.py,sha256=HB2VZqVDg8DbP2kDE1v2rCxCgUrXwnWdiLGaTOdNnF0,167
|
|
60
|
-
ansys/fluent/core/generated/fluent_version_252.py,sha256=
|
|
61
|
-
ansys/fluent/core/generated/api_tree/api_objects.json,sha256=
|
|
62
|
+
ansys/fluent/core/generated/fluent_version_252.py,sha256=dYnaUqec_Jc05gEr4mysbxmbuFyaGxt-9P-q3fun6kA,173
|
|
63
|
+
ansys/fluent/core/generated/api_tree/api_objects.json,sha256=a_834rnX8XxOE1Y1_migcnn-YKdNfyM_YTHgQwbVLEw,13752670
|
|
62
64
|
ansys/fluent/core/generated/datamodel_222/meshing.py,sha256=jG7_oDXlknzf_UC6xTp8HSSgr4fVniWh5GY_uUgD49c,260944
|
|
63
65
|
ansys/fluent/core/generated/datamodel_222/part_management.py,sha256=pxrwUFW_IwnU_TWw2gjtuD1pTzWT6B1TJJuAeEE-1hE,76234
|
|
64
66
|
ansys/fluent/core/generated/datamodel_222/pm_file_management.py,sha256=_JKPLp3goVmeYerKBpDccxE8J3J7pYfixxnbN532NVs,9883
|
|
65
67
|
ansys/fluent/core/generated/datamodel_222/preferences.py,sha256=hqGpXmR6-DAnC7IJUHtPn5V3Xi8fjHIIsMtUvjfxiEY,102204
|
|
66
68
|
ansys/fluent/core/generated/datamodel_222/workflow.py,sha256=phHj4Z72y_unpT36fOFTbDAkKPnxW07pz-pIRVcEw_o,24341
|
|
67
|
-
ansys/fluent/core/generated/datamodel_231/flicing.py,sha256=
|
|
68
|
-
ansys/fluent/core/generated/datamodel_231/meshing.py,sha256=
|
|
69
|
+
ansys/fluent/core/generated/datamodel_231/flicing.py,sha256=i-Okv4Ubr66r7_gH6zYY6gqIoNPuQZnLoC2FYzQwRck,468431
|
|
70
|
+
ansys/fluent/core/generated/datamodel_231/meshing.py,sha256=B80ZSBnBtasALR4EKRlZowUHNDpruXIISPxTXx0UNVM,446627
|
|
69
71
|
ansys/fluent/core/generated/datamodel_231/part_management.py,sha256=YxMOgaBReFWTs-5MSxdhXyhtGGt186sg1rSlBH0zfdg,140437
|
|
70
72
|
ansys/fluent/core/generated/datamodel_231/pm_file_management.py,sha256=6JZlJ-gjcZgBcDBsW6RSCHp0jAROPVOd7DeotW5P1ng,10477
|
|
71
73
|
ansys/fluent/core/generated/datamodel_231/preferences.py,sha256=plsjq7rJqmEhrYz9SdXA0O0lS-UAkZ_c-haTy7tiaOw,102519
|
|
72
74
|
ansys/fluent/core/generated/datamodel_231/solver_workflow.py,sha256=JAaaZvdBsXe6F8uTedJ-PIVfngG9cLndm3zi6QUrCoI,37317
|
|
73
75
|
ansys/fluent/core/generated/datamodel_231/workflow.py,sha256=Cja8z2YF9dOxhlEKu5cCiDclnqmjPN9cYUqZ2oJ0G_A,25151
|
|
74
|
-
ansys/fluent/core/generated/datamodel_232/flicing.py,sha256=
|
|
75
|
-
ansys/fluent/core/generated/datamodel_232/meshing.py,sha256=
|
|
76
|
+
ansys/fluent/core/generated/datamodel_232/flicing.py,sha256=4cAInS9RrcUiwk1yQLP2W293ZJdfbEuM17Hn1y2ktuA,468737
|
|
77
|
+
ansys/fluent/core/generated/datamodel_232/meshing.py,sha256=wzNCvTWVfwsr0AMn9yMR9_WAT4EGqvhBoyuaYi32dAU,467203
|
|
76
78
|
ansys/fluent/core/generated/datamodel_232/part_management.py,sha256=YxMOgaBReFWTs-5MSxdhXyhtGGt186sg1rSlBH0zfdg,140437
|
|
77
79
|
ansys/fluent/core/generated/datamodel_232/pm_file_management.py,sha256=6JZlJ-gjcZgBcDBsW6RSCHp0jAROPVOd7DeotW5P1ng,10477
|
|
78
80
|
ansys/fluent/core/generated/datamodel_232/preferences.py,sha256=kArGDPyFzidmnTczouYjA9WZmnJX_8s-vIelN6IESIM,106005
|
|
79
81
|
ansys/fluent/core/generated/datamodel_232/solver_workflow.py,sha256=Ts_c6mj65W5i15aMBN5puYn66N2j5lTzSgt_TYCdBMc,44298
|
|
80
82
|
ansys/fluent/core/generated/datamodel_232/workflow.py,sha256=Cja8z2YF9dOxhlEKu5cCiDclnqmjPN9cYUqZ2oJ0G_A,25151
|
|
81
|
-
ansys/fluent/core/generated/datamodel_241/flicing.py,sha256=
|
|
82
|
-
ansys/fluent/core/generated/datamodel_241/meshing.py,sha256=
|
|
83
|
+
ansys/fluent/core/generated/datamodel_241/flicing.py,sha256=Z0W7Nqpp9Y_EaoColVpgDzlzR9eCuk5g0_RNZCMe3xw,468737
|
|
84
|
+
ansys/fluent/core/generated/datamodel_241/meshing.py,sha256=ky4YSFg4g_jP0oSGHM639z0TqsaP7MnZsjHLry4O4oA,506723
|
|
83
85
|
ansys/fluent/core/generated/datamodel_241/part_management.py,sha256=W1oJO-y4hIIMq9g7R3gzZ6pjK34F7xyAveOF7ZWXLhA,142916
|
|
84
86
|
ansys/fluent/core/generated/datamodel_241/pm_file_management.py,sha256=6JZlJ-gjcZgBcDBsW6RSCHp0jAROPVOd7DeotW5P1ng,10477
|
|
85
87
|
ansys/fluent/core/generated/datamodel_241/preferences.py,sha256=5lOaO5d_7rNI6g_P0KXtdEF-IUUYneZe_x2bA3G3jP8,107946
|
|
86
88
|
ansys/fluent/core/generated/datamodel_241/solver_workflow.py,sha256=Ts_c6mj65W5i15aMBN5puYn66N2j5lTzSgt_TYCdBMc,44298
|
|
87
89
|
ansys/fluent/core/generated/datamodel_241/workflow.py,sha256=w_zv2NxCAZvLSDbwLJHA_FTwZoVndDO_V7gL_TEQ46o,25523
|
|
88
|
-
ansys/fluent/core/generated/datamodel_242/flicing.py,sha256=
|
|
89
|
-
ansys/fluent/core/generated/datamodel_242/meshing.py,sha256=
|
|
90
|
+
ansys/fluent/core/generated/datamodel_242/flicing.py,sha256=SLpF0Kk02O7epWWAoe3_nKkSxlb8Al9-X5BtYCFsB00,519701
|
|
91
|
+
ansys/fluent/core/generated/datamodel_242/meshing.py,sha256=xYF0xJcbAaCXYgaoYdfYFnxdKfaRDQf7-4hev8292BE,705038
|
|
90
92
|
ansys/fluent/core/generated/datamodel_242/meshing_utilities.py,sha256=FIZ4pdO9ZS52hrBT8XrU0XWOgWkJroFy891tphDw8tQ,145933
|
|
91
93
|
ansys/fluent/core/generated/datamodel_242/meshing_utilities.pyi,sha256=NW-Du7YaM603iZaCe5zk6BaV2w7_zVKCSVS3eO8rEWM,30119
|
|
92
|
-
ansys/fluent/core/generated/datamodel_242/part_management.py,sha256=
|
|
94
|
+
ansys/fluent/core/generated/datamodel_242/part_management.py,sha256=ycsaZ2HSnliu8Cg0fw6L89pt6pSJF48THsOpGL7FD2g,198878
|
|
93
95
|
ansys/fluent/core/generated/datamodel_242/pm_file_management.py,sha256=LtXmO9-v86N9-RspThPSENexAmr8afIKzz_j2x107r4,12023
|
|
94
96
|
ansys/fluent/core/generated/datamodel_242/preferences.py,sha256=-HT1_FcL_-kz28cBjJAHNxfDKasyH22t_VK0hS2TF-0,112187
|
|
95
97
|
ansys/fluent/core/generated/datamodel_242/solver_workflow.py,sha256=eGZQTFTB1QVkEIvj-WhsYGH5MmXXCWcn9_rPKOljFew,48235
|
|
96
98
|
ansys/fluent/core/generated/datamodel_242/workflow.py,sha256=LBiYdvXAEO3zgiqSRjsrRLiFDOjdOWFfD5yFjI97qAU,27425
|
|
97
|
-
ansys/fluent/core/generated/datamodel_251/flicing.py,sha256=
|
|
98
|
-
ansys/fluent/core/generated/datamodel_251/meshing.py,sha256
|
|
99
|
+
ansys/fluent/core/generated/datamodel_251/flicing.py,sha256=vK6KoSpsMfodO7Kvj4HhmQ9BHpjQKTtr_m7JpxQ9gF4,519701
|
|
100
|
+
ansys/fluent/core/generated/datamodel_251/meshing.py,sha256=-GO7giE5qA1495FrrEi_6x-noPAyuZYX9WcMxwmg4Xg,749229
|
|
99
101
|
ansys/fluent/core/generated/datamodel_251/meshing_utilities.py,sha256=3bh58FJz19swsfJrC9uKHqytC0fLFI4E4_-eWBRFvYk,177566
|
|
100
102
|
ansys/fluent/core/generated/datamodel_251/meshing_utilities.pyi,sha256=tRXOj4HqsmsfY_5_uqcWdT9mlVwWDsrrDBGkkgE9Qk8,30506
|
|
101
|
-
ansys/fluent/core/generated/datamodel_251/part_management.py,sha256=
|
|
103
|
+
ansys/fluent/core/generated/datamodel_251/part_management.py,sha256=LMmD3x75rU0vSBLPtKpEE56jnT3sgZwlMN_oP7S1yHw,200176
|
|
102
104
|
ansys/fluent/core/generated/datamodel_251/pm_file_management.py,sha256=LtXmO9-v86N9-RspThPSENexAmr8afIKzz_j2x107r4,12023
|
|
103
105
|
ansys/fluent/core/generated/datamodel_251/preferences.py,sha256=jwNacZDoZaEmpRjsJqr5lDh_vwVUJ-enLXmYH7DYx2E,115630
|
|
104
106
|
ansys/fluent/core/generated/datamodel_251/solver_workflow.py,sha256=eGZQTFTB1QVkEIvj-WhsYGH5MmXXCWcn9_rPKOljFew,48235
|
|
105
107
|
ansys/fluent/core/generated/datamodel_251/workflow.py,sha256=UKwbtOadCV8C3LoXhAwsOLxnsKFQaYxxv_Z1M3gUDZw,27742
|
|
106
|
-
ansys/fluent/core/generated/datamodel_252/flicing.py,sha256=
|
|
107
|
-
ansys/fluent/core/generated/datamodel_252/meshing.py,sha256=
|
|
108
|
+
ansys/fluent/core/generated/datamodel_252/flicing.py,sha256=dMshAoN5owaFKh9ri9wPhDL_LlqRISV43o25237zyts,521561
|
|
109
|
+
ansys/fluent/core/generated/datamodel_252/meshing.py,sha256=2XpM_5GIxZuZpw2to0OM3Z2R551GQGEIPOa1tOCn-eM,877607
|
|
108
110
|
ansys/fluent/core/generated/datamodel_252/meshing_utilities.py,sha256=49pEckN_MlwhN7rlp3ojBuAwEKEJYl7PDUmgBqwJwPw,178034
|
|
109
111
|
ansys/fluent/core/generated/datamodel_252/meshing_utilities.pyi,sha256=J53pQomR2sQozP66bnsGuaOG0Y422lUnYT8sk2p8PH0,30634
|
|
110
|
-
ansys/fluent/core/generated/datamodel_252/part_management.py,sha256=
|
|
112
|
+
ansys/fluent/core/generated/datamodel_252/part_management.py,sha256=Dg8sCXarsXZ7TUFPSNr02Y2rTiYSERLmontdQvw1HrI,166591
|
|
111
113
|
ansys/fluent/core/generated/datamodel_252/pm_file_management.py,sha256=LtXmO9-v86N9-RspThPSENexAmr8afIKzz_j2x107r4,12023
|
|
112
|
-
ansys/fluent/core/generated/datamodel_252/preferences.py,sha256=
|
|
114
|
+
ansys/fluent/core/generated/datamodel_252/preferences.py,sha256=mTH6hN1i1sTPJfLpCwVtvd-5XSiKXwn3GbuFLRECjFs,123632
|
|
113
115
|
ansys/fluent/core/generated/datamodel_252/solver_workflow.py,sha256=Y0SR_7bc-qPCqabBbrBDatctD9U_U0f1LtS8UjUuu90,51272
|
|
114
116
|
ansys/fluent/core/generated/datamodel_252/workflow.py,sha256=J0vlBf1tLOe5kUHKEDJRLV033BhZVK0Y5OwMqjRoEW8,28018
|
|
115
117
|
ansys/fluent/core/generated/meshing/tui_222.py,sha256=-N3_qz1sEzDFIXwYEwZu3IQStw2AbUYdVO5EhlnYRBs,596960
|
|
@@ -118,7 +120,7 @@ ansys/fluent/core/generated/meshing/tui_232.py,sha256=nVG3OvGE0iEz_qW6968LA5wW75
|
|
|
118
120
|
ansys/fluent/core/generated/meshing/tui_241.py,sha256=TXZY6uTqj8C9N6403dIse9lWTZHQoFdZbd6id1rn5fw,609442
|
|
119
121
|
ansys/fluent/core/generated/meshing/tui_242.py,sha256=PW76uDMeQjBExAbHKLaCdReqdimzeaVgupn36eZ8RsM,616621
|
|
120
122
|
ansys/fluent/core/generated/meshing/tui_251.py,sha256=H01sTWY8oPlGg0os-t0I9DXprNrSWMhxVXH8G_cVsJo,624478
|
|
121
|
-
ansys/fluent/core/generated/meshing/tui_252.py,sha256=
|
|
123
|
+
ansys/fluent/core/generated/meshing/tui_252.py,sha256=xskQcQHWQ9TLvdUwgFQCwbohB6JN0XWj2GIUaFy1JEY,640248
|
|
122
124
|
ansys/fluent/core/generated/solver/settings_222.py,sha256=l61rJ4xau5aACR0n-a3a6V_9KQxxIszKd671L4ferbw,959175
|
|
123
125
|
ansys/fluent/core/generated/solver/settings_222.pyi,sha256=X_VEsX6gVKKQ8UQgIyZykLiUDhr3uhbQ1vYPuu6yDmA,560653
|
|
124
126
|
ansys/fluent/core/generated/solver/settings_231.py,sha256=Mmt5cE5SHtS4tmJHSGBYoT9ZLqAc3k6JGVJlLyJe00Y,1383045
|
|
@@ -131,29 +133,29 @@ ansys/fluent/core/generated/solver/settings_242.py,sha256=z_BLdkYIdKk_jGKoBmIRSn
|
|
|
131
133
|
ansys/fluent/core/generated/solver/settings_242.pyi,sha256=Bfs6mZcmUvRyjc8PNki2xi_zKMeksOQaylPWIkQidHE,1501982
|
|
132
134
|
ansys/fluent/core/generated/solver/settings_251.py,sha256=xA2INuRauY_-Nbe14bDSkf5bCVDrW7vXEeRrc_SKIvs,2576049
|
|
133
135
|
ansys/fluent/core/generated/solver/settings_251.pyi,sha256=Rj5uOWdwaXHItUvLIPqE3ujakDAemlRpxsWmGaEgKCU,1713309
|
|
134
|
-
ansys/fluent/core/generated/solver/settings_252.py,sha256=
|
|
135
|
-
ansys/fluent/core/generated/solver/settings_252.pyi,sha256=
|
|
136
|
+
ansys/fluent/core/generated/solver/settings_252.py,sha256=zz0qi35keuBqdxDLTHpfjqKCDFz866M1vccX_BSNBvU,2951290
|
|
137
|
+
ansys/fluent/core/generated/solver/settings_252.pyi,sha256=nrYQH_thT81L_w_dHqBziIqh-Q0L8btDbLsvlDLl_qk,1985148
|
|
136
138
|
ansys/fluent/core/generated/solver/settings_builtin.py,sha256=4IWfVaV7SQs-yrvD9plYYPlDnnyrJyi-gQ0Sfcw5u1A,54375
|
|
137
|
-
ansys/fluent/core/generated/solver/settings_builtin.pyi,sha256=
|
|
139
|
+
ansys/fluent/core/generated/solver/settings_builtin.pyi,sha256=dey9WLMgMhfAARG7f_cd3y7QwJnGsbNd9HUeL6Ab9Ng,90491
|
|
138
140
|
ansys/fluent/core/generated/solver/tui_222.py,sha256=YrWs6To25qtAGTjLIxK2yg9um9rOsiJKmCPcZrHxI0o,2785708
|
|
139
141
|
ansys/fluent/core/generated/solver/tui_231.py,sha256=adUuOnyCSUxePpzK-PdUQe3w77MTrLZpipI8IPBwqWs,2770957
|
|
140
142
|
ansys/fluent/core/generated/solver/tui_232.py,sha256=g-wYWRFEUCo8lf-JxOG3GhBqB_iBcvNS-EuFi-jB5IQ,1816651
|
|
141
143
|
ansys/fluent/core/generated/solver/tui_241.py,sha256=2c2NW4k2dP3dY5d--MJNJ082jp0ixlK9flshd3EaYqg,2009332
|
|
142
144
|
ansys/fluent/core/generated/solver/tui_242.py,sha256=e3DOfh-Tl6DFaotqBlrJLebOA9Uz5prxAqMKICPU76g,2085786
|
|
143
145
|
ansys/fluent/core/generated/solver/tui_251.py,sha256=vZsxD1mMqdFZDGLF6epEOJgNPO7XsUT1J_jyRIu3Gds,2159906
|
|
144
|
-
ansys/fluent/core/generated/solver/tui_252.py,sha256
|
|
146
|
+
ansys/fluent/core/generated/solver/tui_252.py,sha256=N94Hl4vL5gcJfv2tsD6MOq0irqZdw96Bju1KG_iF4Y8,2365374
|
|
145
147
|
ansys/fluent/core/launcher/__init__.py,sha256=9hMY9T1Xu0Pi8XBqEld4LpgcS7gpwUxzEW8U-_NElt0,1610
|
|
146
|
-
ansys/fluent/core/launcher/container_launcher.py,sha256=
|
|
148
|
+
ansys/fluent/core/launcher/container_launcher.py,sha256=mt1EwqvCu_GaVc9LJUpshssPHOC6mJTC5TtJdcebg9g,11343
|
|
147
149
|
ansys/fluent/core/launcher/error_handler.py,sha256=Nktj5KhHK9mk7IPo-tUyMqh94Q3pxGkxfnMhaEtgqw8,3977
|
|
148
|
-
ansys/fluent/core/launcher/fluent_container.py,sha256=
|
|
150
|
+
ansys/fluent/core/launcher/fluent_container.py,sha256=P_Kdjo0qbX16oymz88FlPf60kMzuouFtaF9_SyUzeeY,19668
|
|
149
151
|
ansys/fluent/core/launcher/fluent_launcher_options.json,sha256=QFuWt_s8wRKVqHd3s_GAVn-m6nRBF7i5cNOWICX0g1Y,805
|
|
150
|
-
ansys/fluent/core/launcher/launcher.py,sha256=
|
|
151
|
-
ansys/fluent/core/launcher/launcher_utils.py,sha256=
|
|
152
|
+
ansys/fluent/core/launcher/launcher.py,sha256=p617bQumKvoaFhdMsYgIFSS2hrnpaKSV05MJSv1a8bI,20009
|
|
153
|
+
ansys/fluent/core/launcher/launcher_utils.py,sha256=h8sLF5YxD0PO7J1ydPCnhBsFS1mfOQdzBQh9Gr9rPXQ,6016
|
|
152
154
|
ansys/fluent/core/launcher/pim_launcher.py,sha256=LFpeXnV1wzGWMw00LSqE3NLIWVCyuIl3T68bdqCmjLo,12096
|
|
153
|
-
ansys/fluent/core/launcher/process_launch_string.py,sha256=
|
|
155
|
+
ansys/fluent/core/launcher/process_launch_string.py,sha256=9RAudFgm7pRE2uRgB0kvbZy8Sz_gBJsbDAx-1T9DCDk,7284
|
|
154
156
|
ansys/fluent/core/launcher/pyfluent_enums.py,sha256=4gtI6tkDAiscWTEuc9PdPd8jCZqmbWo0JTgHd-TA92o,11672
|
|
155
157
|
ansys/fluent/core/launcher/server_info.py,sha256=I4JGJSZ4y4wt8SzhKK63XoFnRRXlag5CaLhOVqPsiog,4822
|
|
156
|
-
ansys/fluent/core/launcher/slurm_launcher.py,sha256=
|
|
158
|
+
ansys/fluent/core/launcher/slurm_launcher.py,sha256=A5Z3IPokz9gFq7F21PA-yTEzSF3TDXN4Q09Ydr1GlUA,20642
|
|
157
159
|
ansys/fluent/core/launcher/standalone_launcher.py,sha256=NHCffEiO3jya9yiMAlI3VyXjM2nwyoIkSfZ8Kz09aBU,15251
|
|
158
160
|
ansys/fluent/core/launcher/watchdog.py,sha256=m9CM8qXs0v_K6kQ7S-Q-N6fakTWWGcRmIeJNjYNmHRg,7080
|
|
159
161
|
ansys/fluent/core/launcher/watchdog_exec,sha256=GCLI49LxndfM_ZfMS_MOPYN-96wRQEAdvFF2wIEqO5Y,6197
|
|
@@ -175,22 +177,22 @@ ansys/fluent/core/services/app_utilities.py,sha256=OStE35HzCpGG3RB17Ln_Tuuyp5RM1
|
|
|
175
177
|
ansys/fluent/core/services/batch_ops.py,sha256=NmTqERVZ5quMInEFM-DofPwrWOYRprz93GjePBR-gjQ,8606
|
|
176
178
|
ansys/fluent/core/services/datamodel_se.py,sha256=gXAu0Jw0ILwGX6XhZlL46TshUNLeSX5RrABtPThyjts,76473
|
|
177
179
|
ansys/fluent/core/services/datamodel_tui.py,sha256=IZTtfdS-bJlX863yu0kb7D3kB82xNjOn4BY-uMpiKOI,15275
|
|
178
|
-
ansys/fluent/core/services/deprecated_field_data.py,sha256=
|
|
180
|
+
ansys/fluent/core/services/deprecated_field_data.py,sha256=uDaK6JZinBcQfifZahINqRVn4STFvxwXJRBi6HKAU9I,27228
|
|
179
181
|
ansys/fluent/core/services/events.py,sha256=mWDilZ3LCNYJw4bhCNTHikgmtfd3x_ZQq-mOX9mYOnw,1746
|
|
180
|
-
ansys/fluent/core/services/field_data.py,sha256=
|
|
182
|
+
ansys/fluent/core/services/field_data.py,sha256=Q1s21OIXtxFObZZIzpq8z39mB0j2sqTfFF7KtfdJvog,58532
|
|
181
183
|
ansys/fluent/core/services/health_check.py,sha256=Kz9TAO3eCK4oLUpHu6HNEzhup6PhJ5ZXSE5FJ8CALgA,4903
|
|
182
184
|
ansys/fluent/core/services/interceptors.py,sha256=FKIpCGEYv7kZGL6fq3XFs2S2YFkAM9zweu0xpQD5-iM,9291
|
|
183
185
|
ansys/fluent/core/services/monitor.py,sha256=ZlriWk61CtLi1Br7CABqYf27ueg9czI5P7NzITh21Vk,2846
|
|
184
|
-
ansys/fluent/core/services/reduction.py,sha256=
|
|
186
|
+
ansys/fluent/core/services/reduction.py,sha256=UevizHwVgXwUV0Wa28_RZ04xQ4Gq-l1UHO1dKpMH95Y,18234
|
|
185
187
|
ansys/fluent/core/services/scheme_eval.py,sha256=1CoLnRoyWtOlhU7092C0hrGZf51jicPKz6SlG49hJgM,13641
|
|
186
188
|
ansys/fluent/core/services/settings.py,sha256=rO9hPlBFnc_I-bZyZoj4K-F8UlLjqiBSrW4uEEOjhSY,14519
|
|
187
|
-
ansys/fluent/core/services/solution_variables.py,sha256=
|
|
189
|
+
ansys/fluent/core/services/solution_variables.py,sha256=e6DPRUivoAVy1o1OYaxBgnX_jn8j7lkDkS8A0T4u6PY,28442
|
|
188
190
|
ansys/fluent/core/services/streaming.py,sha256=Vc3GpBnTHzWGAM8W4cxkAbgEjNp0L9AmqiiucEufh4Y,3587
|
|
189
191
|
ansys/fluent/core/services/transcript.py,sha256=AQAtJt6OFDHwkxOTYXoZuVK5RucBH09qGe9S5_ja7eo,1754
|
|
190
192
|
ansys/fluent/core/solver/__init__.py,sha256=ZasBiwk-6qye3jeNE0zKBXdOQYW-ZyR8wAApC-OhzSg,1389
|
|
191
193
|
ansys/fluent/core/solver/_docstrings.py,sha256=_-NiOvAPr3CGu4G7bLpkUw2yfnvFpq7RCox77IMEX3M,8505
|
|
192
194
|
ansys/fluent/core/solver/error_message.py,sha256=pPzVh2ZwlXOYfcdWEgPHu90UkpW-jD239DxJOcweU5U,2729
|
|
193
|
-
ansys/fluent/core/solver/flobject.py,sha256=
|
|
195
|
+
ansys/fluent/core/solver/flobject.py,sha256=v1j-UkjcmmDEMbqQIrzIUKc7GQabomS-Yr9xfg_dh1w,76809
|
|
194
196
|
ansys/fluent/core/solver/flunits.py,sha256=RSMq_8dPxRTmLCUk5V0K9vmIXkVfYoYy42VNAsVAr-k,10505
|
|
195
197
|
ansys/fluent/core/solver/settings_builtin_bases.py,sha256=Ya9Jvvjg1XiXCJUMEFH3hdqAI_BxRk-KaYyBgoCvbZs,5552
|
|
196
198
|
ansys/fluent/core/solver/settings_builtin_data.py,sha256=571yvaoDFvXna4ccX11wq2uvQiDPlpKJShJXteLMjfE,44068
|
|
@@ -207,19 +209,23 @@ ansys/fluent/core/streaming_services/streaming.py,sha256=QxlqsKHRF7V8TtLhakSTOVQ
|
|
|
207
209
|
ansys/fluent/core/streaming_services/transcript_streaming.py,sha256=u9AzqnHIZAmm5jt-M0SAViZaKDaCSvOXs8uEjQ0MzP4,4759
|
|
208
210
|
ansys/fluent/core/utils/__init__.py,sha256=YrYSt5sBXuAs7uxOL-3_L1I_h7ZMU_B9a8m_NjAhx3Y,2257
|
|
209
211
|
ansys/fluent/core/utils/data_transfer.py,sha256=r2vdIQSrq3HAzb82nyP4DgRpzxhOsdzwE0ophuMI5TI,7594
|
|
210
|
-
ansys/fluent/core/utils/deprecate.py,sha256=
|
|
212
|
+
ansys/fluent/core/utils/deprecate.py,sha256=tXS2M27gqTR3_N1YsVuGY7wGlqUvM2-B2wldVsnjSrQ,5403
|
|
211
213
|
ansys/fluent/core/utils/dictionary_operations.py,sha256=cYy8RuSB2z72roD6dwLgTbhe2b8VNuJ2vDbMypq271I,1827
|
|
212
214
|
ansys/fluent/core/utils/dump_session_data.py,sha256=CqlJN_w_9NLPXdNEDqL09GGW1LFoz4Vy7ymKqDJ3ark,6885
|
|
213
215
|
ansys/fluent/core/utils/event_loop.py,sha256=3fxwG3xjhOmVctR10sUbJjDO0IjRvJLWpVoX4gcAglU,1737
|
|
214
216
|
ansys/fluent/core/utils/execution.py,sha256=tXkTJ-2va1bU3MyxQIICALgpUFoJOApg4T6jdT66tUw,6680
|
|
215
|
-
ansys/fluent/core/utils/file_transfer_service.py,sha256=
|
|
217
|
+
ansys/fluent/core/utils/file_transfer_service.py,sha256=7zht1qVe1aP_zGPIzDAPTn1H55lFTe5UtAoeo8toDDI,22530
|
|
216
218
|
ansys/fluent/core/utils/fix_doc.py,sha256=2FcRtBKzTnz3YBS-4698kvmbstlYTTPdrdTO1aKLq5k,2733
|
|
217
219
|
ansys/fluent/core/utils/fldoc.py,sha256=q0qmq_RDfxUqP5EuSnE3yRNgyEavsOdGYBaIrZ0iTq8,2270
|
|
218
|
-
ansys/fluent/core/utils/fluent_version.py,sha256=
|
|
220
|
+
ansys/fluent/core/utils/fluent_version.py,sha256=W9iIwrr0JzjhECho1Wrw2Db6QY7WFxo_UR2e3i6bovI,6275
|
|
219
221
|
ansys/fluent/core/utils/networking.py,sha256=hrZi4WgUSKGwV3iJBAK3tOaS4XLs4Nfs63fOwWvwM6I,4428
|
|
220
222
|
ansys/fluent/core/utils/setup_for_fluent.py,sha256=kgRIB40Fs0tx6Nup5LGhVIu63lX9CYzGx6TkgmJfZBw,2031
|
|
221
223
|
ansys/fluent/core/utils/test_grpc_connection.py,sha256=_7HyGZn9huR12D9WvR-8rDZ7ni1DHxzQii2YL7vRp98,5649
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
224
|
+
ansys/fluent/core/variable_strategies/__init__.py,sha256=hlwG6jACtNTBIMKM8V5e7lsze8vXdotzjA8JfEqOjPY,1441
|
|
225
|
+
ansys/fluent/core/variable_strategies/expr.py,sha256=YEm-DyYnS0Ukv6L8IqwLOTfW-MInE-ylHbi-zu3M9Dg,9412
|
|
226
|
+
ansys/fluent/core/variable_strategies/field.py,sha256=E2d0qiqHxOIUaDYH8IpBU0uGpbNxV1GuNeyHV2O0Tro,9331
|
|
227
|
+
ansys/fluent/core/variable_strategies/svar.py,sha256=kgnRHtcF12fVI5-_ukMNiPk4QM57E_YyuMEpi0wGICE,2204
|
|
228
|
+
ansys_fluent_core-0.31.1.dist-info/licenses/LICENSE,sha256=5w5etzTlBx3bnQfaa3IXMnV4n9cHCJn4bD5XbiUfCbY,1097
|
|
229
|
+
ansys_fluent_core-0.31.1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
|
230
|
+
ansys_fluent_core-0.31.1.dist-info/METADATA,sha256=dNAPHAakmE1OfGGvuuGqT-C_7OhWuDOHmh1-QzuJ7-A,9600
|
|
231
|
+
ansys_fluent_core-0.31.1.dist-info/RECORD,,
|
{ansys_fluent_core-0.31.dev1.dist-info → ansys_fluent_core-0.31.1.dist-info/licenses}/LICENSE
RENAMED
|
File without changes
|