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.

Files changed (188) hide show
  1. ansys/fluent/core/__init__.py +22 -9
  2. ansys/fluent/core/_version.py +5 -2
  3. ansys/fluent/core/codegen/__init__.py +0 -3
  4. ansys/fluent/core/codegen/allapigen.py +1 -5
  5. ansys/fluent/core/codegen/builtin_settingsgen.py +44 -10
  6. ansys/fluent/core/codegen/datamodelgen.py +53 -12
  7. ansys/fluent/core/codegen/settingsgen.py +21 -12
  8. ansys/fluent/core/codegen/settingsgen_old.py +2 -2
  9. ansys/fluent/core/codegen/tuigen.py +1 -1
  10. ansys/fluent/core/codegen/write_settings_yaml.py +3 -4
  11. ansys/fluent/core/data_model_cache.py +132 -70
  12. ansys/fluent/core/docs/README.rst +2 -2
  13. ansys/fluent/core/examples/downloads.py +3 -5
  14. ansys/fluent/core/exceptions.py +1 -0
  15. ansys/fluent/core/file_session.py +59 -131
  16. ansys/fluent/core/filereader/case_file.py +17 -17
  17. ansys/fluent/core/filereader/casereader.py +2 -1
  18. ansys/fluent/core/filereader/data_file.py +7 -7
  19. ansys/fluent/core/filereader/lispy.py +6 -1
  20. ansys/fluent/core/fluent_connection.py +35 -7
  21. ansys/fluent/core/generated/api_tree/api_objects.json +1 -1
  22. ansys/fluent/core/generated/datamodel_222/PMFileManagement.py +2 -2
  23. ansys/fluent/core/generated/datamodel_222/PartManagement.py +28 -28
  24. ansys/fluent/core/generated/datamodel_222/meshing.py +301 -301
  25. ansys/fluent/core/generated/datamodel_222/workflow.py +9 -9
  26. ansys/fluent/core/generated/datamodel_231/PMFileManagement.py +2 -2
  27. ansys/fluent/core/generated/datamodel_231/PartManagement.py +55 -55
  28. ansys/fluent/core/generated/datamodel_231/flicing.py +51 -51
  29. ansys/fluent/core/generated/datamodel_231/meshing.py +317 -317
  30. ansys/fluent/core/generated/datamodel_231/solverworkflow.py +51 -51
  31. ansys/fluent/core/generated/datamodel_231/workflow.py +9 -9
  32. ansys/fluent/core/generated/datamodel_232/PMFileManagement.py +2 -2
  33. ansys/fluent/core/generated/datamodel_232/PartManagement.py +55 -55
  34. ansys/fluent/core/generated/datamodel_232/flicing.py +51 -51
  35. ansys/fluent/core/generated/datamodel_232/meshing.py +335 -335
  36. ansys/fluent/core/generated/datamodel_232/solverworkflow.py +58 -58
  37. ansys/fluent/core/generated/datamodel_232/workflow.py +9 -9
  38. ansys/fluent/core/generated/datamodel_241/PMFileManagement.py +2 -2
  39. ansys/fluent/core/generated/datamodel_241/PartManagement.py +57 -57
  40. ansys/fluent/core/generated/datamodel_241/flicing.py +51 -51
  41. ansys/fluent/core/generated/datamodel_241/meshing.py +361 -361
  42. ansys/fluent/core/generated/datamodel_241/solverworkflow.py +58 -58
  43. ansys/fluent/core/generated/datamodel_241/workflow.py +9 -9
  44. ansys/fluent/core/generated/datamodel_242/MeshingUtilities.py +240 -240
  45. ansys/fluent/core/generated/datamodel_242/PMFileManagement.py +2 -2
  46. ansys/fluent/core/generated/datamodel_242/PartManagement.py +60 -60
  47. ansys/fluent/core/generated/datamodel_242/flicing.py +51 -51
  48. ansys/fluent/core/generated/datamodel_242/meshing.py +371 -371
  49. ansys/fluent/core/generated/datamodel_242/solverworkflow.py +58 -58
  50. ansys/fluent/core/generated/datamodel_242/workflow.py +9 -9
  51. ansys/fluent/core/generated/datamodel_251/MeshingUtilities.py +244 -244
  52. ansys/fluent/core/generated/datamodel_251/PMFileManagement.py +2 -2
  53. ansys/fluent/core/generated/datamodel_251/PartManagement.py +60 -60
  54. ansys/fluent/core/generated/datamodel_251/flicing.py +51 -51
  55. ansys/fluent/core/generated/datamodel_251/meshing.py +384 -382
  56. ansys/fluent/core/generated/datamodel_251/preferences.py +7 -0
  57. ansys/fluent/core/generated/datamodel_251/solverworkflow.py +58 -58
  58. ansys/fluent/core/generated/datamodel_251/workflow.py +10 -10
  59. ansys/fluent/core/generated/datamodel_252/MeshingUtilities.py +3664 -0
  60. ansys/fluent/core/generated/datamodel_252/PMFileManagement.py +288 -0
  61. ansys/fluent/core/generated/datamodel_252/PartManagement.py +2588 -0
  62. ansys/fluent/core/generated/datamodel_252/flicing.py +7972 -0
  63. ansys/fluent/core/generated/datamodel_252/meshing.py +2644 -0
  64. ansys/fluent/core/generated/datamodel_252/preferences.py +2760 -0
  65. ansys/fluent/core/generated/datamodel_252/solverworkflow.py +479 -0
  66. ansys/fluent/core/generated/datamodel_252/workflow.py +466 -0
  67. ansys/fluent/core/generated/fluent_version_251.py +4 -4
  68. ansys/fluent/core/generated/fluent_version_252.py +5 -0
  69. ansys/fluent/core/generated/meshing/tui_251.py +1139 -1179
  70. ansys/fluent/core/generated/meshing/tui_252.py +10181 -0
  71. ansys/fluent/core/generated/solver/settings_222.py +3 -3
  72. ansys/fluent/core/generated/solver/settings_231.py +4 -4
  73. ansys/fluent/core/generated/solver/settings_232.py +5 -5
  74. ansys/fluent/core/generated/solver/settings_241.py +5 -5
  75. ansys/fluent/core/generated/solver/settings_242.py +1185 -1185
  76. ansys/fluent/core/generated/solver/settings_251.py +1847 -1652
  77. ansys/fluent/core/generated/solver/settings_251.pyi +237 -211
  78. ansys/fluent/core/generated/solver/settings_252.py +90369 -0
  79. ansys/fluent/core/generated/solver/settings_252.pyi +63778 -0
  80. ansys/fluent/core/generated/solver/settings_builtin.py +612 -1
  81. ansys/fluent/core/generated/solver/settings_builtin.pyi +235 -0
  82. ansys/fluent/core/generated/solver/tui_251.py +2283 -2103
  83. ansys/fluent/core/generated/solver/tui_252.py +37720 -0
  84. ansys/fluent/core/journaling.py +1 -1
  85. ansys/fluent/core/launcher/error_handler.py +3 -0
  86. ansys/fluent/core/launcher/fluent_container.py +5 -0
  87. ansys/fluent/core/launcher/launcher.py +1 -2
  88. ansys/fluent/core/launcher/launcher_utils.py +17 -6
  89. ansys/fluent/core/launcher/process_launch_string.py +3 -3
  90. ansys/fluent/core/launcher/pyfluent_enums.py +1 -1
  91. ansys/fluent/core/launcher/slurm_launcher.py +2 -1
  92. ansys/fluent/core/launcher/standalone_launcher.py +11 -5
  93. ansys/fluent/core/launcher/watchdog.py +1 -1
  94. ansys/fluent/core/launcher/watchdog_exec +6 -3
  95. ansys/fluent/core/logging.py +1 -5
  96. ansys/fluent/core/parametric.py +6 -3
  97. ansys/fluent/core/post_objects/meta.py +1 -39
  98. ansys/fluent/core/post_objects/post_helper.py +4 -3
  99. ansys/fluent/core/post_objects/post_object_definitions.py +12 -7
  100. ansys/fluent/core/post_objects/post_objects_container.py +39 -2
  101. ansys/fluent/core/rpvars.py +2 -1
  102. ansys/fluent/core/scheduler/machine_list.py +3 -1
  103. ansys/fluent/core/search.py +109 -262
  104. ansys/fluent/core/services/__init__.py +3 -0
  105. ansys/fluent/core/services/api_upgrade.py +1 -0
  106. ansys/fluent/core/services/batch_ops.py +3 -1
  107. ansys/fluent/core/services/datamodel_se.py +37 -30
  108. ansys/fluent/core/services/datamodel_tui.py +8 -3
  109. ansys/fluent/core/services/deprecated_field_data.py +691 -0
  110. ansys/fluent/core/services/field_data.py +67 -357
  111. ansys/fluent/core/services/interceptors.py +6 -4
  112. ansys/fluent/core/services/reduction.py +1 -2
  113. ansys/fluent/core/services/scheme_eval.py +2 -3
  114. ansys/fluent/core/services/solution_variables.py +46 -48
  115. ansys/fluent/core/session.py +6 -4
  116. ansys/fluent/core/session_meshing.pyi +5 -0
  117. ansys/fluent/core/session_pure_meshing.pyi +4 -1
  118. ansys/fluent/core/session_solver_lite.py +2 -1
  119. ansys/fluent/core/solver/flobject.py +179 -207
  120. ansys/fluent/core/solver/flunits.py +65 -56
  121. ansys/fluent/core/solver/function/reduction.py +9 -29
  122. ansys/fluent/core/solver/settings_builtin_bases.py +28 -22
  123. ansys/fluent/core/solver/settings_builtin_data.py +105 -1
  124. ansys/fluent/core/solver/settings_external.py +0 -28
  125. ansys/fluent/core/streaming_services/field_data_streaming.py +1 -0
  126. ansys/fluent/core/streaming_services/monitor_streaming.py +0 -1
  127. ansys/fluent/core/systemcoupling.py +145 -14
  128. ansys/fluent/core/utils/__init__.py +18 -2
  129. ansys/fluent/core/utils/dump_session_data.py +7 -4
  130. ansys/fluent/core/utils/execution.py +2 -2
  131. ansys/fluent/core/utils/file_transfer_service.py +37 -42
  132. ansys/fluent/core/utils/fluent_version.py +20 -2
  133. ansys/fluent/core/utils/networking.py +39 -1
  134. ansys/fluent/core/workflow.py +3 -15
  135. ansys/fluent/tests/conftest.py +89 -7
  136. ansys/fluent/tests/fluent/test_version/test.py +2 -0
  137. ansys/fluent/tests/fluent_fixtures.py +195 -0
  138. ansys/fluent/tests/integration/test_optislang/test_optislang_integration.py +7 -7
  139. ansys/fluent/tests/parametric/test_parametric_workflow.py +14 -4
  140. ansys/fluent/tests/test_builtin_settings.py +28 -0
  141. ansys/fluent/tests/test_cad_to_post_ftm.py +1 -3
  142. ansys/fluent/tests/test_cad_to_post_wtm.py +1 -1
  143. ansys/fluent/tests/test_casereader.py +1 -1
  144. ansys/fluent/tests/test_codegen.py +116 -6
  145. ansys/fluent/tests/test_data_model_cache.py +1 -1
  146. ansys/fluent/tests/test_datamodel_service.py +14 -19
  147. ansys/fluent/tests/test_field_data.py +93 -45
  148. ansys/fluent/tests/test_file_session.py +32 -29
  149. ansys/fluent/tests/test_flobject.py +16 -58
  150. ansys/fluent/tests/test_fluent_fixes.py +5 -5
  151. ansys/fluent/tests/test_fluent_session.py +11 -8
  152. ansys/fluent/tests/test_fluent_version.py +1 -1
  153. ansys/fluent/tests/test_launcher.py +22 -5
  154. ansys/fluent/tests/test_launcher_remote.py +80 -4
  155. ansys/fluent/tests/test_meshing_utilities.py +93 -44
  156. ansys/fluent/tests/test_meshing_workflow.py +6 -6
  157. ansys/fluent/tests/test_meshingmode/test_meshing_launch.py +1 -1
  158. ansys/fluent/tests/test_new_meshing_workflow.py +42 -3
  159. ansys/fluent/tests/test_preferences.py +6 -6
  160. ansys/fluent/tests/test_reduction.py +61 -30
  161. ansys/fluent/tests/test_rp_vars.py +1 -1
  162. ansys/fluent/tests/test_search.py +53 -200
  163. ansys/fluent/tests/test_session.py +18 -13
  164. ansys/fluent/tests/test_settings_api.py +93 -29
  165. ansys/fluent/tests/test_settings_reader.py +1 -1
  166. ansys/fluent/tests/test_solver_monitors.py +1 -1
  167. ansys/fluent/tests/test_solvermode/test_calculationactivities.py +4 -4
  168. ansys/fluent/tests/test_solvermode/test_controls.py +3 -3
  169. ansys/fluent/tests/test_solvermode/test_methods.py +1 -1
  170. ansys/fluent/tests/test_solvermode/test_models.py +3 -3
  171. ansys/fluent/tests/test_systemcoupling.py +33 -5
  172. ansys/fluent/tests/test_topy.py +2 -2
  173. ansys/fluent/tests/test_tui_api.py +5 -5
  174. ansys/fluent/tests/test_utils.py +1 -1
  175. {ansys_fluent_core-0.27.dev1.dist-info → ansys_fluent_core-0.28.dev0.dist-info}/METADATA +6 -17
  176. ansys_fluent_core-0.28.dev0.dist-info/RECORD +291 -0
  177. ansys/fluent/core/generated/api_tree_222.pickle +0 -0
  178. ansys/fluent/core/generated/api_tree_231.pickle +0 -0
  179. ansys/fluent/core/generated/api_tree_232.pickle +0 -0
  180. ansys/fluent/core/generated/api_tree_241.pickle +0 -0
  181. ansys/fluent/core/generated/api_tree_242.pickle +0 -0
  182. ansys/fluent/core/generated/api_tree_251.pickle +0 -0
  183. ansys/fluent/tests/test_tests_util.py +0 -47
  184. ansys/fluent/tests/util/__init__.py +0 -38
  185. ansys_fluent_core-0.27.dev1.dist-info/RECORD +0 -283
  186. {ansys_fluent_core-0.27.dev1.dist-info → ansys_fluent_core-0.28.dev0.dist-info}/AUTHORS +0 -0
  187. {ansys_fluent_core-0.27.dev1.dist-info → ansys_fluent_core-0.28.dev0.dist-info}/LICENSE +0 -0
  188. {ansys_fluent_core-0.27.dev1.dist-info → ansys_fluent_core-0.28.dev0.dist-info}/WHEEL +0 -0
