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
@@ -135,85 +135,85 @@ class Root(PyMenu):
135
135
 
136
136
  class AllOversetNameList(PyTextual):
137
137
  """
138
- Parameter AllOversetNameList of value type List[str].
138
+ Parameter AllOversetNameList of value type list[str].
139
139
  """
140
140
  pass
141
141
 
142
142
  class AllOversetSizeList(PyTextual):
143
143
  """
144
- Parameter AllOversetSizeList of value type List[str].
144
+ Parameter AllOversetSizeList of value type list[str].
145
145
  """
146
146
  pass
147
147
 
148
148
  class AllOversetTypeList(PyTextual):
149
149
  """
150
- Parameter AllOversetTypeList of value type List[str].
150
+ Parameter AllOversetTypeList of value type list[str].
151
151
  """
152
152
  pass
153
153
 
154
154
  class AllOversetVolumeFillList(PyTextual):
155
155
  """
156
- Parameter AllOversetVolumeFillList of value type List[str].
156
+ Parameter AllOversetVolumeFillList of value type list[str].
157
157
  """
158
158
  pass
159
159
 
160
160
  class AllRegionFilterCategories(PyTextual):
161
161
  """
162
- Parameter AllRegionFilterCategories of value type List[str].
162
+ Parameter AllRegionFilterCategories of value type list[str].
163
163
  """
164
164
  pass
165
165
 
166
166
  class AllRegionLeakageSizeList(PyTextual):
167
167
  """
168
- Parameter AllRegionLeakageSizeList of value type List[str].
168
+ Parameter AllRegionLeakageSizeList of value type list[str].
169
169
  """
170
170
  pass
171
171
 
172
172
  class AllRegionLinkedConstructionSurfaceList(PyTextual):
173
173
  """
174
- Parameter AllRegionLinkedConstructionSurfaceList of value type List[str].
174
+ Parameter AllRegionLinkedConstructionSurfaceList of value type list[str].
175
175
  """
176
176
  pass
177
177
 
178
178
  class AllRegionMeshMethodList(PyTextual):
179
179
  """
180
- Parameter AllRegionMeshMethodList of value type List[str].
180
+ Parameter AllRegionMeshMethodList of value type list[str].
181
181
  """
182
182
  pass
183
183
 
184
184
  class AllRegionNameList(PyTextual):
185
185
  """
186
- Parameter AllRegionNameList of value type List[str].
186
+ Parameter AllRegionNameList of value type list[str].
187
187
  """
188
188
  pass
189
189
 
190
190
  class AllRegionOversetComponenList(PyTextual):
191
191
  """
192
- Parameter AllRegionOversetComponenList of value type List[str].
192
+ Parameter AllRegionOversetComponenList of value type list[str].
193
193
  """
194
194
  pass
195
195
 
196
196
  class AllRegionSizeList(PyTextual):
197
197
  """
198
- Parameter AllRegionSizeList of value type List[str].
198
+ Parameter AllRegionSizeList of value type list[str].
199
199
  """
200
200
  pass
201
201
 
202
202
  class AllRegionSourceList(PyTextual):
203
203
  """
204
- Parameter AllRegionSourceList of value type List[str].
204
+ Parameter AllRegionSourceList of value type list[str].
205
205
  """
206
206
  pass
207
207
 
208
208
  class AllRegionTypeList(PyTextual):
209
209
  """
210
- Parameter AllRegionTypeList of value type List[str].
210
+ Parameter AllRegionTypeList of value type list[str].
211
211
  """
212
212
  pass
213
213
 
214
214
  class AllRegionVolumeFillList(PyTextual):
215
215
  """
216
- Parameter AllRegionVolumeFillList of value type List[str].
216
+ Parameter AllRegionVolumeFillList of value type list[str].
217
217
  """
218
218
  pass
219
219
 
@@ -292,21 +292,21 @@ class Root(PyMenu):
292
292
  TransitionRatio : float
293
293
  Rate : float
294
294
  FirstHeight : float
295
- FaceScope : Dict[str, Any]
296
- RegionScope : List[str]
297
- BlLabelList : List[str]
298
- ZoneSelectionList : List[str]
299
- ZoneLocation : List[str]
300
- LocalPrismPreferences : Dict[str, Any]
301
- BLZoneList : List[str]
302
- BLRegionList : List[str]
295
+ FaceScope : dict[str, Any]
296
+ RegionScope : list[str]
297
+ BlLabelList : list[str]
298
+ ZoneSelectionList : list[str]
299
+ ZoneLocation : list[str]
300
+ LocalPrismPreferences : dict[str, Any]
301
+ BLZoneList : list[str]
302
+ BLRegionList : list[str]
303
303
  InvalidAdded : str
304
- CompleteRegionScope : List[str]
305
- CompleteBlLabelList : List[str]
306
- CompleteBLZoneList : List[str]
307
- CompleteBLRegionList : List[str]
308
- CompleteZoneSelectionList : List[str]
309
- CompleteLabelSelectionList : List[str]
304
+ CompleteRegionScope : list[str]
305
+ CompleteBlLabelList : list[str]
306
+ CompleteBLZoneList : list[str]
307
+ CompleteBLRegionList : list[str]
308
+ CompleteZoneSelectionList : list[str]
309
+ CompleteLabelSelectionList : list[str]
310
310
 
311
311
  Returns
312
312
  -------
@@ -329,20 +329,20 @@ class Root(PyMenu):
329
329
  TransitionRatio : float
330
330
  Rate : float
331
331
  FirstHeight : float
332
- FaceScope : Dict[str, Any]
333
- RegionScope : List[str]
334
- BlLabelList : List[str]
335
- ZoneSelectionList : List[str]
336
- ZoneLocation : List[str]
337
- LocalPrismPreferences : Dict[str, Any]
338
- BLZoneList : List[str]
339
- BLRegionList : List[str]
340
- CompleteRegionScope : List[str]
341
- CompleteBlLabelList : List[str]
342
- CompleteBLZoneList : List[str]
343
- CompleteBLRegionList : List[str]
344
- CompleteZoneSelectionList : List[str]
345
- CompleteLabelSelectionList : List[str]
332
+ FaceScope : dict[str, Any]
333
+ RegionScope : list[str]
334
+ BlLabelList : list[str]
335
+ ZoneSelectionList : list[str]
336
+ ZoneLocation : list[str]
337
+ LocalPrismPreferences : dict[str, Any]
338
+ BLZoneList : list[str]
339
+ BLRegionList : list[str]
340
+ CompleteRegionScope : list[str]
341
+ CompleteBlLabelList : list[str]
342
+ CompleteBLZoneList : list[str]
343
+ CompleteBLRegionList : list[str]
344
+ CompleteZoneSelectionList : list[str]
345
+ CompleteLabelSelectionList : list[str]
346
346
 
