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
@@ -334,7 +334,7 @@ class Root(PyMenu):
334
334
 
335
335
  Parameters
336
336
  ----------
337
- FileName : List[str]
337
+ FileName : list[str]
338
338
  ChangeDirectory : bool
339
339
 
340
340
  Returns
@@ -452,85 +452,85 @@ class Root(PyMenu):
452
452
 
453
453
  class AllOversetNameList(PyTextual):
454
454
  """
455
- Parameter AllOversetNameList of value type List[str].
455
+ Parameter AllOversetNameList of value type list[str].
456
456
  """
457
457
  pass
458
458
 
459
459
  class AllOversetSizeList(PyTextual):
460
460
  """
461
- Parameter AllOversetSizeList of value type List[str].
461
+ Parameter AllOversetSizeList of value type list[str].
462
462
  """
463
463
  pass
464
464
 
465
465
  class AllOversetTypeList(PyTextual):
466
466
  """
467
- Parameter AllOversetTypeList of value type List[str].
467
+ Parameter AllOversetTypeList of value type list[str].
468
468
  """
469
469
  pass
470
470
 
471
471
  class AllOversetVolumeFillList(PyTextual):
472
472
  """
473
- Parameter AllOversetVolumeFillList of value type List[str].
473
+ Parameter AllOversetVolumeFillList of value type list[str].
474
474
  """
475
475
  pass
476
476
 
477
477
  class AllRegionFilterCategories(PyTextual):
478
478
  """
479
- Parameter AllRegionFilterCategories of value type List[str].
479
+ Parameter AllRegionFilterCategories of value type list[str].
480
480
  """
481
481
  pass
482
482
 
483
483
  class AllRegionLeakageSizeList(PyTextual):
484
484
  """
485
- Parameter AllRegionLeakageSizeList of value type List[str].
485
+ Parameter AllRegionLeakageSizeList of value type list[str].
486
486
  """
487
487
  pass
488
488
 
489
489
  class AllRegionLinkedConstructionSurfaceList(PyTextual):
490
490
  """
491
- Parameter AllRegionLinkedConstructionSurfaceList of value type List[str].
491
+ Parameter AllRegionLinkedConstructionSurfaceList of value type list[str].
492
492
  """
493
493
  pass
494
494
 
495
495
  class AllRegionMeshMethodList(PyTextual):
496
496
  """
497
- Parameter AllRegionMeshMethodList of value type List[str].
497
+ Parameter AllRegionMeshMethodList of value type list[str].
498
498
  """
499
499
  pass
500
500
 
501
501
  class AllRegionNameList(PyTextual):
502
502
  """
503
- Parameter AllRegionNameList of value type List[str].
503
+ Parameter AllRegionNameList of value type list[str].
504
504
  """
505
505
  pass
506
506
 
507
507
  class AllRegionOversetComponenList(PyTextual):
508
508
  """
509
- Parameter AllRegionOversetComponenList of value type List[str].
509
+ Parameter AllRegionOversetComponenList of value type list[str].
510
510
  """
511
511
  pass
512
512
 
513
513
  class AllRegionSizeList(PyTextual):
514
514
  """
515
- Parameter AllRegionSizeList of value type List[str].
515
+ Parameter AllRegionSizeList of value type list[str].
516
516
  """
517
517
  pass
518
518
 
519
519
  class AllRegionSourceList(PyTextual):
520
520
  """
521
- Parameter AllRegionSourceList of value type List[str].
521
+ Parameter AllRegionSourceList of value type list[str].
522
522
  """
523
523
  pass
524
524
 
525
525
  class AllRegionTypeList(PyTextual):
526
526
  """
527
- Parameter AllRegionTypeList of value type List[str].
527
+ Parameter AllRegionTypeList of value type list[str].
528
528
  """
529
529
  pass
530
530
 
531
531
  class AllRegionVolumeFillList(PyTextual):
532
532
  """
533
- Parameter AllRegionVolumeFillList of value type List[str].
533
+ Parameter AllRegionVolumeFillList of value type list[str].
534
534
  """
535
535
  pass
536
536
 
@@ -687,8 +687,8 @@ class Root(PyMenu):
687
687
  DrawCellLayer : bool
688
688
  FreezeCellLayer : bool
689
689
  FlipClippingPlane : bool
690
- PointCoordinates : List[float]
691
- PlaneNormal : List[float]
690
+ PointCoordinates : list[float]
691
+ PlaneNormal : list[float]
692
692
  SliderPosition : int
693
693
  CutDirection : str
694
694
 
@@ -737,11 +737,11 @@ class Root(PyMenu):
737
737
  FirstLayerHeight : float
738
738
  MaxLayerHeight : float
739
739
  Addin : str
740
- FaceLabelList : List[str]
740
+ FaceLabelList : list[str]
741
741
  GrowOn : str
742
- EdgeLabelList : List[str]
743
- EdgeZoneList : List[str]
744
- ShellBLAdvancedOptions : Dict[str, Any]
742
+ EdgeLabelList : list[str]
743
+ EdgeZoneList : list[str]
744
+ ShellBLAdvancedOptions : dict[str, Any]
745
745
 
746
746
  Returns
747
747
  -------
@@ -765,21 +765,21 @@ class Root(PyMenu):
765
765
  Rate : float
766
766
  FirstHeight : float
767
767
  MaxLayerHeight : float
768
- FaceScope : Dict[str, Any]
769
- RegionScope : List[str]
770
- BlLabelList : List[str]
771
- ZoneSelectionList : List[str]
772
- ZoneLocation : List[str]
773
- LocalPrismPreferences : Dict[str, Any]
774
- BLZoneList : List[str]
775
- BLRegionList : List[str]
768
+ FaceScope : dict[str, Any]
769
+ RegionScope : list[str]
770
+ BlLabelList : list[str]
771
+ ZoneSelectionList : list[str]
772
+ ZoneLocation : list[str]
773
+ LocalPrismPreferences : dict[str, Any]
774
+ BLZoneList : list[str]
775
+ BLRegionList : list[str]
776
776
  InvalidAdded : str
777
- CompleteRegionScope : List[str]
778
- CompleteBlLabelList : List[str]
779
- CompleteBLZoneList : List[str]
780
- CompleteBLRegionList : List[str]
781
- CompleteZoneSelectionList : List[str]
782
- CompleteLabelSelectionList : List[str]
777
+ CompleteRegionScope : list[str]
778
+ CompleteBlLabelList : list[str]
779
+ CompleteBLZoneList : list[str]
780
+ CompleteBLRegionList : list[str]
781
+ CompleteZoneSelectionList : list[str]
782
+ CompleteLabelSelectionList : list[str]
783
783
 
784
784
  Returns
785
785
  -------
@@ -803,20 +803,20 @@ class Root(PyMenu):
803
803
  Rate : float
804
804
  FirstHeight : float
805
805
  MaxLayerHeight : float
806
- FaceScope : Dict[str, Any]
807
- RegionScope : List[str]
808
- BlLabelList : List[str]
809
- ZoneSelectionList : List[str]
810
- ZoneLocation : List[str]
811
- LocalPrismPreferences : Dict[str, Any]
812
- BLZoneList : List[str]
813
- BLRegionList : List[str]
814
- CompleteRegionScope : List[str]
815
- CompleteBlLabelList : List[str]
816
- CompleteBLZoneList : List[str]
817
- CompleteBLRegionList : List[str]
818
- CompleteZoneSelectionList : List[str]
819
- CompleteLabelSelectionList : List[str]
806
+ FaceScope : dict[str, Any]
807
+ RegionScope : list[str]
808
+ BlLabelList : list[str]
809
+ ZoneSelectionList : list[str]
810
+ ZoneLocation : list[str]
811
+ LocalPrismPreferences : dict[str, Any]
812
+ BLZoneList : list[str]
813
+ BLRegionList : list[str]
814
+ CompleteRegionScope : list[str]
815
+ CompleteBlLabelList : list[str]
816
+ CompleteBLZoneList : list[str]
817
+ CompleteBLRegionList : list[str]
818
+ CompleteZoneSelectionList : list[str]
819
+ CompleteLabelSelectionList : list[str]
820
820
 