@@ -136,7 +136,7 @@ class Root(PyMenu):
136
136
 
137
137
  Parameters
138
138
  ----------
139
- FileName : List[str]
139
+ FileName : list[str]
140
140
  ChangeDirectory : bool
141
141
 
142
142
  Returns
@@ -254,85 +254,85 @@ class Root(PyMenu):
254
254
 
255
255
  class AllOversetNameList(PyTextual):
256
256
  """
257
- Parameter AllOversetNameList of value type List[str].
257
+ Parameter AllOversetNameList of value type list[str].
258
258
  """
259
259
  pass
260
260
 
261
261
  class AllOversetSizeList(PyTextual):
262
262
  """
263
- Parameter AllOversetSizeList of value type List[str].
263
+ Parameter AllOversetSizeList of value type list[str].
264
264
  """
265
265
  pass
266
266
 
267
267
  class AllOversetTypeList(PyTextual):
268
268
  """
269
- Parameter AllOversetTypeList of value type List[str].
269
+ Parameter AllOversetTypeList of value type list[str].
270
270
  """
271
271
  pass
272
272
 
273
273
  class AllOversetVolumeFillList(PyTextual):
274
274
  """
275
- Parameter AllOversetVolumeFillList of value type List[str].
275
+ Parameter AllOversetVolumeFillList of value type list[str].
276
276
  """
277
277
  pass
278
278
 
279
279
  class AllRegionFilterCategories(PyTextual):
280
280
  """
281
- Parameter AllRegionFilterCategories of value type List[str].
281
+ Parameter AllRegionFilterCategories of value type list[str].
282
282
  """
283
283
  pass
284
284
 
285
285
  class AllRegionLeakageSizeList(PyTextual):
286
286
  """
287
- Parameter AllRegionLeakageSizeList of value type List[str].
287
+ Parameter AllRegionLeakageSizeList of value type list[str].
288
288
  """
289
289
  pass
290
290
 
291
291
  class AllRegionLinkedConstructionSurfaceList(PyTextual):
292
292
  """
293
- Parameter AllRegionLinkedConstructionSurfaceList of value type List[str].
293
+ Parameter AllRegionLinkedConstructionSurfaceList of value type list[str].
294
294
  """
295
295
  pass
296
296
 
297
297
  class AllRegionMeshMethodList(PyTextual):
298
298
  """
299
- Parameter AllRegionMeshMethodList of value type List[str].
299
+ Parameter AllRegionMeshMethodList of value type list[str].
300
300
  """
301
301
  pass
302
302
 
303
303
  class AllRegionNameList(PyTextual):
304
304
  """
305
- Parameter AllRegionNameList of value type List[str].
305
+ Parameter AllRegionNameList of value type list[str].
306
306
  """
307
307
  pass
308
308
 
309
309
  class AllRegionOversetComponenList(PyTextual):
310
310
  """
311
- Parameter AllRegionOversetComponenList of value type List[str].
311
+ Parameter AllRegionOversetComponenList of value type list[str].
312
312
  """
313
313
  pass
314
314
 
315
315
  class AllRegionSizeList(PyTextual):
316
316
  """
317
- Parameter AllRegionSizeList of value type List[str].
317
+ Parameter AllRegionSizeList of value type list[str].
318
318
  """
319
319
  pass
320
320
 
321
321
  class AllRegionSourceList(PyTextual):
322
322
  """
323
- Parameter AllRegionSourceList of value type List[str].
323
+ Parameter AllRegionSourceList of value type list[str].
324
324
  """
