ansys-fluent-core 0.27.dev1__py3-none-any.whl → 0.28.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 +22 -9
- ansys/fluent/core/_version.py +5 -2
- ansys/fluent/core/codegen/__init__.py +0 -3
- ansys/fluent/core/codegen/allapigen.py +1 -5
- ansys/fluent/core/codegen/builtin_settingsgen.py +44 -10
- ansys/fluent/core/codegen/datamodelgen.py +53 -12
- ansys/fluent/core/codegen/settingsgen.py +21 -12
- ansys/fluent/core/codegen/settingsgen_old.py +2 -2
- ansys/fluent/core/codegen/tuigen.py +1 -1
- ansys/fluent/core/codegen/write_settings_yaml.py +3 -4
- ansys/fluent/core/data_model_cache.py +132 -70
- ansys/fluent/core/docs/README.rst +2 -2
- ansys/fluent/core/examples/downloads.py +3 -5
- ansys/fluent/core/exceptions.py +1 -0
- ansys/fluent/core/file_session.py +59 -131
- ansys/fluent/core/filereader/case_file.py +17 -17
- ansys/fluent/core/filereader/casereader.py +2 -1
- ansys/fluent/core/filereader/data_file.py +7 -7
- ansys/fluent/core/filereader/lispy.py +6 -1
- ansys/fluent/core/fluent_connection.py +35 -7
- ansys/fluent/core/generated/api_tree/api_objects.json +1 -1
- ansys/fluent/core/generated/datamodel_222/PMFileManagement.py +2 -2
- ansys/fluent/core/generated/datamodel_222/PartManagement.py +28 -28
- ansys/fluent/core/generated/datamodel_222/meshing.py +301 -301
- ansys/fluent/core/generated/datamodel_222/workflow.py +9 -9
- ansys/fluent/core/generated/datamodel_231/PMFileManagement.py +2 -2
- ansys/fluent/core/generated/datamodel_231/PartManagement.py +55 -55
- ansys/fluent/core/generated/datamodel_231/flicing.py +51 -51
- ansys/fluent/core/generated/datamodel_231/meshing.py +317 -317
- ansys/fluent/core/generated/datamodel_231/solverworkflow.py +51 -51
- ansys/fluent/core/generated/datamodel_231/workflow.py +9 -9
- ansys/fluent/core/generated/datamodel_232/PMFileManagement.py +2 -2
- ansys/fluent/core/generated/datamodel_232/PartManagement.py +55 -55
- ansys/fluent/core/generated/datamodel_232/flicing.py +51 -51
- ansys/fluent/core/generated/datamodel_232/meshing.py +335 -335
- ansys/fluent/core/generated/datamodel_232/solverworkflow.py +58 -58
- ansys/fluent/core/generated/datamodel_232/workflow.py +9 -9
- ansys/fluent/core/generated/datamodel_241/PMFileManagement.py +2 -2
- ansys/fluent/core/generated/datamodel_241/PartManagement.py +57 -57
- ansys/fluent/core/generated/datamodel_241/flicing.py +51 -51
- ansys/fluent/core/generated/datamodel_241/meshing.py +361 -361
- ansys/fluent/core/generated/datamodel_241/solverworkflow.py +58 -58
- ansys/fluent/core/generated/datamodel_241/workflow.py +9 -9
- ansys/fluent/core/generated/datamodel_242/MeshingUtilities.py +240 -240
- ansys/fluent/core/generated/datamodel_242/PMFileManagement.py +2 -2
- ansys/fluent/core/generated/datamodel_242/PartManagement.py +60 -60
- ansys/fluent/core/generated/datamodel_242/flicing.py +51 -51
- ansys/fluent/core/generated/datamodel_242/meshing.py +371 -371
- ansys/fluent/core/generated/datamodel_242/solverworkflow.py +58 -58
- ansys/fluent/core/generated/datamodel_242/workflow.py +9 -9
- ansys/fluent/core/generated/datamodel_251/MeshingUtilities.py +244 -244
- ansys/fluent/core/generated/datamodel_251/PMFileManagement.py +2 -2
- ansys/fluent/core/generated/datamodel_251/PartManagement.py +60 -60
- ansys/fluent/core/generated/datamodel_251/flicing.py +51 -51
- ansys/fluent/core/generated/datamodel_251/meshing.py +384 -382
- ansys/fluent/core/generated/datamodel_251/preferences.py +7 -0
- ansys/fluent/core/generated/datamodel_251/solverworkflow.py +58 -58
- ansys/fluent/core/generated/datamodel_251/workflow.py +10 -10
- ansys/fluent/core/generated/datamodel_252/MeshingUtilities.py +3664 -0
- ansys/fluent/core/generated/datamodel_252/PMFileManagement.py +288 -0
- ansys/fluent/core/generated/datamodel_252/PartManagement.py +2588 -0
- ansys/fluent/core/generated/datamodel_252/flicing.py +7972 -0
- ansys/fluent/core/generated/datamodel_252/meshing.py +2644 -0
- ansys/fluent/core/generated/datamodel_252/preferences.py +2760 -0
- ansys/fluent/core/generated/datamodel_252/solverworkflow.py +479 -0
- ansys/fluent/core/generated/datamodel_252/workflow.py +466 -0
- ansys/fluent/core/generated/fluent_version_251.py +4 -4
- ansys/fluent/core/generated/fluent_version_252.py +5 -0
- ansys/fluent/core/generated/meshing/tui_251.py +1139 -1179
- ansys/fluent/core/generated/meshing/tui_252.py +10181 -0
- ansys/fluent/core/generated/solver/settings_222.py +3 -3
- ansys/fluent/core/generated/solver/settings_231.py +4 -4
- ansys/fluent/core/generated/solver/settings_232.py +5 -5
- ansys/fluent/core/generated/solver/settings_241.py +5 -5
- ansys/fluent/core/generated/solver/settings_242.py +1185 -1185
- ansys/fluent/core/generated/solver/settings_251.py +1847 -1652
- ansys/fluent/core/generated/solver/settings_251.pyi +237 -211
- ansys/fluent/core/generated/solver/settings_252.py +90369 -0
- ansys/fluent/core/generated/solver/settings_252.pyi +63778 -0
- ansys/fluent/core/generated/solver/settings_builtin.py +612 -1
- ansys/fluent/core/generated/solver/settings_builtin.pyi +235 -0
- ansys/fluent/core/generated/solver/tui_251.py +2283 -2103
- ansys/fluent/core/generated/solver/tui_252.py +37720 -0
- ansys/fluent/core/journaling.py +1 -1
- ansys/fluent/core/launcher/error_handler.py +3 -0
- ansys/fluent/core/launcher/fluent_container.py +5 -0
- ansys/fluent/core/launcher/launcher.py +1 -2
- ansys/fluent/core/launcher/launcher_utils.py +17 -6
- ansys/fluent/core/launcher/process_launch_string.py +3 -3
- ansys/fluent/core/launcher/pyfluent_enums.py +1 -1
- ansys/fluent/core/launcher/slurm_launcher.py +2 -1
- ansys/fluent/core/launcher/standalone_launcher.py +11 -5
- ansys/fluent/core/launcher/watchdog.py +1 -1
- ansys/fluent/core/launcher/watchdog_exec +6 -3
- ansys/fluent/core/logging.py +1 -5
- ansys/fluent/core/parametric.py +6 -3
- ansys/fluent/core/post_objects/meta.py +1 -39
- ansys/fluent/core/post_objects/post_helper.py +4 -3
- ansys/fluent/core/post_objects/post_object_definitions.py +12 -7
- ansys/fluent/core/post_objects/post_objects_container.py +39 -2
- ansys/fluent/core/rpvars.py +2 -1
- ansys/fluent/core/scheduler/machine_list.py +3 -1
- ansys/fluent/core/search.py +109 -262
- ansys/fluent/core/services/__init__.py +3 -0
- ansys/fluent/core/services/api_upgrade.py +1 -0
- ansys/fluent/core/services/batch_ops.py +3 -1
- ansys/fluent/core/services/datamodel_se.py +37 -30
- ansys/fluent/core/services/datamodel_tui.py +8 -3
- ansys/fluent/core/services/deprecated_field_data.py +691 -0
- ansys/fluent/core/services/field_data.py +67 -357
- ansys/fluent/core/services/interceptors.py +6 -4
- ansys/fluent/core/services/reduction.py +1 -2
- ansys/fluent/core/services/scheme_eval.py +2 -3
- ansys/fluent/core/services/solution_variables.py +46 -48
- ansys/fluent/core/session.py +6 -4
- ansys/fluent/core/session_meshing.pyi +5 -0
- ansys/fluent/core/session_pure_meshing.pyi +4 -1
- ansys/fluent/core/session_solver_lite.py +2 -1
- ansys/fluent/core/solver/flobject.py +179 -207
- ansys/fluent/core/solver/flunits.py +65 -56
- ansys/fluent/core/solver/function/reduction.py +9 -29
- ansys/fluent/core/solver/settings_builtin_bases.py +28 -22
- ansys/fluent/core/solver/settings_builtin_data.py +105 -1
- ansys/fluent/core/solver/settings_external.py +0 -28
- ansys/fluent/core/streaming_services/field_data_streaming.py +1 -0
- ansys/fluent/core/streaming_services/monitor_streaming.py +0 -1
- ansys/fluent/core/systemcoupling.py +145 -14
- ansys/fluent/core/utils/__init__.py +18 -2
- ansys/fluent/core/utils/dump_session_data.py +7 -4
- ansys/fluent/core/utils/execution.py +2 -2
- ansys/fluent/core/utils/file_transfer_service.py +37 -42
- ansys/fluent/core/utils/fluent_version.py +20 -2
- ansys/fluent/core/utils/networking.py +39 -1
- ansys/fluent/core/workflow.py +3 -15
- ansys/fluent/tests/conftest.py +89 -7
- ansys/fluent/tests/fluent/test_version/test.py +2 -0
- ansys/fluent/tests/fluent_fixtures.py +195 -0
- ansys/fluent/tests/integration/test_optislang/test_optislang_integration.py +7 -7
- ansys/fluent/tests/parametric/test_parametric_workflow.py +14 -4
- ansys/fluent/tests/test_builtin_settings.py +28 -0
- ansys/fluent/tests/test_cad_to_post_ftm.py +1 -3
- ansys/fluent/tests/test_cad_to_post_wtm.py +1 -1
- ansys/fluent/tests/test_casereader.py +1 -1
- ansys/fluent/tests/test_codegen.py +116 -6
- ansys/fluent/tests/test_data_model_cache.py +1 -1
- ansys/fluent/tests/test_datamodel_service.py +14 -19
- ansys/fluent/tests/test_field_data.py +93 -45
- ansys/fluent/tests/test_file_session.py +32 -29
- ansys/fluent/tests/test_flobject.py +16 -58
- ansys/fluent/tests/test_fluent_fixes.py +5 -5
- ansys/fluent/tests/test_fluent_session.py +11 -8
- ansys/fluent/tests/test_fluent_version.py +1 -1
- ansys/fluent/tests/test_launcher.py +22 -5
- ansys/fluent/tests/test_launcher_remote.py +80 -4
- ansys/fluent/tests/test_meshing_utilities.py +93 -44
- ansys/fluent/tests/test_meshing_workflow.py +6 -6
- ansys/fluent/tests/test_meshingmode/test_meshing_launch.py +1 -1
- ansys/fluent/tests/test_new_meshing_workflow.py +42 -3
- ansys/fluent/tests/test_preferences.py +6 -6
- ansys/fluent/tests/test_reduction.py +61 -30
- ansys/fluent/tests/test_rp_vars.py +1 -1
- ansys/fluent/tests/test_search.py +53 -200
- ansys/fluent/tests/test_session.py +18 -13
- ansys/fluent/tests/test_settings_api.py +93 -29
- ansys/fluent/tests/test_settings_reader.py +1 -1
- ansys/fluent/tests/test_solver_monitors.py +1 -1
- ansys/fluent/tests/test_solvermode/test_calculationactivities.py +4 -4
- ansys/fluent/tests/test_solvermode/test_controls.py +3 -3
- ansys/fluent/tests/test_solvermode/test_methods.py +1 -1
- ansys/fluent/tests/test_solvermode/test_models.py +3 -3
- ansys/fluent/tests/test_systemcoupling.py +33 -5
- ansys/fluent/tests/test_topy.py +2 -2
- ansys/fluent/tests/test_tui_api.py +5 -5
- ansys/fluent/tests/test_utils.py +1 -1
- {ansys_fluent_core-0.27.dev1.dist-info → ansys_fluent_core-0.28.dev0.dist-info}/METADATA +6 -17
- ansys_fluent_core-0.28.dev0.dist-info/RECORD +291 -0
- ansys/fluent/core/generated/api_tree_222.pickle +0 -0
- ansys/fluent/core/generated/api_tree_231.pickle +0 -0
- ansys/fluent/core/generated/api_tree_232.pickle +0 -0
- ansys/fluent/core/generated/api_tree_241.pickle +0 -0
- ansys/fluent/core/generated/api_tree_242.pickle +0 -0
- ansys/fluent/core/generated/api_tree_251.pickle +0 -0
- ansys/fluent/tests/test_tests_util.py +0 -47
- ansys/fluent/tests/util/__init__.py +0 -38
- ansys_fluent_core-0.27.dev1.dist-info/RECORD +0 -283
- {ansys_fluent_core-0.27.dev1.dist-info → ansys_fluent_core-0.28.dev0.dist-info}/AUTHORS +0 -0
- {ansys_fluent_core-0.27.dev1.dist-info → ansys_fluent_core-0.28.dev0.dist-info}/LICENSE +0 -0
- {ansys_fluent_core-0.27.dev1.dist-info → ansys_fluent_core-0.28.dev0.dist-info}/WHEEL +0 -0
|
@@ -125,85 +125,85 @@ class Root(PyMenu):
|
|
|
125
125
|
|
|
126
126
|
class AllOversetNameList(PyTextual):
|
|
127
127
|
"""
|
|
128
|
-
Parameter AllOversetNameList of value type
|
|
128
|
+
Parameter AllOversetNameList of value type list[str].
|
|
129
129
|
"""
|
|
130
130
|
pass
|
|
131
131
|
|
|
132
132
|
class AllOversetSizeList(PyTextual):
|
|
133
133
|
"""
|
|
134
|
-
Parameter AllOversetSizeList of value type
|
|
134
|
+
Parameter AllOversetSizeList of value type list[str].
|
|
135
135
|
"""
|
|
136
136
|
pass
|
|
137
137
|
|
|
138
138
|
class AllOversetTypeList(PyTextual):
|
|
139
139
|
"""
|
|
140
|
-
Parameter AllOversetTypeList of value type
|
|
140
|
+
Parameter AllOversetTypeList of value type list[str].
|
|
141
141
|
"""
|
|
142
142
|
pass
|
|
143
143
|
|
|
144
144
|
class AllOversetVolumeFillList(PyTextual):
|
|
145
145
|
"""
|
|
146
|
-
Parameter AllOversetVolumeFillList of value type
|
|
146
|
+
Parameter AllOversetVolumeFillList of value type list[str].
|
|
147
147
|
"""
|
|
148
148
|
pass
|
|
149
149
|
|
|
150
150
|
class AllRegionFilterCategories(PyTextual):
|
|
151
151
|
"""
|
|
152
|
-
Parameter AllRegionFilterCategories of value type
|
|
152
|
+
Parameter AllRegionFilterCategories of value type list[str].
|
|
153
153
|
"""
|
|
154
154
|
pass
|
|
155
155
|
|
|
156
156
|
class AllRegionLeakageSizeList(PyTextual):
|
|
157
157
|
"""
|
|
158
|
-
Parameter AllRegionLeakageSizeList of value type
|
|
158
|
+
Parameter AllRegionLeakageSizeList of value type list[str].
|
|
159
159
|
"""
|
|
160
160
|
pass
|
|
161
161
|
|
|
162
162
|
class AllRegionLinkedConstructionSurfaceList(PyTextual):
|
|
163
163
|
"""
|
|
164
|
-
Parameter AllRegionLinkedConstructionSurfaceList of value type
|
|
164
|
+
Parameter AllRegionLinkedConstructionSurfaceList of value type list[str].
|
|
165
165
|
"""
|
|
166
166
|
pass
|
|
167
167
|
|
|
168
168
|
class AllRegionMeshMethodList(PyTextual):
|
|
169
169
|
"""
|
|
170
|
-
Parameter AllRegionMeshMethodList of value type
|
|
170
|
+
Parameter AllRegionMeshMethodList of value type list[str].
|
|
171
171
|
"""
|
|
172
172
|
pass
|
|
173
173
|
|
|
174
174
|
class AllRegionNameList(PyTextual):
|
|
175
175
|
"""
|
|
176
|
-
Parameter AllRegionNameList of value type
|
|
176
|
+
Parameter AllRegionNameList of value type list[str].
|
|
177
177
|
"""
|
|
178
178
|
pass
|
|
179
179
|
|
|
180
180
|
class AllRegionOversetComponenList(PyTextual):
|
|
181
181
|
"""
|
|
182
|
-
Parameter AllRegionOversetComponenList of value type
|
|
182
|
+
Parameter AllRegionOversetComponenList of value type list[str].
|
|
183
183
|
"""
|
|
184
184
|
pass
|
|
185
185
|
|
|
186
186
|
class AllRegionSizeList(PyTextual):
|
|
187
187
|
"""
|
|
188
|
-
Parameter AllRegionSizeList of value type
|
|
188
|
+
Parameter AllRegionSizeList of value type list[str].
|
|
189
189
|
"""
|
|
190
190
|
pass
|
|
191
191
|
|
|
192
192
|
class AllRegionSourceList(PyTextual):
|
|
193
193
|
"""
|
|
194
|
-
Parameter AllRegionSourceList of value type
|
|
194
|
+
Parameter AllRegionSourceList of value type list[str].
|
|
195
195
|
"""
|
|
196
196
|
pass
|
|
197
197
|
|
|
198
198
|
class AllRegionTypeList(PyTextual):
|
|
199
199
|
"""
|
|
200
|
-
Parameter AllRegionTypeList of value type
|
|
200
|
+
Parameter AllRegionTypeList of value type list[str].
|
|
201
201
|
"""
|
|
202
202
|
pass
|
|
203
203
|
|
|
204
204
|
class AllRegionVolumeFillList(PyTextual):
|
|
205
205
|
"""
|
|
206
|
-
Parameter AllRegionVolumeFillList of value type
|
|
206
|
+
Parameter AllRegionVolumeFillList of value type list[str].
|
|
207
207
|
"""
|
|
208
208
|
pass
|
|
209
209
|
|
|
@@ -270,20 +270,20 @@ class Root(PyMenu):
|
|
|
270
270
|
TransitionRatio : float
|
|
271
271
|
Rate : float
|
|
272
272
|
FirstHeight : float
|
|
273
|
-
FaceScope :
|
|
274
|
-
RegionScope :
|
|
275
|
-
BlLabelList :
|
|
276
|
-
ZoneSelectionList :
|
|
277
|
-
ZoneLocation :
|
|
278
|
-
LocalPrismPreferences :
|
|
279
|
-
BLZoneList :
|
|
280
|
-
BLRegionList :
|
|
281
|
-
CompleteRegionScope :
|
|
282
|
-
CompleteBlLabelList :
|
|
283
|
-
CompleteBLZoneList :
|
|
284
|
-
CompleteBLRegionList :
|
|
285
|
-
CompleteZoneSelectionList :
|
|
286
|
-
CompleteLabelSelectionList :
|
|
273
|
+
FaceScope : dict[str, Any]
|
|
274
|
+
RegionScope : list[str]
|
|
275
|
+
BlLabelList : list[str]
|
|
276
|
+
ZoneSelectionList : list[str]
|
|
277
|
+
ZoneLocation : list[str]
|
|
278
|
+
LocalPrismPreferences : dict[str, Any]
|
|
279
|
+
BLZoneList : list[str]
|
|
280
|
+
BLRegionList : list[str]
|
|
281
|
+
CompleteRegionScope : list[str]
|
|
282
|
+
CompleteBlLabelList : list[str]
|
|
283
|
+
CompleteBLZoneList : list[str]
|
|
284
|
+
CompleteBLRegionList : list[str]
|
|
285
|
+
CompleteZoneSelectionList : list[str]
|
|
286
|
+
CompleteLabelSelectionList : list[str]
|
|
287
287
|
|
|
288
288
|
Returns
|
|
289
289
|
-------
|
|
@@ -306,20 +306,20 @@ class Root(PyMenu):
|
|
|
306
306
|
TransitionRatio : float
|
|
307
307
|
Rate : float
|
|
308
308
|
FirstHeight : float
|
|
309
|
-
FaceScope :
|
|
310
|
-
RegionScope :
|
|
311
|
-
BlLabelList :
|
|
312
|
-
ZoneSelectionList :
|
|
313
|
-
ZoneLocation :
|
|
314
|
-
LocalPrismPreferences :
|
|
315
|
-
BLZoneList :
|
|
316
|
-
BLRegionList :
|
|
317
|
-
CompleteRegionScope :
|
|
318
|
-
CompleteBlLabelList :
|
|
319
|
-
CompleteBLZoneList :
|
|
320
|
-
CompleteBLRegionList :
|
|
321
|
-
CompleteZoneSelectionList :
|
|
322
|
-
CompleteLabelSelectionList :
|
|
309
|
+
FaceScope : dict[str, Any]
|
|
310
|
+
RegionScope : list[str]
|
|
311
|
+
BlLabelList : list[str]
|
|
312
|
+
ZoneSelectionList : list[str]
|
|
313
|
+
ZoneLocation : list[str]
|
|
314
|
+
LocalPrismPreferences : dict[str, Any]
|
|
315
|
+
BLZoneList : list[str]
|
|
316
|
+
BLRegionList : list[str]
|
|
317
|
+
CompleteRegionScope : list[str]
|
|
318
|
+
CompleteBlLabelList : list[str]
|
|
319
|
+
CompleteBLZoneList : list[str]
|
|
320
|
+
CompleteBLRegionList : list[str]
|
|
321
|
+
CompleteZoneSelectionList : list[str]
|
|
322
|
+
CompleteLabelSelectionList : list[str]
|
|
323
323
|
|
|
324
324
|
Returns
|
|
325
325
|
-------
|
|
@@ -336,9 +336,9 @@ class Root(PyMenu):
|
|
|
336
336
|
MeshObject : str
|
|
337
337
|
NewBoundaryLabelName : str
|
|
338
338
|
NewBoundaryType : str
|
|
339
|
-
BoundaryFaceZoneList :
|
|
339
|
+
BoundaryFaceZoneList : list[str]
|
|
340
340
|
Merge : str
|
|
341
|
-
ZoneLocation :
|
|
341
|
+
ZoneLocation : list[str]
|
|
342
342
|
|
|
343
343
|
Returns
|
|
344
344
|
-------
|
|
@@ -354,17 +354,17 @@ class Root(PyMenu):
|
|
|
354
354
|
----------
|
|
355
355
|
LocalSettingsName : str
|
|
356
356
|
SelectionType : str
|
|
357
|
-
ObjectSelectionList :
|
|
358
|
-
LabelSelectionList :
|
|
359
|
-
ZoneSelectionList :
|
|
360
|
-
ZoneLocation :
|
|
361
|
-
EdgeSelectionList :
|
|
362
|
-
LocalSizeControlParameters :
|
|
357
|
+
ObjectSelectionList : list[str]
|
|
358
|
+
LabelSelectionList : list[str]
|
|
359
|
+
ZoneSelectionList : list[str]
|
|
360
|
+
ZoneLocation : list[str]
|
|
361
|
+
EdgeSelectionList : list[str]
|
|
362
|
+
LocalSizeControlParameters : dict[str, Any]
|
|
363
363
|
ValueChanged : str
|
|
364
|
-
CompleteZoneSelectionList :
|
|
365
|
-
CompleteLabelSelectionList :
|
|
366
|
-
CompleteObjectSelectionList :
|
|
367
|
-
CompleteEdgeSelectionList :
|
|
364
|
+
CompleteZoneSelectionList : list[str]
|
|
365
|
+
CompleteLabelSelectionList : list[str]
|
|
366
|
+
CompleteObjectSelectionList : list[str]
|
|
367
|
+
CompleteEdgeSelectionList : list[str]
|
|
368
368
|
|
|
369
369
|
Returns
|
|
370
370
|
-------
|
|
@@ -390,17 +390,17 @@ class Root(PyMenu):
|
|
|
390
390
|
BOIScopeTo : str
|
|
391
391
|
IgnoreOrientation : str
|
|
392
392
|
BOIZoneorLabel : str
|
|
393
|
-
BOIFaceLabelList :
|
|
394
|
-
BOIFaceZoneList :
|
|
395
|
-
EdgeLabelList :
|
|
396
|
-
TopologyList :
|
|
393
|
+
BOIFaceLabelList : list[str]
|
|
394
|
+
BOIFaceZoneList : list[str]
|
|
395
|
+
EdgeLabelList : list[str]
|
|
396
|
+
TopologyList : list[str]
|
|
397
397
|
BOIPatchingtoggle : bool
|
|
398
398
|
DrawSizeControl : bool
|
|
399
|
-
ZoneLocation :
|
|
400
|
-
CompleteFaceZoneList :
|
|
401
|
-
CompleteFaceLabelList :
|
|
402
|
-
CompleteEdgeLabelList :
|
|
403
|
-
CompleteTopologyList :
|
|
399
|
+
ZoneLocation : list[str]
|
|
400
|
+
CompleteFaceZoneList : list[str]
|
|
401
|
+
CompleteFaceLabelList : list[str]
|
|
402
|
+
CompleteEdgeLabelList : list[str]
|
|
403
|
+
CompleteTopologyList : list[str]
|
|
404
404
|
|
|
405
405
|
Returns
|
|
406
406
|
-------
|
|
@@ -420,11 +420,11 @@ class Root(PyMenu):
|
|
|
420
420
|
FillWith : str
|
|
421
421
|
UseSweepSize : str
|
|
422
422
|
MaxSweepSize : float
|
|
423
|
-
RegionScope :
|
|
423
|
+
RegionScope : list[str]
|
|
424
424
|
SourceMethod : str
|
|
425
425
|
ParallelSelection : bool
|
|
426
|
-
LabelSourceList :
|
|
427
|
-
ZoneSourceList :
|
|
426
|
+
LabelSourceList : list[str]
|
|
427
|
+
ZoneSourceList : list[str]
|
|
428
428
|
AssignSizeUsing : str
|
|
429
429
|
Intervals : int
|
|
430
430
|
Size : float
|
|
@@ -432,9 +432,9 @@ class Root(PyMenu):
|
|
|
432
432
|
GrowthMethod : str
|
|
433
433
|
GrowthRate : float
|
|
434
434
|
LastFirstRatio : float
|
|
435
|
-
EdgeLabelList :
|
|
436
|
-
CFDSurfaceMeshControls :
|
|
437
|
-
CompleteRegionScope :
|
|
435
|
+
EdgeLabelList : list[str]
|
|
436
|
+
CFDSurfaceMeshControls : dict[str, Any]
|
|
437
|
+
CompleteRegionScope : list[str]
|
|
438
438
|
|
|
439
439
|
Returns
|
|
440
440
|
-------
|
|
@@ -450,10 +450,10 @@ class Root(PyMenu):
|
|
|
450
450
|
----------
|
|
451
451
|
ZeroThicknessName : str
|
|
452
452
|
SelectionType : str
|
|
453
|
-
ZoneSelectionList :
|
|
454
|
-
ZoneLocation :
|
|
455
|
-
ObjectSelectionList :
|
|
456
|
-
LabelSelectionList :
|
|
453
|
+
ZoneSelectionList : list[str]
|
|
454
|
+
ZoneLocation : list[str]
|
|
455
|
+
ObjectSelectionList : list[str]
|
|
456
|
+
LabelSelectionList : list[str]
|
|
457
457
|
Distance : float
|
|
458
458
|
|
|
459
459
|
Returns
|
|
@@ -472,18 +472,18 @@ class Root(PyMenu):
|
|
|
472
472
|
ZoneType : str
|
|
473
473
|
PatchType : str
|
|
474
474
|
SelectionType : str
|
|
475
|
-
LabelSelectionList :
|
|
476
|
-
ZoneSelectionList :
|
|
477
|
-
TopologyList :
|
|
478
|
-
CreatePatchPreferences :
|
|
475
|
+
LabelSelectionList : list[str]
|
|
476
|
+
ZoneSelectionList : list[str]
|
|
477
|
+
TopologyList : list[str]
|
|
478
|
+
CreatePatchPreferences : dict[str, Any]
|
|
479
479
|
ObjectAssociation : str
|
|
480
480
|
NewObjectName : str
|
|
481
481
|
PatchObjectName : str
|
|
482
|
-
CapLabels :
|
|
483
|
-
ZoneLocation :
|
|
484
|
-
CompleteZoneSelectionList :
|
|
485
|
-
CompleteLabelSelectionList :
|
|
486
|
-
CompleteTopologyList :
|
|
482
|
+
CapLabels : list[str]
|
|
483
|
+
ZoneLocation : list[str]
|
|
484
|
+
CompleteZoneSelectionList : list[str]
|
|
485
|
+
CompleteLabelSelectionList : list[str]
|
|
486
|
+
CompleteTopologyList : list[str]
|
|
487
487
|
|
|
488
488
|
Returns
|
|
489
489
|
-------
|
|
@@ -505,7 +505,7 @@ class Root(PyMenu):
|
|
|
505
505
|
GlobalMin : float
|
|
506
506
|
GlobalMax : float
|
|
507
507
|
GlobalGrowthRate : float
|
|
508
|
-
MeshControlOptions :
|
|
508
|
+
MeshControlOptions : dict[str, Any]
|
|
509
509
|
|
|
510
510
|
Returns
|
|
511
511
|
-------
|
|
@@ -584,15 +584,15 @@ class Root(PyMenu):
|
|
|
584
584
|
BOIMaxSize : float
|
|
585
585
|
BOISizeName : str
|
|
586
586
|
SelectionType : str
|
|
587
|
-
ZoneSelectionList :
|
|
588
|
-
ZoneLocation :
|
|
589
|
-
LabelSelectionList :
|
|
590
|
-
ObjectSelectionList :
|
|
591
|
-
ZoneSelectionSingle :
|
|
592
|
-
ObjectSelectionSingle :
|
|
593
|
-
BoundingBoxObject :
|
|
594
|
-
OffsetObject :
|
|
595
|
-
CylinderObject :
|
|
587
|
+
ZoneSelectionList : list[str]
|
|
588
|
+
ZoneLocation : list[str]
|
|
589
|
+
LabelSelectionList : list[str]
|
|
590
|
+
ObjectSelectionList : list[str]
|
|
591
|
+
ZoneSelectionSingle : list[str]
|
|
592
|
+
ObjectSelectionSingle : list[str]
|
|
593
|
+
BoundingBoxObject : dict[str, Any]
|
|
594
|
+
OffsetObject : dict[str, Any]
|
|
595
|
+
CylinderObject : dict[str, Any]
|
|
596
596
|
|
|
597
597
|
Returns
|
|
598
598
|
-------
|
|
@@ -611,15 +611,15 @@ class Root(PyMenu):
|
|
|
611
611
|
BOIMaxSize : float
|
|
612
612
|
BOISizeName : str
|
|
613
613
|
SelectionType : str
|
|
614
|
-
ZoneSelectionList :
|
|
615
|
-
ZoneLocation :
|
|
616
|
-
LabelSelectionList :
|
|
617
|
-
ObjectSelectionList :
|
|
618
|
-
ZoneSelectionSingle :
|
|
619
|
-
ObjectSelectionSingle :
|
|
620
|
-
BoundingBoxObject :
|
|
621
|
-
OffsetObject :
|
|
622
|
-
CylinderObject :
|
|
614
|
+
ZoneSelectionList : list[str]
|
|
615
|
+
ZoneLocation : list[str]
|
|
616
|
+
LabelSelectionList : list[str]
|
|
617
|
+
ObjectSelectionList : list[str]
|
|
618
|
+
ZoneSelectionSingle : list[str]
|
|
619
|
+
ObjectSelectionSingle : list[str]
|
|
620
|
+
BoundingBoxObject : dict[str, Any]
|
|
621
|
+
OffsetObject : dict[str, Any]
|
|
622
|
+
CylinderObject : dict[str, Any]
|
|
623
623
|
VolumeFill : str
|
|
624
624
|
|
|
625
625
|
Returns
|
|
@@ -639,15 +639,15 @@ class Root(PyMenu):
|
|
|
639
639
|
BOIMaxSize : float
|
|
640
640
|
BOISizeName : str
|
|
641
641
|
SelectionType : str
|
|
642
|
-
ZoneSelectionList :
|
|
643
|
-
ZoneLocation :
|
|
644
|
-
LabelSelectionList :
|
|
645
|
-
ObjectSelectionList :
|
|
646
|
-
ZoneSelectionSingle :
|
|
647
|
-
ObjectSelectionSingle :
|
|
648
|
-
BoundingBoxObject :
|
|
649
|
-
OffsetObject :
|
|
650
|
-
CylinderObject :
|
|
642
|
+
ZoneSelectionList : list[str]
|
|
643
|
+
ZoneLocation : list[str]
|
|
644
|
+
LabelSelectionList : list[str]
|
|
645
|
+
ObjectSelectionList : list[str]
|
|
646
|
+
ZoneSelectionSingle : list[str]
|
|
647
|
+
ObjectSelectionSingle : list[str]
|
|
648
|
+
BoundingBoxObject : dict[str, Any]
|
|
649
|
+
OffsetObject : dict[str, Any]
|
|
650
|
+
CylinderObject : dict[str, Any]
|
|
651
651
|
VolumeFill : str
|
|
652
652
|
|
|
653
653
|
Returns
|
|
@@ -664,11 +664,11 @@ class Root(PyMenu):
|
|
|
664
664
|
----------
|
|
665
665
|
ContactPatchName : str
|
|
666
666
|
SelectionType : str
|
|
667
|
-
ZoneSelectionList :
|
|
668
|
-
ZoneLocation :
|
|
669
|
-
ObjectSelectionList :
|
|
670
|
-
LabelSelectionList :
|
|
671
|
-
GroundZoneSelectionList :
|
|
667
|
+
ZoneSelectionList : list[str]
|
|
668
|
+
ZoneLocation : list[str]
|
|
669
|
+
ObjectSelectionList : list[str]
|
|
670
|
+
LabelSelectionList : list[str]
|
|
671
|
+
GroundZoneSelectionList : list[str]
|
|
672
672
|
Distance : float
|
|
673
673
|
FeatureAngle : float
|
|
674
674
|
PatchHole : bool
|
|
@@ -690,15 +690,15 @@ class Root(PyMenu):
|
|
|
690
690
|
CreationMethod : str
|
|
691
691
|
ExtractionMethod : str
|
|
692
692
|
SelectionType : str
|
|
693
|
-
ObjectSelectionList :
|
|
694
|
-
ZoneSelectionList :
|
|
695
|
-
ZoneLocation :
|
|
696
|
-
LabelSelectionList :
|
|
697
|
-
ObjectSelectionSingle :
|
|
698
|
-
ZoneSelectionSingle :
|
|
699
|
-
LabelSelectionSingle :
|
|
693
|
+
ObjectSelectionList : list[str]
|
|
694
|
+
ZoneSelectionList : list[str]
|
|
695
|
+
ZoneLocation : list[str]
|
|
696
|
+
LabelSelectionList : list[str]
|
|
697
|
+
ObjectSelectionSingle : list[str]
|
|
698
|
+
ZoneSelectionSingle : list[str]
|
|
699
|
+
LabelSelectionSingle : list[str]
|
|
700
700
|
OriginalObjectName : str
|
|
701
|
-
BoundingBoxObject :
|
|
701
|
+
BoundingBoxObject : dict[str, Any]
|
|
702
702
|
|
|
703
703
|
Returns
|
|
704
704
|
-------
|
|
@@ -717,10 +717,10 @@ class Root(PyMenu):
|
|
|
717
717
|
GapSizeRatio : float
|
|
718
718
|
GapSize : float
|
|
719
719
|
SelectionType : str
|
|
720
|
-
ZoneSelectionList :
|
|
721
|
-
ZoneLocation :
|
|
722
|
-
LabelSelectionList :
|
|
723
|
-
ObjectSelectionList :
|
|
720
|
+
ZoneSelectionList : list[str]
|
|
721
|
+
ZoneLocation : list[str]
|
|
722
|
+
LabelSelectionList : list[str]
|
|
723
|
+
ObjectSelectionList : list[str]
|
|
724
724
|
|
|
725
725
|
Returns
|
|
726
726
|
-------
|
|
@@ -739,15 +739,15 @@ class Root(PyMenu):
|
|
|
739
739
|
BOIMaxSize : float
|
|
740
740
|
BOISizeName : str
|
|
741
741
|
SelectionType : str
|
|
742
|
-
ZoneSelectionList :
|
|
743
|
-
ZoneLocation :
|
|
744
|
-
LabelSelectionList :
|
|
745
|
-
ObjectSelectionList :
|
|
746
|
-
ZoneSelectionSingle :
|
|
747
|
-
ObjectSelectionSingle :
|
|
748
|
-
BoundingBoxObject :
|
|
749
|
-
OffsetObject :
|
|
750
|
-
CylinderObject :
|
|
742
|
+
ZoneSelectionList : list[str]
|
|
743
|
+
ZoneLocation : list[str]
|
|
744
|
+
LabelSelectionList : list[str]
|
|
745
|
+
ObjectSelectionList : list[str]
|
|
746
|
+
ZoneSelectionSingle : list[str]
|
|
747
|
+
ObjectSelectionSingle : list[str]
|
|
748
|
+
BoundingBoxObject : dict[str, Any]
|
|
749
|
+
OffsetObject : dict[str, Any]
|
|
750
|
+
CylinderObject : dict[str, Any]
|
|
751
751
|
VolumeFill : str
|
|
752
752
|
|
|
753
753
|
Returns
|
|
@@ -763,7 +763,7 @@ class Root(PyMenu):
|
|
|
763
763
|
Parameters
|
|
764
764
|
----------
|
|
765
765
|
OversetInterfacesName : str
|
|
766
|
-
ObjectSelectionList :
|
|
766
|
+
ObjectSelectionList : list[str]
|
|
767
767
|
|
|
768
768
|
Returns
|
|
769
769
|
-------
|
|
@@ -785,11 +785,11 @@ class Root(PyMenu):
|
|
|
785
785
|
CellSizeP1P3 : float
|
|
786
786
|
CellSizeP1P4 : float
|
|
787
787
|
BufferSizeRatio : float
|
|
788
|
-
P1 :
|
|
789
|
-
P2 :
|
|
790
|
-
P3 :
|
|
791
|
-
P4 :
|
|
792
|
-
NonRectangularParameters :
|
|
788
|
+
P1 : list[float]
|
|
789
|
+
P2 : list[float]
|
|
790
|
+
P3 : list[float]
|
|
791
|
+
P4 : list[float]
|
|
792
|
+
NonRectangularParameters : dict[str, Any]
|
|
793
793
|
|
|
794
794
|
Returns
|
|
795
795
|
-------
|
|
@@ -821,8 +821,8 @@ class Root(PyMenu):
|
|
|
821
821
|
AddChild : str
|
|
822
822
|
LeakageName : str
|
|
823
823
|
SelectionType : str
|
|
824
|
-
DeadRegionsList :
|
|
825
|
-
RegionSelectionSingle :
|
|
824
|
+
DeadRegionsList : list[str]
|
|
825
|
+
RegionSelectionSingle : list[str]
|
|
826
826
|
DeadRegionsSize : float
|
|
827
827
|
PlaneClippingValue : int
|
|
828
828
|
PlaneDirection : str
|
|
@@ -845,7 +845,7 @@ class Root(PyMenu):
|
|
|
845
845
|
AddEnclosure : str
|
|
846
846
|
CloseCaps : str
|
|
847
847
|
LocalRefinementRegions : str
|
|
848
|
-
DescribeGeometryAndFlowOptions :
|
|
848
|
+
DescribeGeometryAndFlowOptions : dict[str, Any]
|
|
849
849
|
|
|
850
850
|
Returns
|
|
851
851
|
-------
|
|
@@ -880,17 +880,17 @@ class Root(PyMenu):
|
|
|
880
880
|
ExtractEdgesName : str
|
|
881
881
|
ExtractMethodType : str
|
|
882
882
|
SelectionType : str
|
|
883
|
-
ObjectSelectionList :
|
|
884
|
-
GeomObjectSelectionList :
|
|
885
|
-
ZoneSelectionList :
|
|
886
|
-
ZoneLocation :
|
|
887
|
-
LabelSelectionList :
|
|
883
|
+
ObjectSelectionList : list[str]
|
|
884
|
+
GeomObjectSelectionList : list[str]
|
|
885
|
+
ZoneSelectionList : list[str]
|
|
886
|
+
ZoneLocation : list[str]
|
|
887
|
+
LabelSelectionList : list[str]
|
|
888
888
|
FeatureAngleLocal : int
|
|
889
889
|
IndividualCollective : str
|
|
890
890
|
SharpAngle : int
|
|
891
|
-
CompleteObjectSelectionList :
|
|
892
|
-
CompleteGeomObjectSelectionList :
|
|
893
|
-
NonExtractedObjects :
|
|
891
|
+
CompleteObjectSelectionList : list[str]
|
|
892
|
+
CompleteGeomObjectSelectionList : list[str]
|
|
893
|
+
NonExtractedObjects : list[str]
|
|
894
894
|
|
|
895
895
|
Returns
|
|
896
896
|
-------
|
|
@@ -906,13 +906,13 @@ class Root(PyMenu):
|
|
|
906
906
|
----------
|
|
907
907
|
MExControlName : str
|
|
908
908
|
Method : str
|
|
909
|
-
ExternalBoundaryZoneList :
|
|
909
|
+
ExternalBoundaryZoneList : list[str]
|
|
910
910
|
TotalHeight : float
|
|
911
911
|
FirstHeight : float
|
|
912
912
|
NumberofLayers : int
|
|
913
913
|
GrowthRate : float
|
|
914
|
-
VMExtrudePreferences :
|
|
915
|
-
ZoneLocation :
|
|
914
|
+
VMExtrudePreferences : dict[str, Any]
|
|
915
|
+
ZoneLocation : list[str]
|
|
916
916
|
|
|
917
917
|
Returns
|
|
918
918
|
-------
|
|
@@ -941,11 +941,11 @@ class Root(PyMenu):
|
|
|
941
941
|
Parameters
|
|
942
942
|
----------
|
|
943
943
|
OrthogonalQualityLimit : float
|
|
944
|
-
RegionScope :
|
|
944
|
+
RegionScope : list[str]
|
|
945
945
|
NonConformal : str
|
|
946
946
|
SizeFunctionScaleFactor : float
|
|
947
|
-
CFDSurfaceMeshControls :
|
|
948
|
-
CompleteRegionScope :
|
|
947
|
+
CFDSurfaceMeshControls : dict[str, Any]
|
|
948
|
+
CompleteRegionScope : list[str]
|
|
949
949
|
|
|
950
950
|
Returns
|
|
951
951
|
-------
|
|
@@ -989,13 +989,13 @@ class Root(PyMenu):
|
|
|
989
989
|
|
|
990
990
|
Parameters
|
|
991
991
|
----------
|
|
992
|
-
CFDSurfaceMeshControls :
|
|
992
|
+
CFDSurfaceMeshControls : dict[str, Any]
|
|
993
993
|
SeparationRequired : str
|
|
994
994
|
SeparationAngle : float
|
|
995
995
|
RemeshSelectionType : str
|
|
996
|
-
RemeshZoneList :
|
|
997
|
-
RemeshLabelList :
|
|
998
|
-
SurfaceMeshPreferences :
|
|
996
|
+
RemeshZoneList : list[str]
|
|
997
|
+
RemeshLabelList : list[str]
|
|
998
|
+
SurfaceMeshPreferences : dict[str, Any]
|
|
999
999
|
ImportType : str
|
|
1000
1000
|
AppendMesh : bool
|
|
1001
1001
|
CadFacetingFileName : str
|
|
@@ -1003,11 +1003,11 @@ class Root(PyMenu):
|
|
|
1003
1003
|
Pattern : str
|
|
1004
1004
|
LengthUnit : str
|
|
1005
1005
|
TesselationMethod : str
|
|
1006
|
-
OriginalZones :
|
|
1006
|
+
OriginalZones : list[str]
|
|
1007
1007
|
ExecuteShareTopology : str
|
|
1008
|
-
CADFacetingControls :
|
|
1009
|
-
CadImportOptions :
|
|
1010
|
-
ShareTopologyPreferences :
|
|
1008
|
+
CADFacetingControls : dict[str, Any]
|
|
1009
|
+
CadImportOptions : dict[str, Any]
|
|
1010
|
+
ShareTopologyPreferences : dict[str, Any]
|
|
1011
1011
|
PreviewSizeToggle : bool
|
|
1012
1012
|
|
|
1013
1013
|
Returns
|
|
@@ -1027,15 +1027,15 @@ class Root(PyMenu):
|
|
|
1027
1027
|
EnableParallel : bool
|
|
1028
1028
|
SaveVolumeMesh : bool
|
|
1029
1029
|
EditVolumeSettings : bool
|
|
1030
|
-
RegionNameList :
|
|
1031
|
-
RegionVolumeFillList :
|
|
1032
|
-
RegionSizeList :
|
|
1033
|
-
OldRegionNameList :
|
|
1034
|
-
OldRegionVolumeFillList :
|
|
1035
|
-
OldRegionSizeList :
|
|
1036
|
-
AllRegionNameList :
|
|
1037
|
-
AllRegionVolumeFillList :
|
|
1038
|
-
AllRegionSizeList :
|
|
1030
|
+
RegionNameList : list[str]
|
|
1031
|
+
RegionVolumeFillList : list[str]
|
|
1032
|
+
RegionSizeList : list[str]
|
|
1033
|
+
OldRegionNameList : list[str]
|
|
1034
|
+
OldRegionVolumeFillList : list[str]
|
|
1035
|
+
OldRegionSizeList : list[str]
|
|
1036
|
+
AllRegionNameList : list[str]
|
|
1037
|
+
AllRegionVolumeFillList : list[str]
|
|
1038
|
+
AllRegionSizeList : list[str]
|
|
1039
1039
|
AdvancedOptions : bool
|
|
1040
1040
|
SpikeRemovalAngle : float
|
|
1041
1041
|
DihedralMinAngle : float
|
|
@@ -1058,12 +1058,12 @@ class Root(PyMenu):
|
|
|
1058
1058
|
VolumeFill : str
|
|
1059
1059
|
MeshSolidRegions : bool
|
|
1060
1060
|
SizingMethod : str
|
|
1061
|
-
VolumeFillControls :
|
|
1061
|
+
VolumeFillControls : dict[str, Any]
|
|
1062
1062
|
RegionBasedPreferences : bool
|
|
1063
1063
|
ReMergeZones : str
|
|
1064
1064
|
ParallelMeshing : bool
|
|
1065
|
-
VolumeMeshPreferences :
|
|
1066
|
-
PrismPreferences :
|
|
1065
|
+
VolumeMeshPreferences : dict[str, Any]
|
|
1066
|
+
PrismPreferences : dict[str, Any]
|
|
1067
1067
|
InvokePrimsControl : str
|
|
1068
1068
|
OffsetMethodType : str
|
|
1069
1069
|
NumberOfLayers : int
|
|
@@ -1073,20 +1073,20 @@ class Root(PyMenu):
|
|
|
1073
1073
|
FirstHeight : float
|
|
1074
1074
|
MeshObject : str
|
|
1075
1075
|
MeshDeadRegions : bool
|
|
1076
|
-
BodyLabelList :
|
|
1076
|
+
BodyLabelList : list[str]
|
|
1077
1077
|
PrismLayers : bool
|
|
1078
1078
|
QuadTetTransition : str
|
|
1079
1079
|
MergeCellZones : bool
|
|
1080
|
-
FaceScope :
|
|
1081
|
-
RegionTetNameList :
|
|
1082
|
-
RegionTetMaxCellLengthList :
|
|
1083
|
-
RegionTetGrowthRateList :
|
|
1084
|
-
RegionHexNameList :
|
|
1085
|
-
RegionHexMaxCellLengthList :
|
|
1086
|
-
OldRegionTetMaxCellLengthList :
|
|
1087
|
-
OldRegionTetGrowthRateList :
|
|
1088
|
-
OldRegionHexMaxCellLengthList :
|
|
1089
|
-
CFDSurfaceMeshControls :
|
|
1080
|
+
FaceScope : dict[str, Any]
|
|
1081
|
+
RegionTetNameList : list[str]
|
|
1082
|
+
RegionTetMaxCellLengthList : list[str]
|
|
1083
|
+
RegionTetGrowthRateList : list[str]
|
|
1084
|
+
RegionHexNameList : list[str]
|
|
1085
|
+
RegionHexMaxCellLengthList : list[str]
|
|
1086
|
+
OldRegionTetMaxCellLengthList : list[str]
|
|
1087
|
+
OldRegionTetGrowthRateList : list[str]
|
|
1088
|
+
OldRegionHexMaxCellLengthList : list[str]
|
|
1089
|
+
CFDSurfaceMeshControls : dict[str, Any]
|
|
1090
1090
|
|
|
1091
1091
|
Returns
|
|
1092
1092
|
-------
|
|
@@ -1106,12 +1106,12 @@ class Root(PyMenu):
|
|
|
1106
1106
|
InvokeShareTopology : str
|
|
1107
1107
|
NonConformal : str
|
|
1108
1108
|
Multizone : str
|
|
1109
|
-
SetupInternals :
|
|
1110
|
-
SetupInternalTypes :
|
|
1111
|
-
OldZoneList :
|
|
1112
|
-
OldZoneTypeList :
|
|
1113
|
-
RegionList :
|
|
1114
|
-
SMImprovePreferences :
|
|
1109
|
+
SetupInternals : list[str]
|
|
1110
|
+
SetupInternalTypes : list[str]
|
|
1111
|
+
OldZoneList : list[str]
|
|
1112
|
+
OldZoneTypeList : list[str]
|
|
1113
|
+
RegionList : list[str]
|
|
1114
|
+
SMImprovePreferences : dict[str, Any]
|
|
1115
1115
|
|
|
1116
1116
|
Returns
|
|
1117
1117
|
-------
|
|
@@ -1128,20 +1128,20 @@ class Root(PyMenu):
|
|
|
1128
1128
|
MRFName : str
|
|
1129
1129
|
CreationMethod : str
|
|
1130
1130
|
SelectionType : str
|
|
1131
|
-
ObjectSelectionSingle :
|
|
1132
|
-
ZoneSelectionSingle :
|
|
1133
|
-
LabelSelectionSingle :
|
|
1134
|
-
ObjectSelectionList :
|
|
1135
|
-
ZoneSelectionList :
|
|
1136
|
-
ZoneLocation :
|
|
1137
|
-
LabelSelectionList :
|
|
1131
|
+
ObjectSelectionSingle : list[str]
|
|
1132
|
+
ZoneSelectionSingle : list[str]
|
|
1133
|
+
LabelSelectionSingle : list[str]
|
|
1134
|
+
ObjectSelectionList : list[str]
|
|
1135
|
+
ZoneSelectionList : list[str]
|
|
1136
|
+
ZoneLocation : list[str]
|
|
1137
|
+
LabelSelectionList : list[str]
|
|
1138
1138
|
DefeaturingSize : float
|
|
1139
1139
|
OffsetHeight : float
|
|
1140
|
-
Pivot :
|
|
1141
|
-
Axis :
|
|
1142
|
-
Rotation :
|
|
1143
|
-
CylinderObject :
|
|
1144
|
-
BoundingBoxObject :
|
|
1140
|
+
Pivot : dict[str, Any]
|
|
1141
|
+
Axis : dict[str, Any]
|
|
1142
|
+
Rotation : dict[str, Any]
|
|
1143
|
+
CylinderObject : dict[str, Any]
|
|
1144
|
+
BoundingBoxObject : dict[str, Any]
|
|
1145
1145
|
|
|
1146
1146
|
Returns
|
|
1147
1147
|
-------
|
|
@@ -1157,9 +1157,9 @@ class Root(PyMenu):
|
|
|
1157
1157
|
----------
|
|
1158
1158
|
DisplayGridName : str
|
|
1159
1159
|
SelectionType : str
|
|
1160
|
-
ObjectSelectionList :
|
|
1161
|
-
ZoneSelectionList :
|
|
1162
|
-
ZoneLocation :
|
|
1160
|
+
ObjectSelectionList : list[str]
|
|
1161
|
+
ZoneSelectionList : list[str]
|
|
1162
|
+
ZoneLocation : list[str]
|
|
1163
1163
|
AdvancedOptions : bool
|
|
1164
1164
|
DeviationMinValue : float
|
|
1165
1165
|
DeviationMaxValue : float
|
|
@@ -1178,7 +1178,7 @@ class Root(PyMenu):
|
|
|
1178
1178
|
Parameters
|
|
1179
1179
|
----------
|
|
1180
1180
|
NumberOfOrphans : str
|
|
1181
|
-
ObjectSelectionList :
|
|
1181
|
+
ObjectSelectionList : list[str]
|
|
1182
1182
|
DonorPriorityMethod : str
|
|
1183
1183
|
OverlapBoundaries : str
|
|
1184
1184
|
|
|
@@ -1200,10 +1200,10 @@ class Root(PyMenu):
|
|
|
1200
1200
|
NewRegionType : str
|
|
1201
1201
|
LinkConstruction : str
|
|
1202
1202
|
SelectionType : str
|
|
1203
|
-
ZoneSelectionList :
|
|
1204
|
-
ZoneLocation :
|
|
1205
|
-
LabelSelectionList :
|
|
1206
|
-
ObjectSelectionList :
|
|
1203
|
+
ZoneSelectionList : list[str]
|
|
1204
|
+
ZoneLocation : list[str]
|
|
1205
|
+
LabelSelectionList : list[str]
|
|
1206
|
+
ObjectSelectionList : list[str]
|
|
1207
1207
|
GraphicalSelection : bool
|
|
1208
1208
|
ShowCoordinates : bool
|
|
1209
1209
|
X : float
|
|
@@ -1229,8 +1229,8 @@ class Root(PyMenu):
|
|
|
1229
1229
|
Type : str
|
|
1230
1230
|
GeometryFileName : str
|
|
1231
1231
|
MeshFileName : str
|
|
1232
|
-
ImportedObjects :
|
|
1233
|
-
CadImportOptions :
|
|
1232
|
+
ImportedObjects : list[str]
|
|
1233
|
+
CadImportOptions : dict[str, Any]
|
|
1234
1234
|
|
|
1235
1235
|
Returns
|
|
1236
1236
|
-------
|
|
@@ -1247,7 +1247,7 @@ class Root(PyMenu):
|
|
|
1247
1247
|
FileFormat : str
|
|
1248
1248
|
LengthUnit : str
|
|
1249
1249
|
MeshUnit : str
|
|
1250
|
-
ImportCadPreferences :
|
|
1250
|
+
ImportCadPreferences : dict[str, Any]
|
|
1251
1251
|
FileName : str
|
|
1252
1252
|
MeshFileName : str
|
|
1253
1253
|
NumParts : float
|
|
@@ -1255,7 +1255,7 @@ class Root(PyMenu):
|
|
|
1255
1255
|
AppendMesh : bool
|
|
1256
1256
|
Directory : str
|
|
1257
1257
|
Pattern : str
|
|
1258
|
-
CadImportOptions :
|
|
1258
|
+
CadImportOptions : dict[str, Any]
|
|
1259
1259
|
|
|
1260
1260
|
Returns
|
|
1261
1261
|
-------
|
|
@@ -1272,7 +1272,7 @@ class Root(PyMenu):
|
|
|
1272
1272
|
MeshObject : str
|
|
1273
1273
|
FaceQualityLimit : float
|
|
1274
1274
|
SQMinSize : float
|
|
1275
|
-
SMImprovePreferences :
|
|
1275
|
+
SMImprovePreferences : dict[str, Any]
|
|
1276
1276
|
|
|
1277
1277
|
Returns
|
|
1278
1278
|
-------
|
|
@@ -1287,7 +1287,7 @@ class Root(PyMenu):
|
|
|
1287
1287
|
Parameters
|
|
1288
1288
|
----------
|
|
1289
1289
|
CellQualityLimit : float
|
|
1290
|
-
VMImprovePreferences :
|
|
1290
|
+
VMImprovePreferences : dict[str, Any]
|
|
1291
1291
|
|
|
1292
1292
|
Returns
|
|
1293
1293
|
-------
|
|
@@ -1302,13 +1302,13 @@ class Root(PyMenu):
|
|
|
1302
1302
|
Parameters
|
|
1303
1303
|
----------
|
|
1304
1304
|
ChildName : str
|
|
1305
|
-
ObjectList :
|
|
1305
|
+
ObjectList : list[str]
|
|
1306
1306
|
AutoPopulateVector : str
|
|
1307
|
-
PatternVector :
|
|
1307
|
+
PatternVector : dict[str, Any]
|
|
1308
1308
|
Pitch : float
|
|
1309
1309
|
NumberOfUnits : int
|
|
1310
1310
|
CheckOverlappingFaces : str
|
|
1311
|
-
BatteryModelingOptions :
|
|
1311
|
+
BatteryModelingOptions : dict[str, Any]
|
|
1312
1312
|
|
|
1313
1313
|
Returns
|
|
1314
1314
|
-------
|
|
@@ -1324,17 +1324,17 @@ class Root(PyMenu):
|
|
|
1324
1324
|
----------
|
|
1325
1325
|
LocalSettingsName : str
|
|
1326
1326
|
SelectionType : str
|
|
1327
|
-
ObjectSelectionList :
|
|
1328
|
-
LabelSelectionList :
|
|
1329
|
-
ZoneSelectionList :
|
|
1330
|
-
ZoneLocation :
|
|
1331
|
-
EdgeSelectionList :
|
|
1332
|
-
LocalSizeControlParameters :
|
|
1327
|
+
ObjectSelectionList : list[str]
|
|
1328
|
+
LabelSelectionList : list[str]
|
|
1329
|
+
ZoneSelectionList : list[str]
|
|
1330
|
+
ZoneLocation : list[str]
|
|
1331
|
+
EdgeSelectionList : list[str]
|
|
1332
|
+
LocalSizeControlParameters : dict[str, Any]
|
|
1333
1333
|
ValueChanged : str
|
|
1334
|
-
CompleteZoneSelectionList :
|
|
1335
|
-
CompleteLabelSelectionList :
|
|
1336
|
-
CompleteObjectSelectionList :
|
|
1337
|
-
CompleteEdgeSelectionList :
|
|
1334
|
+
CompleteZoneSelectionList : list[str]
|
|
1335
|
+
CompleteLabelSelectionList : list[str]
|
|
1336
|
+
CompleteObjectSelectionList : list[str]
|
|
1337
|
+
CompleteEdgeSelectionList : list[str]
|
|
1338
1338
|
|
|
1339
1339
|
Returns
|
|
1340
1340
|
-------
|
|
@@ -1355,18 +1355,18 @@ class Root(PyMenu):
|
|
|
1355
1355
|
Volume : float
|
|
1356
1356
|
EqualRange : float
|
|
1357
1357
|
ZoneOrLabel : str
|
|
1358
|
-
LabelList :
|
|
1359
|
-
ManageFaceZoneList :
|
|
1360
|
-
ManageCellZoneList :
|
|
1361
|
-
BodyLabelList :
|
|
1358
|
+
LabelList : list[str]
|
|
1359
|
+
ManageFaceZoneList : list[str]
|
|
1360
|
+
ManageCellZoneList : list[str]
|
|
1361
|
+
BodyLabelList : list[str]
|
|
1362
1362
|
Operation : str
|
|
1363
1363
|
OperationName : str
|
|
1364
1364
|
MZChildName : str
|
|
1365
1365
|
AddPrefixName : str
|
|
1366
1366
|
FaceMerge : str
|
|
1367
1367
|
Angle : float
|
|
1368
|
-
ZoneList :
|
|
1369
|
-
ZoneLocation :
|
|
1368
|
+
ZoneList : list[str]
|
|
1369
|
+
ZoneLocation : list[str]
|
|
1370
1370
|
|
|
1371
1371
|
Returns
|
|
1372
1372
|
-------
|
|
@@ -1399,16 +1399,16 @@ class Root(PyMenu):
|
|
|
1399
1399
|
RemeshControlName : str
|
|
1400
1400
|
LocalSize : float
|
|
1401
1401
|
FaceZoneOrLabel : str
|
|
1402
|
-
RemeshFaceZoneList :
|
|
1403
|
-
RemeshFaceLabelList :
|
|
1402
|
+
RemeshFaceZoneList : list[str]
|
|
1403
|
+
RemeshFaceLabelList : list[str]
|
|
1404
1404
|
SizingType : str
|
|
1405
1405
|
LocalMinSize : float
|
|
1406
1406
|
LocalMaxSize : float
|
|
1407
1407
|
RemeshGrowthRate : float
|
|
1408
1408
|
RemeshCurvatureNormalAngle : float
|
|
1409
1409
|
RemeshCellsPerGap : float
|
|
1410
|
-
CFDSurfaceMeshControls :
|
|
1411
|
-
RemeshPreferences :
|
|
1410
|
+
CFDSurfaceMeshControls : dict[str, Any]
|
|
1411
|
+
RemeshPreferences : dict[str, Any]
|
|
1412
1412
|
|
|
1413
1413
|
Returns
|
|
1414
1414
|
-------
|
|
@@ -1437,10 +1437,10 @@ class Root(PyMenu):
|
|
|
1437
1437
|
PartPerBody : bool
|
|
1438
1438
|
FeatureAngle : float
|
|
1439
1439
|
OneZonePer : str
|
|
1440
|
-
Refaceting :
|
|
1440
|
+
Refaceting : dict[str, Any]
|
|
1441
1441
|
IgnoreSolidNames : bool
|
|
1442
1442
|
IgnoreSolidNamesAppend : bool
|
|
1443
|
-
Options :
|
|
1443
|
+
Options : dict[str, Any]
|
|
1444
1444
|
EdgeExtraction : str
|
|
1445
1445
|
Context : int
|
|
1446
1446
|
ObjectSetting : str
|
|
@@ -1460,8 +1460,8 @@ class Root(PyMenu):
|
|
|
1460
1460
|
PartReplacementName : str
|
|
1461
1461
|
ManagementMethod : str
|
|
1462
1462
|
CreationMethod : str
|
|
1463
|
-
OldObjectSelectionList :
|
|
1464
|
-
NewObjectSelectionList :
|
|
1463
|
+
OldObjectSelectionList : list[str]
|
|
1464
|
+
NewObjectSelectionList : list[str]
|
|
1465
1465
|
AdvancedOptions : bool
|
|
1466
1466
|
ScalingFactor : float
|
|
1467
1467
|
MptMethodType : str
|
|
@@ -1529,14 +1529,14 @@ class Root(PyMenu):
|
|
|
1529
1529
|
Type : str
|
|
1530
1530
|
Method : str
|
|
1531
1531
|
PeriodicityAngle : float
|
|
1532
|
-
LCSOrigin :
|
|
1533
|
-
LCSVector :
|
|
1534
|
-
TransShift :
|
|
1532
|
+
LCSOrigin : dict[str, Any]
|
|
1533
|
+
LCSVector : dict[str, Any]
|
|
1534
|
+
TransShift : dict[str, Any]
|
|
1535
1535
|
SelectionType : str
|
|
1536
|
-
ZoneList :
|
|
1537
|
-
LabelList :
|
|
1536
|
+
ZoneList : list[str]
|
|
1537
|
+
LabelList : list[str]
|
|
1538
1538
|
RemeshBoundariesOption : str
|
|
1539
|
-
ZoneLocation :
|
|
1539
|
+
ZoneLocation : list[str]
|
|
1540
1540
|
ListAllLabelToggle : bool
|
|
1541
1541
|
|
|
1542
1542
|
Returns
|
|
@@ -1559,7 +1559,7 @@ class Root(PyMenu):
|
|
|
1559
1559
|
LastRatioPercentage : float
|
|
1560
1560
|
FirstHeight : float
|
|
1561
1561
|
PrismLayers : int
|
|
1562
|
-
RegionSelectionList :
|
|
1562
|
+
RegionSelectionList : list[str]
|
|
1563
1563
|
|
|
1564
1564
|
Returns
|
|
1565
1565
|
-------
|
|
@@ -1577,9 +1577,9 @@ class Root(PyMenu):
|
|
|
1577
1577
|
GapDistanceConnect : float
|
|
1578
1578
|
STMinSize : float
|
|
1579
1579
|
InterfaceSelect : str
|
|
1580
|
-
ShareTopologyPreferences :
|
|
1581
|
-
SMImprovePreferences :
|
|
1582
|
-
SurfaceMeshPreferences :
|
|
1580
|
+
ShareTopologyPreferences : dict[str, Any]
|
|
1581
|
+
SMImprovePreferences : dict[str, Any]
|
|
1582
|
+
SurfaceMeshPreferences : dict[str, Any]
|
|
1583
1583
|
|
|
1584
1584
|
Returns
|
|
1585
1585
|
-------
|
|
@@ -1600,7 +1600,7 @@ class Root(PyMenu):
|
|
|
1600
1600
|
InitialSizeControl : bool
|
|
1601
1601
|
TargetSizeControl : bool
|
|
1602
1602
|
SizeControlInterval : float
|
|
1603
|
-
SizeControlParameters :
|
|
1603
|
+
SizeControlParameters : dict[str, Any]
|
|
1604
1604
|
|
|
1605
1605
|
Returns
|
|
1606
1606
|
-------
|
|
@@ -1617,10 +1617,10 @@ class Root(PyMenu):
|
|
|
1617
1617
|
MTControlName : str
|
|
1618
1618
|
Type : str
|
|
1619
1619
|
Method : str
|
|
1620
|
-
CellZoneList :
|
|
1621
|
-
LCSOrigin :
|
|
1622
|
-
LCSVector :
|
|
1623
|
-
TransShift :
|
|
1620
|
+
CellZoneList : list[str]
|
|
1621
|
+
LCSOrigin : dict[str, Any]
|
|
1622
|
+
LCSVector : dict[str, Any]
|
|
1623
|
+
TransShift : dict[str, Any]
|
|
1624
1624
|
Angle : float
|
|
1625
1625
|
Copy : str
|
|
1626
1626
|
NumOfCopies : int
|
|
@@ -1641,17 +1641,17 @@ class Root(PyMenu):
|
|
|
1641
1641
|
----------
|
|
1642
1642
|
MeshObject : str
|
|
1643
1643
|
SelectionType : str
|
|
1644
|
-
BoundaryLabelList :
|
|
1645
|
-
BoundaryLabelTypeList :
|
|
1646
|
-
BoundaryZoneList :
|
|
1647
|
-
BoundaryZoneTypeList :
|
|
1648
|
-
OldBoundaryLabelList :
|
|
1649
|
-
OldBoundaryLabelTypeList :
|
|
1650
|
-
OldBoundaryZoneList :
|
|
1651
|
-
OldBoundaryZoneTypeList :
|
|
1652
|
-
OldLabelZoneList :
|
|
1644
|
+
BoundaryLabelList : list[str]
|
|
1645
|
+
BoundaryLabelTypeList : list[str]
|
|
1646
|
+
BoundaryZoneList : list[str]
|
|
1647
|
+
BoundaryZoneTypeList : list[str]
|
|
1648
|
+
OldBoundaryLabelList : list[str]
|
|
1649
|
+
OldBoundaryLabelTypeList : list[str]
|
|
1650
|
+
OldBoundaryZoneList : list[str]
|
|
1651
|
+
OldBoundaryZoneTypeList : list[str]
|
|
1652
|
+
OldLabelZoneList : list[str]
|
|
1653
1653
|
ListAllBoundariesToggle : bool
|
|
1654
|
-
ZoneLocation :
|
|
1654
|
+
ZoneLocation : list[str]
|
|
1655
1655
|
|
|
1656
1656
|
Returns
|
|
1657
1657
|
-------
|
|
@@ -1667,27 +1667,27 @@ class Root(PyMenu):
|
|
|
1667
1667
|
----------
|
|
1668
1668
|
MainFluidRegion : str
|
|
1669
1669
|
FilterCategory : str
|
|
1670
|
-
RegionNameList :
|
|
1671
|
-
RegionMeshMethodList :
|
|
1672
|
-
RegionTypeList :
|
|
1673
|
-
RegionVolumeFillList :
|
|
1674
|
-
RegionLeakageSizeList :
|
|
1675
|
-
RegionOversetComponenList :
|
|
1676
|
-
OldRegionNameList :
|
|
1677
|
-
OldRegionMeshMethodList :
|
|
1678
|
-
OldRegionTypeList :
|
|
1679
|
-
OldRegionVolumeFillList :
|
|
1680
|
-
OldRegionLeakageSizeList :
|
|
1681
|
-
OldRegionOversetComponenList :
|
|
1682
|
-
AllRegionNameList :
|
|
1683
|
-
AllRegionMeshMethodList :
|
|
1684
|
-
AllRegionTypeList :
|
|
1685
|
-
AllRegionVolumeFillList :
|
|
1686
|
-
AllRegionLeakageSizeList :
|
|
1687
|
-
AllRegionOversetComponenList :
|
|
1688
|
-
AllRegionLinkedConstructionSurfaceList :
|
|
1689
|
-
AllRegionSourceList :
|
|
1690
|
-
AllRegionFilterCategories :
|
|
1670
|
+
RegionNameList : list[str]
|
|
1671
|
+
RegionMeshMethodList : list[str]
|
|
1672
|
+
RegionTypeList : list[str]
|
|
1673
|
+
RegionVolumeFillList : list[str]
|
|
1674
|
+
RegionLeakageSizeList : list[str]
|
|
1675
|
+
RegionOversetComponenList : list[str]
|
|
1676
|
+
OldRegionNameList : list[str]
|
|
1677
|
+
OldRegionMeshMethodList : list[str]
|
|
1678
|
+
OldRegionTypeList : list[str]
|
|
1679
|
+
OldRegionVolumeFillList : list[str]
|
|
1680
|
+
OldRegionLeakageSizeList : list[str]
|
|
1681
|
+
OldRegionOversetComponenList : list[str]
|
|
1682
|
+
AllRegionNameList : list[str]
|
|
1683
|
+
AllRegionMeshMethodList : list[str]
|
|
1684
|
+
AllRegionTypeList : list[str]
|
|
1685
|
+
AllRegionVolumeFillList : list[str]
|
|
1686
|
+
AllRegionLeakageSizeList : list[str]
|
|
1687
|
+
AllRegionOversetComponenList : list[str]
|
|
1688
|
+
AllRegionLinkedConstructionSurfaceList : list[str]
|
|
1689
|
+
AllRegionSourceList : list[str]
|
|
1690
|
+
AllRegionFilterCategories : list[str]
|
|
1691
1691
|
|
|
1692
1692
|
Returns
|
|
1693
1693
|
-------
|
|
@@ -1702,12 +1702,12 @@ class Root(PyMenu):
|
|
|
1702
1702
|
Parameters
|
|
1703
1703
|
----------
|
|
1704
1704
|
MeshObject : str
|
|
1705
|
-
RegionNameList :
|
|
1706
|
-
RegionTypeList :
|
|
1707
|
-
OldRegionNameList :
|
|
1708
|
-
OldRegionTypeList :
|
|
1709
|
-
RegionInternals :
|
|
1710
|
-
RegionInternalTypes :
|
|
1705
|
+
RegionNameList : list[str]
|
|
1706
|
+
RegionTypeList : list[str]
|
|
1707
|
+
OldRegionNameList : list[str]
|
|
1708
|
+
OldRegionTypeList : list[str]
|
|
1709
|
+
RegionInternals : list[str]
|
|
1710
|
+
RegionInternalTypes : list[str]
|
|
1711
1711
|
|
|
1712
1712
|
Returns
|
|
1713
1713
|
-------
|