347
347
  Returns
348
348
  -------
@@ -360,10 +360,10 @@ class Root(PyMenu):
360
360
  NewBoundaryLabelName : str
361
361
  NewBoundaryType : str
362
362
  SelectionType : str
363
- BoundaryFaceZoneList : List[str]
364
- TopologyList : List[str]
363
+ BoundaryFaceZoneList : list[str]
364
+ TopologyList : list[str]
365
365
  Merge : str
366
- ZoneLocation : List[str]
366
+ ZoneLocation : list[str]
367
367
 
368
368
  Returns
369
369
  -------
@@ -379,17 +379,17 @@ class Root(PyMenu):
379
379
  ----------
380
380
  LocalSettingsName : str
381
381
  SelectionType : str
382
- ObjectSelectionList : List[str]
383
- LabelSelectionList : List[str]
384
- ZoneSelectionList : List[str]
385
- ZoneLocation : List[str]
386
- EdgeSelectionList : List[str]
387
- LocalSizeControlParameters : Dict[str, Any]
382
+ ObjectSelectionList : list[str]
383
+ LabelSelectionList : list[str]
384
+ ZoneSelectionList : list[str]
385
+ ZoneLocation : list[str]
386
+ EdgeSelectionList : list[str]
387
+ LocalSizeControlParameters : dict[str, Any]
388
388
  ValueChanged : str
389
- CompleteZoneSelectionList : List[str]
390
- CompleteLabelSelectionList : List[str]
391
- CompleteObjectSelectionList : List[str]
392
- CompleteEdgeSelectionList : List[str]
389
+ CompleteZoneSelectionList : list[str]
390
+ CompleteLabelSelectionList : list[str]
391
+ CompleteObjectSelectionList : list[str]
392
+ CompleteEdgeSelectionList : list[str]
393
393
 
394
394
  Returns
395
395
  -------
@@ -415,18 +415,18 @@ class Root(PyMenu):
415
415
  BOIScopeTo : str
416
416
  IgnoreOrientation : str
417
417
  BOIZoneorLabel : str
418
- BOIFaceLabelList : List[str]
419
- BOIFaceZoneList : List[str]
420
- EdgeLabelList : List[str]
421
- EdgeZoneList : List[str]
422
- TopologyList : List[str]
418
+ BOIFaceLabelList : list[str]
419
+ BOIFaceZoneList : list[str]
420
+ EdgeLabelList : list[str]
421
+ EdgeZoneList : list[str]
422
+ TopologyList : list[str]
423
423
  BOIPatchingtoggle : bool
424
424
  DrawSizeControl : bool
425
- ZoneLocation : List[str]
426
- CompleteFaceZoneList : List[str]
427
- CompleteFaceLabelList : List[str]
428
- CompleteEdgeLabelList : List[str]
429
- CompleteTopologyList : List[str]
425
+ ZoneLocation : list[str]
426
+ CompleteFaceZoneList : list[str]
427
+ CompleteFaceLabelList : list[str]
428
+ CompleteEdgeLabelList : list[str]
429
+ CompleteTopologyList : list[str]
430
430
  PrimeSizeControlId : int
431
431
 
432
432
  Returns
@@ -447,13 +447,13 @@ class Root(PyMenu):
447
447
  FillWith : str
448
448
  UseSweepSize : str
449
449
  MaxSweepSize : float
450
- RegionScope : List[str]
450
+ RegionScope : list[str]
451
451
  SourceMethod : str
452
452
  ParallelSelection : bool
453
453
  ShowEdgeBiasing : str
454
- LabelSourceList : List[str]
455
- ZoneSourceList : List[str]
456
- ZoneLocation : List[str]
454
+ LabelSourceList : list[str]
455
+ ZoneSourceList : list[str]
456
+ ZoneLocation : list[str]
457
457
  AssignSizeUsing : str
458
458
  Intervals : int
459
459
  Size : float
@@ -462,11 +462,11 @@ class Root(PyMenu):
462
462
  GrowthMethod : str
463
463
  GrowthRate : float
464
464
  BiasFactor : float
465
- EdgeLabelSelection : List[str]
466
- EdgeLabelList : List[str]
467
- CFDSurfaceMeshControls : Dict[str, Any]
468
- CompleteRegionScope : List[str]
469
- CompleteEdgeScope : List[str]
465
+ EdgeLabelSelection : list[str]
466
+ EdgeLabelList : list[str]
467
+ CFDSurfaceMeshControls : dict[str, Any]
468
+ CompleteRegionScope : list[str]
469
+ CompleteEdgeScope : list[str]
470
470
 
471
471
  Returns
472
472
  -------
@@ -489,12 +489,12 @@ class Root(PyMenu):
489
489
  Rate : float
490
490
  FirstHeight : float
491
491
  GrowOn : str
492
- FaceLabelList : List[str]
493
- FaceZoneList : List[str]
492
+ FaceLabelList : list[str]
493
+ FaceZoneList : list[str]
494
494
  EdgeSelectionType : str
495
- EdgeLabelList : List[str]
496
- EdgeZoneList : List[str]
497
- PrimeShellBLPreferences : Dict[str, Any]
495
+ EdgeLabelList : list[str]
496
+ EdgeZoneList : list[str]
497
+ PrimeShellBLPreferences : dict[str, Any]
498
498
 
499
499
  Returns
500
500
  -------
@@ -510,10 +510,10 @@ class Root(PyMenu):
510
510
  ----------
511
511
  ZeroThicknessName : str
512
512
  SelectionType : str
513
- ZoneSelectionList : List[str]
514
- ZoneLocation : List[str]
515
- ObjectSelectionList : List[str]
516
- LabelSelectionList : List[str]
513
+ ZoneSelectionList : list[str]
514
+ ZoneLocation : list[str]
515
+ ObjectSelectionList : list[str]
516
+ LabelSelectionList : list[str]
517
517
  Distance : float
518
518
 
519
519
  Returns
@@ -531,8 +531,8 @@ class Root(PyMenu):
531
531
  AddChild : str
532
532
  ControlName : str
533
533
  SelectionType : str
534
- FaceLabelList : List[str]
535
- FaceZoneList : List[str]
534
+ FaceLabelList : list[str]
535
+ FaceZoneList : list[str]
536
536
 
537
537
  Returns
538
538
  -------
@@ -550,18 +550,18 @@ class Root(PyMenu):
550
550
  ZoneType : str
551
551
  PatchType : str
552
552
  SelectionType : str