325
325
  pass
326
326
 
327
327
  class AllRegionTypeList(PyTextual):
328
328
  """
329
- Parameter AllRegionTypeList of value type List[str].
329
+ Parameter AllRegionTypeList of value type list[str].
330
330
  """
331
331
  pass
332
332
 
333
333
  class AllRegionVolumeFillList(PyTextual):
334
334
  """
335
- Parameter AllRegionVolumeFillList of value type List[str].
335
+ Parameter AllRegionVolumeFillList of value type list[str].
336
336
  """
337
337
  pass
338
338
 
@@ -418,11 +418,11 @@ class Root(PyMenu):
418
418
  FirstLayerHeight : float
419
419
  MaxLayerHeight : float
420
420
  Addin : str
421
- FaceLabelList : List[str]
421
+ FaceLabelList : list[str]
422
422
  GrowOn : str
423
- EdgeLabelList : List[str]
424
- EdgeZoneList : List[str]
425
- ShellBLAdvancedOptions : Dict[str, Any]
423
+ EdgeLabelList : list[str]
424
+ EdgeZoneList : list[str]
425
+ ShellBLAdvancedOptions : dict[str, Any]
426
426
 
427
427
  Returns
428
428
  -------
@@ -446,21 +446,21 @@ class Root(PyMenu):
446
446
  Rate : float
447
447
  FirstHeight : float
448
448
  MaxLayerHeight : float
449
- FaceScope : Dict[str, Any]
450
- RegionScope : List[str]
451
- BlLabelList : List[str]
452
- ZoneSelectionList : List[str]
453
- ZoneLocation : List[str]
454
- LocalPrismPreferences : Dict[str, Any]
455
- BLZoneList : List[str]
456
- BLRegionList : List[str]
449
+ FaceScope : dict[str, Any]
450
+ RegionScope : list[str]
451
+ BlLabelList : list[str]
452
+ ZoneSelectionList : list[str]
453
+ ZoneLocation : list[str]
454
+ LocalPrismPreferences : dict[str, Any]
455
+ BLZoneList : list[str]
456
+ BLRegionList : list[str]
457
457
  InvalidAdded : str
458
- CompleteRegionScope : List[str]
459
- CompleteBlLabelList : List[str]
460
- CompleteBLZoneList : List[str]
461
- CompleteBLRegionList : List[str]
462
- CompleteZoneSelectionList : List[str]
463
- CompleteLabelSelectionList : List[str]
458
+ CompleteRegionScope : list[str]
459
+ CompleteBlLabelList : list[str]
460
+ CompleteBLZoneList : list[str]
461
+ CompleteBLRegionList : list[str]
462
+ CompleteZoneSelectionList : list[str]
463
+ CompleteLabelSelectionList : list[str]
464
464
 
465
465
  Returns
466
466
  -------
@@ -484,20 +484,20 @@ class Root(PyMenu):
484
484
  Rate : float
485
485
  FirstHeight : float
486
486
  MaxLayerHeight : float
487
- FaceScope : Dict[str, Any]
488
- RegionScope : List[str]
489
- BlLabelList : List[str]
490
- ZoneSelectionList : List[str]
491
- ZoneLocation : List[str]
492
- LocalPrismPreferences : Dict[str, Any]
493
- BLZoneList : List[str]
494
- BLRegionList : List[str]
495
- CompleteRegionScope : List[str]
496
- CompleteBlLabelList : List[str]
497
- CompleteBLZoneList : List[str]
498
- CompleteBLRegionList : List[str]
499
- CompleteZoneSelectionList : List[str]
500
- CompleteLabelSelectionList : List[str]
487
+ FaceScope : dict[str, Any]
488
+ RegionScope : list[str]
489
+ BlLabelList : list[str]
490
+ ZoneSelectionList : list[str]
491
+ ZoneLocation : list[str]
492
+ LocalPrismPreferences : dict[str, Any]
493
+ BLZoneList : list[str]
494
+ BLRegionList : list[str]
495
+ CompleteRegionScope : list[str]
496
+ CompleteBlLabelList : list[str]
497
+ CompleteBLZoneList : list[str]
498
+ CompleteBLRegionList : list[str]
499
+ CompleteZoneSelectionList : list[str]
500
+ CompleteLabelSelectionList : list[str]
501
501
 
502
502
  Returns
503
503
  -------
@@ -515,10 +515,10 @@ class Root(PyMenu):
515
515
  NewBoundaryLabelName : str
516
516
  NewBoundaryType : str
517
517
  SelectionType : str
518
- BoundaryFaceZoneList : List[str]
519
- TopologyList : List[str]
518
+ BoundaryFaceZoneList : list[str]
519
+ TopologyList : list[str]
520
520
  Merge : str
521
- ZoneLocation : List[str]
521
+ ZoneLocation : list[str]
522
522
 
523
523
  Returns
524
524
  -------
@@ -534,17 +534,17 @@ class Root(PyMenu):
534
534
  ----------
535
535
  LocalSettingsName : str
536
536
  SelectionType : str
537
- ObjectSelectionList : List[str]
538
- LabelSelectionList : List[str]
539
- ZoneSelectionList : List[str]
540
- ZoneLocation : List[str]
541
- EdgeSelectionList : List[str]
542
- LocalSizeControlParameters : Dict[str, Any]
537
+ ObjectSelectionList : list[str]
538
+ LabelSelectionList : list[str]
539
+ ZoneSelectionList : list[str]
540
+ ZoneLocation : list[str]
541
+ EdgeSelectionList : list[str]
542
+ LocalSizeControlParameters : dict[str, Any]
543
543
  ValueChanged : str
544
- CompleteZoneSelectionList : List[str]
545
- CompleteLabelSelectionList : List[str]
546
- CompleteObjectSelectionList : List[str]
547
- CompleteEdgeSelectionList : List[str]
544
+ CompleteZoneSelectionList : list[str]
545
+ CompleteLabelSelectionList : list[str]
546
+ CompleteObjectSelectionList : list[str]
547
+ CompleteEdgeSelectionList : list[str]
548
548
 
549
549
  Returns
550
550
  -------
@@ -574,18 +574,18 @@ class Root(PyMenu):
574
574
  BOIScopeTo : str
575
575
  IgnoreOrientation : str
576
576
  BOIZoneorLabel : str
577
- BOIFaceLabelList : List[str]
578
- BOIFaceZoneList : List[str]
579
- EdgeLabelList : List[str]
580
- EdgeZoneList : List[str]
581
- TopologyList : List[str]
577
+ BOIFaceLabelList : list[str]
578
+ BOIFaceZoneList : list[str]
579
+ EdgeLabelList : list[str]
580
+ EdgeZoneList : list[str]
581
+ TopologyList : list[str]
582
582
  BOIPatchingtoggle : bool
583
583
  DrawSizeControl : bool
584
- ZoneLocation : List[str]
585
- CompleteFaceZoneList : List[str]
586
- CompleteFaceLabelList : List[str]
587
- CompleteEdgeLabelList : List[str]
588
- CompleteTopologyList : List[str]
584
+ ZoneLocation : list[str]
585
+ CompleteFaceZoneList : list[str]
586
+ CompleteFaceLabelList : list[str]
587
+ CompleteEdgeLabelList : list[str]
588
+ CompleteTopologyList : list[str]
589
589
  PrimeSizeControlId : int
590
590
 
591
591
  Returns
@@ -606,14 +606,14 @@ class Root(PyMenu):
606
606
  FillWith : str
607
607
  UseSweepSize : str
608
608
  MaxSweepSize : float
609
- RegionScope : List[str]
610
- TopologyList : List[str]
609
+ RegionScope : list[str]
610
+ TopologyList : list[str]
611
611
  SourceMethod : str
612
612
  ParallelSelection : bool
613
613
  ShowEdgeBiasing : str
614
- LabelSourceList : List[str]
615
- ZoneSourceList : List[str]
616
- ZoneLocation : List[str]
614
+ LabelSourceList : list[str]
615
+ ZoneSourceList : list[str]
616
+ ZoneLocation : list[str]
617
617
  AssignSizeUsing : str
618
618
  Intervals : int
619
619
  Size : float
@@ -622,11 +622,11 @@ class Root(PyMenu):
622
622
  GrowthMethod : str
623
623
  GrowthRate : float
624
624
  BiasFactor : float
625
- EdgeLabelSelection : List[str]
626
- EdgeLabelList : List[str]
627
- CFDSurfaceMeshControls : Dict[str, Any]
628
- CompleteRegionScope : List[str]
629
- CompleteEdgeScope : List[str]
625
+ EdgeLabelSelection : list[str]
626
+ EdgeLabelList : list[str]
627
+ CFDSurfaceMeshControls : dict[str, Any]
628
+ CompleteRegionScope : list[str]
629
+ CompleteEdgeScope : list[str]
630
630
 
631
631
  Returns
632
632
  -------
@@ -650,12 +650,12 @@ class Root(PyMenu):
650
650
  FirstLayerHeight : float
651
651
  MaxLayerHeight : float
652
652
  GrowOn : str