821
821
  Returns
822
822
  -------
@@ -834,10 +834,10 @@ class Root(PyMenu):
834
834
  NewBoundaryLabelName : str
835
835
  NewBoundaryType : str
836
836
  SelectionType : str
837
- BoundaryFaceZoneList : List[str]
838
- TopologyList : List[str]
837
+ BoundaryFaceZoneList : list[str]
838
+ TopologyList : list[str]
839
839
  Merge : str
840
- ZoneLocation : List[str]
840
+ ZoneLocation : list[str]
841
841
 
842
842
  Returns
843
843
  -------
@@ -853,17 +853,17 @@ class Root(PyMenu):
853
853
  ----------
854
854
  LocalSettingsName : str
855
855
  SelectionType : str
856
- ObjectSelectionList : List[str]
857
- LabelSelectionList : List[str]
858
- ZoneSelectionList : List[str]
859
- ZoneLocation : List[str]
860
- EdgeSelectionList : List[str]
861
- LocalSizeControlParameters : Dict[str, Any]
856
+ ObjectSelectionList : list[str]
857
+ LabelSelectionList : list[str]
858
+ ZoneSelectionList : list[str]
859
+ ZoneLocation : list[str]
860
+ EdgeSelectionList : list[str]
861
+ LocalSizeControlParameters : dict[str, Any]
862
862
  ValueChanged : str
863
- CompleteZoneSelectionList : List[str]
864
- CompleteLabelSelectionList : List[str]
865
- CompleteObjectSelectionList : List[str]
866
- CompleteEdgeSelectionList : List[str]
863
+ CompleteZoneSelectionList : list[str]
864
+ CompleteLabelSelectionList : list[str]
865
+ CompleteObjectSelectionList : list[str]
866
+ CompleteEdgeSelectionList : list[str]
867
867
 
868
868
  Returns
869
869
  -------
@@ -895,20 +895,20 @@ class Root(PyMenu):
895
895
  BOIScopeTo : str
896
896
  IgnoreOrientation : str
897
897
  BOIZoneorLabel : str
898
- BOIFaceLabelList : List[str]
899
- BOIFaceZoneList : List[str]
900
- EdgeLabelList : List[str]
901
- EdgeZoneList : List[str]
902
- TopologyList : List[str]
898
+ BOIFaceLabelList : list[str]
899
+ BOIFaceZoneList : list[str]
900
+ EdgeLabelList : list[str]
901
+ EdgeZoneList : list[str]
902
+ TopologyList : list[str]
903
903
  ReverseEdgeZoneOrientation : bool
904
- ReverseEdgeZoneList : List[str]
904
+ ReverseEdgeZoneList : list[str]
905
905
  BOIPatchingtoggle : bool
906
906
  DrawSizeControl : bool
907
- ZoneLocation : List[str]
908
- CompleteFaceZoneList : List[str]
909
- CompleteFaceLabelList : List[str]
910
- CompleteEdgeLabelList : List[str]
911
- CompleteTopologyList : List[str]
907
+ ZoneLocation : list[str]
908
+ CompleteFaceZoneList : list[str]
909
+ CompleteFaceLabelList : list[str]
910
+ CompleteEdgeLabelList : list[str]
911
+ CompleteTopologyList : list[str]
912
912
  PrimeSizeControlId : int
913
913
 
914
914
  Returns
@@ -929,14 +929,14 @@ class Root(PyMenu):
929
929
  FillWith : str
930
930
  UseSweepSize : str
931
931
  MaxSweepSize : float
932
- RegionScope : List[str]
933
- TopologyList : List[str]
932
+ RegionScope : list[str]
933
+ TopologyList : list[str]
934
934
  SourceMethod : str
935
935
  ParallelSelection : bool
936
936
  ShowEdgeBiasing : str
937
- LabelSourceList : List[str]
938
- ZoneSourceList : List[str]
939
- ZoneLocation : List[str]
937
+ LabelSourceList : list[str]
938
+ ZoneSourceList : list[str]
939
+ ZoneLocation : list[str]
940
940
  AssignSizeUsing : str
941
941
  Intervals : int
942
942
  Size : float
@@ -945,11 +945,11 @@ class Root(PyMenu):
945
945
  GrowthMethod : str
946
946
  GrowthRate : float
947
947
  BiasFactor : float
948
- EdgeLabelSelection : List[str]
949
- EdgeLabelList : List[str]
950
- CFDSurfaceMeshControls : Dict[str, Any]
951
- CompleteRegionScope : List[str]
952
- CompleteEdgeScope : List[str]
948
+ EdgeLabelSelection : list[str]
949
+ EdgeLabelList : list[str]
950
+ CFDSurfaceMeshControls : dict[str, Any]
951
+ CompleteRegionScope : list[str]
952
+ CompleteEdgeScope : list[str]
953
953
 
954
954
  Returns
955
955
  -------
@@ -973,12 +973,12 @@ class Root(PyMenu):
973
973
  FirstLayerHeight : float
974
974
  MaxLayerHeight : float
975
975
  GrowOn : str
976
- FaceLabelList : List[str]
977
- FaceZoneList : List[str]
976
+ FaceLabelList : list[str]
977
+ FaceZoneList : list[str]
978
978
  EdgeSelectionType : str
979
- EdgeLabelList : List[str]
980
- EdgeZoneList : List[str]
981
- ShellBLAdvancedOptions : Dict[str, Any]
979
+ EdgeLabelList : list[str]
980
+ EdgeZoneList : list[str]
981
+ ShellBLAdvancedOptions : dict[str, Any]
982
982
 
983
983
  Returns
984
984
  -------
@@ -994,10 +994,10 @@ class Root(PyMenu):
994
994
  ----------
995
995
  ZeroThicknessName : str
996
996
  SelectionType : str
997
- ZoneSelectionList : List[str]
998
- ZoneLocation : List[str]
999
- ObjectSelectionList : List[str]
1000
- LabelSelectionList : List[str]
997
+ ZoneSelectionList : list[str]
998
+ ZoneLocation : list[str]
999
+ ObjectSelectionList : list[str]
1000
+ LabelSelectionList : list[str]
1001
1001
  Distance : float
1002
1002
 
1003
1003
  Returns
@@ -1022,24 +1022,24 @@ class Root(PyMenu):
1022
1022
  SideImprints : bool
1023
1023
  StackedPlates : bool
1024
1024
  AutoControlCreation : bool
1025
- RegionScope : List[str]
1025
+ RegionScope : list[str]
1026
1026
  SelectSourceBy : str
1027
1027
  ParallelSource : bool
1028
- LabelSourceList : List[str]
1029
- ZoneSourceList : List[str]
1028
+ LabelSourceList : list[str]
1029
+ ZoneSourceList : list[str]
1030
1030
  SelectTargetBy : str
1031
1031
  ParallelTarget : bool