553
- LabelSelectionList : List[str]
554
- ZoneSelectionList : List[str]
555
- TopologyList : List[str]
556
- CreatePatchPreferences : Dict[str, Any]
553
+ LabelSelectionList : list[str]
554
+ ZoneSelectionList : list[str]
555
+ TopologyList : list[str]
556
+ CreatePatchPreferences : dict[str, Any]
557
557
  ObjectAssociation : str
558
558
  NewObjectName : str
559
559
  PatchObjectName : str
560
- CapLabels : List[str]
561
- ZoneLocation : List[str]
562
- CompleteZoneSelectionList : List[str]
563
- CompleteLabelSelectionList : List[str]
564
- CompleteTopologyList : List[str]
560
+ CapLabels : list[str]
561
+ ZoneLocation : list[str]
562
+ CompleteZoneSelectionList : list[str]
563
+ CompleteLabelSelectionList : list[str]
564
+ CompleteTopologyList : list[str]
565
565
 
566
566
  Returns
567
567
  -------
@@ -583,7 +583,7 @@ class Root(PyMenu):
583
583
  GlobalMin : float
584
584
  GlobalMax : float
585
585
  GlobalGrowthRate : float
586
- MeshControlOptions : Dict[str, Any]
586
+ MeshControlOptions : dict[str, Any]
587
587
 
588
588
  Returns
589
589
  -------
@@ -662,16 +662,16 @@ class Root(PyMenu):
662
662
  BOIMaxSize : float
663
663
  BOISizeName : str
664
664
  SelectionType : str
665
- ZoneSelectionList : List[str]
666
- ZoneLocation : List[str]
667
- LabelSelectionList : List[str]
668
- ObjectSelectionList : List[str]
669
- ZoneSelectionSingle : List[str]
670
- ObjectSelectionSingle : List[str]
671
- TopologyList : List[str]
672
- BoundingBoxObject : Dict[str, Any]
673
- OffsetObject : Dict[str, Any]
674
- CylinderObject : Dict[str, Any]
665
+ ZoneSelectionList : list[str]
666
+ ZoneLocation : list[str]
667
+ LabelSelectionList : list[str]
668
+ ObjectSelectionList : list[str]
669
+ ZoneSelectionSingle : list[str]
670
+ ObjectSelectionSingle : list[str]
671
+ TopologyList : list[str]
672
+ BoundingBoxObject : dict[str, Any]
673
+ OffsetObject : dict[str, Any]
674
+ CylinderObject : dict[str, Any]
675
675
 
676
676
  Returns
677
677
  -------
@@ -690,16 +690,16 @@ class Root(PyMenu):
690
690
  BOIMaxSize : float
691
691
  BOISizeName : str
692
692
  SelectionType : str
693
- ZoneSelectionList : List[str]
694
- ZoneLocation : List[str]
695
- LabelSelectionList : List[str]
696
- ObjectSelectionList : List[str]
697
- ZoneSelectionSingle : List[str]
698
- ObjectSelectionSingle : List[str]
699
- TopologyList : List[str]
700
- BoundingBoxObject : Dict[str, Any]
701
- OffsetObject : Dict[str, Any]
702
- CylinderObject : Dict[str, Any]
693
+ ZoneSelectionList : list[str]
694
+ ZoneLocation : list[str]
695
+ LabelSelectionList : list[str]
696
+ ObjectSelectionList : list[str]
697
+ ZoneSelectionSingle : list[str]
698
+ ObjectSelectionSingle : list[str]
699
+ TopologyList : list[str]
700
+ BoundingBoxObject : dict[str, Any]
701
+ OffsetObject : dict[str, Any]
702
+ CylinderObject : dict[str, Any]
703
703
  VolumeFill : str
704
704
 
705
705
  Returns
@@ -719,16 +719,16 @@ class Root(PyMenu):
719
719
  BOIMaxSize : float
720
720
  BOISizeName : str
721
721
  SelectionType : str
722
- ZoneSelectionList : List[str]
723
- ZoneLocation : List[str]
724
- LabelSelectionList : List[str]
725
- ObjectSelectionList : List[str]
726
- ZoneSelectionSingle : List[str]
727
- ObjectSelectionSingle : List[str]
728
- TopologyList : List[str]
729
- BoundingBoxObject : Dict[str, Any]
730
- OffsetObject : Dict[str, Any]
731
- CylinderObject : Dict[str, Any]
722
+ ZoneSelectionList : list[str]
723
+ ZoneLocation : list[str]
724
+ LabelSelectionList : list[str]
725
+ ObjectSelectionList : list[str]
726
+ ZoneSelectionSingle : list[str]
727
+ ObjectSelectionSingle : list[str]
728
+ TopologyList : list[str]
729
+ BoundingBoxObject : dict[str, Any]
730
+ OffsetObject : dict[str, Any]
731
+ CylinderObject : dict[str, Any]
732
732
  VolumeFill : str
733
733
 
734
734
  Returns
@@ -745,11 +745,11 @@ class Root(PyMenu):
745
745
  ----------
746
746
  ContactPatchName : str
747
747
  SelectionType : str
748
- ZoneSelectionList : List[str]
749
- ZoneLocation : List[str]
750
- ObjectSelectionList : List[str]
751
- LabelSelectionList : List[str]
752
- GroundZoneSelectionList : List[str]
748
+ ZoneSelectionList : list[str]
749
+ ZoneLocation : list[str]
750
+ ObjectSelectionList : list[str]
751
+ LabelSelectionList : list[str]
752
+ GroundZoneSelectionList : list[str]
753
753
  Distance : float
754
754
  ContactPatchDefeaturingSize : float
755
755
  FeatureAngle : float
@@ -772,15 +772,15 @@ class Root(PyMenu):
772
772
  CreationMethod : str
773
773
  ExtractionMethod : str
774
774
  SelectionType : str
775
- ObjectSelectionList : List[str]
776
- ZoneSelectionList : List[str]
777
- ZoneLocation : List[str]
778
- LabelSelectionList : List[str]
779
- ObjectSelectionSingle : List[str]
780
- ZoneSelectionSingle : List[str]
781
- LabelSelectionSingle : List[str]
775
+ ObjectSelectionList : list[str]
776
+ ZoneSelectionList : list[str]
777
+ ZoneLocation : list[str]
778
+ LabelSelectionList : list[str]
779
+ ObjectSelectionSingle : list[str]
780
+ ZoneSelectionSingle : list[str]
781
+ LabelSelectionSingle : list[str]
782
782
  OriginalObjectName : str
783
- BoundingBoxObject : Dict[str, Any]
783
+ BoundingBoxObject : dict[str, Any]
784
784
 
785
785
  Returns
786
786
  -------