653
- FaceLabelList : List[str]
654
- FaceZoneList : List[str]
653
+ FaceLabelList : list[str]
654
+ FaceZoneList : list[str]
655
655
  EdgeSelectionType : str
656
- EdgeLabelList : List[str]
657
- EdgeZoneList : List[str]
658
- ShellBLAdvancedOptions : Dict[str, Any]
656
+ EdgeLabelList : list[str]
657
+ EdgeZoneList : list[str]
658
+ ShellBLAdvancedOptions : dict[str, Any]
659
659
 
660
660
  Returns
661
661
  -------
@@ -671,10 +671,10 @@ class Root(PyMenu):
671
671
  ----------
672
672
  ZeroThicknessName : str
673
673
  SelectionType : str
674
- ZoneSelectionList : List[str]
675
- ZoneLocation : List[str]
676
- ObjectSelectionList : List[str]
677
- LabelSelectionList : List[str]
674
+ ZoneSelectionList : list[str]
675
+ ZoneLocation : list[str]
676
+ ObjectSelectionList : list[str]
677
+ LabelSelectionList : list[str]
678
678
  Distance : float
679
679
 
680
680
  Returns
@@ -699,23 +699,23 @@ class Root(PyMenu):
699
699
  SideImprints : bool
700
700
  StackedPlates : bool
701
701
  AutoControlCreation : bool
702
- RegionScope : List[str]
702
+ RegionScope : list[str]
703
703
  SelectSourceBy : str
704
704
  ParallelSource : bool
705
- LabelSourceList : List[str]
706
- ZoneSourceList : List[str]
705
+ LabelSourceList : list[str]
706
+ ZoneSourceList : list[str]
707
707
  SelectTargetBy : str
708
708
  ParallelTarget : bool
709
- LabelTargetList : List[str]
710
- ZoneTargetList : List[str]
711
- CompleteRegionScope : List[str]
712
- CompleteLabelSourceList : List[str]
713
- CompleteZoneSourceList : List[str]
714
- CompleteLabelTargetList : List[str]
715
- CompleteZoneTargetList : List[str]
716
- ThinVolumePreferences : Dict[str, Any]
717
- ZoneLocation : List[str]
718
- ZoneLocation2 : List[str]
709
+ LabelTargetList : list[str]
710
+ ZoneTargetList : list[str]
711
+ CompleteRegionScope : list[str]
712
+ CompleteLabelSourceList : list[str]
713
+ CompleteZoneSourceList : list[str]
714
+ CompleteLabelTargetList : list[str]
715
+ CompleteZoneTargetList : list[str]
716
+ ThinVolumePreferences : dict[str, Any]
717
+ ZoneLocation : list[str]
718
+ ZoneLocation2 : list[str]
719
719
 
720
720
  Returns
721
721
  -------
@@ -732,9 +732,9 @@ class Root(PyMenu):
732
732
  AddChild : str
733
733
  ControlName : str
734
734
  SelectionType : str
735
- FaceLabelList : List[str]
736
- FaceZoneList : List[str]
737
- NewFaces : List[int]
735
+ FaceLabelList : list[str]
736
+ FaceZoneList : list[str]
737
+ NewFaces : list[int]
738
738
 
739
739
  Returns
740
740
  -------
@@ -752,18 +752,18 @@ class Root(PyMenu):
752
752
  ZoneType : str
753
753
  PatchType : str
754
754
  SelectionType : str
755
- LabelSelectionList : List[str]
756
- ZoneSelectionList : List[str]
757
- TopologyList : List[str]
758
- CreatePatchPreferences : Dict[str, Any]
755
+ LabelSelectionList : list[str]
756
+ ZoneSelectionList : list[str]
757
+ TopologyList : list[str]
758
+ CreatePatchPreferences : dict[str, Any]
759
759
  ObjectAssociation : str
760
760
  NewObjectName : str
761
761
  PatchObjectName : str
762
- CapLabels : List[str]
763
- ZoneLocation : List[str]
764
- CompleteZoneSelectionList : List[str]
765
- CompleteLabelSelectionList : List[str]
766
- CompleteTopologyList : List[str]
762
+ CapLabels : list[str]
763
+ ZoneLocation : list[str]
764
+ CompleteZoneSelectionList : list[str]
765
+ CompleteLabelSelectionList : list[str]
766
+ CompleteTopologyList : list[str]
767
767
 
768
768
  Returns
769
769
  -------
@@ -818,7 +818,7 @@ class Root(PyMenu):
818
818
  GlobalMin : float
819
819
  GlobalMax : float
820
820
  GlobalGrowthRate : float
821
- MeshControlOptions : Dict[str, Any]
821
+ MeshControlOptions : dict[str, Any]
822
822
 
823
823
  Returns
824
824
  -------
@@ -897,17 +897,17 @@ class Root(PyMenu):
897
897
  BOIMaxSize : float
898
898
  BOISizeName : str
899
899
  SelectionType : str
900
- ZoneSelectionList : List[str]
901
- ZoneLocation : List[str]
902
- LabelSelectionList : List[str]
903
- ObjectSelectionList : List[str]
904
- ZoneSelectionSingle : List[str]
905
- ObjectSelectionSingle : List[str]
906
- TopologyList : List[str]
907
- BoundingBoxObject : Dict[str, Any]
908
- OffsetObject : Dict[str, Any]
909
- CylinderObject : Dict[str, Any]
910
- Axis : Dict[str, Any]
900
+ ZoneSelectionList : list[str]
901
+ ZoneLocation : list[str]
902
+ LabelSelectionList : list[str]
903
+ ObjectSelectionList : list[str]
904
+ ZoneSelectionSingle : list[str]
905
+ ObjectSelectionSingle : list[str]
906
+ TopologyList : list[str]
907
+ BoundingBoxObject : dict[str, Any]
908
+ OffsetObject : dict[str, Any]
909
+ CylinderObject : dict[str, Any]
910
+ Axis : dict[str, Any]
911
911
  VolumeFill : str
912
912
 
913
913
  Returns
@@ -927,17 +927,17 @@ class Root(PyMenu):
927
927
  BOIMaxSize : float
928
928
  BOISizeName : str
929
929
  SelectionType : str
930
- ZoneSelectionList : List[str]
931
- ZoneLocation : List[str]
932
- LabelSelectionList : List[str]
933
- ObjectSelectionList : List[str]
934
- ZoneSelectionSingle : List[str]
935
- ObjectSelectionSingle : List[str]
936
- TopologyList : List[str]
937
- BoundingBoxObject : Dict[str, Any]
938
- OffsetObject : Dict[str, Any]
939
- CylinderObject : Dict[str, Any]
940
- Axis : Dict[str, Any]
930
+ ZoneSelectionList : list[str]
931
+ ZoneLocation : list[str]
932
+ LabelSelectionList : list[str]
933
+ ObjectSelectionList : list[str]
934
+ ZoneSelectionSingle : list[str]
935
+ ObjectSelectionSingle : list[str]
936
+ TopologyList : list[str]
937
+ BoundingBoxObject : dict[str, Any]
938
+ OffsetObject : dict[str, Any]
939
+ CylinderObject : dict[str, Any]
940
+ Axis : dict[str, Any]
941
941
  VolumeFill : str
942
942
 
943
943
  Returns
@@ -957,17 +957,17 @@ class Root(PyMenu):
957
957
  BOIMaxSize : float
958
958
  BOISizeName : str
959
959
  SelectionType : str
960
- ZoneSelectionList : List[str]
961
- ZoneLocation : List[str]
962
- LabelSelectionList : List[str]
963
- ObjectSelectionList : List[str]
964
- ZoneSelectionSingle : List[str]
965
- ObjectSelectionSingle : List[str]
966
- TopologyList : List[str]
967
- BoundingBoxObject : Dict[str, Any]
968
- OffsetObject : Dict[str, Any]
969
- CylinderObject : Dict[str, Any]
970
- Axis : Dict[str, Any]
960
+ ZoneSelectionList : list[str]
961
+ ZoneLocation : list[str]
962
+ LabelSelectionList : list[str]
963
+ ObjectSelectionList : list[str]
964
+ ZoneSelectionSingle : list[str]
965
+ ObjectSelectionSingle : list[str]
966
+ TopologyList : list[str]
967
+ BoundingBoxObject : dict[str, Any]
968
+ OffsetObject : dict[str, Any]
969
+ CylinderObject : dict[str, Any]
970
+ Axis : dict[str, Any]
971
971
  VolumeFill : str
972
972
 
973
973
  Returns
@@ -984,11 +984,11 @@ class Root(PyMenu):
984
984
  ----------
985
985
  ContactPatchName : str
986
986
  SelectionType : str
987
- ZoneSelectionList : List[str]
988
- ZoneLocation : List[str]
989
- ObjectSelectionList : List[str]
990
- LabelSelectionList : List[str]
991
- GroundZoneSelectionList : List[str]
987
+ ZoneSelectionList : list[str]
988
+ ZoneLocation : list[str]
989
+ ObjectSelectionList : list[str]
990
+ LabelSelectionList : list[str]
991
+ GroundZoneSelectionList : list[str]
992
992
  Distance : float
993
993
  ContactPatchDefeaturingSize : float
994
994
  FeatureAngle : float
