ansys-fluent-core 0.28.1__py3-none-any.whl → 0.28.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 +1 -1
- ansys/fluent/core/_version.py +1 -1
- 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 +395 -390
- ansys/fluent/core/generated/solver/settings_252.py +347 -44
- ansys/fluent/core/generated/solver/settings_252.pyi +228 -31
- ansys/fluent/core/generated/solver/tui_252.py +3996 -3721
- ansys/fluent/core/services/datamodel_se.py +137 -60
- ansys/fluent/core/streaming_services/datamodel_event_streaming.py +12 -12
- ansys/fluent/tests/test_datamodel_api.py +36 -56
- ansys/fluent/tests/test_datamodel_service.py +1 -1
- ansys/fluent/tests/test_mapped_api.py +17 -25
- {ansys_fluent_core-0.28.1.dist-info → ansys_fluent_core-0.28.2.dist-info}/METADATA +1 -1
- {ansys_fluent_core-0.28.1.dist-info → ansys_fluent_core-0.28.2.dist-info}/RECORD +19 -19
- {ansys_fluent_core-0.28.1.dist-info → ansys_fluent_core-0.28.2.dist-info}/AUTHORS +0 -0
- {ansys_fluent_core-0.28.1.dist-info → ansys_fluent_core-0.28.2.dist-info}/LICENSE +0 -0
- {ansys_fluent_core-0.28.1.dist-info → ansys_fluent_core-0.28.2.dist-info}/WHEEL +0 -0
|
@@ -1575,6 +1575,7 @@ class Root(PyMenu):
|
|
|
1575
1575
|
self.OptimizeFor = self.__class__.OptimizeFor(service, rules, path + [("OptimizeFor", "")])
|
|
1576
1576
|
self.RatioOfTargetFrameRateToClassifyHeavyGeometry = self.__class__.RatioOfTargetFrameRateToClassifyHeavyGeometry(service, rules, path + [("RatioOfTargetFrameRateToClassifyHeavyGeometry", "")])
|
|
1577
1577
|
self.RatioOfTargetFrameRateToDeclassifyHeavyGeometry = self.__class__.RatioOfTargetFrameRateToDeclassifyHeavyGeometry(service, rules, path + [("RatioOfTargetFrameRateToDeclassifyHeavyGeometry", "")])
|
|
1578
|
+
self.SurfaceCaching = self.__class__.SurfaceCaching(service, rules, path + [("SurfaceCaching", "")])
|
|
1578
1579
|
super().__init__(service, rules, path)
|
|
1579
1580
|
|
|
1580
1581
|
class FastDisplayMode(PyMenu):
|
|
@@ -1728,6 +1729,12 @@ class Root(PyMenu):
|
|
|
1728
1729
|
"""
|
|
1729
1730
|
pass
|
|
1730
1731
|
|
|
1732
|
+
class SurfaceCaching(PyParameter):
|
|
1733
|
+
"""
|
|
1734
|
+
Parameter SurfaceCaching of value type bool.
|
|
1735
|
+
"""
|
|
1736
|
+
pass
|
|
1737
|
+
|
|
1731
1738
|
class RayTracingOptions(PyMenu):
|
|
1732
1739
|
"""
|
|
1733
1740
|
Singleton RayTracingOptions.
|