ansys-fluent-core 0.30.3__py3-none-any.whl → 0.30.5__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/filereader/case_file.py +16 -13
- ansys/fluent/core/filereader/data_file.py +14 -5
- ansys/fluent/core/filereader/pre_processor.py +35 -0
- ansys/fluent/core/generated/api_tree/api_objects.json +1 -1
- ansys/fluent/core/generated/datamodel_252/preferences.py +7 -0
- ansys/fluent/core/generated/fluent_version_252.py +3 -3
- ansys/fluent/core/generated/meshing/tui_252.py +5 -0
- ansys/fluent/core/generated/solver/settings_252.py +393 -279
- ansys/fluent/core/generated/solver/settings_252.pyi +225 -201
- ansys/fluent/core/generated/solver/tui_252.py +13 -23
- ansys/fluent/core/solver/flobject.py +3 -2
- {ansys_fluent_core-0.30.3.dist-info → ansys_fluent_core-0.30.5.dist-info}/METADATA +1 -1
- {ansys_fluent_core-0.30.3.dist-info → ansys_fluent_core-0.30.5.dist-info}/RECORD +16 -15
- {ansys_fluent_core-0.30.3.dist-info → ansys_fluent_core-0.30.5.dist-info}/LICENSE +0 -0
- {ansys_fluent_core-0.30.3.dist-info → ansys_fluent_core-0.30.5.dist-info}/WHEEL +0 -0
|
@@ -85,6 +85,7 @@ class Root(PyMenu):
|
|
|
85
85
|
self.NumberOfPastelColors = self.__class__.NumberOfPastelColors(service, rules, path + [("NumberOfPastelColors", "")])
|
|
86
86
|
self.PastelColorSaturation = self.__class__.PastelColorSaturation(service, rules, path + [("PastelColorSaturation", "")])
|
|
87
87
|
self.PastelColorValue = self.__class__.PastelColorValue(service, rules, path + [("PastelColorValue", "")])
|
|
88
|
+
self.PyConsoleCompleter = self.__class__.PyConsoleCompleter(service, rules, path + [("PyConsoleCompleter", "")])
|
|
88
89
|
self.QuickPropertyView = self.__class__.QuickPropertyView(service, rules, path + [("QuickPropertyView", "")])
|
|
89
90
|
self.Ruler = self.__class__.Ruler(service, rules, path + [("Ruler", "")])
|
|
90
91
|
self.ShowEnabledModels = self.__class__.ShowEnabledModels(service, rules, path + [("ShowEnabledModels", "")])
|
|
@@ -528,6 +529,12 @@ class Root(PyMenu):
|
|
|
528
529
|
"""
|
|
529
530
|
pass
|
|
530
531
|
|
|
532
|
+
class PyConsoleCompleter(PyParameter):
|
|
533
|
+
"""
|
|
534
|
+
Parameter PyConsoleCompleter of value type bool.
|
|
535
|
+
"""
|
|
536
|
+
pass
|
|
537
|
+
|
|
531
538
|
class QuickPropertyView(PyParameter):
|
|
532
539
|
"""
|
|
533
540
|
Parameter QuickPropertyView of value type bool.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
FLUENT_VERSION = "252"
|
|
2
|
-
FLUENT_BUILD_TIME = "Apr
|
|
3
|
-
FLUENT_BUILD_ID = "
|
|
4
|
-
FLUENT_REVISION = "
|
|
2
|
+
FLUENT_BUILD_TIME = "Apr 15 2025 14:10:59 EDT"
|
|
3
|
+
FLUENT_BUILD_ID = "172"
|
|
4
|
+
FLUENT_REVISION = "23fcfba9ad"
|
|
5
5
|
FLUENT_BRANCH = "develop"
|
|
@@ -7872,6 +7872,7 @@ class main_menu(TUIMenu):
|
|
|
7872
7872
|
self.number_of_pastel_colors = self.__class__.number_of_pastel_colors(service, version, mode, path + ["number_of_pastel_colors"])
|
|
7873
7873
|
self.pastel_color_saturation = self.__class__.pastel_color_saturation(service, version, mode, path + ["pastel_color_saturation"])
|
|
7874
7874
|
self.pastel_color_value = self.__class__.pastel_color_value(service, version, mode, path + ["pastel_color_value"])
|
|
7875
|
+
self.py_console_completer = self.__class__.py_console_completer(service, version, mode, path + ["py_console_completer"])
|
|
7875
7876
|
self.quick_property_view = self.__class__.quick_property_view(service, version, mode, path + ["quick_property_view"])
|
|
7876
7877
|
self.ruler = self.__class__.ruler(service, version, mode, path + ["ruler"])
|
|
7877
7878
|
self.show_enabled_models = self.__class__.show_enabled_models(service, version, mode, path + ["show_enabled_models"])
|
|
@@ -7992,6 +7993,10 @@ class main_menu(TUIMenu):
|
|
|
7992
7993
|
"""
|
|
7993
7994
|
No help available.
|
|
7994
7995
|
"""
|
|
7996
|
+
class py_console_completer(TUIMethod):
|
|
7997
|
+
"""
|
|
7998
|
+
No help available.
|
|
7999
|
+
"""
|
|
7995
8000
|
class quick_property_view(TUIMethod):
|
|
7996
8001
|
"""
|
|
7997
8002
|
No help available.
|