@@ -1011,15 +1011,15 @@ class Root(PyMenu):
1011
1011
  CreationMethod : str
1012
1012
  ExtractionMethod : str
1013
1013
  SelectionType : str
1014
- ObjectSelectionList : List[str]
1015
- ZoneSelectionList : List[str]
1016
- ZoneLocation : List[str]
1017
- LabelSelectionList : List[str]
1018
- ObjectSelectionSingle : List[str]
1019
- ZoneSelectionSingle : List[str]
1020
- LabelSelectionSingle : List[str]
1014
+ ObjectSelectionList : list[str]
1015
+ ZoneSelectionList : list[str]
1016
+ ZoneLocation : list[str]
1017
+ LabelSelectionList : list[str]
1018
+ ObjectSelectionSingle : list[str]
1019
+ ZoneSelectionSingle : list[str]
1020
+ LabelSelectionSingle : list[str]
1021
1021
  OriginalObjectName : str
1022
- BoundingBoxObject : Dict[str, Any]
1022
+ BoundingBoxObject : dict[str, Any]
1023
1023
 
1024
1024
  Returns
1025
1025
  -------
@@ -1038,10 +1038,10 @@ class Root(PyMenu):
1038
1038
  GapSizeRatio : float
1039
1039
  GapSize : float
1040
1040
  SelectionType : str
1041
- ZoneSelectionList : List[str]
1042
- ZoneLocation : List[str]
1043
- LabelSelectionList : List[str]
1044
- ObjectSelectionList : List[str]
1041
+ ZoneSelectionList : list[str]
1042
+ ZoneLocation : list[str]
1043
+ LabelSelectionList : list[str]
1044
+ ObjectSelectionList : list[str]
1045
1045
  GapCoverBetweenZones : str
1046
1046
  GapCoverRefineFactor : float
1047
1047
  GapCoverRefineFactorAtGap : float
@@ -1067,17 +1067,17 @@ class Root(PyMenu):
1067
1067
  BOIMaxSize : float
1068
1068
  BOISizeName : str
1069
1069
  SelectionType : str
1070
- ZoneSelectionList : List[str]
1071
- ZoneLocation : List[str]
1072
- LabelSelectionList : List[str]
1073
- ObjectSelectionList : List[str]
1074
- ZoneSelectionSingle : List[str]
1075
- ObjectSelectionSingle : List[str]
1076
- TopologyList : List[str]
1077
- BoundingBoxObject : Dict[str, Any]
1078
- OffsetObject : Dict[str, Any]
1079
- CylinderObject : Dict[str, Any]
1080
- Axis : Dict[str, Any]
1070
+ ZoneSelectionList : list[str]
1071
+ ZoneLocation : list[str]
1072
+ LabelSelectionList : list[str]
1073
+ ObjectSelectionList : list[str]
1074
+ ZoneSelectionSingle : list[str]
1075
+ ObjectSelectionSingle : list[str]
1076
+ TopologyList : list[str]
1077
+ BoundingBoxObject : dict[str, Any]
1078
+ OffsetObject : dict[str, Any]
1079
+ CylinderObject : dict[str, Any]
1080
+ Axis : dict[str, Any]
1081
1081
  VolumeFill : str
1082
1082
 
1083
1083
  Returns
@@ -1108,7 +1108,7 @@ class Root(PyMenu):
1108
1108
  Parameters
1109
1109
  ----------
1110
1110
  OversetInterfacesName : str
1111
- ObjectSelectionList : List[str]
1111
+ ObjectSelectionList : list[str]
1112
1112
 
1113
1113
  Returns
1114
1114
  -------
@@ -1130,11 +1130,11 @@ class Root(PyMenu):
1130
1130
  CellSizeP1P3 : float
1131
1131
  CellSizeP1P4 : float
1132
1132
  BufferSizeRatio : float
1133
- P1 : List[float]
1134
- P2 : List[float]
1135
- P3 : List[float]
1136
- P4 : List[float]
1137
- NonRectangularParameters : Dict[str, Any]
1133
+ P1 : list[float]
1134
+ P2 : list[float]
1135
+ P3 : list[float]
1136
+ P4 : list[float]
1137
+ NonRectangularParameters : dict[str, Any]
1138
1138
 
1139
1139
  Returns
1140
1140
  -------
@@ -1172,7 +1172,7 @@ class Root(PyMenu):
1172
1172
  CellsPerGap : float
1173
1173
  ScopeProximityTo : str
1174
1174
  Mesher : str
1175
- PrimeSizeControlIds : List[int]
1175
+ PrimeSizeControlIds : list[int]
1176
1176
  EnableMultiThreading : bool
1177
1177
  NumberOfMultiThreads : int
1178
1178
 
@@ -1191,8 +1191,8 @@ class Root(PyMenu):
1191
1191
  AddChild : str
1192
1192
  LeakageName : str
1193
1193
  SelectionType : str
1194
- DeadRegionsList : List[str]
1195
- RegionSelectionSingle : List[str]
1194
+ DeadRegionsList : list[str]
1195
+ RegionSelectionSingle : list[str]
1196
1196
  DeadRegionsSize : float
1197
1197
  PlaneClippingValue : int
1198
1198
  PlaneDirection : str
@@ -1215,8 +1215,8 @@ class Root(PyMenu):
1215
1215
  AddEnclosure : str
1216
1216
  CloseCaps : str
1217
1217
  LocalRefinementRegions : str
1218
- DescribeGeometryAndFlowOptions : Dict[str, Any]
1219
- AllTaskList : List[str]
1218
+ DescribeGeometryAndFlowOptions : dict[str, Any]
1219
+ AllTaskList : list[str]
1220
1220
 
1221
1221
  Returns
1222
1222
  -------
@@ -1251,17 +1251,17 @@ class Root(PyMenu):
1251
1251
  ExtractEdgesName : str
1252
1252
  ExtractMethodType : str
1253
1253
  SelectionType : str
1254
- ObjectSelectionList : List[str]
1255
- GeomObjectSelectionList : List[str]
1256
- ZoneSelectionList : List[str]
1257
- ZoneLocation : List[str]
1258
- LabelSelectionList : List[str]
1254
+ ObjectSelectionList : list[str]
1255
+ GeomObjectSelectionList : list[str]
1256
+ ZoneSelectionList : list[str]
1257
+ ZoneLocation : list[str]
1258
+ LabelSelectionList : list[str]
1259
1259
  FeatureAngleLocal : int
1260
1260
  IndividualCollective : str
1261
1261
  SharpAngle : int
1262
- CompleteObjectSelectionList : List[str]
1263
- CompleteGeomObjectSelectionList : List[str]
1264
- NonExtractedObjects : List[str]
1262
+ CompleteObjectSelectionList : list[str]
1263
+ CompleteGeomObjectSelectionList : list[str]
1264
+ NonExtractedObjects : list[str]
1265
1265
 
1266
1266
  Returns
1267
1267
  -------
@@ -1280,14 +1280,14 @@ class Root(PyMenu):
1280
1280
  SelectionType : str
1281
1281
  ExtendToPeriodicPair : bool
1282
1282
  ExtrudeNormalBased : bool
1283
- ExternalBoundaryZoneList : List[str]
1284
- TopologyList : List[str]
1283
+ ExternalBoundaryZoneList : list[str]
1284
+ TopologyList : list[str]
1285
1285
  TotalHeight : float
1286
1286
  FirstHeight : float
1287
1287
  NumberofLayers : int
1288
1288
  GrowthRate : float
1289
- VMExtrudePreferences : Dict[str, Any]
1290
- ZoneLocation : List[str]
1289
+ VMExtrudePreferences : dict[str, Any]
1290
+ ZoneLocation : list[str]
1291
1291
 
1292
1292
  Returns
1293
1293
  -------
@@ -1305,8 +1305,8 @@ class Root(PyMenu):
1305
1305
  ProjectOnGeometry : bool
1306
1306
  EnableMultiThreading : bool
1307
1307
  NumberOfMultiThreads : int
1308
- Prism2DPreferences : Dict[str, Any]
1309
- Surface2DPreferences : Dict[str, Any]
1308
+ Prism2DPreferences : dict[str, Any]
1309
+ Surface2DPreferences : dict[str, Any]
1310
1310
 
1311
1311
  Returns
1312
1312
  -------
@@ -1329,8 +1329,8 @@ class Root(PyMenu):
1329
1329
  SplitQuads : bool
1330
1330
  ProjectOnGeometry : bool
1331
1331
  SelectionType : str
1332
- FaceLabelList : List[str]
1333
- FaceZoneList : List[str]
1332
+ FaceLabelList : list[str]
1333
+ FaceZoneList : list[str]
1334
1334
 
1335
1335
  Returns
1336
1336
  -------
@@ -1382,13 +1382,13 @@ class Root(PyMenu):
1382
1382
  ----------
1383
1383
  OrthogonalQualityLimit : float
1384
1384
  SelectionType : str
1385
- RegionScope : List[str]
1385
+ RegionScope : list[str]
1386
1386
  NonConformal : str
1387
1387
  SizeFunctionScaleFactor : float
1388
1388
  MeshingStrategy : str
