ansys-fluent-core 0.32.dev1__py3-none-any.whl → 0.32.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 +2 -2
- ansys/fluent/core/generated/api_tree/api_objects.json +1 -1
- ansys/fluent/core/generated/datamodel_231/flicing.py +45 -45
- ansys/fluent/core/generated/datamodel_231/meshing.py +229 -229
- ansys/fluent/core/generated/datamodel_232/flicing.py +30 -30
- ansys/fluent/core/generated/datamodel_232/meshing.py +160 -160
- ansys/fluent/core/generated/datamodel_241/flicing.py +40 -40
- ansys/fluent/core/generated/datamodel_241/meshing.py +310 -310
- ansys/fluent/core/generated/datamodel_242/flicing.py +40 -40
- ansys/fluent/core/generated/datamodel_242/meshing.py +302 -302
- ansys/fluent/core/generated/datamodel_242/part_management.py +3 -3
- ansys/fluent/core/generated/datamodel_251/flicing.py +5 -5
- ansys/fluent/core/generated/datamodel_251/meshing.py +316 -316
- ansys/fluent/core/generated/datamodel_251/part_management.py +9 -9
- ansys/fluent/core/generated/datamodel_252/flicing.py +65 -65
- ansys/fluent/core/generated/datamodel_252/meshing.py +351 -351
- ansys/fluent/core/generated/datamodel_252/part_management.py +5 -5
- ansys/fluent/core/generated/datamodel_261/flicing.py +30 -30
- ansys/fluent/core/generated/datamodel_261/meshing.py +395 -395
- ansys/fluent/core/generated/fluent_version_261.py +3 -3
- ansys/fluent/core/generated/solver/settings_261.py +21 -8
- ansys/fluent/core/generated/solver/settings_261.pyi +10 -4
- ansys/fluent/core/solver/__init__.py +2 -0
- ansys/fluent/core/solver/settings_builtin_bases.py +23 -11
- ansys/fluent/core/utils/context_managers.py +68 -0
- {ansys_fluent_core-0.32.dev1.dist-info → ansys_fluent_core-0.32.1.dist-info}/METADATA +2 -2
- {ansys_fluent_core-0.32.dev1.dist-info → ansys_fluent_core-0.32.1.dist-info}/RECORD +29 -28
- {ansys_fluent_core-0.32.dev1.dist-info → ansys_fluent_core-0.32.1.dist-info}/LICENSE +0 -0
- {ansys_fluent_core-0.32.dev1.dist-info → ansys_fluent_core-0.32.1.dist-info}/WHEEL +0 -0
ansys/fluent/core/__init__.py
CHANGED
|
@@ -70,9 +70,9 @@ from ansys.fluent.core.utils import fldoc, get_examples_download_dir
|
|
|
70
70
|
from ansys.fluent.core.utils.fluent_version import FluentVersion # noqa: F401
|
|
71
71
|
from ansys.fluent.core.utils.setup_for_fluent import setup_for_fluent # noqa: F401
|
|
72
72
|
|
|
73
|
-
__version__ = "0.32.
|
|
73
|
+
__version__ = "0.32.1"
|
|
74
74
|
|
|
75
|
-
_VERSION_INFO = "Build date: May
|
|
75
|
+
_VERSION_INFO = "Build date: May 30, 2025 09:28 UTC ShaID: f9d4ca8"
|
|
76
76
|
"""
|
|
77
77
|
Global variable indicating the version info of the PyFluent package.
|
|
78
78
|
Build timestamp and commit hash are added to this variable during packaging.
|