ansys-fluent-core 0.34.1__py3-none-any.whl → 0.34.2__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/docker/utils.py +1 -1
- ansys/fluent/core/generated/api_tree/api_objects.json +1 -1
- ansys/fluent/core/generated/datamodel_231/flicing.py +30 -30
- ansys/fluent/core/generated/datamodel_231/meshing.py +229 -229
- ansys/fluent/core/generated/datamodel_232/flicing.py +25 -25
- ansys/fluent/core/generated/datamodel_232/meshing.py +231 -231
- ansys/fluent/core/generated/datamodel_241/flicing.py +30 -30
- ansys/fluent/core/generated/datamodel_241/meshing.py +296 -296
- ansys/fluent/core/generated/datamodel_242/flicing.py +30 -30
- ansys/fluent/core/generated/datamodel_242/meshing.py +312 -312
- ansys/fluent/core/generated/datamodel_242/part_management.py +6 -6
- ansys/fluent/core/generated/datamodel_251/flicing.py +50 -50
- ansys/fluent/core/generated/datamodel_251/meshing.py +346 -346
- ansys/fluent/core/generated/datamodel_252/flicing.py +50 -50
- ansys/fluent/core/generated/datamodel_252/meshing.py +423 -423
- ansys/fluent/core/generated/datamodel_252/part_management.py +5 -5
- ansys/fluent/core/generated/datamodel_261/flicing.py +50 -50
- ansys/fluent/core/generated/datamodel_261/meshing.py +382 -389
- ansys/fluent/core/generated/datamodel_261/part_management.py +10 -10
- ansys/fluent/core/generated/fluent_version_252.py +1 -1
- ansys/fluent/core/generated/fluent_version_261.py +3 -3
- ansys/fluent/core/generated/meshing/tui_261.py +3 -49
- ansys/fluent/core/generated/solver/settings_261.py +3723 -5494
- ansys/fluent/core/generated/solver/settings_261.pyi +2854 -3231
- ansys/fluent/core/generated/solver/tui_261.py +629 -1616
- ansys/fluent/core/launcher/fluent_container.py +1 -0
- ansys/fluent/core/launcher/slurm_launcher.py +1 -0
- {ansys_fluent_core-0.34.1.dist-info → ansys_fluent_core-0.34.2.dist-info}/METADATA +1 -1
- {ansys_fluent_core-0.34.1.dist-info → ansys_fluent_core-0.34.2.dist-info}/RECORD +32 -32
- {ansys_fluent_core-0.34.1.dist-info → ansys_fluent_core-0.34.2.dist-info}/LICENSE +0 -0
- {ansys_fluent_core-0.34.1.dist-info → ansys_fluent_core-0.34.2.dist-info}/WHEEL +0 -0
ansys/fluent/core/__init__.py
CHANGED
|
@@ -77,9 +77,9 @@ from ansys.fluent.core.utils import fldoc, get_examples_download_dir
|
|
|
77
77
|
from ansys.fluent.core.utils.fluent_version import FluentVersion # noqa: F401
|
|
78
78
|
from ansys.fluent.core.utils.setup_for_fluent import setup_for_fluent # noqa: F401
|
|
79
79
|
|
|
80
|
-
__version__ = "0.34.
|
|
80
|
+
__version__ = "0.34.2"
|
|
81
81
|
|
|
82
|
-
_VERSION_INFO = "Build date: August
|
|
82
|
+
_VERSION_INFO = "Build date: August 14, 2025 01:33 UTC ShaID: d5ae1e6"
|
|
83
83
|
"""
|
|
84
84
|
Global variable indicating the version info of the PyFluent package.
|
|
85
85
|
Build timestamp and commit hash are added to this variable during packaging.
|
|
@@ -30,6 +30,6 @@ def get_ghcr_fluent_image_name(image_tag: str):
|
|
|
30
30
|
Get the Fluent image name from GitHub registry based on the image tag.
|
|
31
31
|
"""
|
|
32
32
|
if image_tag >= "v26.1":
|
|
33
|
-
return "ghcr.io/ansys/
|
|
33
|
+
return "ghcr.io/ansys/pyfluent"
|
|
34
34
|
else:
|
|
35
35
|
return "ghcr.io/ansys/pyfluent"
|