1389
- CFDSurfaceMeshControls : Dict[str, Any]
1390
- CellZoneList : List[str]
1391
- CompleteRegionScope : List[str]
1389
+ CFDSurfaceMeshControls : dict[str, Any]
1390
+ CellZoneList : list[str]
1391
+ CompleteRegionScope : list[str]
1392
1392
 
1393
1393
  Returns
1394
1394
  -------
@@ -1435,13 +1435,13 @@ class Root(PyMenu):
1435
1435
 
1436
1436
  Parameters
1437
1437
  ----------
1438
- CFDSurfaceMeshControls : Dict[str, Any]
1438
+ CFDSurfaceMeshControls : dict[str, Any]
1439
1439
  SeparationRequired : str
1440
1440
  SeparationAngle : float
1441
1441
  RemeshSelectionType : str
1442
- RemeshZoneList : List[str]
1443
- RemeshLabelList : List[str]
1444
- SurfaceMeshPreferences : Dict[str, Any]
1442
+ RemeshZoneList : list[str]
1443
+ RemeshLabelList : list[str]
1444
+ SurfaceMeshPreferences : dict[str, Any]
1445
1445
  ImportType : str
1446
1446
  AppendMesh : bool
1447
1447
  CadFacetingFileName : str
@@ -1449,11 +1449,11 @@ class Root(PyMenu):
1449
1449
  Pattern : str
1450
1450
  LengthUnit : str
1451
1451
  TesselationMethod : str
1452
- OriginalZones : List[str]
1452
+ OriginalZones : list[str]
1453
1453
  ExecuteShareTopology : str
1454
- CADFacetingControls : Dict[str, Any]
1455
- CadImportOptions : Dict[str, Any]
1456
- ShareTopologyPreferences : Dict[str, Any]
1454
+ CADFacetingControls : dict[str, Any]
1455
+ CadImportOptions : dict[str, Any]
1456
+ ShareTopologyPreferences : dict[str, Any]
1457
1457
  PreviewSizeToggle : bool
1458
1458
 
1459
1459
  Returns
@@ -1473,15 +1473,15 @@ class Root(PyMenu):
1473
1473
  EnableParallel : bool
1474
1474
  SaveVolumeMesh : bool
1475
1475
  EditVolumeSettings : bool
1476
- RegionNameList : List[str]
1477
- RegionVolumeFillList : List[str]
1478
- RegionSizeList : List[str]
1479
- OldRegionNameList : List[str]
1480
- OldRegionVolumeFillList : List[str]
1481
- OldRegionSizeList : List[str]
1482
- AllRegionNameList : List[str]
1483
- AllRegionVolumeFillList : List[str]
1484
- AllRegionSizeList : List[str]
1476
+ RegionNameList : list[str]
1477
+ RegionVolumeFillList : list[str]
1478
+ RegionSizeList : list[str]
1479
+ OldRegionNameList : list[str]
1480
+ OldRegionVolumeFillList : list[str]
1481
+ OldRegionSizeList : list[str]
1482
+ AllRegionNameList : list[str]
1483
+ AllRegionVolumeFillList : list[str]
1484
+ AllRegionSizeList : list[str]
1485
1485
  AdvancedOptions : bool
1486
1486
  SpikeRemovalAngle : float
1487
1487
  DihedralMinAngle : float
@@ -1514,12 +1514,12 @@ class Root(PyMenu):
1514
1514
  MeshFluidRegions : bool
1515
1515
  MeshSolidRegions : bool
1516
1516
  SizingMethod : str
1517
- VolumeFillControls : Dict[str, Any]
1517
+ VolumeFillControls : dict[str, Any]
1518
1518
  RegionBasedPreferences : bool
1519
1519
  ReMergeZones : str
1520
1520
  ParallelMeshing : bool
1521
- VolumeMeshPreferences : Dict[str, Any]
1522
- PrismPreferences : Dict[str, Any]
1521
+ VolumeMeshPreferences : dict[str, Any]
1522
+ PrismPreferences : dict[str, Any]
1523
1523
  InvokePrimsControl : str
1524
1524
  OffsetMethodType : str
1525
1525
  NumberOfLayers : int
@@ -1529,20 +1529,20 @@ class Root(PyMenu):
1529
1529
  FirstHeight : float
1530
1530
  MeshObject : str
1531
1531
  MeshDeadRegions : bool
1532
- BodyLabelList : List[str]
1532
+ BodyLabelList : list[str]
1533
1533
  PrismLayers : bool
1534
1534
  QuadTetTransition : str
1535
1535
  MergeCellZones : bool
1536
- FaceScope : Dict[str, Any]
1537
- RegionTetNameList : List[str]
1538
- RegionTetMaxCellLengthList : List[str]
1539
- RegionTetGrowthRateList : List[str]
1540
- RegionHexNameList : List[str]
1541
- RegionHexMaxCellLengthList : List[str]
1542
- OldRegionTetMaxCellLengthList : List[str]
1543
- OldRegionTetGrowthRateList : List[str]
1544
- OldRegionHexMaxCellLengthList : List[str]
1545
- CFDSurfaceMeshControls : Dict[str, Any]
1536
+ FaceScope : dict[str, Any]
1537
+ RegionTetNameList : list[str]
1538
+ RegionTetMaxCellLengthList : list[str]
1539
+ RegionTetGrowthRateList : list[str]
1540
+ RegionHexNameList : list[str]
1541
+ RegionHexMaxCellLengthList : list[str]
1542
+ OldRegionTetMaxCellLengthList : list[str]
1543
+ OldRegionTetGrowthRateList : list[str]
1544
+ OldRegionHexMaxCellLengthList : list[str]
1545
+ CFDSurfaceMeshControls : dict[str, Any]
1546
1546
  ShowSolidFluidMeshed : bool
1547
1547
 
1548
1548
  Returns
@@ -1563,14 +1563,14 @@ class Root(PyMenu):
1563
1563
  InvokeShareTopology : str
1564
1564
  NonConformal : str
1565
1565
  Multizone : str
1566
- SetupInternals : List[str]
1567
- SetupInternalTypes : List[str]
1568
- OldZoneList : List[str]
1569
- OldZoneTypeList : List[str]
1570
- RegionList : List[str]
1571
- EdgeLabels : List[str]
1566
+ SetupInternals : list[str]
1567
+ SetupInternalTypes : list[str]
1568
+ OldZoneList : list[str]
1569
+ OldZoneTypeList : list[str]
1570
+ RegionList : list[str]
1571
+ EdgeLabels : list[str]
1572
1572
  Duplicates : bool
1573
- SMImprovePreferences : Dict[str, Any]
1573
+ SMImprovePreferences : dict[str, Any]
1574
1574
 
1575
1575
  Returns
1576
1576
  -------
@@ -1587,20 +1587,20 @@ class Root(PyMenu):
1587
1587
  MRFName : str
1588
1588
  CreationMethod : str
1589
1589
  SelectionType : str
1590
- ObjectSelectionSingle : List[str]
1591
- ZoneSelectionSingle : List[str]
1592
- LabelSelectionSingle : List[str]
1593
- ObjectSelectionList : List[str]
1594
- ZoneSelectionList : List[str]
1595
- ZoneLocation : List[str]
1596
- LabelSelectionList : List[str]
1590
+ ObjectSelectionSingle : list[str]
1591
+ ZoneSelectionSingle : list[str]
1592
+ LabelSelectionSingle : list[str]
1593
+ ObjectSelectionList : list[str]
1594
+ ZoneSelectionList : list[str]
1595
+ ZoneLocation : list[str]
1596
+ LabelSelectionList : list[str]
1597
1597
  DefeaturingSize : float
1598
1598
  OffsetHeight : float
1599
- Pivot : Dict[str, Any]
1600
- Axis : Dict[str, Any]
1601
- Rotation : Dict[str, Any]
1602
- CylinderObject : Dict[str, Any]
1603
- BoundingBoxObject : Dict[str, Any]
1599
+ Pivot : dict[str, Any]
1600
+ Axis : dict[str, Any]
1601
+ Rotation : dict[str, Any]
1602
+ CylinderObject : dict[str, Any]
1603
+ BoundingBoxObject : dict[str, Any]
1604
1604
 
1605
1605
  Returns
1606
1606
  -------
@@ -1616,9 +1616,9 @@ class Root(PyMenu):
1616
1616
  ----------
1617
1617
  DisplayGridName : str
1618
1618
  SelectionType : str
1619
- ObjectSelectionList : List[str]
1620
- ZoneSelectionList : List[str]
1621
- ZoneLocation : List[str]
1619
+ ObjectSelectionList : list[str]
1620
+ ZoneSelectionList : list[str]
1621
+ ZoneLocation : list[str]
1622
1622
  AdvancedOptions : bool
1623
1623
  DeviationMinValue : float
1624
1624
  DeviationMaxValue : float
@@ -1638,15 +1638,15 @@ class Root(PyMenu):
1638
1638
  Parameters
1639
1639
  ----------
1640
1640
  NumberOfOrphans : str
1641
- ObjectSelectionList : List[str]
1641
+ ObjectSelectionList : list[str]
1642
1642
  EnableGridPriority : bool
