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
@@ -207,85 +207,85 @@ class Root(PyMenu):
207
207
 
208
208
  class AllOversetNameList(PyTextual):
209
209
  """
210
- Parameter AllOversetNameList of value type List[str].
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 List[str].
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 List[str].
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 List[str].
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 List[str].
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 List[str].
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 List[str].
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 List[str].
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 List[str].
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 List[str].
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 List[str].
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 List[str].
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 List[str].
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 List[str].
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 : List[str]
368
+ FaceLabelList : list[str]
369
369
  GrowOn : str
370
- EdgeLabelList : List[str]
371
- EdgeZoneList : List[str]
372
- ShellBLAdvancedOptions : Dict[str, Any]
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 : 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]
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 : List[str]
406
- CompleteBlLabelList : List[str]
407
- CompleteBLZoneList : List[str]
408
- CompleteBLRegionList : List[str]
409
- CompleteZoneSelectionList : List[str]
410
- CompleteLabelSelectionList : List[str]
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 : 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]
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 : List[str]
466
- TopologyList : List[str]
465
+ BoundaryFaceZoneList : list[str]
466
+ TopologyList : list[str]
467
467
  Merge : str
468
- ZoneLocation : List[str]
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 : List[str]
485
- LabelSelectionList : List[str]
486
- ZoneSelectionList : List[str]
487
- ZoneLocation : List[str]
488
- EdgeSelectionList : List[str]
489
- LocalSizeControlParameters : Dict[str, Any]
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 : List[str]
492
- CompleteLabelSelectionList : List[str]
493
- CompleteObjectSelectionList : List[str]
494
- CompleteEdgeSelectionList : List[str]
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 : List[str]
525
- BOIFaceZoneList : List[str]
526
- EdgeLabelList : List[str]
527
- EdgeZoneList : List[str]
528
- TopologyList : List[str]
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 : List[str]
532
- CompleteFaceZoneList : List[str]
533
- CompleteFaceLabelList : List[str]
534
- CompleteEdgeLabelList : List[str]
535
- CompleteTopologyList : List[str]
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 : List[str]
556
+ RegionScope : list[str]
557
557
  SourceMethod : str
558
558
  ParallelSelection : bool
559
559
  ShowEdgeBiasing : str
560
- LabelSourceList : List[str]
561
- ZoneSourceList : List[str]
562
- ZoneLocation : List[str]
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 : List[str]
572
- EdgeLabelList : List[str]
573
- CFDSurfaceMeshControls : Dict[str, Any]
574
- CompleteRegionScope : List[str]
575
- CompleteEdgeScope : List[str]
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 : List[str]
600
- FaceZoneList : List[str]
599
+ FaceLabelList : list[str]
600
+ FaceZoneList : list[str]
601
601
  EdgeSelectionType : str
602
- EdgeLabelList : List[str]
603
- EdgeZoneList : List[str]
604
- ShellBLAdvancedOptions : Dict[str, Any]
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 : List[str]
621
- ZoneLocation : List[str]
622
- ObjectSelectionList : List[str]
623
- LabelSelectionList : List[str]
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 : List[str]
643
+ RegionScope : list[str]
644
644
  SelectSourceBy : str
645
645
  ParallelSource : bool
646
- LabelSourceList : List[str]
647
- ZoneSourceList : List[str]
646
+ LabelSourceList : list[str]
647
+ ZoneSourceList : list[str]
648
648
  SelectTargetBy : str
649
649
  ParallelTarget : bool
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]
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 : List[str]
677
- FaceZoneList : List[str]
678
- NewFaces : List[int]
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 : List[str]
697
- ZoneSelectionList : List[str]
698
- TopologyList : List[str]
699
- CreatePatchPreferences : Dict[str, Any]
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 : List[str]
704
- ZoneLocation : List[str]
705
- CompleteZoneSelectionList : List[str]
706
- CompleteLabelSelectionList : List[str]
707
- CompleteTopologyList : List[str]
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 : Dict[str, Any]
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 : 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]
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 : 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]
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 : 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]
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 : List[str]
892
- ZoneLocation : List[str]
893
- ObjectSelectionList : List[str]
894
- LabelSelectionList : List[str]
895
- GroundZoneSelectionList : List[str]
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 : 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]
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 : Dict[str, Any]
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 : List[str]
946
- ZoneLocation : List[str]
947
- LabelSelectionList : List[str]
948
- ObjectSelectionList : List[str]
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 : 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]
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 : List[str]
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 : List[float]
1037
- P2 : List[float]
1038
- P3 : List[float]
1039
- P4 : List[float]
1040
- NonRectangularParameters : Dict[str, Any]
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 : List[int]
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 : List[str]
1098
- RegionSelectionSingle : List[str]
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 : Dict[str, Any]
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 : List[str]
1157
- GeomObjectSelectionList : List[str]
1158
- ZoneSelectionList : List[str]
1159
- ZoneLocation : List[str]
1160
- LabelSelectionList : List[str]
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 : List[str]
1165
- CompleteGeomObjectSelectionList : List[str]
1166
- NonExtractedObjects : List[str]
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 : List[str]
1186
- TopologyList : List[str]
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 : Dict[str, Any]
1192
- ZoneLocation : List[str]
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 : Dict[str, Any]
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 : List[str]
1234
- FaceZoneList : List[str]
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 : List[str]
1285
+ RegionScope : list[str]
1286
1286
  NonConformal : str
1287
1287
  SizeFunctionScaleFactor : float
1288
1288
  MeshingStrategy : str
1289
- CFDSurfaceMeshControls : Dict[str, Any]
1290
- CompleteRegionScope : List[str]
1291
- CellZoneList : List[str]
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 : Dict[str, Any]
1338
+ CFDSurfaceMeshControls : dict[str, Any]
1339
1339
  SeparationRequired : str
1340
1340
  SeparationAngle : float
1341
1341
  RemeshSelectionType : str
1342
- RemeshZoneList : List[str]
1343
- RemeshLabelList : List[str]
1344
- SurfaceMeshPreferences : Dict[str, Any]
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 : List[str]
1352
+ OriginalZones : list[str]
1353
1353
  ExecuteShareTopology : str
1354
- CADFacetingControls : Dict[str, Any]
1355
- CadImportOptions : Dict[str, Any]
1356
- ShareTopologyPreferences : Dict[str, Any]
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 : 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]
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 : Dict[str, Any]
1417
+ VolumeFillControls : dict[str, Any]
1418
1418
  RegionBasedPreferences : bool
1419
1419
  ReMergeZones : str
1420
1420
  ParallelMeshing : bool
1421
- VolumeMeshPreferences : Dict[str, Any]
1422
- PrismPreferences : Dict[str, Any]
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 : List[str]
1432
+ BodyLabelList : list[str]
1433
1433
  PrismLayers : bool
1434
1434
  QuadTetTransition : str
1435
1435
  MergeCellZones : bool
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]
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 : List[str]
1467
- SetupInternalTypes : List[str]
1468
- OldZoneList : List[str]
1469
- OldZoneTypeList : List[str]
1470
- RegionList : List[str]
1471
- EdgeLabels : List[str]
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 : Dict[str, Any]
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 : 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]
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 : Dict[str, Any]
1500
- Axis : Dict[str, Any]
1501
- Rotation : Dict[str, Any]
1502
- CylinderObject : Dict[str, Any]
1503
- BoundingBoxObject : Dict[str, Any]
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 : List[str]
1520
- ZoneSelectionList : List[str]
1521
- ZoneLocation : List[str]
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 : List[str]
1541
+ ObjectSelectionList : list[str]
1542
1542
  EnableGridPriority : bool
1543
1543
  DonorPriorityMethod : str
1544
1544
  OverlapBoundaries : str
1545
1545
  CheckOversetInterfaceIntersection : str
1546
- RegionNameList : List[str]
1547
- RegionSizeList : List[str]
1548
- OldRegionNameList : List[str]
1549
- OldRegionSizeList : List[str]
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 : List[str]
1570
- ZoneLocation : List[str]
1571
- LabelSelectionList : List[str]
1572
- ObjectSelectionList : List[str]
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 : List[str]
1597
+ ImportedObjects : list[str]
1598
1598
  LengthUnit : str
1599
- CadImportOptions : Dict[str, Any]
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 : Dict[str, Any]
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 : Dict[str, Any]
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 : Dict[str, Any]
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 : Dict[str, Any]
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 : List[str]
1674
+ ObjectList : list[str]
1675
1675
  AutoPopulateVector : str
1676
- PatternVector : Dict[str, Any]
1676
+ PatternVector : dict[str, Any]
1677
1677
  Pitch : float
1678
1678
  NumberOfUnits : int
1679
1679
  CheckOverlappingFaces : str
1680
- BatteryModelingOptions : Dict[str, Any]
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 : Dict[str, Any]
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 : List[str]
1718
- LabelSelectionList : List[str]
1719
- ZoneSelectionList : List[str]
1720
- ZoneLocation : List[str]
1721
- EdgeSelectionList : List[str]
1722
- LocalSizeControlParameters : Dict[str, Any]
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 : List[str]
1725
- CompleteLabelSelectionList : List[str]
1726
- CompleteObjectSelectionList : List[str]
1727
- CompleteEdgeSelectionList : List[str]
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 : List[str]
1749
- ManageFaceZoneList : List[str]
1750
- ManageCellZoneList : List[str]
1751
- BodyLabelList : List[str]
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 : List[str]
1759
- CompleteZoneList : List[str]
1760
- CompleteLabelList : List[str]
1761
- ZoneLocation : List[str]
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 : List[str]
1795
- RemeshFaceLabelList : List[str]
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 : Dict[str, Any]
1803
- RemeshPreferences : Dict[str, Any]
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 : Dict[str, Any]
1834
+ Refaceting : dict[str, Any]
1835
1835
  IgnoreSolidNames : bool
1836
1836
  IgnoreSolidNamesAppend : bool
1837
- Options : Dict[str, Any]
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 : List[str]
1858
- NewObjectSelectionList : List[str]
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 : Dict[str, Any]
1928
- LCSVector : Dict[str, Any]
1929
- TransShift : Dict[str, Any]
1927
+ LCSOrigin : dict[str, Any]
1928
+ LCSVector : dict[str, Any]
1929
+ TransShift : dict[str, Any]
1930
1930
  SelectionType : str
1931
- ZoneList : List[str]
1932
- LabelList : List[str]
1933
- TopologyList : List[str]
1931
+ ZoneList : list[str]
1932
+ LabelList : list[str]
1933
+ TopologyList : list[str]
1934
1934
  RemeshBoundariesOption : str
1935
- ZoneLocation : List[str]
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 : List[str]
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 : List[str]
1978
- ShareTopologyPreferences : Dict[str, Any]
1979
- SMImprovePreferences : Dict[str, Any]
1980
- SurfaceMeshPreferences : Dict[str, Any]
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 : Dict[str, Any]
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 : List[str]
2031
- CellZoneList : List[str]
2032
- LCSOrigin : Dict[str, Any]
2033
- LCSVector : Dict[str, Any]
2034
- TransShift : Dict[str, Any]
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 : 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]
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 : 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]
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 : 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]
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 : 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]
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
  -------