@@ -799,10 +799,10 @@ class Root(PyMenu):
799
799
  GapSizeRatio : float
800
800
  GapSize : float
801
801
  SelectionType : str
802
- ZoneSelectionList : List[str]
803
- ZoneLocation : List[str]
804
- LabelSelectionList : List[str]
805
- ObjectSelectionList : List[str]
802
+ ZoneSelectionList : list[str]
803
+ ZoneLocation : list[str]
804
+ LabelSelectionList : list[str]
805
+ ObjectSelectionList : list[str]
806
806
  GapCoverBetweenZones : str
807
807
  GapCoverRefineFactor : float
808
808
  GapCoverRefineFactorAtGap : float
@@ -828,16 +828,16 @@ class Root(PyMenu):
828
828
  BOIMaxSize : float
829
829
  BOISizeName : str
830
830
  SelectionType : str
831
- ZoneSelectionList : List[str]
832
- ZoneLocation : List[str]
833
- LabelSelectionList : List[str]
834
- ObjectSelectionList : List[str]
835
- ZoneSelectionSingle : List[str]
836
- ObjectSelectionSingle : List[str]
837
- TopologyList : List[str]
838
- BoundingBoxObject : Dict[str, Any]
839
- OffsetObject : Dict[str, Any]
840
- CylinderObject : Dict[str, Any]
831
+ ZoneSelectionList : list[str]
832
+ ZoneLocation : list[str]
833
+ LabelSelectionList : list[str]
834
+ ObjectSelectionList : list[str]
835
+ ZoneSelectionSingle : list[str]
836
+ ObjectSelectionSingle : list[str]
837
+ TopologyList : list[str]
838
+ BoundingBoxObject : dict[str, Any]
839
+ OffsetObject : dict[str, Any]
840
+ CylinderObject : dict[str, Any]
841
841
  VolumeFill : str
842
842
 
843
843
  Returns
@@ -867,7 +867,7 @@ class Root(PyMenu):
867
867
  Parameters
868
868
  ----------
869
869
  OversetInterfacesName : str
870
- ObjectSelectionList : List[str]
870
+ ObjectSelectionList : list[str]
871
871
 
872
872
  Returns
873
873
  -------
@@ -889,11 +889,11 @@ class Root(PyMenu):
889
889
  CellSizeP1P3 : float
890
890
  CellSizeP1P4 : float
891
891
  BufferSizeRatio : float
892
- P1 : List[float]
893
- P2 : List[float]
894
- P3 : List[float]
895
- P4 : List[float]
896
- NonRectangularParameters : Dict[str, Any]
892
+ P1 : list[float]
893
+ P2 : list[float]
894
+ P3 : list[float]
895
+ P4 : list[float]
896
+ NonRectangularParameters : dict[str, Any]
897
897
 
898
898
  Returns
899
899
  -------
@@ -930,7 +930,7 @@ class Root(PyMenu):
930
930
  CurvatureNormalAngle : float
931
931
  CellsPerGap : float
932
932
  ScopeProximityTo : str
933
- PrimeSizeControlIds : List[int]
933
+ PrimeSizeControlIds : list[int]
934
934
 
935
935
  Returns
936
936
  -------
@@ -947,8 +947,8 @@ class Root(PyMenu):
947
947
  AddChild : str
948
948
  LeakageName : str
949
949
  SelectionType : str
950
- DeadRegionsList : List[str]
951
- RegionSelectionSingle : List[str]
950
+ DeadRegionsList : list[str]
951
+ RegionSelectionSingle : list[str]
952
952
  DeadRegionsSize : float
953
953
  PlaneClippingValue : int
954
954
  PlaneDirection : str
@@ -971,7 +971,7 @@ class Root(PyMenu):
971
971
  AddEnclosure : str
972
972
  CloseCaps : str
973
973
  LocalRefinementRegions : str
974
- DescribeGeometryAndFlowOptions : Dict[str, Any]
974
+ DescribeGeometryAndFlowOptions : dict[str, Any]
975
975
 
976
976
  Returns
977
977
  -------
@@ -1006,17 +1006,17 @@ class Root(PyMenu):
1006
1006
  ExtractEdgesName : str
1007
1007
  ExtractMethodType : str
1008
1008
  SelectionType : str
1009
- ObjectSelectionList : List[str]
1010
- GeomObjectSelectionList : List[str]
1011
- ZoneSelectionList : List[str]
1012
- ZoneLocation : List[str]
1013
- LabelSelectionList : List[str]
1009
+ ObjectSelectionList : list[str]
1010
+ GeomObjectSelectionList : list[str]
1011
+ ZoneSelectionList : list[str]
1012
+ ZoneLocation : list[str]
1013
+ LabelSelectionList : list[str]
1014
1014
  FeatureAngleLocal : int
1015
1015
  IndividualCollective : str
1016
1016
  SharpAngle : int
1017
- CompleteObjectSelectionList : List[str]
1018
- CompleteGeomObjectSelectionList : List[str]
1019
- NonExtractedObjects : List[str]
1017
+ CompleteObjectSelectionList : list[str]
1018
+ CompleteGeomObjectSelectionList : list[str]
1019
+ NonExtractedObjects : list[str]
1020
1020
 
1021
1021
  Returns
1022
1022
  -------
@@ -1033,14 +1033,14 @@ class Root(PyMenu):
1033
1033
  MExControlName : str
1034
1034
  Method : str
1035
1035
  SelectionType : str
1036
- ExternalBoundaryZoneList : List[str]
1037
- TopologyList : List[str]
1036
+ ExternalBoundaryZoneList : list[str]
1037
+ TopologyList : list[str]
1038
1038
  TotalHeight : float
1039
1039
  FirstHeight : float
1040
1040
  NumberofLayers : int
1041
1041
  GrowthRate : float
1042
- VMExtrudePreferences : Dict[str, Any]
1043
- ZoneLocation : List[str]
1042
+ VMExtrudePreferences : dict[str, Any]
1043
+ ZoneLocation : list[str]
1044
1044
 
1045
1045
  Returns
1046
1046
  -------
@@ -1080,8 +1080,8 @@ class Root(PyMenu):
1080
1080
  SplitQuads : bool
1081
1081
  ProjectOnGeometry : bool
1082
1082
  SelectionType : str
1083
- FaceLabelList : List[str]
1084
- FaceZoneList : List[str]
1083
+ FaceLabelList : list[str]
1084
+ FaceZoneList : list[str]
1085
1085
 
1086
1086
  Returns
1087
1087
  -------
@@ -1110,12 +1110,12 @@ class Root(PyMenu):
1110
1110
  Parameters
1111
1111
  ----------
