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
|
@@ -207,85 +207,85 @@ class Root(PyMenu):
|
|
|
207
207
|
|
|
208
208
|
class AllOversetNameList(PyTextual):
|
|
209
209
|
"""
|
|
210
|
-
Parameter AllOversetNameList of value type
|
|
210
|
+
Parameter AllOversetNameList of value type list[str].
|
|
211
211
|
"""
|
|
212
212
|
pass
|
|
213
213
|
|
|
214
214
|
class AllOversetSizeList(PyTextual):
|
|
215
215
|
"""
|
|
216
|
-
Parameter AllOversetSizeList of value type
|
|
216
|
+
Parameter AllOversetSizeList of value type list[str].
|
|
217
217
|
"""
|
|
218
218
|
pass
|
|
219
219
|
|
|
220
220
|
class AllOversetTypeList(PyTextual):
|
|
221
221
|
"""
|
|
222
|
-
Parameter AllOversetTypeList of value type
|
|
222
|
+
Parameter AllOversetTypeList of value type list[str].
|
|
223
223
|
"""
|
|
224
224
|
pass
|
|
225
225
|
|
|
226
226
|
class AllOversetVolumeFillList(PyTextual):
|
|
227
227
|
"""
|
|
228
|
-
Parameter AllOversetVolumeFillList of value type
|
|
228
|
+
Parameter AllOversetVolumeFillList of value type list[str].
|
|
229
229
|
"""
|
|
230
230
|
pass
|
|
231
231
|
|
|
232
232
|
class AllRegionFilterCategories(PyTextual):
|
|
233
233
|
"""
|
|
234
|
-
Parameter AllRegionFilterCategories of value type
|
|
234
|
+
Parameter AllRegionFilterCategories of value type list[str].
|
|
235
235
|
"""
|
|
236
236
|
pass
|
|
237
237
|
|
|
238
238
|
class AllRegionLeakageSizeList(PyTextual):
|
|
239
239
|
"""
|
|
240
|
-
Parameter AllRegionLeakageSizeList of value type
|
|
240
|
+
Parameter AllRegionLeakageSizeList of value type list[str].
|
|
241
241
|
"""
|
|
242
242
|
pass
|
|
243
243
|
|
|
244
244
|
class AllRegionLinkedConstructionSurfaceList(PyTextual):
|
|
245
245
|
"""
|
|
246
|
-
Parameter AllRegionLinkedConstructionSurfaceList of value type
|
|
246
|
+
Parameter AllRegionLinkedConstructionSurfaceList of value type list[str].
|
|
247
247
|
"""
|
|
248
248
|
pass
|
|
249
249
|
|
|
250
250
|
class AllRegionMeshMethodList(PyTextual):
|
|
251
251
|
"""
|
|
252
|
-
Parameter AllRegionMeshMethodList of value type
|
|
252
|
+
Parameter AllRegionMeshMethodList of value type list[str].
|
|
253
253
|
"""
|
|
254
254
|
pass
|
|
255
255
|
|
|
256
256
|
class AllRegionNameList(PyTextual):
|
|
257
257
|
"""
|
|
258
|
-
Parameter AllRegionNameList of value type
|
|
258
|
+
Parameter AllRegionNameList of value type list[str].
|
|
259
259
|
"""
|
|
260
260
|
pass
|
|
261
261
|
|
|
262
262
|
class AllRegionOversetComponenList(PyTextual):
|
|
263
263
|
"""
|
|
264
|
-
Parameter AllRegionOversetComponenList of value type
|
|
264
|
+
Parameter AllRegionOversetComponenList of value type list[str].
|
|
265
265
|
"""
|
|
266
266
|
pass
|
|
267
267
|
|
|
268
268
|
class AllRegionSizeList(PyTextual):
|
|
269
269
|
"""
|
|
270
|
-
Parameter AllRegionSizeList of value type
|
|
270
|
+
Parameter AllRegionSizeList of value type list[str].
|
|
271
271
|
"""
|
|
272
272
|
pass
|
|
273
273
|
|
|
274
274
|
class AllRegionSourceList(PyTextual):
|
|
275
275
|
"""
|
|
276
|
-
Parameter AllRegionSourceList of value type
|
|
276
|
+
Parameter AllRegionSourceList of value type list[str].
|
|
277
277
|
"""
|
|
278
278
|
pass
|
|
279
279
|
|
|
280
280
|
class AllRegionTypeList(PyTextual):
|
|
281
281
|
"""
|
|
282
|
-
Parameter AllRegionTypeList of value type
|
|
282
|
+
Parameter AllRegionTypeList of value type list[str].
|
|
283
283
|
"""
|
|
284
284
|
pass
|
|
285
285
|
|
|
286
286
|
class AllRegionVolumeFillList(PyTextual):
|
|
287
287
|
"""
|
|
288
|
-
Parameter AllRegionVolumeFillList of value type
|
|
288
|
+
Parameter AllRegionVolumeFillList of value type list[str].
|
|
289
289
|
"""
|
|
290
290
|
pass
|
|
291
291
|
|
|
@@ -365,11 +365,11 @@ class Root(PyMenu):
|
|
|
365
365
|
FirstLayerHeight : float
|
|
366
366
|
MaxLayerHeight : float
|
|
367
367
|
Addin : str
|
|
368
|
-
FaceLabelList :
|
|
368
|
+
FaceLabelList : list[str]
|
|
369
369
|
GrowOn : str
|
|
370
|
-
EdgeLabelList :
|
|
371
|
-
EdgeZoneList :
|
|
372
|
-
ShellBLAdvancedOptions :
|
|
370
|
+
EdgeLabelList : list[str]
|
|
371
|
+
EdgeZoneList : list[str]
|
|
372
|
+
ShellBLAdvancedOptions : dict[str, Any]
|
|
373
373
|
|
|
374
374
|
Returns
|
|
375
375
|
-------
|
|
@@ -393,21 +393,21 @@ class Root(PyMenu):
|
|
|
393
393
|
Rate : float
|
|
394
394
|
FirstHeight : float
|
|
395
395
|
MaxLayerHeight : float
|
|
396
|
-
FaceScope :
|
|
397
|
-
RegionScope :
|
|
398
|
-
BlLabelList :
|
|
399
|
-
ZoneSelectionList :
|
|
400
|
-
ZoneLocation :
|
|
401
|
-
LocalPrismPreferences :
|
|
402
|
-
BLZoneList :
|
|
403
|
-
BLRegionList :
|
|
396
|
+
FaceScope : dict[str, Any]
|
|
397
|
+
RegionScope : list[str]
|
|
398
|
+
BlLabelList : list[str]
|
|
399
|
+
ZoneSelectionList : list[str]
|
|
400
|
+
ZoneLocation : list[str]
|
|
401
|
+
LocalPrismPreferences : dict[str, Any]
|
|
402
|
+
BLZoneList : list[str]
|
|
403
|
+
BLRegionList : list[str]
|
|
404
404
|
InvalidAdded : str
|
|
405
|
-
CompleteRegionScope :
|
|
406
|
-
CompleteBlLabelList :
|
|
407
|
-
CompleteBLZoneList :
|
|
408
|
-
CompleteBLRegionList :
|
|
409
|
-
CompleteZoneSelectionList :
|
|
410
|
-
CompleteLabelSelectionList :
|
|
405
|
+
CompleteRegionScope : list[str]
|
|
406
|
+
CompleteBlLabelList : list[str]
|
|
407
|
+
CompleteBLZoneList : list[str]
|
|
408
|
+
CompleteBLRegionList : list[str]
|
|
409
|
+
CompleteZoneSelectionList : list[str]
|
|
410
|
+
CompleteLabelSelectionList : list[str]
|
|
411
411
|
|
|
412
412
|
Returns
|
|
413
413
|
-------
|
|
@@ -431,20 +431,20 @@ class Root(PyMenu):
|
|
|
431
431
|
Rate : float
|
|
432
432
|
FirstHeight : float
|
|
433
433
|
MaxLayerHeight : float
|
|
434
|
-
FaceScope :
|
|
435
|
-
RegionScope :
|
|
436
|
-
BlLabelList :
|
|
437
|
-
ZoneSelectionList :
|
|
438
|
-
ZoneLocation :
|
|
439
|
-
LocalPrismPreferences :
|
|
440
|
-
BLZoneList :
|
|
441
|
-
BLRegionList :
|
|
442
|
-
CompleteRegionScope :
|
|
443
|
-
CompleteBlLabelList :
|
|
444
|
-
CompleteBLZoneList :
|
|
445
|
-
CompleteBLRegionList :
|
|
446
|
-
CompleteZoneSelectionList :
|
|
447
|
-
CompleteLabelSelectionList :
|
|
434
|
+
FaceScope : dict[str, Any]
|
|
435
|
+
RegionScope : list[str]
|
|
436
|
+
BlLabelList : list[str]
|
|
437
|
+
ZoneSelectionList : list[str]
|
|
438
|
+
ZoneLocation : list[str]
|
|
439
|
+
LocalPrismPreferences : dict[str, Any]
|
|
440
|
+
BLZoneList : list[str]
|
|
441
|
+
BLRegionList : list[str]
|
|
442
|
+
CompleteRegionScope : list[str]
|
|
443
|
+
CompleteBlLabelList : list[str]
|
|
444
|
+
CompleteBLZoneList : list[str]
|
|
445
|
+
CompleteBLRegionList : list[str]
|
|
446
|
+
CompleteZoneSelectionList : list[str]
|
|
447
|
+
CompleteLabelSelectionList : list[str]
|
|
448
448
|
|
|
449
449
|
Returns
|
|
450
450
|
-------
|
|
@@ -462,10 +462,10 @@ class Root(PyMenu):
|
|
|
462
462
|
NewBoundaryLabelName : str
|
|
463
463
|
NewBoundaryType : str
|
|
464
464
|
SelectionType : str
|
|
465
|
-
BoundaryFaceZoneList :
|
|
466
|
-
TopologyList :
|
|
465
|
+
BoundaryFaceZoneList : list[str]
|
|
466
|
+
TopologyList : list[str]
|
|
467
467
|
Merge : str
|
|
468
|
-
ZoneLocation :
|
|
468
|
+
ZoneLocation : list[str]
|
|
469
469
|
|
|
470
470
|
Returns
|
|
471
471
|
-------
|
|
@@ -481,17 +481,17 @@ class Root(PyMenu):
|
|
|
481
481
|
----------
|
|
482
482
|
LocalSettingsName : str
|
|
483
483
|
SelectionType : str
|
|
484
|
-
ObjectSelectionList :
|
|
485
|
-
LabelSelectionList :
|
|
486
|
-
ZoneSelectionList :
|
|
487
|
-
ZoneLocation :
|
|
488
|
-
EdgeSelectionList :
|
|
489
|
-
LocalSizeControlParameters :
|
|
484
|
+
ObjectSelectionList : list[str]
|
|
485
|
+
LabelSelectionList : list[str]
|
|
486
|
+
ZoneSelectionList : list[str]
|
|
487
|
+
ZoneLocation : list[str]
|
|
488
|
+
EdgeSelectionList : list[str]
|
|
489
|
+
LocalSizeControlParameters : dict[str, Any]
|
|
490
490
|
ValueChanged : str
|
|
491
|
-
CompleteZoneSelectionList :
|
|
492
|
-
CompleteLabelSelectionList :
|
|
493
|
-
CompleteObjectSelectionList :
|
|
494
|
-
CompleteEdgeSelectionList :
|
|
491
|
+
CompleteZoneSelectionList : list[str]
|
|
492
|
+
CompleteLabelSelectionList : list[str]
|
|
493
|
+
CompleteObjectSelectionList : list[str]
|
|
494
|
+
CompleteEdgeSelectionList : list[str]
|
|
495
495
|
|
|
496
496
|
Returns
|
|
497
497
|
-------
|
|
@@ -521,18 +521,18 @@ class Root(PyMenu):
|
|
|
521
521
|
BOIScopeTo : str
|
|
522
522
|
IgnoreOrientation : str
|
|
523
523
|
BOIZoneorLabel : str
|
|
524
|
-
BOIFaceLabelList :
|
|
525
|
-
BOIFaceZoneList :
|
|
526
|
-
EdgeLabelList :
|
|
527
|
-
EdgeZoneList :
|
|
528
|
-
TopologyList :
|
|
524
|
+
BOIFaceLabelList : list[str]
|
|
525
|
+
BOIFaceZoneList : list[str]
|
|
526
|
+
EdgeLabelList : list[str]
|
|
527
|
+
EdgeZoneList : list[str]
|
|
528
|
+
TopologyList : list[str]
|
|
529
529
|
BOIPatchingtoggle : bool
|
|
530
530
|
DrawSizeControl : bool
|
|
531
|
-
ZoneLocation :
|
|
532
|
-
CompleteFaceZoneList :
|
|
533
|
-
CompleteFaceLabelList :
|
|
534
|
-
CompleteEdgeLabelList :
|
|
535
|
-
CompleteTopologyList :
|
|
531
|
+
ZoneLocation : list[str]
|
|
532
|
+
CompleteFaceZoneList : list[str]
|
|
533
|
+
CompleteFaceLabelList : list[str]
|
|
534
|
+
CompleteEdgeLabelList : list[str]
|
|
535
|
+
CompleteTopologyList : list[str]
|
|
536
536
|
PrimeSizeControlId : int
|
|
537
537
|
|
|
538
538
|
Returns
|
|
@@ -553,13 +553,13 @@ class Root(PyMenu):
|
|
|
553
553
|
FillWith : str
|
|
554
554
|
UseSweepSize : str
|
|
555
555
|
MaxSweepSize : float
|
|
556
|
-
RegionScope :
|
|
556
|
+
RegionScope : list[str]
|
|
557
557
|
SourceMethod : str
|
|
558
558
|
ParallelSelection : bool
|
|
559
559
|
ShowEdgeBiasing : str
|
|
560
|
-
LabelSourceList :
|
|
561
|
-
ZoneSourceList :
|
|
562
|
-
ZoneLocation :
|
|
560
|
+
LabelSourceList : list[str]
|
|
561
|
+
ZoneSourceList : list[str]
|
|
562
|
+
ZoneLocation : list[str]
|
|
563
563
|
AssignSizeUsing : str
|
|
564
564
|
Intervals : int
|
|
565
565
|
Size : float
|
|
@@ -568,11 +568,11 @@ class Root(PyMenu):
|
|
|
568
568
|
GrowthMethod : str
|
|
569
569
|
GrowthRate : float
|
|
570
570
|
BiasFactor : float
|
|
571
|
-
EdgeLabelSelection :
|
|
572
|
-
EdgeLabelList :
|
|
573
|
-
CFDSurfaceMeshControls :
|
|
574
|
-
CompleteRegionScope :
|
|
575
|
-
CompleteEdgeScope :
|
|
571
|
+
EdgeLabelSelection : list[str]
|
|
572
|
+
EdgeLabelList : list[str]
|
|
573
|
+
CFDSurfaceMeshControls : dict[str, Any]
|
|
574
|
+
CompleteRegionScope : list[str]
|
|
575
|
+
CompleteEdgeScope : list[str]
|
|
576
576
|
|
|
577
577
|
Returns
|
|
578
578
|
-------
|
|
@@ -596,12 +596,12 @@ class Root(PyMenu):
|
|
|
596
596
|
FirstLayerHeight : float
|
|
597
597
|
MaxLayerHeight : float
|
|
598
598
|
GrowOn : str
|
|
599
|
-
FaceLabelList :
|
|
600
|
-
FaceZoneList :
|
|
599
|
+
FaceLabelList : list[str]
|
|
600
|
+
FaceZoneList : list[str]
|
|
601
601
|
EdgeSelectionType : str
|
|
602
|
-
EdgeLabelList :
|
|
603
|
-
EdgeZoneList :
|
|
604
|
-
ShellBLAdvancedOptions :
|
|
602
|
+
EdgeLabelList : list[str]
|
|
603
|
+
EdgeZoneList : list[str]
|
|
604
|
+
ShellBLAdvancedOptions : dict[str, Any]
|
|
605
605
|
|
|
606
606
|
Returns
|
|
607
607
|
-------
|
|
@@ -617,10 +617,10 @@ class Root(PyMenu):
|
|
|
617
617
|
----------
|
|
618
618
|
ZeroThicknessName : str
|
|
619
619
|
SelectionType : str
|
|
620
|
-
ZoneSelectionList :
|
|
621
|
-
ZoneLocation :
|
|
622
|
-
ObjectSelectionList :
|
|
623
|
-
LabelSelectionList :
|
|
620
|
+
ZoneSelectionList : list[str]
|
|
621
|
+
ZoneLocation : list[str]
|
|
622
|
+
ObjectSelectionList : list[str]
|
|
623
|
+
LabelSelectionList : list[str]
|
|
624
624
|
Distance : float
|
|
625
625
|
|
|
626
626
|
Returns
|
|
@@ -640,23 +640,23 @@ class Root(PyMenu):
|
|
|
640
640
|
GrowthRate : float
|
|
641
641
|
RemeshOverlapping : bool
|
|
642
642
|
SideImprints : bool
|
|
643
|
-
RegionScope :
|
|
643
|
+
RegionScope : list[str]
|
|
644
644
|
SelectSourceBy : str
|
|
645
645
|
ParallelSource : bool
|
|
646
|
-
LabelSourceList :
|
|
647
|
-
ZoneSourceList :
|
|
646
|
+
LabelSourceList : list[str]
|
|
647
|
+
ZoneSourceList : list[str]
|
|
648
648
|
SelectTargetBy : str
|
|
649
649
|
ParallelTarget : bool
|
|
650
|
-
LabelTargetList :
|
|
651
|
-
ZoneTargetList :
|
|
652
|
-
CompleteRegionScope :
|
|
653
|
-
CompleteLabelSourceList :
|
|
654
|
-
CompleteZoneSourceList :
|
|
655
|
-
CompleteLabelTargetList :
|
|
656
|
-
CompleteZoneTargetList :
|
|
657
|
-
ThinVolumePreferences :
|
|
658
|
-
ZoneLocation :
|
|
659
|
-
ZoneLocation2 :
|
|
650
|
+
LabelTargetList : list[str]
|
|
651
|
+
ZoneTargetList : list[str]
|
|
652
|
+
CompleteRegionScope : list[str]
|
|
653
|
+
CompleteLabelSourceList : list[str]
|
|
654
|
+
CompleteZoneSourceList : list[str]
|
|
655
|
+
CompleteLabelTargetList : list[str]
|
|
656
|
+
CompleteZoneTargetList : list[str]
|
|
657
|
+
ThinVolumePreferences : dict[str, Any]
|
|
658
|
+
ZoneLocation : list[str]
|
|
659
|
+
ZoneLocation2 : list[str]
|
|
660
660
|
|
|
661
661
|
Returns
|
|
662
662
|
-------
|
|
@@ -673,9 +673,9 @@ class Root(PyMenu):
|
|
|
673
673
|
AddChild : str
|
|
674
674
|
ControlName : str
|
|
675
675
|
SelectionType : str
|
|
676
|
-
FaceLabelList :
|
|
677
|
-
FaceZoneList :
|
|
678
|
-
NewFaces :
|
|
676
|
+
FaceLabelList : list[str]
|
|
677
|
+
FaceZoneList : list[str]
|
|
678
|
+
NewFaces : list[int]
|
|
679
679
|
|
|
680
680
|
Returns
|
|
681
681
|
-------
|
|
@@ -693,18 +693,18 @@ class Root(PyMenu):
|
|
|
693
693
|
ZoneType : str
|
|
694
694
|
PatchType : str
|
|
695
695
|
SelectionType : str
|
|
696
|
-
LabelSelectionList :
|
|
697
|
-
ZoneSelectionList :
|
|
698
|
-
TopologyList :
|
|
699
|
-
CreatePatchPreferences :
|
|
696
|
+
LabelSelectionList : list[str]
|
|
697
|
+
ZoneSelectionList : list[str]
|
|
698
|
+
TopologyList : list[str]
|
|
699
|
+
CreatePatchPreferences : dict[str, Any]
|
|
700
700
|
ObjectAssociation : str
|
|
701
701
|
NewObjectName : str
|
|
702
702
|
PatchObjectName : str
|
|
703
|
-
CapLabels :
|
|
704
|
-
ZoneLocation :
|
|
705
|
-
CompleteZoneSelectionList :
|
|
706
|
-
CompleteLabelSelectionList :
|
|
707
|
-
CompleteTopologyList :
|
|
703
|
+
CapLabels : list[str]
|
|
704
|
+
ZoneLocation : list[str]
|
|
705
|
+
CompleteZoneSelectionList : list[str]
|
|
706
|
+
CompleteLabelSelectionList : list[str]
|
|
707
|
+
CompleteTopologyList : list[str]
|
|
708
708
|
|
|
709
709
|
Returns
|
|
710
710
|
-------
|
|
@@ -726,7 +726,7 @@ class Root(PyMenu):
|
|
|
726
726
|
GlobalMin : float
|
|
727
727
|
GlobalMax : float
|
|
728
728
|
GlobalGrowthRate : float
|
|
729
|
-
MeshControlOptions :
|
|
729
|
+
MeshControlOptions : dict[str, Any]
|
|
730
730
|
|
|
731
731
|
Returns
|
|
732
732
|
-------
|
|
@@ -805,16 +805,16 @@ class Root(PyMenu):
|
|
|
805
805
|
BOIMaxSize : float
|
|
806
806
|
BOISizeName : str
|
|
807
807
|
SelectionType : str
|
|
808
|
-
ZoneSelectionList :
|
|
809
|
-
ZoneLocation :
|
|
810
|
-
LabelSelectionList :
|
|
811
|
-
ObjectSelectionList :
|
|
812
|
-
ZoneSelectionSingle :
|
|
813
|
-
ObjectSelectionSingle :
|
|
814
|
-
TopologyList :
|
|
815
|
-
BoundingBoxObject :
|
|
816
|
-
OffsetObject :
|
|
817
|
-
CylinderObject :
|
|
808
|
+
ZoneSelectionList : list[str]
|
|
809
|
+
ZoneLocation : list[str]
|
|
810
|
+
LabelSelectionList : list[str]
|
|
811
|
+
ObjectSelectionList : list[str]
|
|
812
|
+
ZoneSelectionSingle : list[str]
|
|
813
|
+
ObjectSelectionSingle : list[str]
|
|
814
|
+
TopologyList : list[str]
|
|
815
|
+
BoundingBoxObject : dict[str, Any]
|
|
816
|
+
OffsetObject : dict[str, Any]
|
|
817
|
+
CylinderObject : dict[str, Any]
|
|
818
818
|
|
|
819
819
|
Returns
|
|
820
820
|
-------
|
|
@@ -833,16 +833,16 @@ class Root(PyMenu):
|
|
|
833
833
|
BOIMaxSize : float
|
|
834
834
|
BOISizeName : str
|
|
835
835
|
SelectionType : str
|
|
836
|
-
ZoneSelectionList :
|
|
837
|
-
ZoneLocation :
|
|
838
|
-
LabelSelectionList :
|
|
839
|
-
ObjectSelectionList :
|
|
840
|
-
ZoneSelectionSingle :
|
|
841
|
-
ObjectSelectionSingle :
|
|
842
|
-
TopologyList :
|
|
843
|
-
BoundingBoxObject :
|
|
844
|
-
OffsetObject :
|
|
845
|
-
CylinderObject :
|
|
836
|
+
ZoneSelectionList : list[str]
|
|
837
|
+
ZoneLocation : list[str]
|
|
838
|
+
LabelSelectionList : list[str]
|
|
839
|
+
ObjectSelectionList : list[str]
|
|
840
|
+
ZoneSelectionSingle : list[str]
|
|
841
|
+
ObjectSelectionSingle : list[str]
|
|
842
|
+
TopologyList : list[str]
|
|
843
|
+
BoundingBoxObject : dict[str, Any]
|
|
844
|
+
OffsetObject : dict[str, Any]
|
|
845
|
+
CylinderObject : dict[str, Any]
|
|
846
846
|
VolumeFill : str
|
|
847
847
|
|
|
848
848
|
Returns
|
|
@@ -862,16 +862,16 @@ class Root(PyMenu):
|
|
|
862
862
|
BOIMaxSize : float
|
|
863
863
|
BOISizeName : str
|
|
864
864
|
SelectionType : str
|
|
865
|
-
ZoneSelectionList :
|
|
866
|
-
ZoneLocation :
|
|
867
|
-
LabelSelectionList :
|
|
868
|
-
ObjectSelectionList :
|
|
869
|
-
ZoneSelectionSingle :
|
|
870
|
-
ObjectSelectionSingle :
|
|
871
|
-
TopologyList :
|
|
872
|
-
BoundingBoxObject :
|
|
873
|
-
OffsetObject :
|
|
874
|
-
CylinderObject :
|
|
865
|
+
ZoneSelectionList : list[str]
|
|
866
|
+
ZoneLocation : list[str]
|
|
867
|
+
LabelSelectionList : list[str]
|
|
868
|
+
ObjectSelectionList : list[str]
|
|
869
|
+
ZoneSelectionSingle : list[str]
|
|
870
|
+
ObjectSelectionSingle : list[str]
|
|
871
|
+
TopologyList : list[str]
|
|
872
|
+
BoundingBoxObject : dict[str, Any]
|
|
873
|
+
OffsetObject : dict[str, Any]
|
|
874
|
+
CylinderObject : dict[str, Any]
|
|
875
875
|
VolumeFill : str
|
|
876
876
|
|
|
877
877
|
Returns
|
|
@@ -888,11 +888,11 @@ class Root(PyMenu):
|
|
|
888
888
|
----------
|
|
889
889
|
ContactPatchName : str
|
|
890
890
|
SelectionType : str
|
|
891
|
-
ZoneSelectionList :
|
|
892
|
-
ZoneLocation :
|
|
893
|
-
ObjectSelectionList :
|
|
894
|
-
LabelSelectionList :
|
|
895
|
-
GroundZoneSelectionList :
|
|
891
|
+
ZoneSelectionList : list[str]
|
|
892
|
+
ZoneLocation : list[str]
|
|
893
|
+
ObjectSelectionList : list[str]
|
|
894
|
+
LabelSelectionList : list[str]
|
|
895
|
+
GroundZoneSelectionList : list[str]
|
|
896
896
|
Distance : float
|
|
897
897
|
ContactPatchDefeaturingSize : float
|
|
898
898
|
FeatureAngle : float
|
|
@@ -915,15 +915,15 @@ class Root(PyMenu):
|
|
|
915
915
|
CreationMethod : str
|
|
916
916
|
ExtractionMethod : str
|
|
917
917
|
SelectionType : str
|
|
918
|
-
ObjectSelectionList :
|
|
919
|
-
ZoneSelectionList :
|
|
920
|
-
ZoneLocation :
|
|
921
|
-
LabelSelectionList :
|
|
922
|
-
ObjectSelectionSingle :
|
|
923
|
-
ZoneSelectionSingle :
|
|
924
|
-
LabelSelectionSingle :
|
|
918
|
+
ObjectSelectionList : list[str]
|
|
919
|
+
ZoneSelectionList : list[str]
|
|
920
|
+
ZoneLocation : list[str]
|
|
921
|
+
LabelSelectionList : list[str]
|
|
922
|
+
ObjectSelectionSingle : list[str]
|
|
923
|
+
ZoneSelectionSingle : list[str]
|
|
924
|
+
LabelSelectionSingle : list[str]
|
|
925
925
|
OriginalObjectName : str
|
|
926
|
-
BoundingBoxObject :
|
|
926
|
+
BoundingBoxObject : dict[str, Any]
|
|
927
927
|
|
|
928
928
|
Returns
|
|
929
929
|
-------
|
|
@@ -942,10 +942,10 @@ class Root(PyMenu):
|
|
|
942
942
|
GapSizeRatio : float
|
|
943
943
|
GapSize : float
|
|
944
944
|
SelectionType : str
|
|
945
|
-
ZoneSelectionList :
|
|
946
|
-
ZoneLocation :
|
|
947
|
-
LabelSelectionList :
|
|
948
|
-
ObjectSelectionList :
|
|
945
|
+
ZoneSelectionList : list[str]
|
|
946
|
+
ZoneLocation : list[str]
|
|
947
|
+
LabelSelectionList : list[str]
|
|
948
|
+
ObjectSelectionList : list[str]
|
|
949
949
|
GapCoverBetweenZones : str
|
|
950
950
|
GapCoverRefineFactor : float
|
|
951
951
|
GapCoverRefineFactorAtGap : float
|
|
@@ -971,16 +971,16 @@ class Root(PyMenu):
|
|
|
971
971
|
BOIMaxSize : float
|
|
972
972
|
BOISizeName : str
|
|
973
973
|
SelectionType : str
|
|
974
|
-
ZoneSelectionList :
|
|
975
|
-
ZoneLocation :
|
|
976
|
-
LabelSelectionList :
|
|
977
|
-
ObjectSelectionList :
|
|
978
|
-
ZoneSelectionSingle :
|
|
979
|
-
ObjectSelectionSingle :
|
|
980
|
-
TopologyList :
|
|
981
|
-
BoundingBoxObject :
|
|
982
|
-
OffsetObject :
|
|
983
|
-
CylinderObject :
|
|
974
|
+
ZoneSelectionList : list[str]
|
|
975
|
+
ZoneLocation : list[str]
|
|
976
|
+
LabelSelectionList : list[str]
|
|
977
|
+
ObjectSelectionList : list[str]
|
|
978
|
+
ZoneSelectionSingle : list[str]
|
|
979
|
+
ObjectSelectionSingle : list[str]
|
|
980
|
+
TopologyList : list[str]
|
|
981
|
+
BoundingBoxObject : dict[str, Any]
|
|
982
|
+
OffsetObject : dict[str, Any]
|
|
983
|
+
CylinderObject : dict[str, Any]
|
|
984
984
|
VolumeFill : str
|
|
985
985
|
|
|
986
986
|
Returns
|
|
@@ -1011,7 +1011,7 @@ class Root(PyMenu):
|
|
|
1011
1011
|
Parameters
|
|
1012
1012
|
----------
|
|
1013
1013
|
OversetInterfacesName : str
|
|
1014
|
-
ObjectSelectionList :
|
|
1014
|
+
ObjectSelectionList : list[str]
|
|
1015
1015
|
|
|
1016
1016
|
Returns
|
|
1017
1017
|
-------
|
|
@@ -1033,11 +1033,11 @@ class Root(PyMenu):
|
|
|
1033
1033
|
CellSizeP1P3 : float
|
|
1034
1034
|
CellSizeP1P4 : float
|
|
1035
1035
|
BufferSizeRatio : float
|
|
1036
|
-
P1 :
|
|
1037
|
-
P2 :
|
|
1038
|
-
P3 :
|
|
1039
|
-
P4 :
|
|
1040
|
-
NonRectangularParameters :
|
|
1036
|
+
P1 : list[float]
|
|
1037
|
+
P2 : list[float]
|
|
1038
|
+
P3 : list[float]
|
|
1039
|
+
P4 : list[float]
|
|
1040
|
+
NonRectangularParameters : dict[str, Any]
|
|
1041
1041
|
|
|
1042
1042
|
Returns
|
|
1043
1043
|
-------
|
|
@@ -1075,7 +1075,7 @@ class Root(PyMenu):
|
|
|
1075
1075
|
CellsPerGap : float
|
|
1076
1076
|
ScopeProximityTo : str
|
|
1077
1077
|
Mesher : str
|
|
1078
|
-
PrimeSizeControlIds :
|
|
1078
|
+
PrimeSizeControlIds : list[int]
|
|
1079
1079
|
EnableMultiThreading : bool
|
|
1080
1080
|
NumberOfMultiThreads : int
|
|
1081
1081
|
|
|
@@ -1094,8 +1094,8 @@ class Root(PyMenu):
|
|
|
1094
1094
|
AddChild : str
|
|
1095
1095
|
LeakageName : str
|
|
1096
1096
|
SelectionType : str
|
|
1097
|
-
DeadRegionsList :
|
|
1098
|
-
RegionSelectionSingle :
|
|
1097
|
+
DeadRegionsList : list[str]
|
|
1098
|
+
RegionSelectionSingle : list[str]
|
|
1099
1099
|
DeadRegionsSize : float
|
|
1100
1100
|
PlaneClippingValue : int
|
|
1101
1101
|
PlaneDirection : str
|
|
@@ -1118,7 +1118,7 @@ class Root(PyMenu):
|
|
|
1118
1118
|
AddEnclosure : str
|
|
1119
1119
|
CloseCaps : str
|
|
1120
1120
|
LocalRefinementRegions : str
|
|
1121
|
-
DescribeGeometryAndFlowOptions :
|
|
1121
|
+
DescribeGeometryAndFlowOptions : dict[str, Any]
|
|
1122
1122
|
|
|
1123
1123
|
Returns
|
|
1124
1124
|
-------
|
|
@@ -1153,17 +1153,17 @@ class Root(PyMenu):
|
|
|
1153
1153
|
ExtractEdgesName : str
|
|
1154
1154
|
ExtractMethodType : str
|
|
1155
1155
|
SelectionType : str
|
|
1156
|
-
ObjectSelectionList :
|
|
1157
|
-
GeomObjectSelectionList :
|
|
1158
|
-
ZoneSelectionList :
|
|
1159
|
-
ZoneLocation :
|
|
1160
|
-
LabelSelectionList :
|
|
1156
|
+
ObjectSelectionList : list[str]
|
|
1157
|
+
GeomObjectSelectionList : list[str]
|
|
1158
|
+
ZoneSelectionList : list[str]
|
|
1159
|
+
ZoneLocation : list[str]
|
|
1160
|
+
LabelSelectionList : list[str]
|
|
1161
1161
|
FeatureAngleLocal : int
|
|
1162
1162
|
IndividualCollective : str
|
|
1163
1163
|
SharpAngle : int
|
|
1164
|
-
CompleteObjectSelectionList :
|
|
1165
|
-
CompleteGeomObjectSelectionList :
|
|
1166
|
-
NonExtractedObjects :
|
|
1164
|
+
CompleteObjectSelectionList : list[str]
|
|
1165
|
+
CompleteGeomObjectSelectionList : list[str]
|
|
1166
|
+
NonExtractedObjects : list[str]
|
|
1167
1167
|
|
|
1168
1168
|
Returns
|
|
1169
1169
|
-------
|
|
@@ -1182,14 +1182,14 @@ class Root(PyMenu):
|
|
|
1182
1182
|
SelectionType : str
|
|
1183
1183
|
ExtendToPeriodicPair : bool
|
|
1184
1184
|
ExtrudeNormalBased : bool
|
|
1185
|
-
ExternalBoundaryZoneList :
|
|
1186
|
-
TopologyList :
|
|
1185
|
+
ExternalBoundaryZoneList : list[str]
|
|
1186
|
+
TopologyList : list[str]
|
|
1187
1187
|
TotalHeight : float
|
|
1188
1188
|
FirstHeight : float
|
|
1189
1189
|
NumberofLayers : int
|
|
1190
1190
|
GrowthRate : float
|
|
1191
|
-
VMExtrudePreferences :
|
|
1192
|
-
ZoneLocation :
|
|
1191
|
+
VMExtrudePreferences : dict[str, Any]
|
|
1192
|
+
ZoneLocation : list[str]
|
|
1193
1193
|
|
|
1194
1194
|
Returns
|
|
1195
1195
|
-------
|
|
@@ -1207,7 +1207,7 @@ class Root(PyMenu):
|
|
|
1207
1207
|
ProjectOnGeometry : bool
|
|
1208
1208
|
EnableMultiThreading : bool
|
|
1209
1209
|
NumberOfMultiThreads : int
|
|
1210
|
-
Prism2DPreferences :
|
|
1210
|
+
Prism2DPreferences : dict[str, Any]
|
|
1211
1211
|
|
|
1212
1212
|
Returns
|
|
1213
1213
|
-------
|
|
@@ -1230,8 +1230,8 @@ class Root(PyMenu):
|
|
|
1230
1230
|
SplitQuads : bool
|
|
1231
1231
|
ProjectOnGeometry : bool
|
|
1232
1232
|
SelectionType : str
|
|
1233
|
-
FaceLabelList :
|
|
1234
|
-
FaceZoneList :
|
|
1233
|
+
FaceLabelList : list[str]
|
|
1234
|
+
FaceZoneList : list[str]
|
|
1235
1235
|
|
|
1236
1236
|
Returns
|
|
1237
1237
|
-------
|
|
@@ -1282,13 +1282,13 @@ class Root(PyMenu):
|
|
|
1282
1282
|
Parameters
|
|
1283
1283
|
----------
|
|
1284
1284
|
OrthogonalQualityLimit : float
|
|
1285
|
-
RegionScope :
|
|
1285
|
+
RegionScope : list[str]
|
|
1286
1286
|
NonConformal : str
|
|
1287
1287
|
SizeFunctionScaleFactor : float
|
|
1288
1288
|
MeshingStrategy : str
|
|
1289
|
-
CFDSurfaceMeshControls :
|
|
1290
|
-
CompleteRegionScope :
|
|
1291
|
-
CellZoneList :
|
|
1289
|
+
CFDSurfaceMeshControls : dict[str, Any]
|
|
1290
|
+
CompleteRegionScope : list[str]
|
|
1291
|
+
CellZoneList : list[str]
|
|
1292
1292
|
|
|
1293
1293
|
Returns
|
|
1294
1294
|
-------
|
|
@@ -1335,13 +1335,13 @@ class Root(PyMenu):
|
|
|
1335
1335
|
|
|
1336
1336
|
Parameters
|
|
1337
1337
|
----------
|
|
1338
|
-
CFDSurfaceMeshControls :
|
|
1338
|
+
CFDSurfaceMeshControls : dict[str, Any]
|
|
1339
1339
|
SeparationRequired : str
|
|
1340
1340
|
SeparationAngle : float
|
|
1341
1341
|
RemeshSelectionType : str
|
|
1342
|
-
RemeshZoneList :
|
|
1343
|
-
RemeshLabelList :
|
|
1344
|
-
SurfaceMeshPreferences :
|
|
1342
|
+
RemeshZoneList : list[str]
|
|
1343
|
+
RemeshLabelList : list[str]
|
|
1344
|
+
SurfaceMeshPreferences : dict[str, Any]
|
|
1345
1345
|
ImportType : str
|
|
1346
1346
|
AppendMesh : bool
|
|
1347
1347
|
CadFacetingFileName : str
|
|
@@ -1349,11 +1349,11 @@ class Root(PyMenu):
|
|
|
1349
1349
|
Pattern : str
|
|
1350
1350
|
LengthUnit : str
|
|
1351
1351
|
TesselationMethod : str
|
|
1352
|
-
OriginalZones :
|
|
1352
|
+
OriginalZones : list[str]
|
|
1353
1353
|
ExecuteShareTopology : str
|
|
1354
|
-
CADFacetingControls :
|
|
1355
|
-
CadImportOptions :
|
|
1356
|
-
ShareTopologyPreferences :
|
|
1354
|
+
CADFacetingControls : dict[str, Any]
|
|
1355
|
+
CadImportOptions : dict[str, Any]
|
|
1356
|
+
ShareTopologyPreferences : dict[str, Any]
|
|
1357
1357
|
PreviewSizeToggle : bool
|
|
1358
1358
|
|
|
1359
1359
|
Returns
|
|
@@ -1373,15 +1373,15 @@ class Root(PyMenu):
|
|
|
1373
1373
|
EnableParallel : bool
|
|
1374
1374
|
SaveVolumeMesh : bool
|
|
1375
1375
|
EditVolumeSettings : bool
|
|
1376
|
-
RegionNameList :
|
|
1377
|
-
RegionVolumeFillList :
|
|
1378
|
-
RegionSizeList :
|
|
1379
|
-
OldRegionNameList :
|
|
1380
|
-
OldRegionVolumeFillList :
|
|
1381
|
-
OldRegionSizeList :
|
|
1382
|
-
AllRegionNameList :
|
|
1383
|
-
AllRegionVolumeFillList :
|
|
1384
|
-
AllRegionSizeList :
|
|
1376
|
+
RegionNameList : list[str]
|
|
1377
|
+
RegionVolumeFillList : list[str]
|
|
1378
|
+
RegionSizeList : list[str]
|
|
1379
|
+
OldRegionNameList : list[str]
|
|
1380
|
+
OldRegionVolumeFillList : list[str]
|
|
1381
|
+
OldRegionSizeList : list[str]
|
|
1382
|
+
AllRegionNameList : list[str]
|
|
1383
|
+
AllRegionVolumeFillList : list[str]
|
|
1384
|
+
AllRegionSizeList : list[str]
|
|
1385
1385
|
AdvancedOptions : bool
|
|
1386
1386
|
SpikeRemovalAngle : float
|
|
1387
1387
|
DihedralMinAngle : float
|
|
@@ -1414,12 +1414,12 @@ class Root(PyMenu):
|
|
|
1414
1414
|
MeshFluidRegions : bool
|
|
1415
1415
|
MeshSolidRegions : bool
|
|
1416
1416
|
SizingMethod : str
|
|
1417
|
-
VolumeFillControls :
|
|
1417
|
+
VolumeFillControls : dict[str, Any]
|
|
1418
1418
|
RegionBasedPreferences : bool
|
|
1419
1419
|
ReMergeZones : str
|
|
1420
1420
|
ParallelMeshing : bool
|
|
1421
|
-
VolumeMeshPreferences :
|
|
1422
|
-
PrismPreferences :
|
|
1421
|
+
VolumeMeshPreferences : dict[str, Any]
|
|
1422
|
+
PrismPreferences : dict[str, Any]
|
|
1423
1423
|
InvokePrimsControl : str
|
|
1424
1424
|
OffsetMethodType : str
|
|
1425
1425
|
NumberOfLayers : int
|
|
@@ -1429,20 +1429,20 @@ class Root(PyMenu):
|
|
|
1429
1429
|
FirstHeight : float
|
|
1430
1430
|
MeshObject : str
|
|
1431
1431
|
MeshDeadRegions : bool
|
|
1432
|
-
BodyLabelList :
|
|
1432
|
+
BodyLabelList : list[str]
|
|
1433
1433
|
PrismLayers : bool
|
|
1434
1434
|
QuadTetTransition : str
|
|
1435
1435
|
MergeCellZones : bool
|
|
1436
|
-
FaceScope :
|
|
1437
|
-
RegionTetNameList :
|
|
1438
|
-
RegionTetMaxCellLengthList :
|
|
1439
|
-
RegionTetGrowthRateList :
|
|
1440
|
-
RegionHexNameList :
|
|
1441
|
-
RegionHexMaxCellLengthList :
|
|
1442
|
-
OldRegionTetMaxCellLengthList :
|
|
1443
|
-
OldRegionTetGrowthRateList :
|
|
1444
|
-
OldRegionHexMaxCellLengthList :
|
|
1445
|
-
CFDSurfaceMeshControls :
|
|
1436
|
+
FaceScope : dict[str, Any]
|
|
1437
|
+
RegionTetNameList : list[str]
|
|
1438
|
+
RegionTetMaxCellLengthList : list[str]
|
|
1439
|
+
RegionTetGrowthRateList : list[str]
|
|
1440
|
+
RegionHexNameList : list[str]
|
|
1441
|
+
RegionHexMaxCellLengthList : list[str]
|
|
1442
|
+
OldRegionTetMaxCellLengthList : list[str]
|
|
1443
|
+
OldRegionTetGrowthRateList : list[str]
|
|
1444
|
+
OldRegionHexMaxCellLengthList : list[str]
|
|
1445
|
+
CFDSurfaceMeshControls : dict[str, Any]
|
|
1446
1446
|
ShowSolidFluidMeshed : bool
|
|
1447
1447
|
|
|
1448
1448
|
Returns
|
|
@@ -1463,14 +1463,14 @@ class Root(PyMenu):
|
|
|
1463
1463
|
InvokeShareTopology : str
|
|
1464
1464
|
NonConformal : str
|
|
1465
1465
|
Multizone : str
|
|
1466
|
-
SetupInternals :
|
|
1467
|
-
SetupInternalTypes :
|
|
1468
|
-
OldZoneList :
|
|
1469
|
-
OldZoneTypeList :
|
|
1470
|
-
RegionList :
|
|
1471
|
-
EdgeLabels :
|
|
1466
|
+
SetupInternals : list[str]
|
|
1467
|
+
SetupInternalTypes : list[str]
|
|
1468
|
+
OldZoneList : list[str]
|
|
1469
|
+
OldZoneTypeList : list[str]
|
|
1470
|
+
RegionList : list[str]
|
|
1471
|
+
EdgeLabels : list[str]
|
|
1472
1472
|
Duplicates : bool
|
|
1473
|
-
SMImprovePreferences :
|
|
1473
|
+
SMImprovePreferences : dict[str, Any]
|
|
1474
1474
|
|
|
1475
1475
|
Returns
|
|
1476
1476
|
-------
|
|
@@ -1487,20 +1487,20 @@ class Root(PyMenu):
|
|
|
1487
1487
|
MRFName : str
|
|
1488
1488
|
CreationMethod : str
|
|
1489
1489
|
SelectionType : str
|
|
1490
|
-
ObjectSelectionSingle :
|
|
1491
|
-
ZoneSelectionSingle :
|
|
1492
|
-
LabelSelectionSingle :
|
|
1493
|
-
ObjectSelectionList :
|
|
1494
|
-
ZoneSelectionList :
|
|
1495
|
-
ZoneLocation :
|
|
1496
|
-
LabelSelectionList :
|
|
1490
|
+
ObjectSelectionSingle : list[str]
|
|
1491
|
+
ZoneSelectionSingle : list[str]
|
|
1492
|
+
LabelSelectionSingle : list[str]
|
|
1493
|
+
ObjectSelectionList : list[str]
|
|
1494
|
+
ZoneSelectionList : list[str]
|
|
1495
|
+
ZoneLocation : list[str]
|
|
1496
|
+
LabelSelectionList : list[str]
|
|
1497
1497
|
DefeaturingSize : float
|
|
1498
1498
|
OffsetHeight : float
|
|
1499
|
-
Pivot :
|
|
1500
|
-
Axis :
|
|
1501
|
-
Rotation :
|
|
1502
|
-
CylinderObject :
|
|
1503
|
-
BoundingBoxObject :
|
|
1499
|
+
Pivot : dict[str, Any]
|
|
1500
|
+
Axis : dict[str, Any]
|
|
1501
|
+
Rotation : dict[str, Any]
|
|
1502
|
+
CylinderObject : dict[str, Any]
|
|
1503
|
+
BoundingBoxObject : dict[str, Any]
|
|
1504
1504
|
|
|
1505
1505
|
Returns
|
|
1506
1506
|
-------
|
|
@@ -1516,9 +1516,9 @@ class Root(PyMenu):
|
|
|
1516
1516
|
----------
|
|
1517
1517
|
DisplayGridName : str
|
|
1518
1518
|
SelectionType : str
|
|
1519
|
-
ObjectSelectionList :
|
|
1520
|
-
ZoneSelectionList :
|
|
1521
|
-
ZoneLocation :
|
|
1519
|
+
ObjectSelectionList : list[str]
|
|
1520
|
+
ZoneSelectionList : list[str]
|
|
1521
|
+
ZoneLocation : list[str]
|
|
1522
1522
|
AdvancedOptions : bool
|
|
1523
1523
|
DeviationMinValue : float
|
|
1524
1524
|
DeviationMaxValue : float
|
|
@@ -1538,15 +1538,15 @@ class Root(PyMenu):
|
|
|
1538
1538
|
Parameters
|
|
1539
1539
|
----------
|
|
1540
1540
|
NumberOfOrphans : str
|
|
1541
|
-
ObjectSelectionList :
|
|
1541
|
+
ObjectSelectionList : list[str]
|
|
1542
1542
|
EnableGridPriority : bool
|
|
1543
1543
|
DonorPriorityMethod : str
|
|
1544
1544
|
OverlapBoundaries : str
|
|
1545
1545
|
CheckOversetInterfaceIntersection : str
|
|
1546
|
-
RegionNameList :
|
|
1547
|
-
RegionSizeList :
|
|
1548
|
-
OldRegionNameList :
|
|
1549
|
-
OldRegionSizeList :
|
|
1546
|
+
RegionNameList : list[str]
|
|
1547
|
+
RegionSizeList : list[str]
|
|
1548
|
+
OldRegionNameList : list[str]
|
|
1549
|
+
OldRegionSizeList : list[str]
|
|
1550
1550
|
|
|
1551
1551
|
Returns
|
|
1552
1552
|
-------
|
|
@@ -1566,10 +1566,10 @@ class Root(PyMenu):
|
|
|
1566
1566
|
NewRegionType : str
|
|
1567
1567
|
LinkConstruction : str
|
|
1568
1568
|
SelectionType : str
|
|
1569
|
-
ZoneSelectionList :
|
|
1570
|
-
ZoneLocation :
|
|
1571
|
-
LabelSelectionList :
|
|
1572
|
-
ObjectSelectionList :
|
|
1569
|
+
ZoneSelectionList : list[str]
|
|
1570
|
+
ZoneLocation : list[str]
|
|
1571
|
+
LabelSelectionList : list[str]
|
|
1572
|
+
ObjectSelectionList : list[str]
|
|
1573
1573
|
GraphicalSelection : bool
|
|
1574
1574
|
ShowCoordinates : bool
|
|
1575
1575
|
X : float
|
|
@@ -1594,9 +1594,9 @@ class Root(PyMenu):
|
|
|
1594
1594
|
Type : str
|
|
1595
1595
|
GeometryFileName : str
|
|
1596
1596
|
MeshFileName : str
|
|
1597
|
-
ImportedObjects :
|
|
1597
|
+
ImportedObjects : list[str]
|
|
1598
1598
|
LengthUnit : str
|
|
1599
|
-
CadImportOptions :
|
|
1599
|
+
CadImportOptions : dict[str, Any]
|
|
1600
1600
|
|
|
1601
1601
|
Returns
|
|
1602
1602
|
-------
|
|
@@ -1613,7 +1613,7 @@ class Root(PyMenu):
|
|
|
1613
1613
|
FileFormat : str
|
|
1614
1614
|
LengthUnit : str
|
|
1615
1615
|
MeshUnit : str
|
|
1616
|
-
ImportCadPreferences :
|
|
1616
|
+
ImportCadPreferences : dict[str, Any]
|
|
1617
1617
|
FileName : str
|
|
1618
1618
|
FileNames : str
|
|
1619
1619
|
MeshFileName : str
|
|
@@ -1623,7 +1623,7 @@ class Root(PyMenu):
|
|
|
1623
1623
|
AppendMesh : bool
|
|
1624
1624
|
Directory : str
|
|
1625
1625
|
Pattern : str
|
|
1626
|
-
CadImportOptions :
|
|
1626
|
+
CadImportOptions : dict[str, Any]
|
|
1627
1627
|
|
|
1628
1628
|
Returns
|
|
1629
1629
|
-------
|
|
@@ -1640,7 +1640,7 @@ class Root(PyMenu):
|
|
|
1640
1640
|
MeshObject : str
|
|
1641
1641
|
FaceQualityLimit : float
|
|
1642
1642
|
SQMinSize : float
|
|
1643
|
-
SMImprovePreferences :
|
|
1643
|
+
SMImprovePreferences : dict[str, Any]
|
|
1644
1644
|
|
|
1645
1645
|
Returns
|
|
1646
1646
|
-------
|
|
@@ -1656,7 +1656,7 @@ class Root(PyMenu):
|
|
|
1656
1656
|
----------
|
|
1657
1657
|
QualityMethod : str
|
|
1658
1658
|
CellQualityLimit : float
|
|
1659
|
-
VMImprovePreferences :
|
|
1659
|
+
VMImprovePreferences : dict[str, Any]
|
|
1660
1660
|
|
|
1661
1661
|
Returns
|
|
1662
1662
|
-------
|
|
@@ -1671,13 +1671,13 @@ class Root(PyMenu):
|
|
|
1671
1671
|
Parameters
|
|
1672
1672
|
----------
|
|
1673
1673
|
ChildName : str
|
|
1674
|
-
ObjectList :
|
|
1674
|
+
ObjectList : list[str]
|
|
1675
1675
|
AutoPopulateVector : str
|
|
1676
|
-
PatternVector :
|
|
1676
|
+
PatternVector : dict[str, Any]
|
|
1677
1677
|
Pitch : float
|
|
1678
1678
|
NumberOfUnits : int
|
|
1679
1679
|
CheckOverlappingFaces : str
|
|
1680
|
-
BatteryModelingOptions :
|
|
1680
|
+
BatteryModelingOptions : dict[str, Any]
|
|
1681
1681
|
|
|
1682
1682
|
Returns
|
|
1683
1683
|
-------
|
|
@@ -1698,7 +1698,7 @@ class Root(PyMenu):
|
|
|
1698
1698
|
FacetingTolerance : float
|
|
1699
1699
|
CreateObjectPer : str
|
|
1700
1700
|
NumParts : float
|
|
1701
|
-
Refaceting :
|
|
1701
|
+
Refaceting : dict[str, Any]
|
|
1702
1702
|
|
|
1703
1703
|
Returns
|
|
1704
1704
|
-------
|
|
@@ -1714,17 +1714,17 @@ class Root(PyMenu):
|
|
|
1714
1714
|
----------
|
|
1715
1715
|
LocalSettingsName : str
|
|
1716
1716
|
SelectionType : str
|
|
1717
|
-
ObjectSelectionList :
|
|
1718
|
-
LabelSelectionList :
|
|
1719
|
-
ZoneSelectionList :
|
|
1720
|
-
ZoneLocation :
|
|
1721
|
-
EdgeSelectionList :
|
|
1722
|
-
LocalSizeControlParameters :
|
|
1717
|
+
ObjectSelectionList : list[str]
|
|
1718
|
+
LabelSelectionList : list[str]
|
|
1719
|
+
ZoneSelectionList : list[str]
|
|
1720
|
+
ZoneLocation : list[str]
|
|
1721
|
+
EdgeSelectionList : list[str]
|
|
1722
|
+
LocalSizeControlParameters : dict[str, Any]
|
|
1723
1723
|
ValueChanged : str
|
|
1724
|
-
CompleteZoneSelectionList :
|
|
1725
|
-
CompleteLabelSelectionList :
|
|
1726
|
-
CompleteObjectSelectionList :
|
|
1727
|
-
CompleteEdgeSelectionList :
|
|
1724
|
+
CompleteZoneSelectionList : list[str]
|
|
1725
|
+
CompleteLabelSelectionList : list[str]
|
|
1726
|
+
CompleteObjectSelectionList : list[str]
|
|
1727
|
+
CompleteEdgeSelectionList : list[str]
|
|
1728
1728
|
|
|
1729
1729
|
Returns
|
|
1730
1730
|
-------
|
|
@@ -1745,20 +1745,20 @@ class Root(PyMenu):
|
|
|
1745
1745
|
Volume : float
|
|
1746
1746
|
EqualRange : float
|
|
1747
1747
|
ZoneOrLabel : str
|
|
1748
|
-
LabelList :
|
|
1749
|
-
ManageFaceZoneList :
|
|
1750
|
-
ManageCellZoneList :
|
|
1751
|
-
BodyLabelList :
|
|
1748
|
+
LabelList : list[str]
|
|
1749
|
+
ManageFaceZoneList : list[str]
|
|
1750
|
+
ManageCellZoneList : list[str]
|
|
1751
|
+
BodyLabelList : list[str]
|
|
1752
1752
|
Operation : str
|
|
1753
1753
|
OperationName : str
|
|
1754
1754
|
MZChildName : str
|
|
1755
1755
|
AddPrefixName : str
|
|
1756
1756
|
FaceMerge : str
|
|
1757
1757
|
Angle : float
|
|
1758
|
-
ZoneList :
|
|
1759
|
-
CompleteZoneList :
|
|
1760
|
-
CompleteLabelList :
|
|
1761
|
-
ZoneLocation :
|
|
1758
|
+
ZoneList : list[str]
|
|
1759
|
+
CompleteZoneList : list[str]
|
|
1760
|
+
CompleteLabelList : list[str]
|
|
1761
|
+
ZoneLocation : list[str]
|
|
1762
1762
|
|
|
1763
1763
|
Returns
|
|
1764
1764
|
-------
|
|
@@ -1791,16 +1791,16 @@ class Root(PyMenu):
|
|
|
1791
1791
|
RemeshControlName : str
|
|
1792
1792
|
LocalSize : float
|
|
1793
1793
|
FaceZoneOrLabel : str
|
|
1794
|
-
RemeshFaceZoneList :
|
|
1795
|
-
RemeshFaceLabelList :
|
|
1794
|
+
RemeshFaceZoneList : list[str]
|
|
1795
|
+
RemeshFaceLabelList : list[str]
|
|
1796
1796
|
SizingType : str
|
|
1797
1797
|
LocalMinSize : float
|
|
1798
1798
|
LocalMaxSize : float
|
|
1799
1799
|
RemeshGrowthRate : float
|
|
1800
1800
|
RemeshCurvatureNormalAngle : float
|
|
1801
1801
|
RemeshCellsPerGap : float
|
|
1802
|
-
CFDSurfaceMeshControls :
|
|
1803
|
-
RemeshPreferences :
|
|
1802
|
+
CFDSurfaceMeshControls : dict[str, Any]
|
|
1803
|
+
RemeshPreferences : dict[str, Any]
|
|
1804
1804
|
|
|
1805
1805
|
Returns
|
|
1806
1806
|
-------
|
|
@@ -1831,10 +1831,10 @@ class Root(PyMenu):
|
|
|
1831
1831
|
RemoveEmptyParts : bool
|
|
1832
1832
|
FeatureAngle : float
|
|
1833
1833
|
OneZonePer : str
|
|
1834
|
-
Refaceting :
|
|
1834
|
+
Refaceting : dict[str, Any]
|
|
1835
1835
|
IgnoreSolidNames : bool
|
|
1836
1836
|
IgnoreSolidNamesAppend : bool
|
|
1837
|
-
Options :
|
|
1837
|
+
Options : dict[str, Any]
|
|
1838
1838
|
EdgeExtraction : str
|
|
1839
1839
|
Context : int
|
|
1840
1840
|
ObjectSetting : str
|
|
@@ -1854,8 +1854,8 @@ class Root(PyMenu):
|
|
|
1854
1854
|
PartReplacementName : str
|
|
1855
1855
|
ManagementMethod : str
|
|
1856
1856
|
CreationMethod : str
|
|
1857
|
-
OldObjectSelectionList :
|
|
1858
|
-
NewObjectSelectionList :
|
|
1857
|
+
OldObjectSelectionList : list[str]
|
|
1858
|
+
NewObjectSelectionList : list[str]
|
|
1859
1859
|
AdvancedOptions : bool
|
|
1860
1860
|
ScalingFactor : float
|
|
1861
1861
|
MptMethodType : str
|
|
@@ -1924,15 +1924,15 @@ class Root(PyMenu):
|
|
|
1924
1924
|
Type : str
|
|
1925
1925
|
Method : str
|
|
1926
1926
|
PeriodicityAngle : float
|
|
1927
|
-
LCSOrigin :
|
|
1928
|
-
LCSVector :
|
|
1929
|
-
TransShift :
|
|
1927
|
+
LCSOrigin : dict[str, Any]
|
|
1928
|
+
LCSVector : dict[str, Any]
|
|
1929
|
+
TransShift : dict[str, Any]
|
|
1930
1930
|
SelectionType : str
|
|
1931
|
-
ZoneList :
|
|
1932
|
-
LabelList :
|
|
1933
|
-
TopologyList :
|
|
1931
|
+
ZoneList : list[str]
|
|
1932
|
+
LabelList : list[str]
|
|
1933
|
+
TopologyList : list[str]
|
|
1934
1934
|
RemeshBoundariesOption : str
|
|
1935
|
-
ZoneLocation :
|
|
1935
|
+
ZoneLocation : list[str]
|
|
1936
1936
|
ListAllLabelToggle : bool
|
|
1937
1937
|
MultipleOption : str
|
|
1938
1938
|
|
|
@@ -1956,7 +1956,7 @@ class Root(PyMenu):
|
|
|
1956
1956
|
LastRatioPercentage : float
|
|
1957
1957
|
FirstHeight : float
|
|
1958
1958
|
PrismLayers : int
|
|
1959
|
-
RegionSelectionList :
|
|
1959
|
+
RegionSelectionList : list[str]
|
|
1960
1960
|
|
|
1961
1961
|
Returns
|
|
1962
1962
|
-------
|
|
@@ -1974,10 +1974,10 @@ class Root(PyMenu):
|
|
|
1974
1974
|
GapDistanceConnect : float
|
|
1975
1975
|
STMinSize : float
|
|
1976
1976
|
InterfaceSelect : str
|
|
1977
|
-
EdgeLabels :
|
|
1978
|
-
ShareTopologyPreferences :
|
|
1979
|
-
SMImprovePreferences :
|
|
1980
|
-
SurfaceMeshPreferences :
|
|
1977
|
+
EdgeLabels : list[str]
|
|
1978
|
+
ShareTopologyPreferences : dict[str, Any]
|
|
1979
|
+
SMImprovePreferences : dict[str, Any]
|
|
1980
|
+
SurfaceMeshPreferences : dict[str, Any]
|
|
1981
1981
|
|
|
1982
1982
|
Returns
|
|
1983
1983
|
-------
|
|
@@ -1998,7 +1998,7 @@ class Root(PyMenu):
|
|
|
1998
1998
|
InitialSizeControl : bool
|
|
1999
1999
|
TargetSizeControl : bool
|
|
2000
2000
|
SizeControlInterval : float
|
|
2001
|
-
SizeControlParameters :
|
|
2001
|
+
SizeControlParameters : dict[str, Any]
|
|
2002
2002
|
|
|
2003
2003
|
Returns
|
|
2004
2004
|
-------
|
|
@@ -2027,11 +2027,11 @@ class Root(PyMenu):
|
|
|
2027
2027
|
Type : str
|
|
2028
2028
|
Method : str
|
|
2029
2029
|
SelectionType : str
|
|
2030
|
-
TopoBodyList :
|
|
2031
|
-
CellZoneList :
|
|
2032
|
-
LCSOrigin :
|
|
2033
|
-
LCSVector :
|
|
2034
|
-
TransShift :
|
|
2030
|
+
TopoBodyList : list[str]
|
|
2031
|
+
CellZoneList : list[str]
|
|
2032
|
+
LCSOrigin : dict[str, Any]
|
|
2033
|
+
LCSVector : dict[str, Any]
|
|
2034
|
+
TransShift : dict[str, Any]
|
|
2035
2035
|
Angle : float
|
|
2036
2036
|
Copy : str
|
|
2037
2037
|
NumOfCopies : int
|
|
@@ -2052,24 +2052,24 @@ class Root(PyMenu):
|
|
|
2052
2052
|
----------
|
|
2053
2053
|
MeshObject : str
|
|
2054
2054
|
SelectionType : str
|
|
2055
|
-
BoundaryLabelList :
|
|
2056
|
-
BoundaryLabelTypeList :
|
|
2057
|
-
BoundaryZoneList :
|
|
2058
|
-
BoundaryZoneTypeList :
|
|
2059
|
-
OldBoundaryLabelList :
|
|
2060
|
-
OldBoundaryLabelTypeList :
|
|
2061
|
-
OldBoundaryZoneList :
|
|
2062
|
-
OldBoundaryZoneTypeList :
|
|
2063
|
-
OldLabelZoneList :
|
|
2055
|
+
BoundaryLabelList : list[str]
|
|
2056
|
+
BoundaryLabelTypeList : list[str]
|
|
2057
|
+
BoundaryZoneList : list[str]
|
|
2058
|
+
BoundaryZoneTypeList : list[str]
|
|
2059
|
+
OldBoundaryLabelList : list[str]
|
|
2060
|
+
OldBoundaryLabelTypeList : list[str]
|
|
2061
|
+
OldBoundaryZoneList : list[str]
|
|
2062
|
+
OldBoundaryZoneTypeList : list[str]
|
|
2063
|
+
OldLabelZoneList : list[str]
|
|
2064
2064
|
ListAllBoundariesToggle : bool
|
|
2065
|
-
ZoneLocation :
|
|
2066
|
-
TopologyList :
|
|
2067
|
-
TopologyTypeList :
|
|
2068
|
-
OldTopologyList :
|
|
2069
|
-
OldTopologyTypeList :
|
|
2070
|
-
BoundaryCurrentList :
|
|
2071
|
-
BoundaryCurrentTypeList :
|
|
2072
|
-
BoundaryAllowedTypeList :
|
|
2065
|
+
ZoneLocation : list[str]
|
|
2066
|
+
TopologyList : list[str]
|
|
2067
|
+
TopologyTypeList : list[str]
|
|
2068
|
+
OldTopologyList : list[str]
|
|
2069
|
+
OldTopologyTypeList : list[str]
|
|
2070
|
+
BoundaryCurrentList : list[str]
|
|
2071
|
+
BoundaryCurrentTypeList : list[str]
|
|
2072
|
+
BoundaryAllowedTypeList : list[str]
|
|
2073
2073
|
|
|
2074
2074
|
Returns
|
|
2075
2075
|
-------
|
|
@@ -2085,27 +2085,27 @@ class Root(PyMenu):
|
|
|
2085
2085
|
----------
|
|
2086
2086
|
MainFluidRegion : str
|
|
2087
2087
|
FilterCategory : str
|
|
2088
|
-
RegionNameList :
|
|
2089
|
-
RegionMeshMethodList :
|
|
2090
|
-
RegionTypeList :
|
|
2091
|
-
RegionVolumeFillList :
|
|
2092
|
-
RegionLeakageSizeList :
|
|
2093
|
-
RegionOversetComponenList :
|
|
2094
|
-
OldRegionNameList :
|
|
2095
|
-
OldRegionMeshMethodList :
|
|
2096
|
-
OldRegionTypeList :
|
|
2097
|
-
OldRegionVolumeFillList :
|
|
2098
|
-
OldRegionLeakageSizeList :
|
|
2099
|
-
OldRegionOversetComponenList :
|
|
2100
|
-
AllRegionNameList :
|
|
2101
|
-
AllRegionMeshMethodList :
|
|
2102
|
-
AllRegionTypeList :
|
|
2103
|
-
AllRegionVolumeFillList :
|
|
2104
|
-
AllRegionLeakageSizeList :
|
|
2105
|
-
AllRegionOversetComponenList :
|
|
2106
|
-
AllRegionLinkedConstructionSurfaceList :
|
|
2107
|
-
AllRegionSourceList :
|
|
2108
|
-
AllRegionFilterCategories :
|
|
2088
|
+
RegionNameList : list[str]
|
|
2089
|
+
RegionMeshMethodList : list[str]
|
|
2090
|
+
RegionTypeList : list[str]
|
|
2091
|
+
RegionVolumeFillList : list[str]
|
|
2092
|
+
RegionLeakageSizeList : list[str]
|
|
2093
|
+
RegionOversetComponenList : list[str]
|
|
2094
|
+
OldRegionNameList : list[str]
|
|
2095
|
+
OldRegionMeshMethodList : list[str]
|
|
2096
|
+
OldRegionTypeList : list[str]
|
|
2097
|
+
OldRegionVolumeFillList : list[str]
|
|
2098
|
+
OldRegionLeakageSizeList : list[str]
|
|
2099
|
+
OldRegionOversetComponenList : list[str]
|
|
2100
|
+
AllRegionNameList : list[str]
|
|
2101
|
+
AllRegionMeshMethodList : list[str]
|
|
2102
|
+
AllRegionTypeList : list[str]
|
|
2103
|
+
AllRegionVolumeFillList : list[str]
|
|
2104
|
+
AllRegionLeakageSizeList : list[str]
|
|
2105
|
+
AllRegionOversetComponenList : list[str]
|
|
2106
|
+
AllRegionLinkedConstructionSurfaceList : list[str]
|
|
2107
|
+
AllRegionSourceList : list[str]
|
|
2108
|
+
AllRegionFilterCategories : list[str]
|
|
2109
2109
|
|
|
2110
2110
|
Returns
|
|
2111
2111
|
-------
|
|
@@ -2120,14 +2120,14 @@ class Root(PyMenu):
|
|
|
2120
2120
|
Parameters
|
|
2121
2121
|
----------
|
|
2122
2122
|
MeshObject : str
|
|
2123
|
-
RegionNameList :
|
|
2124
|
-
RegionTypeList :
|
|
2125
|
-
OldRegionNameList :
|
|
2126
|
-
OldRegionTypeList :
|
|
2127
|
-
RegionInternals :
|
|
2128
|
-
RegionInternalTypes :
|
|
2129
|
-
RegionCurrentList :
|
|
2130
|
-
RegionCurrentTypeList :
|
|
2123
|
+
RegionNameList : list[str]
|
|
2124
|
+
RegionTypeList : list[str]
|
|
2125
|
+
OldRegionNameList : list[str]
|
|
2126
|
+
OldRegionTypeList : list[str]
|
|
2127
|
+
RegionInternals : list[str]
|
|
2128
|
+
RegionInternalTypes : list[str]
|
|
2129
|
+
RegionCurrentList : list[str]
|
|
2130
|
+
RegionCurrentTypeList : list[str]
|
|
2131
2131
|
|
|
2132
2132
|
Returns
|
|
2133
2133
|
-------
|