1643
1643
  DonorPriorityMethod : str
1644
1644
  OverlapBoundaries : str
1645
1645
  CheckOversetInterfaceIntersection : str
1646
- RegionNameList : List[str]
1647
- RegionSizeList : List[str]
1648
- OldRegionNameList : List[str]
1649
- OldRegionSizeList : List[str]
1646
+ RegionNameList : list[str]
1647
+ RegionSizeList : list[str]
1648
+ OldRegionNameList : list[str]
1649
+ OldRegionSizeList : list[str]
1650
1650
 
1651
1651
  Returns
1652
1652
  -------
@@ -1666,10 +1666,10 @@ class Root(PyMenu):
1666
1666
  NewRegionType : str
1667
1667
  LinkConstruction : str
1668
1668
  SelectionType : str
1669
- ZoneSelectionList : List[str]
1670
- ZoneLocation : List[str]
1671
- LabelSelectionList : List[str]
1672
- ObjectSelectionList : List[str]
1669
+ ZoneSelectionList : list[str]
1670
+ ZoneLocation : list[str]
1671
+ LabelSelectionList : list[str]
1672
+ ObjectSelectionList : list[str]
1673
1673
  GraphicalSelection : bool
1674
1674
  ShowCoordinates : bool
1675
1675
  X : float
@@ -1694,9 +1694,9 @@ class Root(PyMenu):
1694
1694
  Type : str
1695
1695
  GeometryFileName : str
1696
1696
  MeshFileName : str
1697
- ImportedObjects : List[str]
1697
+ ImportedObjects : list[str]
1698
1698
  LengthUnit : str
1699
- CadImportOptions : Dict[str, Any]
1699
+ CadImportOptions : dict[str, Any]
1700
1700
 
1701
1701
  Returns
1702
1702
  -------
@@ -1715,7 +1715,7 @@ class Root(PyMenu):
1715
1715
  LengthUnit : str
1716
1716
  MeshUnit : str
1717
1717
  UseBodyLabels : str
1718
- ImportCadPreferences : Dict[str, Any]
1718
+ ImportCadPreferences : dict[str, Any]
1719
1719
  FileName : str
1720
1720
  FileNames : str
1721
1721
  MeshFileName : str
@@ -1723,7 +1723,7 @@ class Root(PyMenu):
1723
1723
  AppendMesh : bool
1724
1724
  Directory : str
1725
1725
  Pattern : str
1726
- CadImportOptions : Dict[str, Any]
1726
+ CadImportOptions : dict[str, Any]
1727
1727
 
1728
1728
  Returns
1729
1729
  -------
@@ -1740,7 +1740,7 @@ class Root(PyMenu):
1740
1740
  MeshObject : str
1741
1741
  FaceQualityLimit : float
1742
1742
  SQMinSize : float
1743
- SMImprovePreferences : Dict[str, Any]
1743
+ SMImprovePreferences : dict[str, Any]
1744
1744
 
1745
1745
  Returns
1746
1746
  -------
@@ -1756,7 +1756,7 @@ class Root(PyMenu):
1756
1756
  ----------
1757
1757
  QualityMethod : str
1758
1758
  CellQualityLimit : float
1759
- VMImprovePreferences : Dict[str, Any]
1759
+ VMImprovePreferences : dict[str, Any]
1760
1760
 
1761
1761
  Returns
1762
1762
  -------
@@ -1771,13 +1771,13 @@ class Root(PyMenu):
1771
1771
  Parameters
1772
1772
  ----------
1773
1773
  ChildName : str
1774
- ObjectList : List[str]
1774
+ ObjectList : list[str]
1775
1775
  AutoPopulateVector : str
1776
- PatternVector : Dict[str, Any]
1776
+ PatternVector : dict[str, Any]
1777
1777
  Pitch : float
1778
1778
  NumberOfUnits : int
1779
1779
  CheckOverlappingFaces : str
1780
- BatteryModelingOptions : Dict[str, Any]
1780
+ BatteryModelingOptions : dict[str, Any]
1781
1781
 
1782
1782
  Returns
1783
1783
  -------
@@ -1798,7 +1798,7 @@ class Root(PyMenu):
1798
1798
  FacetingTolerance : float
1799
1799
  CreateObjectPer : str
1800
1800
  NumParts : float
1801
- Refaceting : Dict[str, Any]
1801
+ Refaceting : dict[str, Any]
1802
1802
 
1803
1803
  Returns
1804
1804
  -------
@@ -1814,17 +1814,17 @@ class Root(PyMenu):
1814
1814
  ----------
1815
1815
  LocalSettingsName : str
1816
1816
  SelectionType : str
1817
- ObjectSelectionList : List[str]
1818
- LabelSelectionList : List[str]
1819
- ZoneSelectionList : List[str]
1820
- ZoneLocation : List[str]
1821
- EdgeSelectionList : List[str]
1822
- LocalSizeControlParameters : Dict[str, Any]
1817
+ ObjectSelectionList : list[str]
1818
+ LabelSelectionList : list[str]
1819
+ ZoneSelectionList : list[str]
1820
+ ZoneLocation : list[str]
1821
+ EdgeSelectionList : list[str]
1822
+ LocalSizeControlParameters : dict[str, Any]
1823
1823
  ValueChanged : str
1824
- CompleteZoneSelectionList : List[str]
1825
- CompleteLabelSelectionList : List[str]
1826
- CompleteObjectSelectionList : List[str]
1827
- CompleteEdgeSelectionList : List[str]
1824
+ CompleteZoneSelectionList : list[str]
1825
+ CompleteLabelSelectionList : list[str]
1826
+ CompleteObjectSelectionList : list[str]
1827
+ CompleteEdgeSelectionList : list[str]
1828
1828
 
1829
1829
  Returns
1830
1830
  -------
@@ -1845,20 +1845,20 @@ class Root(PyMenu):
1845
1845
  Volume : float
1846
1846
  EqualRange : float
1847
1847
  ZoneOrLabel : str
1848
- LabelList : List[str]
1849
- ManageFaceZoneList : List[str]
1850
- ManageCellZoneList : List[str]
1851
- BodyLabelList : List[str]
1848
+ LabelList : list[str]
1849
+ ManageFaceZoneList : list[str]
1850
+ ManageCellZoneList : list[str]
1851
+ BodyLabelList : list[str]
1852
1852
  Operation : str
1853
1853
  OperationName : str
1854
1854
  MZChildName : str
1855
1855
  AddPrefixName : str
1856
1856
  FaceMerge : str
1857
1857
  Angle : float
1858
- ZoneList : List[str]
1859
- CompleteZoneList : List[str]
1860
- CompleteLabelList : List[str]
1861
- ZoneLocation : List[str]
1858
+ ZoneList : list[str]
1859
+ CompleteZoneList : list[str]
1860
+ CompleteLabelList : list[str]
1861
+ ZoneLocation : list[str]
1862
1862
 
1863
1863
  Returns
1864
1864
  -------
@@ -1891,16 +1891,16 @@ class Root(PyMenu):
1891
1891
  RemeshControlName : str
1892
1892
  LocalSize : float
1893
1893
  FaceZoneOrLabel : str
1894
- RemeshFaceZoneList : List[str]
1895
- RemeshFaceLabelList : List[str]
1894
+ RemeshFaceZoneList : list[str]
1895
+ RemeshFaceLabelList : list[str]
1896
1896
  SizingType : str
1897
1897
  LocalMinSize : float
1898
1898
  LocalMaxSize : float
1899
1899
  RemeshGrowthRate : float
1900
1900
  RemeshCurvatureNormalAngle : float
1901
1901
  RemeshCellsPerGap : float
1902
- CFDSurfaceMeshControls : Dict[str, Any]
1903
- RemeshPreferences : Dict[str, Any]
1902
+ CFDSurfaceMeshControls : dict[str, Any]
1903
+ RemeshPreferences : dict[str, Any]
1904
1904
 
1905
1905
  Returns
1906
1906
  -------
@@ -1931,14 +1931,14 @@ class Root(PyMenu):
1931
1931
  RemoveEmptyParts : bool
1932
1932
  FeatureAngle : float
1933
1933
  OneZonePer : str
1934
- Refaceting : Dict[str, Any]
1934
+ Refaceting : dict[str, Any]
1935
1935
  IgnoreSolidNames : bool
1936
1936
  IgnoreSolidNamesAppend : bool
1937
- Options : Dict[str, Any]
1937
+ Options : dict[str, Any]
1938
1938
  EdgeExtraction : str
1939
1939
  Context : int
1940
1940
  ObjectSetting : str
1941
- RefacetOptions : Dict[str, Any]
1941
+ RefacetOptions : dict[str, Any]
1942
1942
 
1943
1943
  Returns
1944
1944
  -------
@@ -1955,8 +1955,8 @@ class Root(PyMenu):
1955
1955
  PartReplacementName : str
1956
1956
  ManagementMethod : str
1957
1957
  CreationMethod : str
1958
- OldObjectSelectionList : List[str]
1959
- NewObjectSelectionList : List[str]
1958
+ OldObjectSelectionList : list[str]
1959
+ NewObjectSelectionList : list[str]
1960
1960
  AdvancedOptions : bool