1112
1112
  OrthogonalQualityLimit : float
1113
- RegionScope : List[str]
1113
+ RegionScope : list[str]
1114
1114
  NonConformal : str
1115
1115
  SizeFunctionScaleFactor : float
1116
- CFDSurfaceMeshControls : Dict[str, Any]
1117
- CompleteRegionScope : List[str]
1118
- CellZoneList : List[str]
1116
+ CFDSurfaceMeshControls : dict[str, Any]
1117
+ CompleteRegionScope : list[str]
1118
+ CellZoneList : list[str]
1119
1119
 
1120
1120
  Returns
1121
1121
  -------
@@ -1162,13 +1162,13 @@ class Root(PyMenu):
1162
1162
 
1163
1163
  Parameters
1164
1164
  ----------
1165
- CFDSurfaceMeshControls : Dict[str, Any]
1165
+ CFDSurfaceMeshControls : dict[str, Any]
1166
1166
  SeparationRequired : str
1167
1167
  SeparationAngle : float
1168
1168
  RemeshSelectionType : str
1169
- RemeshZoneList : List[str]
1170
- RemeshLabelList : List[str]
1171
- SurfaceMeshPreferences : Dict[str, Any]
1169
+ RemeshZoneList : list[str]
1170
+ RemeshLabelList : list[str]
1171
+ SurfaceMeshPreferences : dict[str, Any]
1172
1172
  ImportType : str
1173
1173
  AppendMesh : bool
1174
1174
  CadFacetingFileName : str
@@ -1176,11 +1176,11 @@ class Root(PyMenu):
1176
1176
  Pattern : str
1177
1177
  LengthUnit : str
1178
1178
  TesselationMethod : str
1179
- OriginalZones : List[str]
1179
+ OriginalZones : list[str]
1180
1180
  ExecuteShareTopology : str
1181
- CADFacetingControls : Dict[str, Any]
1182
- CadImportOptions : Dict[str, Any]
1183
- ShareTopologyPreferences : Dict[str, Any]
1181
+ CADFacetingControls : dict[str, Any]
1182
+ CadImportOptions : dict[str, Any]
1183
+ ShareTopologyPreferences : dict[str, Any]
1184
1184
  PreviewSizeToggle : bool
1185
1185
 
1186
1186
  Returns
@@ -1200,15 +1200,15 @@ class Root(PyMenu):
1200
1200
  EnableParallel : bool
1201
1201
  SaveVolumeMesh : bool
1202
1202
  EditVolumeSettings : bool
1203
- RegionNameList : List[str]
1204
- RegionVolumeFillList : List[str]
1205
- RegionSizeList : List[str]
1206
- OldRegionNameList : List[str]
1207
- OldRegionVolumeFillList : List[str]
1208
- OldRegionSizeList : List[str]
1209
- AllRegionNameList : List[str]
1210
- AllRegionVolumeFillList : List[str]
1211
- AllRegionSizeList : List[str]
1203
+ RegionNameList : list[str]
1204
+ RegionVolumeFillList : list[str]
1205
+ RegionSizeList : list[str]
1206
+ OldRegionNameList : list[str]
1207
+ OldRegionVolumeFillList : list[str]
1208
+ OldRegionSizeList : list[str]
1209
+ AllRegionNameList : list[str]
1210
+ AllRegionVolumeFillList : list[str]
1211
+ AllRegionSizeList : list[str]
1212
1212
  AdvancedOptions : bool
1213
1213
  SpikeRemovalAngle : float
1214
1214
  DihedralMinAngle : float
@@ -1238,12 +1238,12 @@ class Root(PyMenu):
1238
1238
  MeshFluidRegions : bool
1239
1239
  MeshSolidRegions : bool
1240
1240
  SizingMethod : str
1241
- VolumeFillControls : Dict[str, Any]
1241
+ VolumeFillControls : dict[str, Any]
1242
1242
  RegionBasedPreferences : bool
1243
1243
  ReMergeZones : str
1244
1244
  ParallelMeshing : bool
1245
- VolumeMeshPreferences : Dict[str, Any]
1246
- PrismPreferences : Dict[str, Any]
1245
+ VolumeMeshPreferences : dict[str, Any]
1246
+ PrismPreferences : dict[str, Any]
1247
1247
  InvokePrimsControl : str
1248
1248
  OffsetMethodType : str
1249
1249
  NumberOfLayers : int
@@ -1253,20 +1253,20 @@ class Root(PyMenu):
1253
1253
  FirstHeight : float
1254
1254
  MeshObject : str
1255
1255
  MeshDeadRegions : bool
1256
- BodyLabelList : List[str]
1256
+ BodyLabelList : list[str]
1257
1257
  PrismLayers : bool
1258
1258
  QuadTetTransition : str
1259
1259
  MergeCellZones : bool
1260
- FaceScope : Dict[str, Any]
1261
- RegionTetNameList : List[str]
1262
- RegionTetMaxCellLengthList : List[str]
1263
- RegionTetGrowthRateList : List[str]
1264
- RegionHexNameList : List[str]
1265
- RegionHexMaxCellLengthList : List[str]
1266
- OldRegionTetMaxCellLengthList : List[str]
1267
- OldRegionTetGrowthRateList : List[str]
1268
- OldRegionHexMaxCellLengthList : List[str]
1269
- CFDSurfaceMeshControls : Dict[str, Any]
1260
+ FaceScope : dict[str, Any]
1261
+ RegionTetNameList : list[str]
1262
+ RegionTetMaxCellLengthList : list[str]
1263
+ RegionTetGrowthRateList : list[str]
1264
+ RegionHexNameList : list[str]
1265
+ RegionHexMaxCellLengthList : list[str]
1266
+ OldRegionTetMaxCellLengthList : list[str]
1267
+ OldRegionTetGrowthRateList : list[str]
1268
+ OldRegionHexMaxCellLengthList : list[str]
1269
+ CFDSurfaceMeshControls : dict[str, Any]
1270
1270
 
1271
1271
  Returns
1272
1272
  -------
@@ -1286,14 +1286,14 @@ class Root(PyMenu):
1286
1286
  InvokeShareTopology : str
1287
1287
  NonConformal : str
1288
1288
  Multizone : str
1289
- SetupInternals : List[str]
1290
- SetupInternalTypes : List[str]
1291
- OldZoneList : List[str]
1292
- OldZoneTypeList : List[str]
1293
- RegionList : List[str]
1294
- EdgeLabels : List[str]
1289
+ SetupInternals : list[str]
1290
+ SetupInternalTypes : list[str]
1291
+ OldZoneList : list[str]
1292
+ OldZoneTypeList : list[str]
1293
+ RegionList : list[str]
1294
+ EdgeLabels : list[str]
1295
1295
  Duplicates : bool