1032
- LabelTargetList : List[str]
1033
- ZoneTargetList : List[str]
1034
- ThinVolRegs : List[str]
1035
- CompleteRegionScope : List[str]
1036
- CompleteLabelSourceList : List[str]
1037
- CompleteZoneSourceList : List[str]
1038
- CompleteLabelTargetList : List[str]
1039
- CompleteZoneTargetList : List[str]
1040
- ThinVolumePreferences : Dict[str, Any]
1041
- ZoneLocation : List[str]
1042
- ZoneLocation2 : List[str]
1032
+ LabelTargetList : list[str]
1033
+ ZoneTargetList : list[str]
1034
+ ThinVolRegs : list[str]
1035
+ CompleteRegionScope : list[str]
1036
+ CompleteLabelSourceList : list[str]
1037
+ CompleteZoneSourceList : list[str]
1038
+ CompleteLabelTargetList : list[str]
1039
+ CompleteZoneTargetList : list[str]
1040
+ ThinVolumePreferences : dict[str, Any]
1041
+ ZoneLocation : list[str]
1042
+ ZoneLocation2 : list[str]
1043
1043
 
1044
1044
  Returns
1045
1045
  -------
@@ -1056,9 +1056,9 @@ class Root(PyMenu):
1056
1056
  AddChild : str
1057
1057
  ControlName : str
1058
1058
  SelectionType : str
1059
- FaceLabelList : List[str]
1060
- FaceZoneList : List[str]
1061
- NewFaces : List[int]
1059
+ FaceLabelList : list[str]
1060
+ FaceZoneList : list[str]
1061
+ NewFaces : list[int]
1062
1062
 
1063
1063
  Returns
1064
1064
  -------
@@ -1076,18 +1076,18 @@ class Root(PyMenu):
1076
1076
  ZoneType : str
1077
1077
  PatchType : str
1078
1078
  SelectionType : str
1079
- LabelSelectionList : List[str]
1080
- ZoneSelectionList : List[str]
1081
- TopologyList : List[str]
1082
- CreatePatchPreferences : Dict[str, Any]
1079
+ LabelSelectionList : list[str]
1080
+ ZoneSelectionList : list[str]
1081
+ TopologyList : list[str]
1082
+ CreatePatchPreferences : dict[str, Any]
1083
1083
  ObjectAssociation : str
1084
1084
  NewObjectName : str
1085
1085
  PatchObjectName : str
1086
- CapLabels : List[str]
1087
- ZoneLocation : List[str]
1088
- CompleteZoneSelectionList : List[str]
1089
- CompleteLabelSelectionList : List[str]
1090
- CompleteTopologyList : List[str]
1086
+ CapLabels : list[str]
1087
+ ZoneLocation : list[str]
1088
+ CompleteZoneSelectionList : list[str]
1089
+ CompleteLabelSelectionList : list[str]
1090
+ CompleteTopologyList : list[str]
1091
1091
 
1092
1092
  Returns
1093
1093
  -------
@@ -1142,7 +1142,7 @@ class Root(PyMenu):
1142
1142
  GlobalMin : float
1143
1143
  GlobalMax : float
1144
1144
  GlobalGrowthRate : float
1145
- MeshControlOptions : Dict[str, Any]
1145
+ MeshControlOptions : dict[str, Any]
1146
1146
 
1147
1147
  Returns
1148
1148
  -------
@@ -1221,17 +1221,17 @@ class Root(PyMenu):
1221
1221
  BOIMaxSize : float
1222
1222
  BOISizeName : str
1223
1223
  SelectionType : str
1224
- ZoneSelectionList : List[str]
1225
- ZoneLocation : List[str]
1226
- LabelSelectionList : List[str]
1227
- ObjectSelectionList : List[str]
1228
- ZoneSelectionSingle : List[str]
1229
- ObjectSelectionSingle : List[str]
1230
- TopologyList : List[str]
1231
- BoundingBoxObject : Dict[str, Any]
1232
- OffsetObject : Dict[str, Any]
1233
- CylinderObject : Dict[str, Any]
1234
- Axis : Dict[str, Any]
1224
+ ZoneSelectionList : list[str]
1225
+ ZoneLocation : list[str]
1226
+ LabelSelectionList : list[str]
1227
+ ObjectSelectionList : list[str]
1228
+ ZoneSelectionSingle : list[str]
1229
+ ObjectSelectionSingle : list[str]
1230
+ TopologyList : list[str]
1231
+ BoundingBoxObject : dict[str, Any]
1232
+ OffsetObject : dict[str, Any]
1233
+ CylinderObject : dict[str, Any]
1234
+ Axis : dict[str, Any]
1235
1235
  VolumeFill : str
1236
1236
  CylinderMethod : str
1237
1237
  CylinderLength : float
@@ -1253,17 +1253,17 @@ class Root(PyMenu):
1253
1253
  BOIMaxSize : float
1254
1254
  BOISizeName : str
1255
1255
  SelectionType : str
1256
- ZoneSelectionList : List[str]
1257
- ZoneLocation : List[str]
1258
- LabelSelectionList : List[str]
1259
- ObjectSelectionList : List[str]
1260
- ZoneSelectionSingle : List[str]
1261
- ObjectSelectionSingle : List[str]
1262
- TopologyList : List[str]
1263
- BoundingBoxObject : Dict[str, Any]
1264
- OffsetObject : Dict[str, Any]
1265
- CylinderObject : Dict[str, Any]
1266
- Axis : Dict[str, Any]
1256
+ ZoneSelectionList : list[str]
1257
+ ZoneLocation : list[str]
1258
+ LabelSelectionList : list[str]
1259
+ ObjectSelectionList : list[str]
1260
+ ZoneSelectionSingle : list[str]
1261
+ ObjectSelectionSingle : list[str]
1262
+ TopologyList : list[str]
1263
+ BoundingBoxObject : dict[str, Any]
1264
+ OffsetObject : dict[str, Any]
1265
+ CylinderObject : dict[str, Any]
1266
+ Axis : dict[str, Any]
1267
1267
  VolumeFill : str
1268
1268
  CylinderMethod : str
1269
1269
  CylinderLength : float
@@ -1285,17 +1285,17 @@ class Root(PyMenu):
1285
1285
  BOIMaxSize : float
1286
1286
  BOISizeName : str
1287
1287
  SelectionType : str
1288
- ZoneSelectionList : List[str]
1289
- ZoneLocation : List[str]
1290
- LabelSelectionList : List[str]
1291
- ObjectSelectionList : List[str]
1292
- ZoneSelectionSingle : List[str]
1293
- ObjectSelectionSingle : List[str]
1294
- TopologyList : List[str]
1295
- BoundingBoxObject : Dict[str, Any]
1296
- OffsetObject : Dict[str, Any]
1297
- CylinderObject : Dict[str, Any]
1298
- Axis : Dict[str, Any]
1288
+ ZoneSelectionList : list[str]
1289
+ ZoneLocation : list[str]
1290
+ LabelSelectionList : list[str]
1291
+ ObjectSelectionList : list[str]
1292
+ ZoneSelectionSingle : list[str]
1293
+ ObjectSelectionSingle : list[str]
1294
+ TopologyList : list[str]
1295
+ BoundingBoxObject : dict[str, Any]
1296
+ OffsetObject : dict[str, Any]
1297
+ CylinderObject : dict[str, Any]
1298
+ Axis : dict[str, Any]
1299
1299
  VolumeFill : str
1300
1300
  CylinderMethod : str
1301
1301
  CylinderLength : float
@@ -1314,11 +1314,11 @@ class Root(PyMenu):
1314
1314
  ----------
1315
1315
  ContactPatchName : str
1316
1316
  SelectionType : str
1317
- ZoneSelectionList : List[str]
1318
- ZoneLocation : List[str]
1319
- ObjectSelectionList : List[str]
1320
- LabelSelectionList : List[str]
1321
- GroundZoneSelectionList : List[str]
1317
+ ZoneSelectionList : list[str]
1318
+ ZoneLocation : list[str]
1319
+ ObjectSelectionList : list[str]
1320
+ LabelSelectionList : list[str]
1321
+ GroundZoneSelectionList : list[str]
1322
1322
  Distance : float
