ansys-fluent-core 0.35.dev0__py3-none-any.whl → 0.36.dev0__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/codegen/__init__.py +1 -0
- ansys/fluent/core/codegen/builtin_settingsgen.py +4 -0
- ansys/fluent/core/codegen/datamodelgen.py +13 -2
- ansys/fluent/core/codegen/settingsgen.py +7 -0
- ansys/fluent/core/docker/docker_compose.py +30 -1
- ansys/fluent/core/examples/downloads.py +3 -4
- ansys/fluent/core/fluent_connection.py +2 -3
- ansys/fluent/core/generated/api_tree/api_objects.json +1 -1
- ansys/fluent/core/generated/datamodel_231/flicing.py +20 -20
- ansys/fluent/core/generated/datamodel_231/meshing.py +236 -236
- ansys/fluent/core/generated/datamodel_232/flicing.py +50 -50
- ansys/fluent/core/generated/datamodel_232/meshing.py +187 -187
- ansys/fluent/core/generated/datamodel_241/flicing.py +45 -45
- ansys/fluent/core/generated/datamodel_241/meshing.py +229 -229
- ansys/fluent/core/generated/datamodel_242/flicing.py +50 -50
- ansys/fluent/core/generated/datamodel_242/meshing.py +275 -275
- ansys/fluent/core/generated/datamodel_242/part_management.py +3 -3
- ansys/fluent/core/generated/datamodel_251/flicing.py +45 -45
- ansys/fluent/core/generated/datamodel_251/meshing.py +417 -417
- ansys/fluent/core/generated/datamodel_251/part_management.py +9 -9
- ansys/fluent/core/generated/datamodel_252/flicing.py +30 -30
- ansys/fluent/core/generated/datamodel_252/meshing.py +418 -418
- ansys/fluent/core/generated/datamodel_252/part_management.py +5 -5
- ansys/fluent/core/generated/datamodel_261/flicing.py +35 -35
- ansys/fluent/core/generated/datamodel_261/meshing.py +481 -425
- ansys/fluent/core/generated/datamodel_261/meshing_utilities.py +296 -616
- ansys/fluent/core/generated/datamodel_261/meshing_workflow.py +61694 -0
- ansys/fluent/core/generated/datamodel_261/part_management.py +10 -10
- ansys/fluent/core/generated/datamodel_261/preferences.py +56 -0
- ansys/fluent/core/generated/datamodel_261/solver_workflow.py +14 -0
- ansys/fluent/core/generated/fluent_version_261.py +3 -3
- ansys/fluent/core/generated/meshing/tui_261.py +408 -10
- ansys/fluent/core/generated/solver/settings_261.py +15135 -5725
- ansys/fluent/core/generated/solver/settings_261.pyi +10252 -3619
- ansys/fluent/core/generated/solver/tui_261.py +2632 -834
- ansys/fluent/core/launcher/container_launcher.py +12 -3
- ansys/fluent/core/launcher/fluent_container.py +7 -1
- ansys/fluent/core/launcher/launch_options.py +2 -2
- ansys/fluent/core/launcher/launcher.py +2 -6
- ansys/fluent/core/launcher/pim_launcher.py +76 -3
- ansys/fluent/core/launcher/process_launch_string.py +1 -2
- ansys/fluent/core/launcher/slurm_launcher.py +4 -3
- ansys/fluent/core/launcher/standalone_launcher.py +3 -2
- ansys/fluent/core/module_config.py +10 -10
- ansys/fluent/core/report.py +1 -1
- ansys/fluent/core/search.py +12 -0
- ansys/fluent/core/services/__init__.py +2 -0
- ansys/fluent/core/services/datamodel_se.py +4 -1
- ansys/fluent/core/services/field_data.py +24 -0
- ansys/fluent/core/services/reduction.py +2 -0
- ansys/fluent/core/services/settings.py +1 -1
- ansys/fluent/core/services/solution_variables.py +92 -0
- ansys/fluent/core/session.py +1 -2
- ansys/fluent/core/session_base_meshing.py +8 -0
- ansys/fluent/core/session_meshing.py +5 -0
- ansys/fluent/core/session_pure_meshing.py +6 -0
- ansys/fluent/core/session_pure_meshing.pyi +5 -0
- ansys/fluent/core/session_solver.py +5 -4
- ansys/fluent/core/session_utilities.py +8 -5
- ansys/fluent/core/solver/flobject.py +19 -0
- ansys/fluent/core/solver/flunits.py +2 -0
- ansys/fluent/core/solver/function/reduction.py +2 -0
- ansys/fluent/core/ui/__init__.py +64 -0
- ansys/fluent/core/ui/jupyter_ui.py +203 -0
- ansys/fluent/core/ui/standalone_web_ui.py +296 -0
- ansys/fluent/core/ui/utils.py +173 -0
- ansys/fluent/core/utils/deprecate.py +1 -0
- ansys/fluent/core/utils/networking.py +11 -2
- {ansys_fluent_core-0.35.dev0.dist-info → ansys_fluent_core-0.36.dev0.dist-info}/METADATA +29 -22
- {ansys_fluent_core-0.35.dev0.dist-info → ansys_fluent_core-0.36.dev0.dist-info}/RECORD +73 -68
- {ansys_fluent_core-0.35.dev0.dist-info → ansys_fluent_core-0.36.dev0.dist-info}/WHEEL +1 -1
- {ansys_fluent_core-0.35.dev0.dist-info → ansys_fluent_core-0.36.dev0.dist-info/licenses}/LICENSE +0 -0
|
@@ -3225,8 +3225,8 @@ class Root(PyMenu):
|
|
|
3225
3225
|
super().__init__(parent, attr, service, rules, path)
|
|
3226
3226
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
3227
3227
|
self.RefacetDuringLoad = self._RefacetDuringLoad(self, "RefacetDuringLoad", service, rules, path)
|
|
3228
|
-
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
3229
3228
|
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
3229
|
+
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
3230
3230
|
|
|
3231
3231
|
class _MaxSize(PyNumericalCommandArgumentsSubItem):
|
|
3232
3232
|
"""
|
|
@@ -3238,14 +3238,14 @@ class Root(PyMenu):
|
|
|
3238
3238
|
This option is available when DSCO is selected for the Import Route. When enabled, this option will refacet the geometry as it is converted to a .fmd file. This option eliminates the need for any refaceting operation after the geometry is loaded, which can be expensive.
|
|
3239
3239
|
"""
|
|
3240
3240
|
|
|
3241
|
-
class
|
|
3241
|
+
class _Deviation(PyNumericalCommandArgumentsSubItem):
|
|
3242
3242
|
"""
|
|
3243
|
-
Specify
|
|
3243
|
+
Specify the distance between facet edges and the geometry edges. Decreasing this value will result in more facets along curved edges.
|
|
3244
3244
|
"""
|
|
3245
3245
|
|
|
3246
|
-
class
|
|
3246
|
+
class _NormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
3247
3247
|
"""
|
|
3248
|
-
Specify
|
|
3248
|
+
Specify a rotational angle (in degrees) of transformation.
|
|
3249
3249
|
"""
|
|
3250
3250
|
|
|
3251
3251
|
def create_instance(self) -> _AppendFmdFilesCommandArguments:
|
|
@@ -3543,8 +3543,8 @@ class Root(PyMenu):
|
|
|
3543
3543
|
super().__init__(parent, attr, service, rules, path)
|
|
3544
3544
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
3545
3545
|
self.RefacetDuringLoad = self._RefacetDuringLoad(self, "RefacetDuringLoad", service, rules, path)
|
|
3546
|
-
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
3547
3546
|
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
3547
|
+
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
3548
3548
|
|
|
3549
3549
|
class _MaxSize(PyNumericalCommandArgumentsSubItem):
|
|
3550
3550
|
"""
|
|
@@ -3556,14 +3556,14 @@ class Root(PyMenu):
|
|
|
3556
3556
|
This option is available when DSCO is selected for the Import Route. When enabled, this option will refacet the geometry as it is converted to a .fmd file. This option eliminates the need for any refaceting operation after the geometry is loaded, which can be expensive.
|
|
3557
3557
|
"""
|
|
3558
3558
|
|
|
3559
|
-
class
|
|
3559
|
+
class _Deviation(PyNumericalCommandArgumentsSubItem):
|
|
3560
3560
|
"""
|
|
3561
|
-
Specify
|
|
3561
|
+
Specify the distance between facet edges and the geometry edges. Decreasing this value will result in more facets along curved edges.
|
|
3562
3562
|
"""
|
|
3563
3563
|
|
|
3564
|
-
class
|
|
3564
|
+
class _NormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
3565
3565
|
"""
|
|
3566
|
-
Specify
|
|
3566
|
+
Specify a rotational angle (in degrees) of transformation.
|
|
3567
3567
|
"""
|
|
3568
3568
|
|
|
3569
3569
|
def create_instance(self) -> _InputFileChangedCommandArguments:
|
|
@@ -2160,22 +2160,64 @@ class Root(PyMenu):
|
|
|
2160
2160
|
Singleton Statistics.
|
|
2161
2161
|
"""
|
|
2162
2162
|
def __init__(self, service, rules, path):
|
|
2163
|
+
self.DisplayExecutable = self.__class__.DisplayExecutable(service, rules, path + [("DisplayExecutable", "")])
|
|
2164
|
+
self.DisplayOptions = self.__class__.DisplayOptions(service, rules, path + [("DisplayOptions", "")])
|
|
2163
2165
|
self.MaxPositions = self.__class__.MaxPositions(service, rules, path + [("MaxPositions", "")])
|
|
2166
|
+
self.PointSize = self.__class__.PointSize(service, rules, path + [("PointSize", "")])
|
|
2167
|
+
self.PointSymbol = self.__class__.PointSymbol(service, rules, path + [("PointSymbol", "")])
|
|
2164
2168
|
self.QuickSlicing = self.__class__.QuickSlicing(service, rules, path + [("QuickSlicing", "")])
|
|
2169
|
+
self.VectorSize = self.__class__.VectorSize(service, rules, path + [("VectorSize", "")])
|
|
2170
|
+
self.VectorSymbol = self.__class__.VectorSymbol(service, rules, path + [("VectorSymbol", "")])
|
|
2165
2171
|
super().__init__(service, rules, path)
|
|
2166
2172
|
|
|
2173
|
+
class DisplayExecutable(PyTextual):
|
|
2174
|
+
"""
|
|
2175
|
+
Parameter DisplayExecutable of value type str.
|
|
2176
|
+
"""
|
|
2177
|
+
pass
|
|
2178
|
+
|
|
2179
|
+
class DisplayOptions(PyTextual):
|
|
2180
|
+
"""
|
|
2181
|
+
Parameter DisplayOptions of value type str.
|
|
2182
|
+
"""
|
|
2183
|
+
pass
|
|
2184
|
+
|
|
2167
2185
|
class MaxPositions(PyNumerical):
|
|
2168
2186
|
"""
|
|
2169
2187
|
Parameter MaxPositions of value type int.
|
|
2170
2188
|
"""
|
|
2171
2189
|
pass
|
|
2172
2190
|
|
|
2191
|
+
class PointSize(PyNumerical):
|
|
2192
|
+
"""
|
|
2193
|
+
Parameter PointSize of value type float.
|
|
2194
|
+
"""
|
|
2195
|
+
pass
|
|
2196
|
+
|
|
2197
|
+
class PointSymbol(PyTextual):
|
|
2198
|
+
"""
|
|
2199
|
+
Parameter PointSymbol of value type str.
|
|
2200
|
+
"""
|
|
2201
|
+
pass
|
|
2202
|
+
|
|
2173
2203
|
class QuickSlicing(PyParameter):
|
|
2174
2204
|
"""
|
|
2175
2205
|
Parameter QuickSlicing of value type bool.
|
|
2176
2206
|
"""
|
|
2177
2207
|
pass
|
|
2178
2208
|
|
|
2209
|
+
class VectorSize(PyNumerical):
|
|
2210
|
+
"""
|
|
2211
|
+
Parameter VectorSize of value type float.
|
|
2212
|
+
"""
|
|
2213
|
+
pass
|
|
2214
|
+
|
|
2215
|
+
class VectorSymbol(PyTextual):
|
|
2216
|
+
"""
|
|
2217
|
+
Parameter VectorSymbol of value type str.
|
|
2218
|
+
"""
|
|
2219
|
+
pass
|
|
2220
|
+
|
|
2179
2221
|
class BetaFeatures(PyParameter):
|
|
2180
2222
|
"""
|
|
2181
2223
|
Parameter BetaFeatures of value type bool.
|
|
@@ -2631,6 +2673,7 @@ class Root(PyMenu):
|
|
|
2631
2673
|
def __init__(self, service, rules, path):
|
|
2632
2674
|
self.ConsoleSuggestion = self.__class__.ConsoleSuggestion(service, rules, path + [("ConsoleSuggestion", "")])
|
|
2633
2675
|
self.ConsoleSuggestionActiveOnly = self.__class__.ConsoleSuggestionActiveOnly(service, rules, path + [("ConsoleSuggestionActiveOnly", "")])
|
|
2676
|
+
self.EchoJournalCommands = self.__class__.EchoJournalCommands(service, rules, path + [("EchoJournalCommands", "")])
|
|
2634
2677
|
self.PrettyPrintDict = self.__class__.PrettyPrintDict(service, rules, path + [("PrettyPrintDict", "")])
|
|
2635
2678
|
self.QuickSearchResultsActiveOnly = self.__class__.QuickSearchResultsActiveOnly(service, rules, path + [("QuickSearchResultsActiveOnly", "")])
|
|
2636
2679
|
super().__init__(service, rules, path)
|
|
@@ -2647,6 +2690,12 @@ class Root(PyMenu):
|
|
|
2647
2690
|
"""
|
|
2648
2691
|
pass
|
|
2649
2692
|
|
|
2693
|
+
class EchoJournalCommands(PyParameter):
|
|
2694
|
+
"""
|
|
2695
|
+
Parameter EchoJournalCommands of value type bool.
|
|
2696
|
+
"""
|
|
2697
|
+
pass
|
|
2698
|
+
|
|
2650
2699
|
class PrettyPrintDict(PyParameter):
|
|
2651
2700
|
"""
|
|
2652
2701
|
Parameter PrettyPrintDict of value type bool.
|
|
@@ -2666,6 +2715,7 @@ class Root(PyMenu):
|
|
|
2666
2715
|
def __init__(self, service, rules, path):
|
|
2667
2716
|
self.ReportDefinitions = self.__class__.ReportDefinitions(service, rules, path + [("ReportDefinitions", "")])
|
|
2668
2717
|
self.FlowModel = self.__class__.FlowModel(service, rules, path + [("FlowModel", "")])
|
|
2718
|
+
self.GPUDirectPostRegular = self.__class__.GPUDirectPostRegular(service, rules, path + [("GPUDirectPostRegular", "")])
|
|
2669
2719
|
self.LocalResidualScaling = self.__class__.LocalResidualScaling(service, rules, path + [("LocalResidualScaling", "")])
|
|
2670
2720
|
self.PdfCombustionRobustNumerics = self.__class__.PdfCombustionRobustNumerics(service, rules, path + [("PdfCombustionRobustNumerics", "")])
|
|
2671
2721
|
super().__init__(service, rules, path)
|
|
@@ -2697,6 +2747,12 @@ class Root(PyMenu):
|
|
|
2697
2747
|
"""
|
|
2698
2748
|
pass
|
|
2699
2749
|
|
|
2750
|
+
class GPUDirectPostRegular(PyParameter):
|
|
2751
|
+
"""
|
|
2752
|
+
Parameter GPUDirectPostRegular of value type bool.
|
|
2753
|
+
"""
|
|
2754
|
+
pass
|
|
2755
|
+
|
|
2700
2756
|
class LocalResidualScaling(PyParameter):
|
|
2701
2757
|
"""
|
|
2702
2758
|
Parameter LocalResidualScaling of value type bool.
|
|
@@ -1067,6 +1067,8 @@ class Root(PyMenu):
|
|
|
1067
1067
|
TopologyName : str
|
|
1068
1068
|
Provide a name for the turbo topology, or use the default name.
|
|
1069
1069
|
AddChild : str
|
|
1070
|
+
StartRow : str
|
|
1071
|
+
EndRow : str
|
|
1070
1072
|
UseWireframe : bool
|
|
1071
1073
|
In order to more easily visualize highlighted items, use this option to display the 3D wireframe representation of the turbo topology model in the graphics window.
|
|
1072
1074
|
SkipTurboTopology : bool
|
|
@@ -1086,6 +1088,8 @@ class Root(PyMenu):
|
|
|
1086
1088
|
super().__init__(service, rules, command, path, id)
|
|
1087
1089
|
self.TopologyName = self._TopologyName(self, "TopologyName", service, rules, path)
|
|
1088
1090
|
self.AddChild = self._AddChild(self, "AddChild", service, rules, path)
|
|
1091
|
+
self.StartRow = self._StartRow(self, "StartRow", service, rules, path)
|
|
1092
|
+
self.EndRow = self._EndRow(self, "EndRow", service, rules, path)
|
|
1089
1093
|
self.UseWireframe = self._UseWireframe(self, "UseWireframe", service, rules, path)
|
|
1090
1094
|
self.SkipTurboTopology = self._SkipTurboTopology(self, "SkipTurboTopology", service, rules, path)
|
|
1091
1095
|
self.DefaultTopologyNameList = self._DefaultTopologyNameList(self, "DefaultTopologyNameList", service, rules, path)
|
|
@@ -1104,6 +1108,16 @@ class Root(PyMenu):
|
|
|
1104
1108
|
Argument AddChild.
|
|
1105
1109
|
"""
|
|
1106
1110
|
|
|
1111
|
+
class _StartRow(PyTextualCommandArgumentsSubItem):
|
|
1112
|
+
"""
|
|
1113
|
+
Argument StartRow.
|
|
1114
|
+
"""
|
|
1115
|
+
|
|
1116
|
+
class _EndRow(PyTextualCommandArgumentsSubItem):
|
|
1117
|
+
"""
|
|
1118
|
+
Argument EndRow.
|
|
1119
|
+
"""
|
|
1120
|
+
|
|
1107
1121
|
class _UseWireframe(PyParameterCommandArgumentsSubItem):
|
|
1108
1122
|
"""
|
|
1109
1123
|
In order to more easily visualize highlighted items, use this option to display the 3D wireframe representation of the turbo topology model in the graphics window.
|