1296
- SMImprovePreferences : Dict[str, Any]
1296
+ SMImprovePreferences : dict[str, Any]
1297
1297
 
1298
1298
  Returns
1299
1299
  -------
@@ -1310,20 +1310,20 @@ class Root(PyMenu):
1310
1310
  MRFName : str
1311
1311
  CreationMethod : str
1312
1312
  SelectionType : str
1313
- ObjectSelectionSingle : List[str]
1314
- ZoneSelectionSingle : List[str]
1315
- LabelSelectionSingle : List[str]
1316
- ObjectSelectionList : List[str]
1317
- ZoneSelectionList : List[str]
1318
- ZoneLocation : List[str]
1319
- LabelSelectionList : List[str]
1313
+ ObjectSelectionSingle : list[str]
1314
+ ZoneSelectionSingle : list[str]
1315
+ LabelSelectionSingle : list[str]
1316
+ ObjectSelectionList : list[str]
1317
+ ZoneSelectionList : list[str]
1318
+ ZoneLocation : list[str]
1319
+ LabelSelectionList : list[str]
1320
1320
  DefeaturingSize : float
1321
1321
  OffsetHeight : float
1322
- Pivot : Dict[str, Any]
1323
- Axis : Dict[str, Any]
1324
- Rotation : Dict[str, Any]
1325
- CylinderObject : Dict[str, Any]
1326
- BoundingBoxObject : Dict[str, Any]
1322
+ Pivot : dict[str, Any]
1323
+ Axis : dict[str, Any]
1324
+ Rotation : dict[str, Any]
1325
+ CylinderObject : dict[str, Any]
1326
+ BoundingBoxObject : dict[str, Any]
1327
1327
 
1328
1328
  Returns
1329
1329
  -------
@@ -1339,9 +1339,9 @@ class Root(PyMenu):
1339
1339
  ----------
1340
1340
  DisplayGridName : str
1341
1341
  SelectionType : str
1342
- ObjectSelectionList : List[str]
1343
- ZoneSelectionList : List[str]
1344
- ZoneLocation : List[str]
1342
+ ObjectSelectionList : list[str]
1343
+ ZoneSelectionList : list[str]
1344
+ ZoneLocation : list[str]
1345
1345
  AdvancedOptions : bool
1346
1346
  DeviationMinValue : float
1347
1347
  DeviationMaxValue : float
@@ -1361,15 +1361,15 @@ class Root(PyMenu):
1361
1361
  Parameters
1362
1362
  ----------
1363
1363
  NumberOfOrphans : str
1364
- ObjectSelectionList : List[str]
1364
+ ObjectSelectionList : list[str]
1365
1365
  EnableGridPriority : bool
1366
1366
  DonorPriorityMethod : str
1367
1367
  OverlapBoundaries : str
1368
1368
  CheckOversetInterfaceIntersection : str
1369
- RegionNameList : List[str]
1370
- RegionSizeList : List[str]
1371
- OldRegionNameList : List[str]
1372
- OldRegionSizeList : List[str]
1369
+ RegionNameList : list[str]
1370
+ RegionSizeList : list[str]
1371
+ OldRegionNameList : list[str]
1372
+ OldRegionSizeList : list[str]
1373
1373
 
1374
1374
  Returns
1375
1375
  -------
@@ -1389,10 +1389,10 @@ class Root(PyMenu):
1389
1389
  NewRegionType : str
1390
1390
  LinkConstruction : str
1391
1391
  SelectionType : str
1392
- ZoneSelectionList : List[str]
1393
- ZoneLocation : List[str]
1394
- LabelSelectionList : List[str]
1395
- ObjectSelectionList : List[str]
1392
+ ZoneSelectionList : list[str]
1393
+ ZoneLocation : list[str]
1394
+ LabelSelectionList : list[str]
1395
+ ObjectSelectionList : list[str]
1396
1396
  GraphicalSelection : bool
1397
1397
  ShowCoordinates : bool
1398
1398
  X : float
@@ -1417,9 +1417,9 @@ class Root(PyMenu):
1417
1417
  Type : str
1418
1418
  GeometryFileName : str
1419
1419
  MeshFileName : str
1420
- ImportedObjects : List[str]
1420
+ ImportedObjects : list[str]
1421
1421
  LengthUnit : str
1422
- CadImportOptions : Dict[str, Any]
1422
+ CadImportOptions : dict[str, Any]
1423
1423
 
1424
1424
  Returns
1425
1425
  -------
@@ -1436,7 +1436,7 @@ class Root(PyMenu):
1436
1436
  FileFormat : str
1437
1437
  LengthUnit : str
1438
1438
  MeshUnit : str
1439
- ImportCadPreferences : Dict[str, Any]
1439
+ ImportCadPreferences : dict[str, Any]
1440
1440
  FileName : str
1441
1441
  FileNames : str
1442
1442
  MeshFileName : str
@@ -1446,7 +1446,7 @@ class Root(PyMenu):
1446
1446
  AppendMesh : bool
1447
1447
  Directory : str
1448
1448
  Pattern : str
1449
- CadImportOptions : Dict[str, Any]
1449
+ CadImportOptions : dict[str, Any]
1450
1450
 
1451
1451
  Returns
1452
1452
  -------
@@ -1463,7 +1463,7 @@ class Root(PyMenu):
1463
1463
  MeshObject : str
1464
1464
  FaceQualityLimit : float
1465
1465
  SQMinSize : float
1466
- SMImprovePreferences : Dict[str, Any]
1466
+ SMImprovePreferences : dict[str, Any]
1467
1467
 
1468
1468
  Returns
1469
1469
  -------
@@ -1479,7 +1479,7 @@ class Root(PyMenu):
1479
1479
  ----------
1480
1480
  QualityMethod : str
1481
1481
  CellQualityLimit : float
1482
- VMImprovePreferences : Dict[str, Any]
1482
+ VMImprovePreferences : dict[str, Any]
1483
1483
 
1484
1484
  Returns
1485
1485
  -------
@@ -1494,13 +1494,13 @@ class Root(PyMenu):
1494
1494
  Parameters
1495
1495
  ----------
1496
1496
  ChildName : str
1497
- ObjectList : List[str]
1497
+ ObjectList : list[str]
1498
1498
  AutoPopulateVector : str
1499
- PatternVector : Dict[str, Any]
1499
+ PatternVector : dict[str, Any]
1500
1500
  Pitch : float
1501
1501
  NumberOfUnits : int
1502
1502
  CheckOverlappingFaces : str