1323
1323
  ContactPatchDefeaturingSize : float
1324
1324
  FeatureAngle : float
@@ -1341,15 +1341,15 @@ class Root(PyMenu):
1341
1341
  CreationMethod : str
1342
1342
  ExtractionMethod : str
1343
1343
  SelectionType : str
1344
- ObjectSelectionList : List[str]
1345
- ZoneSelectionList : List[str]
1346
- ZoneLocation : List[str]
1347
- LabelSelectionList : List[str]
1348
- ObjectSelectionSingle : List[str]
1349
- ZoneSelectionSingle : List[str]
1350
- LabelSelectionSingle : List[str]
1344
+ ObjectSelectionList : list[str]
1345
+ ZoneSelectionList : list[str]
1346
+ ZoneLocation : list[str]
1347
+ LabelSelectionList : list[str]
1348
+ ObjectSelectionSingle : list[str]
1349
+ ZoneSelectionSingle : list[str]
1350
+ LabelSelectionSingle : list[str]
1351
1351
  OriginalObjectName : str
1352
- BoundingBoxObject : Dict[str, Any]
1352
+ BoundingBoxObject : dict[str, Any]
1353
1353
 
1354
1354
  Returns
1355
1355
  -------
@@ -1368,10 +1368,10 @@ class Root(PyMenu):
1368
1368
  GapSizeRatio : float
1369
1369
  GapSize : float
1370
1370
  SelectionType : str
1371
- ZoneSelectionList : List[str]
1372
- ZoneLocation : List[str]
1373
- LabelSelectionList : List[str]
1374
- ObjectSelectionList : List[str]
1371
+ ZoneSelectionList : list[str]
1372
+ ZoneLocation : list[str]
1373
+ LabelSelectionList : list[str]
1374
+ ObjectSelectionList : list[str]
1375
1375
  GapCoverBetweenZones : str
1376
1376
  GapCoverRefineFactor : float
1377
1377
  GapCoverRefineFactorAtGap : float
@@ -1397,17 +1397,17 @@ class Root(PyMenu):
1397
1397
  BOIMaxSize : float
1398
1398
  BOISizeName : str
1399
1399
  SelectionType : str
1400
- ZoneSelectionList : List[str]
1401
- ZoneLocation : List[str]
1402
- LabelSelectionList : List[str]
1403
- ObjectSelectionList : List[str]
1404
- ZoneSelectionSingle : List[str]
1405
- ObjectSelectionSingle : List[str]
1406
- TopologyList : List[str]
1407
- BoundingBoxObject : Dict[str, Any]
1408
- OffsetObject : Dict[str, Any]
1409
- CylinderObject : Dict[str, Any]
1410
- Axis : Dict[str, Any]
1400
+ ZoneSelectionList : list[str]
1401
+ ZoneLocation : list[str]
1402
+ LabelSelectionList : list[str]
1403
+ ObjectSelectionList : list[str]
1404
+ ZoneSelectionSingle : list[str]
1405
+ ObjectSelectionSingle : list[str]
1406
+ TopologyList : list[str]
1407
+ BoundingBoxObject : dict[str, Any]
1408
+ OffsetObject : dict[str, Any]
1409
+ CylinderObject : dict[str, Any]
1410
+ Axis : dict[str, Any]
1411
1411
  VolumeFill : str
1412
1412
  CylinderMethod : str
1413
1413
  CylinderLength : float
@@ -1440,7 +1440,7 @@ class Root(PyMenu):
1440
1440
  Parameters
1441
1441
  ----------
1442
1442
  OversetInterfacesName : str
1443
- ObjectSelectionList : List[str]
1443
+ ObjectSelectionList : list[str]
1444
1444
 
1445
1445
  Returns
1446
1446
  -------
@@ -1463,11 +1463,11 @@ class Root(PyMenu):
1463
1463
  CellSizeP1P3 : float
1464
1464
  CellSizeP1P4 : float
1465
1465
  BufferSizeRatio : float
1466
- P1 : List[float]
1467
- P2 : List[float]
1468
- P3 : List[float]
1469
- P4 : List[float]
1470
- NonRectangularParameters : Dict[str, Any]
1466
+ P1 : list[float]
1467
+ P2 : list[float]
1468
+ P3 : list[float]
1469
+ P4 : list[float]
1470
+ NonRectangularParameters : dict[str, Any]
1471
1471
 
1472
1472
  Returns
1473
1473
  -------
@@ -1505,7 +1505,7 @@ class Root(PyMenu):
1505
1505
  CellsPerGap : float
1506
1506
  ScopeProximityTo : str
1507
1507
  Mesher : str
1508
- PrimeSizeControlIds : List[int]
1508
+ PrimeSizeControlIds : list[int]
1509
1509
  EnableMultiThreading : bool
1510
1510
  NumberOfMultiThreads : int
1511
1511
 
@@ -1524,8 +1524,8 @@ class Root(PyMenu):
1524
1524
  AddChild : str
1525
1525
  LeakageName : str
1526
1526
  SelectionType : str
1527
- DeadRegionsList : List[str]
1528
- RegionSelectionSingle : List[str]
1527
+ DeadRegionsList : list[str]
1528
+ RegionSelectionSingle : list[str]
1529
1529
  DeadRegionsSize : float
1530
1530
  PlaneClippingValue : int
1531
1531
  PlaneDirection : str
@@ -1548,8 +1548,8 @@ class Root(PyMenu):
1548
1548
  AddEnclosure : str
1549
1549
  CloseCaps : str
1550
1550
  LocalRefinementRegions : str
1551
- DescribeGeometryAndFlowOptions : Dict[str, Any]
1552
- AllTaskList : List[str]
1551
+ DescribeGeometryAndFlowOptions : dict[str, Any]
1552
+ AllTaskList : list[str]
1553
1553
 
1554
1554
  Returns
1555
1555
  -------
@@ -1584,17 +1584,17 @@ class Root(PyMenu):
1584
1584
  ExtractEdgesName : str
1585
1585
  ExtractMethodType : str
1586
1586
  SelectionType : str
1587
- ObjectSelectionList : List[str]
1588
- GeomObjectSelectionList : List[str]
1589
- ZoneSelectionList : List[str]
1590
- ZoneLocation : List[str]
1591
- LabelSelectionList : List[str]
1587
+ ObjectSelectionList : list[str]
1588
+ GeomObjectSelectionList : list[str]
1589
+ ZoneSelectionList : list[str]
1590
+ ZoneLocation : list[str]
1591
+ LabelSelectionList : list[str]
1592
1592
  FeatureAngleLocal : int
1593
1593
  IndividualCollective : str
1594
1594
  SharpAngle : int
1595
- CompleteObjectSelectionList : List[str]
1596
- CompleteGeomObjectSelectionList : List[str]
1597
- NonExtractedObjects : List[str]
1595
+ CompleteObjectSelectionList : list[str]
1596
+ CompleteGeomObjectSelectionList : list[str]
1597
+ NonExtractedObjects : list[str]
1598
1598
 
1599
1599
  Returns
1600
1600
  -------
@@ -1613,14 +1613,14 @@ class Root(PyMenu):
1613
1613
  SelectionType : str
1614
1614
  ExtendToPeriodicPair : bool
1615
1615
  ExtrudeNormalBased : bool
1616
- ExternalBoundaryZoneList : List[str]
1617
- TopologyList : List[str]
1616
+ ExternalBoundaryZoneList : list[str]
1617
+ TopologyList : list[str]
1618
1618
  TotalHeight : float