1961
1961
  ScalingFactor : float
1962
1962
  MptMethodType : str
@@ -2025,15 +2025,15 @@ class Root(PyMenu):
2025
2025
  Type : str
2026
2026
  Method : str
2027
2027
  PeriodicityAngle : float
2028
- LCSOrigin : Dict[str, Any]
2029
- LCSVector : Dict[str, Any]
2030
- TransShift : Dict[str, Any]
2028
+ LCSOrigin : dict[str, Any]
2029
+ LCSVector : dict[str, Any]
2030
+ TransShift : dict[str, Any]
2031
2031
  SelectionType : str
2032
- ZoneList : List[str]
2033
- LabelList : List[str]
2034
- TopologyList : List[str]
2032
+ ZoneList : list[str]
2033
+ LabelList : list[str]
2034
+ TopologyList : list[str]
2035
2035
  RemeshBoundariesOption : str
2036
- ZoneLocation : List[str]
2036
+ ZoneLocation : list[str]
2037
2037
  ListAllLabelToggle : bool
2038
2038
  AutoMultiplePeriodic : str
2039
2039
  MultipleOption : str
@@ -2058,7 +2058,7 @@ class Root(PyMenu):
2058
2058
  LastRatioPercentage : float
2059
2059
  FirstHeight : float
2060
2060
  PrismLayers : int
2061
- RegionSelectionList : List[str]
2061
+ RegionSelectionList : list[str]
2062
2062
 
2063
2063
  Returns
2064
2064
  -------
@@ -2076,10 +2076,10 @@ class Root(PyMenu):
2076
2076
  GapDistanceConnect : float
2077
2077
  STMinSize : float
2078
2078
  InterfaceSelect : str
2079
- EdgeLabels : List[str]
2080
- ShareTopologyPreferences : Dict[str, Any]
2081
- SMImprovePreferences : Dict[str, Any]
2082
- SurfaceMeshPreferences : Dict[str, Any]
2079
+ EdgeLabels : list[str]
2080
+ ShareTopologyPreferences : dict[str, Any]
2081
+ SMImprovePreferences : dict[str, Any]
2082
+ SurfaceMeshPreferences : dict[str, Any]
2083
2083
 
2084
2084
  Returns
2085
2085
  -------
@@ -2100,7 +2100,7 @@ class Root(PyMenu):
2100
2100
  InitialSizeControl : bool
2101
2101
  TargetSizeControl : bool
2102
2102
  SizeControlInterval : float
2103
- SizeControlParameters : Dict[str, Any]
2103
+ SizeControlParameters : dict[str, Any]
2104
2104
 
2105
2105
  Returns
2106
2106
  -------
@@ -2129,17 +2129,17 @@ class Root(PyMenu):
2129
2129
  Type : str
2130
2130
  Method : str
2131
2131
  SelectionType : str
2132
- TopoBodyList : List[str]
2133
- CellZoneList : List[str]
2134
- LCSOrigin : Dict[str, Any]
2135
- LCSVector : Dict[str, Any]
2136
- TransShift : Dict[str, Any]
2132
+ TopoBodyList : list[str]
2133
+ CellZoneList : list[str]
2134
+ LCSOrigin : dict[str, Any]
2135
+ LCSVector : dict[str, Any]
2136
+ TransShift : dict[str, Any]
2137
2137
  Angle : float
2138
2138
  Copy : str
2139
2139
  NumOfCopies : int
2140
2140
  Merge : str
2141
2141
  Rename : str
2142
- MergeBoundaries : List[str]
2142
+ MergeBoundaries : list[str]
2143
2143
 
2144
2144
  Returns
2145
2145
  -------
@@ -2155,24 +2155,24 @@ class Root(PyMenu):
2155
2155
  ----------
2156
2156
  MeshObject : str
2157
2157
  SelectionType : str
2158
- BoundaryLabelList : List[str]
2159
- BoundaryLabelTypeList : List[str]
2160
- BoundaryZoneList : List[str]
2161
- BoundaryZoneTypeList : List[str]
2162
- OldBoundaryLabelList : List[str]
2163
- OldBoundaryLabelTypeList : List[str]
2164
- OldBoundaryZoneList : List[str]
2165
- OldBoundaryZoneTypeList : List[str]
2166
- OldLabelZoneList : List[str]
2158
+ BoundaryLabelList : list[str]
2159
+ BoundaryLabelTypeList : list[str]
2160
+ BoundaryZoneList : list[str]
2161
+ BoundaryZoneTypeList : list[str]
2162
+ OldBoundaryLabelList : list[str]
2163
+ OldBoundaryLabelTypeList : list[str]
2164
+ OldBoundaryZoneList : list[str]
2165
+ OldBoundaryZoneTypeList : list[str]
2166
+ OldLabelZoneList : list[str]
2167
2167
  ListAllBoundariesToggle : bool
2168
- ZoneLocation : List[str]
2169
- TopologyList : List[str]
2170
- TopologyTypeList : List[str]
2171
- OldTopologyList : List[str]
2172
- OldTopologyTypeList : List[str]
2173
- BoundaryCurrentList : List[str]
2174
- BoundaryCurrentTypeList : List[str]
2175
- BoundaryAllowedTypeList : List[str]
2168
+ ZoneLocation : list[str]
2169
+ TopologyList : list[str]
2170
+ TopologyTypeList : list[str]
2171
+ OldTopologyList : list[str]
2172
+ OldTopologyTypeList : list[str]
2173
+ BoundaryCurrentList : list[str]
2174
+ BoundaryCurrentTypeList : list[str]
2175
+ BoundaryAllowedTypeList : list[str]
2176
2176
 
2177
2177
  Returns
2178
2178
  -------
@@ -2188,27 +2188,27 @@ class Root(PyMenu):
2188
2188
  ----------
2189
2189
  MainFluidRegion : str
2190
2190
  FilterCategory : str
2191
- RegionNameList : List[str]
2192
- RegionMeshMethodList : List[str]
2193
- RegionTypeList : List[str]
2194
- RegionVolumeFillList : List[str]
2195
- RegionLeakageSizeList : List[str]
2196
- RegionOversetComponenList : List[str]
2197
- OldRegionNameList : List[str]
2198
- OldRegionMeshMethodList : List[str]
2199
- OldRegionTypeList : List[str]
2200
- OldRegionVolumeFillList : List[str]
2201
- OldRegionLeakageSizeList : List[str]
2202
- OldRegionOversetComponenList : List[str]
2203
- AllRegionNameList : List[str]
2204
- AllRegionMeshMethodList : List[str]
2205
- AllRegionTypeList : List[str]
2206
- AllRegionVolumeFillList : List[str]
2207
- AllRegionLeakageSizeList : List[str]
2208
- AllRegionOversetComponenList : List[str]
2209
- AllRegionLinkedConstructionSurfaceList : List[str]
2210
- AllRegionSourceList : List[str]
2211
- AllRegionFilterCategories : List[str]
2191
+ RegionNameList : list[str]
2192
+ RegionMeshMethodList : list[str]
2193
+ RegionTypeList : list[str]
2194
+ RegionVolumeFillList : list[str]
2195
+ RegionLeakageSizeList : list[str]
2196
+ RegionOversetComponenList : list[str]
2197
+ OldRegionNameList : list[str]
2198
+ OldRegionMeshMethodList : list[str]
2199
+ OldRegionTypeList : list[str]
2200
+ OldRegionVolumeFillList : list[str]
2201
+ OldRegionLeakageSizeList : list[str]
2202
+ OldRegionOversetComponenList : list[str]
2203
+ AllRegionNameList : list[str]
2204
+ AllRegionMeshMethodList : list[str]
2205
+ AllRegionTypeList : list[str]
2206
+ AllRegionVolumeFillList : list[str]
2207
+ AllRegionLeakageSizeList : list[str]
2208
+ AllRegionOversetComponenList : list[str]
2209
+ AllRegionLinkedConstructionSurfaceList : list[str]
2210
+ AllRegionSourceList : list[str]
2211
+ AllRegionFilterCategories : list[str]
2212
2212
 
2213
2213
  Returns
2214
2214
  -------
@@ -2223,14 +2223,14 @@ class Root(PyMenu):
2223
2223
  Parameters
2224
2224
  ----------
2225
2225
  MeshObject : str
2226
- RegionNameList : List[str]
2227
- RegionTypeList : List[str]
2228
- OldRegionNameList : List[str]
2229
- OldRegionTypeList : List[str]
2230
- RegionInternals : List[str]
2231
- RegionInternalTypes : List[str]
2232
- RegionCurrentList : List[str]
2233
- RegionCurrentTypeList : List[str]
2226
+ RegionNameList : list[str]
2227
+ RegionTypeList : list[str]
2228
+ OldRegionNameList : list[str]
2229
+ OldRegionTypeList : list[str]
2230
+ RegionInternals : list[str]
2231
+ RegionInternalTypes : list[str]
2232
+ RegionCurrentList : list[str]
2233
+ RegionCurrentTypeList : list[str]
2234
2234
  NumberOfListedRegions : int
2235
2235
 
2236
2236
  Returns