1503
- BatteryModelingOptions : Dict[str, Any]
1503
+ BatteryModelingOptions : dict[str, Any]
1504
1504
 
1505
1505
  Returns
1506
1506
  -------
@@ -1519,7 +1519,7 @@ class Root(PyMenu):
1519
1519
  Route : str
1520
1520
  CreateObjectPer : str
1521
1521
  NumParts : float
1522
- 2DRefaceting : Dict[str, Any]
1522
+ 2DRefaceting : dict[str, Any]
1523
1523
 
1524
1524
  Returns
1525
1525
  -------
@@ -1535,17 +1535,17 @@ class Root(PyMenu):
1535
1535
  ----------
1536
1536
  LocalSettingsName : str
1537
1537
  SelectionType : str
1538
- ObjectSelectionList : List[str]
1539
- LabelSelectionList : List[str]
1540
- ZoneSelectionList : List[str]
1541
- ZoneLocation : List[str]
1542
- EdgeSelectionList : List[str]
1543
- LocalSizeControlParameters : Dict[str, Any]
1538
+ ObjectSelectionList : list[str]
1539
+ LabelSelectionList : list[str]
1540
+ ZoneSelectionList : list[str]
1541
+ ZoneLocation : list[str]
1542
+ EdgeSelectionList : list[str]
1543
+ LocalSizeControlParameters : dict[str, Any]
1544
1544
  ValueChanged : str
1545
- CompleteZoneSelectionList : List[str]
1546
- CompleteLabelSelectionList : List[str]
1547
- CompleteObjectSelectionList : List[str]
1548
- CompleteEdgeSelectionList : List[str]
1545
+ CompleteZoneSelectionList : list[str]
1546
+ CompleteLabelSelectionList : list[str]
1547
+ CompleteObjectSelectionList : list[str]
1548
+ CompleteEdgeSelectionList : list[str]
1549
1549
 
1550
1550
  Returns
1551
1551
  -------
@@ -1566,18 +1566,18 @@ class Root(PyMenu):
1566
1566
  Volume : float
1567
1567
  EqualRange : float
1568
1568
  ZoneOrLabel : str
1569
- LabelList : List[str]
1570
- ManageFaceZoneList : List[str]
1571
- ManageCellZoneList : List[str]
1572
- BodyLabelList : List[str]
1569
+ LabelList : list[str]
1570
+ ManageFaceZoneList : list[str]
1571
+ ManageCellZoneList : list[str]
1572
+ BodyLabelList : list[str]
1573
1573
  Operation : str
1574
1574
  OperationName : str
1575
1575
  MZChildName : str
1576
1576
  AddPrefixName : str
1577
1577
  FaceMerge : str
1578
1578
  Angle : float
1579
- ZoneList : List[str]
1580
- ZoneLocation : List[str]
1579
+ ZoneList : list[str]
1580
+ ZoneLocation : list[str]
1581
1581
 
1582
1582
  Returns
1583
1583
  -------
@@ -1610,16 +1610,16 @@ class Root(PyMenu):
1610
1610
  RemeshControlName : str
1611
1611
  LocalSize : float
1612
1612
  FaceZoneOrLabel : str
1613
- RemeshFaceZoneList : List[str]
1614
- RemeshFaceLabelList : List[str]
1613
+ RemeshFaceZoneList : list[str]
1614
+ RemeshFaceLabelList : list[str]
1615
1615
  SizingType : str
1616
1616
  LocalMinSize : float
1617
1617
  LocalMaxSize : float
1618
1618
  RemeshGrowthRate : float
1619
1619
  RemeshCurvatureNormalAngle : float
1620
1620
  RemeshCellsPerGap : float
1621
- CFDSurfaceMeshControls : Dict[str, Any]
1622
- RemeshPreferences : Dict[str, Any]
1621
+ CFDSurfaceMeshControls : dict[str, Any]
1622
+ RemeshPreferences : dict[str, Any]
1623
1623
 
1624
1624
  Returns
1625
1625
  -------
@@ -1650,10 +1650,10 @@ class Root(PyMenu):
1650
1650
  RemoveEmptyParts : bool
1651
1651
  FeatureAngle : float
1652
1652
  OneZonePer : str
1653
- Refaceting : Dict[str, Any]
1653
+ Refaceting : dict[str, Any]
1654
1654
  IgnoreSolidNames : bool
1655
1655
  IgnoreSolidNamesAppend : bool
1656
- Options : Dict[str, Any]
1656
+ Options : dict[str, Any]
1657
1657
  EdgeExtraction : str
1658
1658
  Context : int
1659
1659
  ObjectSetting : str
@@ -1673,8 +1673,8 @@ class Root(PyMenu):
1673
1673
  PartReplacementName : str
1674
1674
  ManagementMethod : str
1675
1675
  CreationMethod : str
1676
- OldObjectSelectionList : List[str]
1677
- NewObjectSelectionList : List[str]
1676
+ OldObjectSelectionList : list[str]
1677
+ NewObjectSelectionList : list[str]
1678
1678
  AdvancedOptions : bool
1679
1679
  ScalingFactor : float
1680
1680
  MptMethodType : str
@@ -1743,15 +1743,15 @@ class Root(PyMenu):
1743
1743
  Type : str
1744
1744
  Method : str
1745
1745
  PeriodicityAngle : float
1746
- LCSOrigin : Dict[str, Any]
1747
- LCSVector : Dict[str, Any]
1748
- TransShift : Dict[str, Any]
1746
+ LCSOrigin : dict[str, Any]
1747
+ LCSVector : dict[str, Any]
1748
+ TransShift : dict[str, Any]
1749
1749
  SelectionType : str
1750
- ZoneList : List[str]
1751
- LabelList : List[str]
1752
- TopologyList : List[str]
1750
+ ZoneList : list[str]
1751
+ LabelList : list[str]
1752
+ TopologyList : list[str]
1753
1753
  RemeshBoundariesOption : str
1754
- ZoneLocation : List[str]
1754
+ ZoneLocation : list[str]
1755
1755
  ListAllLabelToggle : bool
1756
1756
 
1757
1757
  Returns
@@ -1774,7 +1774,7 @@ class Root(PyMenu):
1774
1774
  LastRatioPercentage : float
1775
1775
  FirstHeight : float
1776
1776
  PrismLayers : int
1777
- RegionSelectionList : List[str]
1777
+ RegionSelectionList : list[str]
1778
1778
 
1779
1779
  Returns
1780
1780
  -------
@@ -1792,10 +1792,10 @@ class Root(PyMenu):
1792
1792
  GapDistanceConnect : float
1793
1793
  STMinSize : float
1794
1794
  InterfaceSelect : str