1619
1619
  FirstHeight : float
1620
1620
  NumberofLayers : int
1621
1621
  GrowthRate : float
1622
- VMExtrudePreferences : Dict[str, Any]
1623
- ZoneLocation : List[str]
1622
+ VMExtrudePreferences : dict[str, Any]
1623
+ ZoneLocation : list[str]
1624
1624
 
1625
1625
  Returns
1626
1626
  -------
@@ -1638,8 +1638,8 @@ class Root(PyMenu):
1638
1638
  ProjectOnGeometry : bool
1639
1639
  EnableMultiThreading : bool
1640
1640
  NumberOfMultiThreads : int
1641
- Prism2DPreferences : Dict[str, Any]
1642
- Surface2DPreferences : Dict[str, Any]
1641
+ Prism2DPreferences : dict[str, Any]
1642
+ Surface2DPreferences : dict[str, Any]
1643
1643
 
1644
1644
  Returns
1645
1645
  -------
@@ -1662,8 +1662,8 @@ class Root(PyMenu):
1662
1662
  SplitQuads : bool
1663
1663
  ProjectOnGeometry : bool
1664
1664
  SelectionType : str
1665
- FaceLabelList : List[str]
1666
- FaceZoneList : List[str]
1665
+ FaceLabelList : list[str]
1666
+ FaceZoneList : list[str]
1667
1667
 
1668
1668
  Returns
1669
1669
  -------
@@ -1715,16 +1715,16 @@ class Root(PyMenu):
1715
1715
  ----------
1716
1716
  OrthogonalQualityLimit : float
1717
1717
  SelectionType : str
1718
- RegionScope : List[str]
1718
+ RegionScope : list[str]
1719
1719
  NonConformal : str
1720
1720
  SizeFunctionScaleFactor : float
1721
1721
  MeshingStrategy : str
1722
1722
  ReMergeZones : str
1723
1723
  MergeBodyLabels : str
1724
- CFDSurfaceMeshControls : Dict[str, Any]
1725
- BodyLabelList : List[str]
1726
- CellZoneList : List[str]
1727
- CompleteRegionScope : List[str]
1724
+ CFDSurfaceMeshControls : dict[str, Any]
1725
+ BodyLabelList : list[str]
1726
+ CellZoneList : list[str]
1727
+ CompleteRegionScope : list[str]
1728
1728
 
1729
1729
  Returns
1730
1730
  -------
@@ -1771,13 +1771,13 @@ class Root(PyMenu):
1771
1771
 
1772
1772
  Parameters
1773
1773
  ----------
1774
- CFDSurfaceMeshControls : Dict[str, Any]
1774
+ CFDSurfaceMeshControls : dict[str, Any]
1775
1775
  SeparationRequired : str
1776
1776
  SeparationAngle : float
1777
1777
  RemeshSelectionType : str
1778
- RemeshZoneList : List[str]
1779
- RemeshLabelList : List[str]
1780
- SurfaceMeshPreferences : Dict[str, Any]
1778
+ RemeshZoneList : list[str]
1779
+ RemeshLabelList : list[str]
1780
+ SurfaceMeshPreferences : dict[str, Any]
1781
1781
  ImportType : str
1782
1782
  AppendMesh : bool
1783
1783
  CadFacetingFileName : str
@@ -1785,11 +1785,11 @@ class Root(PyMenu):
1785
1785
  Pattern : str
1786
1786
  LengthUnit : str
1787
1787
  TesselationMethod : str
1788
- OriginalZones : List[str]
1788
+ OriginalZones : list[str]
1789
1789
  ExecuteShareTopology : str
1790
- CADFacetingControls : Dict[str, Any]
1791
- CadImportOptions : Dict[str, Any]
1792
- ShareTopologyPreferences : Dict[str, Any]
1790
+ CADFacetingControls : dict[str, Any]
1791
+ CadImportOptions : dict[str, Any]
1792
+ ShareTopologyPreferences : dict[str, Any]
1793
1793
  PreviewSizeToggle : bool
1794
1794
 
1795
1795
  Returns
@@ -1809,15 +1809,15 @@ class Root(PyMenu):
1809
1809
  EnableParallel : bool
1810
1810
  SaveVolumeMesh : bool
1811
1811
  EditVolumeSettings : bool
1812
- RegionNameList : List[str]
1813
- RegionVolumeFillList : List[str]
1814
- RegionSizeList : List[str]
1815
- OldRegionNameList : List[str]
1816
- OldRegionVolumeFillList : List[str]
1817
- OldRegionSizeList : List[str]
1818
- AllRegionNameList : List[str]
1819
- AllRegionVolumeFillList : List[str]
1820
- AllRegionSizeList : List[str]
1812
+ RegionNameList : list[str]
1813
+ RegionVolumeFillList : list[str]
1814
+ RegionSizeList : list[str]
1815
+ OldRegionNameList : list[str]
1816
+ OldRegionVolumeFillList : list[str]
1817
+ OldRegionSizeList : list[str]
1818
+ AllRegionNameList : list[str]
1819
+ AllRegionVolumeFillList : list[str]
1820
+ AllRegionSizeList : list[str]
1821
1821
  AdvancedOptions : bool
1822
1822
  SpikeRemovalAngle : float
1823
1823
  DihedralMinAngle : float
@@ -1850,13 +1850,13 @@ class Root(PyMenu):
1850
1850
  MeshFluidRegions : bool
1851
1851
  MeshSolidRegions : bool
1852
1852
  SizingMethod : str
1853
- VolumeFillControls : Dict[str, Any]
1853
+ VolumeFillControls : dict[str, Any]
1854
1854
  RegionBasedPreferences : bool
1855
1855
  ReMergeZones : str
1856
1856
  ParallelMeshing : bool
1857
- VolumeMeshPreferences : Dict[str, Any]
1858
- PrismPreferences : Dict[str, Any]
1859
- GlobalThinVolumePreferences : Dict[str, Any]
1857
+ VolumeMeshPreferences : dict[str, Any]
1858
+ PrismPreferences : dict[str, Any]
1859
+ GlobalThinVolumePreferences : dict[str, Any]
1860
1860
  InvokePrimsControl : str
1861
1861
  OffsetMethodType : str
1862
1862
  NumberOfLayers : int
@@ -1866,20 +1866,20 @@ class Root(PyMenu):
1866
1866
  FirstHeight : float
1867
1867
  MeshObject : str
1868
1868
  MeshDeadRegions : bool
1869
- BodyLabelList : List[str]
1869
+ BodyLabelList : list[str]
1870
1870
  PrismLayers : bool
1871
1871
  QuadTetTransition : str
1872
1872
  MergeCellZones : bool
1873
- FaceScope : Dict[str, Any]
1874
- RegionTetNameList : List[str]
1875
- RegionTetMaxCellLengthList : List[str]
1876
- RegionTetGrowthRateList : List[str]
1877
- RegionHexNameList : List[str]
1878
- RegionHexMaxCellLengthList : List[str]
1879
- OldRegionTetMaxCellLengthList : List[str]
1880
- OldRegionTetGrowthRateList : List[str]
1881
- OldRegionHexMaxCellLengthList : List[str]
1882
- CFDSurfaceMeshControls : Dict[str, Any]
1873
+ FaceScope : dict[str, Any]
1874
+ RegionTetNameList : list[str]
1875
+ RegionTetMaxCellLengthList : list[str]
1876
+ RegionTetGrowthRateList : list[str]
1877
+ RegionHexNameList : list[str]
1878
+ RegionHexMaxCellLengthList : list[str]
1879
+ OldRegionTetMaxCellLengthList : list[str]
1880
+ OldRegionTetGrowthRateList : list[str]
1881
+ OldRegionHexMaxCellLengthList : list[str]
1882
+ CFDSurfaceMeshControls : dict[str, Any]
1883
1883
  ShowSolidFluidMeshed : bool