1795
- EdgeLabels : List[str]
1796
- ShareTopologyPreferences : Dict[str, Any]
1797
- SMImprovePreferences : Dict[str, Any]
1798
- SurfaceMeshPreferences : Dict[str, Any]
1795
+ EdgeLabels : list[str]
1796
+ ShareTopologyPreferences : dict[str, Any]
1797
+ SMImprovePreferences : dict[str, Any]
1798
+ SurfaceMeshPreferences : dict[str, Any]
1799
1799
 
1800
1800
  Returns
1801
1801
  -------
@@ -1816,7 +1816,7 @@ class Root(PyMenu):
1816
1816
  InitialSizeControl : bool
1817
1817
  TargetSizeControl : bool
1818
1818
  SizeControlInterval : float
1819
- SizeControlParameters : Dict[str, Any]
1819
+ SizeControlParameters : dict[str, Any]
1820
1820
 
1821
1821
  Returns
1822
1822
  -------
@@ -1834,11 +1834,11 @@ class Root(PyMenu):
1834
1834
  Type : str
1835
1835
  Method : str
1836
1836
  SelectionType : str
1837
- TopoBodyList : List[str]
1838
- CellZoneList : List[str]
1839
- LCSOrigin : Dict[str, Any]
1840
- LCSVector : Dict[str, Any]
1841
- TransShift : Dict[str, Any]
1837
+ TopoBodyList : list[str]
1838
+ CellZoneList : list[str]
1839
+ LCSOrigin : dict[str, Any]
1840
+ LCSVector : dict[str, Any]
1841
+ TransShift : dict[str, Any]
1842
1842
  Angle : float
1843
1843
  Copy : str
1844
1844
  NumOfCopies : int
@@ -1859,21 +1859,21 @@ class Root(PyMenu):
1859
1859
  ----------
1860
1860
  MeshObject : str
1861
1861
  SelectionType : str
1862
- BoundaryLabelList : List[str]
1863
- BoundaryLabelTypeList : List[str]
1864
- BoundaryZoneList : List[str]
1865
- BoundaryZoneTypeList : List[str]
1866
- OldBoundaryLabelList : List[str]
1867
- OldBoundaryLabelTypeList : List[str]
1868
- OldBoundaryZoneList : List[str]
1869
- OldBoundaryZoneTypeList : List[str]
1870
- OldLabelZoneList : List[str]
1862
+ BoundaryLabelList : list[str]
1863
+ BoundaryLabelTypeList : list[str]
1864
+ BoundaryZoneList : list[str]
1865
+ BoundaryZoneTypeList : list[str]
1866
+ OldBoundaryLabelList : list[str]
1867
+ OldBoundaryLabelTypeList : list[str]
1868
+ OldBoundaryZoneList : list[str]
1869
+ OldBoundaryZoneTypeList : list[str]
1870
+ OldLabelZoneList : list[str]
1871
1871
  ListAllBoundariesToggle : bool
1872
- ZoneLocation : List[str]
1873
- TopologyList : List[str]
1874
- TopologyTypeList : List[str]
1875
- OldTopologyList : List[str]
1876
- OldTopologyTypeList : List[str]
1872
+ ZoneLocation : list[str]
1873
+ TopologyList : list[str]
1874
+ TopologyTypeList : list[str]
1875
+ OldTopologyList : list[str]
1876
+ OldTopologyTypeList : list[str]
1877
1877
 
1878
1878
  Returns
1879
1879
  -------
@@ -1889,27 +1889,27 @@ class Root(PyMenu):
1889
1889
  ----------
1890
1890
  MainFluidRegion : str
1891
1891
  FilterCategory : str
1892
- RegionNameList : List[str]
1893
- RegionMeshMethodList : List[str]
1894
- RegionTypeList : List[str]
1895
- RegionVolumeFillList : List[str]
1896
- RegionLeakageSizeList : List[str]
1897
- RegionOversetComponenList : List[str]
1898
- OldRegionNameList : List[str]
1899
- OldRegionMeshMethodList : List[str]
1900
- OldRegionTypeList : List[str]
1901
- OldRegionVolumeFillList : List[str]
1902
- OldRegionLeakageSizeList : List[str]
1903
- OldRegionOversetComponenList : List[str]
1904
- AllRegionNameList : List[str]
1905
- AllRegionMeshMethodList : List[str]
1906
- AllRegionTypeList : List[str]
1907
- AllRegionVolumeFillList : List[str]
1908
- AllRegionLeakageSizeList : List[str]
1909
- AllRegionOversetComponenList : List[str]
1910
- AllRegionLinkedConstructionSurfaceList : List[str]
1911
- AllRegionSourceList : List[str]
1912
- AllRegionFilterCategories : List[str]
1892
+ RegionNameList : list[str]
1893
+ RegionMeshMethodList : list[str]
1894
+ RegionTypeList : list[str]
1895
+ RegionVolumeFillList : list[str]
1896
+ RegionLeakageSizeList : list[str]
1897
+ RegionOversetComponenList : list[str]
1898
+ OldRegionNameList : list[str]
1899
+ OldRegionMeshMethodList : list[str]
1900
+ OldRegionTypeList : list[str]
1901
+ OldRegionVolumeFillList : list[str]
1902
+ OldRegionLeakageSizeList : list[str]
1903
+ OldRegionOversetComponenList : list[str]
1904
+ AllRegionNameList : list[str]
1905
+ AllRegionMeshMethodList : list[str]
1906
+ AllRegionTypeList : list[str]
1907
+ AllRegionVolumeFillList : list[str]
1908
+ AllRegionLeakageSizeList : list[str]
1909
+ AllRegionOversetComponenList : list[str]
1910
+ AllRegionLinkedConstructionSurfaceList : list[str]
1911
+ AllRegionSourceList : list[str]
1912
+ AllRegionFilterCategories : list[str]
1913
1913
 
1914
1914
  Returns
1915
1915
  -------
@@ -1924,12 +1924,12 @@ class Root(PyMenu):
1924
1924
  Parameters
1925
1925
  ----------
1926
1926
  MeshObject : str
1927
- RegionNameList : List[str]
1928
- RegionTypeList : List[str]
1929
- OldRegionNameList : List[str]
1930
- OldRegionTypeList : List[str]
1931
- RegionInternals : List[str]
1932
- RegionInternalTypes : List[str]
1927
+ RegionNameList : list[str]
1928
+ RegionTypeList : list[str]
1929
+ OldRegionNameList : list[str]
1930
+ OldRegionTypeList : list[str]
1931
+ RegionInternals : list[str]
1932
+ RegionInternalTypes : list[str]
1933
1933
 
1934
1934
  Returns
1935
1935
  -------