1884
1884
 
1885
1885
  Returns
@@ -1900,15 +1900,15 @@ class Root(PyMenu):
1900
1900
  InvokeShareTopology : str
1901
1901
  NonConformal : str
1902
1902
  Multizone : str
1903
- SetupInternals : List[str]
1904
- SetupInternalTypes : List[str]
1905
- OldZoneList : List[str]
1906
- OldZoneTypeList : List[str]
1907
- RegionList : List[str]
1908
- EdgeZoneList : List[str]
1909
- EdgeLabels : List[str]
1903
+ SetupInternals : list[str]
1904
+ SetupInternalTypes : list[str]
1905
+ OldZoneList : list[str]
1906
+ OldZoneTypeList : list[str]
1907
+ RegionList : list[str]
1908
+ EdgeZoneList : list[str]
1909
+ EdgeLabels : list[str]
1910
1910
  Duplicates : bool
1911
- SMImprovePreferences : Dict[str, Any]
1911
+ SMImprovePreferences : dict[str, Any]
1912
1912
 
1913
1913
  Returns
1914
1914
  -------
@@ -1925,21 +1925,21 @@ class Root(PyMenu):
1925
1925
  MRFName : str
1926
1926
  CreationMethod : str
1927
1927
  SelectionType : str
1928
- ObjectSelectionSingle : List[str]
1929
- ZoneSelectionSingle : List[str]
1930
- LabelSelectionSingle : List[str]
1931
- ObjectSelectionList : List[str]
1932
- ZoneSelectionList : List[str]
1933
- ZoneLocation : List[str]
1934
- LabelSelectionList : List[str]
1928
+ ObjectSelectionSingle : list[str]
1929
+ ZoneSelectionSingle : list[str]
1930
+ LabelSelectionSingle : list[str]
1931
+ ObjectSelectionList : list[str]
1932
+ ZoneSelectionList : list[str]
1933
+ ZoneLocation : list[str]
1934
+ LabelSelectionList : list[str]
1935
1935
  DefeaturingSize : float
1936
1936
  OffsetHeight : float
1937
- Pivot : Dict[str, Any]
1938
- Axis : Dict[str, Any]
1939
- Rotation : Dict[str, Any]
1940
- CylinderObject : Dict[str, Any]
1937
+ Pivot : dict[str, Any]
1938
+ Axis : dict[str, Any]
1939
+ Rotation : dict[str, Any]
1940
+ CylinderObject : dict[str, Any]
1941
1941
  CylinderMethod : str
1942
- BoundingBoxObject : Dict[str, Any]
1942
+ BoundingBoxObject : dict[str, Any]
1943
1943
 
1944
1944
  Returns
1945
1945
  -------
@@ -1955,9 +1955,9 @@ class Root(PyMenu):
1955
1955
  ----------
1956
1956
  DisplayGridName : str
1957
1957
  SelectionType : str
1958
- ObjectSelectionList : List[str]
1959
- ZoneSelectionList : List[str]
1960
- ZoneLocation : List[str]
1958
+ ObjectSelectionList : list[str]
1959
+ ZoneSelectionList : list[str]
1960
+ ZoneLocation : list[str]
1961
1961
  AdvancedOptions : bool
1962
1962
  DeviationMinValue : float
1963
1963
  DeviationMaxValue : float
@@ -1977,15 +1977,15 @@ class Root(PyMenu):
1977
1977
  Parameters
1978
1978
  ----------
1979
1979
  NumberOfOrphans : str
1980
- ObjectSelectionList : List[str]
1980
+ ObjectSelectionList : list[str]
1981
1981
  EnableGridPriority : bool
1982
1982
  DonorPriorityMethod : str
1983
1983
  OverlapBoundaries : str
1984
1984
  CheckOversetInterfaceIntersection : str
1985
- RegionNameList : List[str]
1986
- RegionSizeList : List[str]
1987
- OldRegionNameList : List[str]
1988
- OldRegionSizeList : List[str]
1985
+ RegionNameList : list[str]
1986
+ RegionSizeList : list[str]
1987
+ OldRegionNameList : list[str]
1988
+ OldRegionSizeList : list[str]
1989
1989
 
1990
1990
  Returns
1991
1991
  -------
@@ -2005,10 +2005,10 @@ class Root(PyMenu):
2005
2005
  NewRegionType : str
2006
2006
  LinkConstruction : str
2007
2007
  SelectionType : str
2008
- ZoneSelectionList : List[str]
2009
- ZoneLocation : List[str]
2010
- LabelSelectionList : List[str]
2011
- ObjectSelectionList : List[str]
2008
+ ZoneSelectionList : list[str]
2009
+ ZoneLocation : list[str]
2010
+ LabelSelectionList : list[str]
2011
+ ObjectSelectionList : list[str]
2012
2012
  GraphicalSelection : bool
2013
2013
  ShowCoordinates : bool
2014
2014
  X : float
@@ -2033,9 +2033,9 @@ class Root(PyMenu):
2033
2033
  Type : str
2034
2034
  GeometryFileName : str
2035
2035
  MeshFileName : str
2036
- ImportedObjects : List[str]
2036
+ ImportedObjects : list[str]
2037
2037
  LengthUnit : str
2038
- CadImportOptions : Dict[str, Any]
2038
+ CadImportOptions : dict[str, Any]
2039
2039
 
2040
2040
  Returns
2041
2041
  -------
@@ -2054,7 +2054,7 @@ class Root(PyMenu):
2054
2054
  LengthUnit : str
2055
2055
  MeshUnit : str
2056
2056
  UseBodyLabels : str
2057
- ImportCadPreferences : Dict[str, Any]
2057
+ ImportCadPreferences : dict[str, Any]
2058
2058
  FileName : str
2059
2059
  FileNames : str
2060
2060
  MeshFileName : str
@@ -2062,7 +2062,7 @@ class Root(PyMenu):
2062
2062
  AppendMesh : bool
2063
2063
  Directory : str
2064
2064
  Pattern : str
2065
- CadImportOptions : Dict[str, Any]
2065
+ CadImportOptions : dict[str, Any]
2066
2066
 
2067
2067
  Returns
2068
2068
  -------
@@ -2079,7 +2079,8 @@ class Root(PyMenu):
2079
2079
  MeshObject : str
2080
2080
  FaceQualityLimit : float
2081
2081
  SQMinSize : float
2082
- SMImprovePreferences : Dict[str, Any]
2082
+ ScopeImproveTo : str
2083
+ SMImprovePreferences : dict[str, Any]
2083
2084
 
2084
2085
  Returns
2085
2086
  -------
@@ -2096,11 +2097,11 @@ class Root(PyMenu):
2096
2097
  QualityMethod : str
2097
2098
  CellQualityLimit : float
2098
2099
  AddMultipleQualityMethods : str
2099
- QualityMethodList : List[str]
2100
- QualityCriteriaList : List[str]
2101
- OldQualityMethodList : List[str]
2102
- OldQualityCriteriaList : List[str]
2103
- VMImprovePreferences : Dict[str, Any]
2100
+ QualityMethodList : list[str]
2101
+ QualityCriteriaList : list[str]
2102
+ OldQualityMethodList : list[str]
2103
+ OldQualityCriteriaList : list[str]
2104
+ VMImprovePreferences : dict[str, Any]
2104
2105
 
2105
2106
  Returns
2106
2107
  -------
@@ -2115,13 +2116,13 @@ class Root(PyMenu):
2115
2116
  Parameters
2116
2117
  ----------
2117
2118
  ChildName : str
2118
- ObjectList : List[str]
2119
+ ObjectList : list[str]
2119
2120
  AutoPopulateVector : str
2120
- PatternVector : Dict[str, Any]
2121
+ PatternVector : dict[str, Any]
2121
2122
  Pitch : float
2122
2123
  NumberOfUnits : int
2123
2124
  CheckOverlappingFaces : str
2124
- BatteryModelingOptions : Dict[str, Any]
2125
+ BatteryModelingOptions : dict[str, Any]
2125
2126
 
2126
2127
  Returns
2127
2128
  -------
@@ -2142,7 +2143,7 @@ class Root(PyMenu):
2142
2143
  FacetingTolerance : float
2143
2144
  CreateObjectPer : str
2144
2145
  NumParts : float
2145
- Refaceting : Dict[str, Any]
2146
+ Refaceting : dict[str, Any]
2146
2147
 
2147
2148
  Returns
2148
2149
  -------
@@ -2158,17 +2159,17 @@ class Root(PyMenu):
2158
2159
  ----------
2159
2160
  LocalSettingsName : str
2160
2161
  SelectionType : str
2161
- ObjectSelectionList : List[str]
2162
- LabelSelectionList : List[str]
2163
- ZoneSelectionList : List[str]
2164
- ZoneLocation : List[str]
2165
- EdgeSelectionList : List[str]
2166
- LocalSizeControlParameters : Dict[str, Any]
2162
+ ObjectSelectionList : list[str]
2163
+ LabelSelectionList : list[str]
2164
+ ZoneSelectionList : list[str]
2165
+ ZoneLocation : list[str]
2166
+ EdgeSelectionList : list[str]
2167
+ LocalSizeControlParameters : dict[str, Any]
2167
2168
  ValueChanged : str
2168
- CompleteZoneSelectionList : List[str]
2169
- CompleteLabelSelectionList : List[str]
2170
- CompleteObjectSelectionList : List[str]
2171
- CompleteEdgeSelectionList : List[str]
2169
+ CompleteZoneSelectionList : list[str]
2170
+ CompleteLabelSelectionList : list[str]
2171
+ CompleteObjectSelectionList : list[str]
2172
+ CompleteEdgeSelectionList : list[str]
2172
2173
 
2173
2174
  Returns
2174
2175
  -------
@@ -2189,20 +2190,20 @@ class Root(PyMenu):
2189
2190
  Volume : float
2190
2191
  EqualRange : float
2191
2192
  ZoneOrLabel : str
2192
- LabelList : List[str]
2193
- ManageFaceZoneList : List[str]
2194
- ManageCellZoneList : List[str]
2195
- BodyLabelList : List[str]
2193
+ LabelList : list[str]
2194
+ ManageFaceZoneList : list[str]
2195
+ ManageCellZoneList : list[str]
2196
+ BodyLabelList : list[str]
2196
2197
  Operation : str
2197
2198
  OperationName : str
2198
2199
  MZChildName : str
2199
2200
  AddPrefixName : str
2200
2201
  FaceMerge : str
2201
2202
  Angle : float
2202
- ZoneList : List[str]
2203
- CompleteZoneList : List[str]
2204
- CompleteLabelList : List[str]
2205
- ZoneLocation : List[str]
2203
+ ZoneList : list[str]
2204
+ CompleteZoneList : list[str]
2205
+ CompleteLabelList : list[str]
2206
+ ZoneLocation : list[str]
2206
2207
 
2207
2208
  Returns
2208
2209
  -------
@@ -2235,16 +2236,16 @@ class Root(PyMenu):
2235
2236
  RemeshControlName : str
2236
2237
  LocalSize : float
2237
2238
  FaceZoneOrLabel : str
2238
- RemeshFaceZoneList : List[str]
2239
- RemeshFaceLabelList : List[str]
2239
+ RemeshFaceZoneList : list[str]
2240
+ RemeshFaceLabelList : list[str]
2240
2241
  SizingType : str
2241
2242
  LocalMinSize : float
2242
2243
  LocalMaxSize : float
2243
2244
  RemeshGrowthRate : float
2244
2245
  RemeshCurvatureNormalAngle : float
2245
2246
  RemeshCellsPerGap : float
2246
- CFDSurfaceMeshControls : Dict[str, Any]
2247
- RemeshPreferences : Dict[str, Any]
2247
+ CFDSurfaceMeshControls : dict[str, Any]
2248
+ RemeshPreferences : dict[str, Any]
2248
2249
 
2249
2250
  Returns
2250
2251
  -------
@@ -2275,14 +2276,14 @@ class Root(PyMenu):
2275
2276
  RemoveEmptyParts : bool
2276
2277
  FeatureAngle : float
2277
2278
  OneZonePer : str
2278
- Refaceting : Dict[str, Any]
2279
+ Refaceting : dict[str, Any]
2279
2280
  IgnoreSolidNames : bool
2280
2281
  IgnoreSolidNamesAppend : bool
2281
- Options : Dict[str, Any]
2282
+ Options : dict[str, Any]
2282
2283
  EdgeExtraction : str
2283
2284
  Context : int
2284
2285
  ObjectSetting : str
2285
- RefacetOptions : Dict[str, Any]
2286
+ RefacetOptions : dict[str, Any]
2286
2287
 
2287
2288
  Returns
2288
2289
  -------
@@ -2299,8 +2300,8 @@ class Root(PyMenu):
2299
2300
  PartReplacementName : str
2300
2301
  ManagementMethod : str
2301
2302
  CreationMethod : str
2302
- OldObjectSelectionList : List[str]
2303
- NewObjectSelectionList : List[str]
2303
+ OldObjectSelectionList : list[str]
2304
+ NewObjectSelectionList : list[str]
2304
2305
  AdvancedOptions : bool
2305
2306
  ScalingFactor : float
2306
2307
  MptMethodType : str
@@ -2370,15 +2371,15 @@ class Root(PyMenu):
2370
2371
  Type : str
2371
2372
  Method : str
2372
2373
  PeriodicityAngle : float
2373
- LCSOrigin : Dict[str, Any]
2374
- LCSVector : Dict[str, Any]
2375
- TransShift : Dict[str, Any]
2374
+ LCSOrigin : dict[str, Any]
2375
+ LCSVector : dict[str, Any]
2376
+ TransShift : dict[str, Any]
2376
2377
  SelectionType : str
2377
- ZoneList : List[str]
2378
- LabelList : List[str]
2379
- TopologyList : List[str]
2378
+ ZoneList : list[str]
2379
+ LabelList : list[str]
2380
+ TopologyList : list[str]
2380
2381
  RemeshBoundariesOption : str
2381
- ZoneLocation : List[str]
2382
+ ZoneLocation : list[str]
2382
2383
  ListAllLabelToggle : bool
2383
2384
  AutoMultiplePeriodic : str
2384
2385
  MultipleOption : str
@@ -2403,7 +2404,7 @@ class Root(PyMenu):
2403
2404
  LastRatioPercentage : float
2404
2405
  FirstHeight : float
2405
2406
  PrismLayers : int
2406
- RegionSelectionList : List[str]
2407
+ RegionSelectionList : list[str]
2407
2408
 
2408
2409
  Returns
2409
2410
  -------
@@ -2421,10 +2422,10 @@ class Root(PyMenu):
2421
2422
  GapDistanceConnect : float
2422
2423
  STMinSize : float
2423
2424
  InterfaceSelect : str
2424
- EdgeLabels : List[str]
2425
- ShareTopologyPreferences : Dict[str, Any]
2426
- SMImprovePreferences : Dict[str, Any]
2427
- SurfaceMeshPreferences : Dict[str, Any]
2425
+ EdgeLabels : list[str]
2426
+ ShareTopologyPreferences : dict[str, Any]
2427
+ SMImprovePreferences : dict[str, Any]
2428
+ SurfaceMeshPreferences : dict[str, Any]
2428
2429
 
2429
2430
  Returns
2430
2431
  -------
@@ -2445,7 +2446,7 @@ class Root(PyMenu):
2445
2446
  InitialSizeControl : bool
2446
2447
  TargetSizeControl : bool
2447
2448
  SizeControlInterval : float
2448
- SizeControlParameters : Dict[str, Any]
2449
+ SizeControlParameters : dict[str, Any]
2449
2450
 
2450
2451
  Returns
2451
2452
  -------
@@ -2474,17 +2475,17 @@ class Root(PyMenu):
2474
2475
  Type : str
2475
2476
  Method : str
2476
2477
  SelectionType : str
2477
- TopoBodyList : List[str]
2478
- CellZoneList : List[str]
2479
- LCSOrigin : Dict[str, Any]
2480
- LCSVector : Dict[str, Any]
2481
- TransShift : Dict[str, Any]
2478
+ TopoBodyList : list[str]
2479
+ CellZoneList : list[str]
2480
+ LCSOrigin : dict[str, Any]
2481
+ LCSVector : dict[str, Any]
2482
+ TransShift : dict[str, Any]
2482
2483
  Angle : float
2483
2484
  Copy : str
2484
2485
  NumOfCopies : int
2485
2486
  Merge : str
2486
2487
  Rename : str
2487
- MergeBoundaries : List[str]
2488
+ MergeBoundaries : list[str]
2488
2489
 
2489
2490
  Returns
2490
2491
  -------
@@ -2500,24 +2501,24 @@ class Root(PyMenu):
2500
2501
  ----------
2501
2502
  MeshObject : str
2502
2503
  SelectionType : str
2503
- BoundaryLabelList : List[str]
2504
- BoundaryLabelTypeList : List[str]
2505
- BoundaryZoneList : List[str]
2506
- BoundaryZoneTypeList : List[str]
2507
- OldBoundaryLabelList : List[str]
2508
- OldBoundaryLabelTypeList : List[str]
2509
- OldBoundaryZoneList : List[str]
2510
- OldBoundaryZoneTypeList : List[str]
2511
- OldLabelZoneList : List[str]
2504
+ BoundaryLabelList : list[str]
2505
+ BoundaryLabelTypeList : list[str]
2506
+ BoundaryZoneList : list[str]
2507
+ BoundaryZoneTypeList : list[str]
2508
+ OldBoundaryLabelList : list[str]
2509
+ OldBoundaryLabelTypeList : list[str]
2510
+ OldBoundaryZoneList : list[str]
2511
+ OldBoundaryZoneTypeList : list[str]
2512
+ OldLabelZoneList : list[str]
2512
2513
  ListAllBoundariesToggle : bool
2513
- ZoneLocation : List[str]
2514
- TopologyList : List[str]
2515
- TopologyTypeList : List[str]
2516
- OldTopologyList : List[str]
2517
- OldTopologyTypeList : List[str]
2518
- BoundaryCurrentList : List[str]
2519
- BoundaryCurrentTypeList : List[str]
2520
- BoundaryAllowedTypeList : List[str]
2514
+ ZoneLocation : list[str]
2515
+ TopologyList : list[str]
2516
+ TopologyTypeList : list[str]
2517
+ OldTopologyList : list[str]
2518
+ OldTopologyTypeList : list[str]
2519
+ BoundaryCurrentList : list[str]
2520
+ BoundaryCurrentTypeList : list[str]
2521
+ BoundaryAllowedTypeList : list[str]
2521
2522
 
2522
2523
  Returns
2523
2524
  -------
@@ -2533,27 +2534,27 @@ class Root(PyMenu):
2533
2534
  ----------
2534
2535
  MainFluidRegion : str
2535
2536
  FilterCategory : str
2536
- RegionNameList : List[str]
2537
- RegionMeshMethodList : List[str]
2538
- RegionTypeList : List[str]
2539
- RegionVolumeFillList : List[str]
2540
- RegionLeakageSizeList : List[str]
2541
- RegionOversetComponenList : List[str]
2542
- OldRegionNameList : List[str]
2543
- OldRegionMeshMethodList : List[str]
2544
- OldRegionTypeList : List[str]
2545
- OldRegionVolumeFillList : List[str]
2546
- OldRegionLeakageSizeList : List[str]
2547
- OldRegionOversetComponenList : List[str]
2548
- AllRegionNameList : List[str]
2549
- AllRegionMeshMethodList : List[str]
2550
- AllRegionTypeList : List[str]
2551
- AllRegionVolumeFillList : List[str]
2552
- AllRegionLeakageSizeList : List[str]
2553
- AllRegionOversetComponenList : List[str]
2554
- AllRegionLinkedConstructionSurfaceList : List[str]
2555
- AllRegionSourceList : List[str]
2556
- AllRegionFilterCategories : List[str]
2537
+ RegionNameList : list[str]
2538
+ RegionMeshMethodList : list[str]
2539
+ RegionTypeList : list[str]
2540
+ RegionVolumeFillList : list[str]
2541
+ RegionLeakageSizeList : list[str]
2542
+ RegionOversetComponenList : list[str]
2543
+ OldRegionNameList : list[str]
2544
+ OldRegionMeshMethodList : list[str]
2545
+ OldRegionTypeList : list[str]
2546
+ OldRegionVolumeFillList : list[str]
2547
+ OldRegionLeakageSizeList : list[str]
2548
+ OldRegionOversetComponenList : list[str]
2549
+ AllRegionNameList : list[str]
2550
+ AllRegionMeshMethodList : list[str]
2551
+ AllRegionTypeList : list[str]
2552
+ AllRegionVolumeFillList : list[str]
2553
+ AllRegionLeakageSizeList : list[str]
2554
+ AllRegionOversetComponenList : list[str]
2555
+ AllRegionLinkedConstructionSurfaceList : list[str]
2556
+ AllRegionSourceList : list[str]
2557
+ AllRegionFilterCategories : list[str]
2557
2558
 
2558
2559
  Returns
2559
2560
  -------
@@ -2568,14 +2569,14 @@ class Root(PyMenu):
2568
2569
  Parameters
2569
2570
  ----------
2570
2571
  MeshObject : str
2571
- RegionNameList : List[str]
2572
- RegionTypeList : List[str]
2573
- OldRegionNameList : List[str]
2574
- OldRegionTypeList : List[str]
2575
- RegionInternals : List[str]
2576
- RegionInternalTypes : List[str]
2577
- RegionCurrentList : List[str]
2578
- RegionCurrentTypeList : List[str]
2572
+ RegionNameList : list[str]
2573
+ RegionTypeList : list[str]
2574
+ OldRegionNameList : list[str]
2575
+ OldRegionTypeList : list[str]
2576
+ RegionInternals : list[str]
2577
+ RegionInternalTypes : list[str]
2578
+ RegionCurrentList : list[str]
2579
+ RegionCurrentTypeList : list[str]
2579
2580
  NumberOfListedRegions : int
2580
2581
 
2581
2582
  Returns
@@ -2619,6 +2620,7 @@ class Root(PyMenu):
2619
2620
  Parameters
2620
2621
  ----------
2621
2622
  FileName : str
2623
+ SkipExport : bool
2622
2624
 
2623
2625
  Returns
2624
2626
  -------