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
@@ -130,85 +130,85 @@ class Root(PyMenu):
130
130
 
131
131
  class AllOversetNameList(PyTextual):
132
132
  """
133
- Parameter AllOversetNameList of value type List[str].
133
+ Parameter AllOversetNameList of value type list[str].
134
134
  """
135
135
  pass
136
136
 
137
137
  class AllOversetSizeList(PyTextual):
138
138
  """
139
- Parameter AllOversetSizeList of value type List[str].
139
+ Parameter AllOversetSizeList of value type list[str].
140
140
  """
141
141
  pass
142
142
 
143
143
  class AllOversetTypeList(PyTextual):
144
144
  """
145
- Parameter AllOversetTypeList of value type List[str].
145
+ Parameter AllOversetTypeList of value type list[str].
146
146
  """
147
147
  pass
148
148
 
149
149
  class AllOversetVolumeFillList(PyTextual):
150
150
  """
151
- Parameter AllOversetVolumeFillList of value type List[str].
151
+ Parameter AllOversetVolumeFillList of value type list[str].
152
152
  """
153
153
  pass
154
154
 
155
155
  class AllRegionFilterCategories(PyTextual):
156
156
  """
157
- Parameter AllRegionFilterCategories of value type List[str].
157
+ Parameter AllRegionFilterCategories of value type list[str].
158
158
  """
159
159
  pass
160
160
 
161
161
  class AllRegionLeakageSizeList(PyTextual):
162
162
  """
163
- Parameter AllRegionLeakageSizeList of value type List[str].
163
+ Parameter AllRegionLeakageSizeList of value type list[str].
164
164
  """
165
165
  pass
166
166
 
167
167
  class AllRegionLinkedConstructionSurfaceList(PyTextual):
168
168
  """
169
- Parameter AllRegionLinkedConstructionSurfaceList of value type List[str].
169
+ Parameter AllRegionLinkedConstructionSurfaceList of value type list[str].
170
170
  """
171
171
  pass
172
172
 
173
173
  class AllRegionMeshMethodList(PyTextual):
174
174
  """
175
- Parameter AllRegionMeshMethodList of value type List[str].
175
+ Parameter AllRegionMeshMethodList of value type list[str].
176
176
  """
177
177
  pass
178
178
 
179
179
  class AllRegionNameList(PyTextual):
180
180
  """
181
- Parameter AllRegionNameList of value type List[str].
181
+ Parameter AllRegionNameList of value type list[str].
182
182
  """
183
183
  pass
184
184
 
185
185
  class AllRegionOversetComponenList(PyTextual):
186
186
  """
187
- Parameter AllRegionOversetComponenList of value type List[str].
187
+ Parameter AllRegionOversetComponenList of value type list[str].
188
188
  """
189
189
  pass
190
190
 
191
191
  class AllRegionSizeList(PyTextual):
192
192
  """
193
- Parameter AllRegionSizeList of value type List[str].
193
+ Parameter AllRegionSizeList of value type list[str].
194
194
  """
195
195
  pass
196
196
 
197
197
  class AllRegionSourceList(PyTextual):
198
198
  """
199
- Parameter AllRegionSourceList of value type List[str].
199
+ Parameter AllRegionSourceList of value type list[str].
200
200
  """
201
201
  pass
202
202
 
203
203
  class AllRegionTypeList(PyTextual):
204
204
  """
205
- Parameter AllRegionTypeList of value type List[str].
205
+ Parameter AllRegionTypeList of value type list[str].
206
206
  """
207
207
  pass
208
208
 
209
209
  class AllRegionVolumeFillList(PyTextual):
210
210
  """
211
- Parameter AllRegionVolumeFillList of value type List[str].
211
+ Parameter AllRegionVolumeFillList of value type list[str].
212
212
  """
213
213
  pass
214
214
 
@@ -281,20 +281,20 @@ class Root(PyMenu):
281
281
  TransitionRatio : float
282
282
  Rate : float
283
283
  FirstHeight : float
284
- FaceScope : Dict[str, Any]
285
- RegionScope : List[str]
286
- BlLabelList : List[str]
287
- ZoneSelectionList : List[str]
288
- ZoneLocation : List[str]
289
- LocalPrismPreferences : Dict[str, Any]
290
- BLZoneList : List[str]
291
- BLRegionList : List[str]
292
- CompleteRegionScope : List[str]
293
- CompleteBlLabelList : List[str]
294
- CompleteBLZoneList : List[str]
295
- CompleteBLRegionList : List[str]
296
- CompleteZoneSelectionList : List[str]
297
- CompleteLabelSelectionList : List[str]
284
+ FaceScope : dict[str, Any]
285
+ RegionScope : list[str]
286
+ BlLabelList : list[str]
287
+ ZoneSelectionList : list[str]
288
+ ZoneLocation : list[str]
289
+ LocalPrismPreferences : dict[str, Any]
290
+ BLZoneList : list[str]
291
+ BLRegionList : list[str]
292
+ CompleteRegionScope : list[str]
293
+ CompleteBlLabelList : list[str]
294
+ CompleteBLZoneList : list[str]
295
+ CompleteBLRegionList : list[str]
296
+ CompleteZoneSelectionList : list[str]
297
+ CompleteLabelSelectionList : list[str]
298
298
 
299
299
  Returns
300
300
  -------
@@ -317,20 +317,20 @@ class Root(PyMenu):
317
317
  TransitionRatio : float
318
318
  Rate : float
319
319
  FirstHeight : float
320
- FaceScope : Dict[str, Any]
321
- RegionScope : List[str]
322
- BlLabelList : List[str]
323
- ZoneSelectionList : List[str]
324
- ZoneLocation : List[str]
325
- LocalPrismPreferences : Dict[str, Any]
326
- BLZoneList : List[str]
327
- BLRegionList : List[str]
328
- CompleteRegionScope : List[str]
329
- CompleteBlLabelList : List[str]
330
- CompleteBLZoneList : List[str]
331
- CompleteBLRegionList : List[str]
332
- CompleteZoneSelectionList : List[str]
333
- CompleteLabelSelectionList : List[str]
320
+ FaceScope : dict[str, Any]
321
+ RegionScope : list[str]
322
+ BlLabelList : list[str]
323
+ ZoneSelectionList : list[str]
324
+ ZoneLocation : list[str]
325
+ LocalPrismPreferences : dict[str, Any]
326
+ BLZoneList : list[str]
327
+ BLRegionList : list[str]
328
+ CompleteRegionScope : list[str]
329
+ CompleteBlLabelList : list[str]
330
+ CompleteBLZoneList : list[str]
331
+ CompleteBLRegionList : list[str]
332
+ CompleteZoneSelectionList : list[str]
333
+ CompleteLabelSelectionList : list[str]
334
334
 
335
335
  Returns
336
336
  -------
@@ -347,9 +347,9 @@ class Root(PyMenu):
347
347
  MeshObject : str
348
348
  NewBoundaryLabelName : str
349
349
  NewBoundaryType : str
350
- BoundaryFaceZoneList : List[str]
350
+ BoundaryFaceZoneList : list[str]
351
351
  Merge : str
352
- ZoneLocation : List[str]
352
+ ZoneLocation : list[str]
353
353
 
354
354
  Returns
355
355
  -------
@@ -365,17 +365,17 @@ class Root(PyMenu):
365
365
  ----------
366
366
  LocalSettingsName : str
367
367
  SelectionType : str
368
- ObjectSelectionList : List[str]
369
- LabelSelectionList : List[str]
370
- ZoneSelectionList : List[str]
371
- ZoneLocation : List[str]
372
- EdgeSelectionList : List[str]
373
- LocalSizeControlParameters : Dict[str, Any]
368
+ ObjectSelectionList : list[str]
369
+ LabelSelectionList : list[str]
370
+ ZoneSelectionList : list[str]
371
+ ZoneLocation : list[str]
372
+ EdgeSelectionList : list[str]
373
+ LocalSizeControlParameters : dict[str, Any]
374
374
  ValueChanged : str
375
- CompleteZoneSelectionList : List[str]
376
- CompleteLabelSelectionList : List[str]
377
- CompleteObjectSelectionList : List[str]
378
- CompleteEdgeSelectionList : List[str]
375
+ CompleteZoneSelectionList : list[str]
376
+ CompleteLabelSelectionList : list[str]
377
+ CompleteObjectSelectionList : list[str]
378
+ CompleteEdgeSelectionList : list[str]
379
379
 
380
380
  Returns
381
381
  -------
@@ -401,17 +401,17 @@ class Root(PyMenu):
401
401
  BOIScopeTo : str
402
402
  IgnoreOrientation : str
403
403
  BOIZoneorLabel : str
404
- BOIFaceLabelList : List[str]
405
- BOIFaceZoneList : List[str]
406
- EdgeLabelList : List[str]
407
- TopologyList : List[str]
404
+ BOIFaceLabelList : list[str]
405
+ BOIFaceZoneList : list[str]
406
+ EdgeLabelList : list[str]
407
+ TopologyList : list[str]
408
408
  BOIPatchingtoggle : bool
409
409
  DrawSizeControl : bool
410
- ZoneLocation : List[str]
411
- CompleteFaceZoneList : List[str]
412
- CompleteFaceLabelList : List[str]
413
- CompleteEdgeLabelList : List[str]
414
- CompleteTopologyList : List[str]
410
+ ZoneLocation : list[str]
411
+ CompleteFaceZoneList : list[str]
412
+ CompleteFaceLabelList : list[str]
413
+ CompleteEdgeLabelList : list[str]
414
+ CompleteTopologyList : list[str]
415
415
 
416
416
  Returns
417
417
  -------
@@ -431,12 +431,12 @@ class Root(PyMenu):
431
431
  FillWith : str
432
432
  UseSweepSize : str
433
433
  MaxSweepSize : float
434
- RegionScope : List[str]
434
+ RegionScope : list[str]
435
435
  SourceMethod : str
436
436
  ParallelSelection : bool
437
- LabelSourceList : List[str]
438
- ZoneSourceList : List[str]
439
- ZoneLocation : List[str]
437
+ LabelSourceList : list[str]
438
+ ZoneSourceList : list[str]
439
+ ZoneLocation : list[str]
440
440
  AssignSizeUsing : str
441
441
  Intervals : int
442
442
  Size : float
@@ -445,10 +445,10 @@ class Root(PyMenu):
445
445
  GrowthMethod : str
446
446
  GrowthRate : float
447
447
  BiasFactor : float
448
- EdgeLabelList : List[str]
449
- CFDSurfaceMeshControls : Dict[str, Any]
450
- CompleteRegionScope : List[str]
451
- CompleteEdgeScope : List[str]
448
+ EdgeLabelList : list[str]
449
+ CFDSurfaceMeshControls : dict[str, Any]
450
+ CompleteRegionScope : list[str]
451
+ CompleteEdgeScope : list[str]
452
452
 
453
453
  Returns
454
454
  -------
@@ -470,9 +470,9 @@ class Root(PyMenu):
470
470
  LastAspectRatio : float
471
471
  Rate : float
472
472
  FirstHeight : float
473
- FaceLabelList : List[str]
474
- EdgeLabelList : List[str]
475
- PrimeShellBLPreferences : Dict[str, Any]
473
+ FaceLabelList : list[str]
474
+ EdgeLabelList : list[str]
475
+ PrimeShellBLPreferences : dict[str, Any]
476
476
 
477
477
  Returns
478
478
  -------
@@ -488,10 +488,10 @@ class Root(PyMenu):
488
488
  ----------
489
489
  ZeroThicknessName : str
490
490
  SelectionType : str
491
- ZoneSelectionList : List[str]
492
- ZoneLocation : List[str]
493
- ObjectSelectionList : List[str]
494
- LabelSelectionList : List[str]
491
+ ZoneSelectionList : list[str]
492
+ ZoneLocation : list[str]
493
+ ObjectSelectionList : list[str]
494
+ LabelSelectionList : list[str]
495
495
  Distance : float
496
496
 
497
497
  Returns
@@ -510,18 +510,18 @@ class Root(PyMenu):
510
510
  ZoneType : str
511
511
  PatchType : str
512
512
  SelectionType : str
513
- LabelSelectionList : List[str]
514
- ZoneSelectionList : List[str]
515
- TopologyList : List[str]
516
- CreatePatchPreferences : Dict[str, Any]
513
+ LabelSelectionList : list[str]
514
+ ZoneSelectionList : list[str]
515
+ TopologyList : list[str]
516
+ CreatePatchPreferences : dict[str, Any]
517
517
  ObjectAssociation : str
518
518
  NewObjectName : str
519
519
  PatchObjectName : str
520
- CapLabels : List[str]
521
- ZoneLocation : List[str]
522
- CompleteZoneSelectionList : List[str]
523
- CompleteLabelSelectionList : List[str]
524
- CompleteTopologyList : List[str]
520
+ CapLabels : list[str]
521
+ ZoneLocation : list[str]
522
+ CompleteZoneSelectionList : list[str]
523
+ CompleteLabelSelectionList : list[str]
524
+ CompleteTopologyList : list[str]
525
525
 
526
526
  Returns
527
527
  -------
@@ -543,7 +543,7 @@ class Root(PyMenu):
543
543
  GlobalMin : float
544
544
  GlobalMax : float
545
545
  GlobalGrowthRate : float
546
- MeshControlOptions : Dict[str, Any]
546
+ MeshControlOptions : dict[str, Any]
547
547
 
548
548
  Returns
549
549
  -------
@@ -622,15 +622,15 @@ class Root(PyMenu):
622
622
  BOIMaxSize : float
623
623
  BOISizeName : str
624
624
  SelectionType : str
625
- ZoneSelectionList : List[str]
626
- ZoneLocation : List[str]
627
- LabelSelectionList : List[str]
628
- ObjectSelectionList : List[str]
629
- ZoneSelectionSingle : List[str]
630
- ObjectSelectionSingle : List[str]
631
- BoundingBoxObject : Dict[str, Any]
632
- OffsetObject : Dict[str, Any]
633
- CylinderObject : Dict[str, Any]
625
+ ZoneSelectionList : list[str]
626
+ ZoneLocation : list[str]
627
+ LabelSelectionList : list[str]
628
+ ObjectSelectionList : list[str]
629
+ ZoneSelectionSingle : list[str]
630
+ ObjectSelectionSingle : list[str]
631
+ BoundingBoxObject : dict[str, Any]
632
+ OffsetObject : dict[str, Any]
633
+ CylinderObject : dict[str, Any]
634
634
 
635
635
  Returns
636
636
  -------
@@ -649,15 +649,15 @@ class Root(PyMenu):
649
649
  BOIMaxSize : float
650
650
  BOISizeName : str
651
651
  SelectionType : str
652
- ZoneSelectionList : List[str]
653
- ZoneLocation : List[str]
654
- LabelSelectionList : List[str]
655
- ObjectSelectionList : List[str]
656
- ZoneSelectionSingle : List[str]
657
- ObjectSelectionSingle : List[str]
658
- BoundingBoxObject : Dict[str, Any]
659
- OffsetObject : Dict[str, Any]
660
- CylinderObject : Dict[str, Any]
652
+ ZoneSelectionList : list[str]
653
+ ZoneLocation : list[str]
654
+ LabelSelectionList : list[str]
655
+ ObjectSelectionList : list[str]
656
+ ZoneSelectionSingle : list[str]
657
+ ObjectSelectionSingle : list[str]
658
+ BoundingBoxObject : dict[str, Any]
659
+ OffsetObject : dict[str, Any]
660
+ CylinderObject : dict[str, Any]
661
661
  VolumeFill : str
662
662
 
663
663
  Returns
@@ -677,15 +677,15 @@ class Root(PyMenu):
677
677
  BOIMaxSize : float
678
678
  BOISizeName : str
679
679
  SelectionType : str
680
- ZoneSelectionList : List[str]
681
- ZoneLocation : List[str]
682
- LabelSelectionList : List[str]
683
- ObjectSelectionList : List[str]
684
- ZoneSelectionSingle : List[str]
685
- ObjectSelectionSingle : List[str]
686
- BoundingBoxObject : Dict[str, Any]
687
- OffsetObject : Dict[str, Any]
688
- CylinderObject : Dict[str, Any]
680
+ ZoneSelectionList : list[str]
681
+ ZoneLocation : list[str]
682
+ LabelSelectionList : list[str]
683
+ ObjectSelectionList : list[str]
684
+ ZoneSelectionSingle : list[str]
685
+ ObjectSelectionSingle : list[str]
686
+ BoundingBoxObject : dict[str, Any]
687
+ OffsetObject : dict[str, Any]
688
+ CylinderObject : dict[str, Any]
689
689
  VolumeFill : str
690
690
 
691
691
  Returns
@@ -702,11 +702,11 @@ class Root(PyMenu):
702
702
  ----------
703
703
  ContactPatchName : str
704
704
  SelectionType : str
705
- ZoneSelectionList : List[str]
706
- ZoneLocation : List[str]
707
- ObjectSelectionList : List[str]
708
- LabelSelectionList : List[str]
709
- GroundZoneSelectionList : List[str]
705
+ ZoneSelectionList : list[str]
706
+ ZoneLocation : list[str]
707
+ ObjectSelectionList : list[str]
708
+ LabelSelectionList : list[str]
709
+ GroundZoneSelectionList : list[str]
710
710
  Distance : float
711
711
  FeatureAngle : float
712
712
  PatchHole : bool
@@ -728,15 +728,15 @@ class Root(PyMenu):
728
728
  CreationMethod : str
729
729
  ExtractionMethod : str
730
730
  SelectionType : str
731
- ObjectSelectionList : List[str]
732
- ZoneSelectionList : List[str]
733
- ZoneLocation : List[str]
734
- LabelSelectionList : List[str]
735
- ObjectSelectionSingle : List[str]
736
- ZoneSelectionSingle : List[str]
737
- LabelSelectionSingle : List[str]
731
+ ObjectSelectionList : list[str]
732
+ ZoneSelectionList : list[str]
733
+ ZoneLocation : list[str]
734
+ LabelSelectionList : list[str]
735
+ ObjectSelectionSingle : list[str]
736
+ ZoneSelectionSingle : list[str]
737
+ LabelSelectionSingle : list[str]
738
738
  OriginalObjectName : str
739
- BoundingBoxObject : Dict[str, Any]
739
+ BoundingBoxObject : dict[str, Any]
740
740
 
741
741
  Returns
742
742
  -------
@@ -755,10 +755,10 @@ class Root(PyMenu):
755
755
  GapSizeRatio : float
756
756
  GapSize : float
757
757
  SelectionType : str
758
- ZoneSelectionList : List[str]
759
- ZoneLocation : List[str]
760
- LabelSelectionList : List[str]
761
- ObjectSelectionList : List[str]
758
+ ZoneSelectionList : list[str]
759
+ ZoneLocation : list[str]
760
+ LabelSelectionList : list[str]
761
+ ObjectSelectionList : list[str]
762
762
  GapCoverBetweenZones : str
763
763
  GapCoverRefineFactor : float
764
764
  RefineWrapperBeforeProjection : str
@@ -783,15 +783,15 @@ class Root(PyMenu):
783
783
  BOIMaxSize : float
784
784
  BOISizeName : str
785
785
  SelectionType : str
786
- ZoneSelectionList : List[str]
787
- ZoneLocation : List[str]
788
- LabelSelectionList : List[str]
789
- ObjectSelectionList : List[str]
790
- ZoneSelectionSingle : List[str]
791
- ObjectSelectionSingle : List[str]
792
- BoundingBoxObject : Dict[str, Any]
793
- OffsetObject : Dict[str, Any]
794
- CylinderObject : Dict[str, Any]
786
+ ZoneSelectionList : list[str]
787
+ ZoneLocation : list[str]
788
+ LabelSelectionList : list[str]
789
+ ObjectSelectionList : list[str]
790
+ ZoneSelectionSingle : list[str]
791
+ ObjectSelectionSingle : list[str]
792
+ BoundingBoxObject : dict[str, Any]
793
+ OffsetObject : dict[str, Any]
794
+ CylinderObject : dict[str, Any]
795
795
  VolumeFill : str
796
796
 
797
797
  Returns
@@ -807,7 +807,7 @@ class Root(PyMenu):
807
807
  Parameters
808
808
  ----------
809
809
  OversetInterfacesName : str
810
- ObjectSelectionList : List[str]
810
+ ObjectSelectionList : list[str]
811
811
 
812
812
  Returns
813
813
  -------
@@ -829,11 +829,11 @@ class Root(PyMenu):
829
829
  CellSizeP1P3 : float
830
830
  CellSizeP1P4 : float
831
831
  BufferSizeRatio : float
832
- P1 : List[float]
833
- P2 : List[float]
834
- P3 : List[float]
835
- P4 : List[float]
836
- NonRectangularParameters : Dict[str, Any]
832
+ P1 : list[float]
833
+ P2 : list[float]
834
+ P3 : list[float]
835
+ P4 : list[float]
836
+ NonRectangularParameters : dict[str, Any]
837
837
 
838
838
  Returns
839
839
  -------
@@ -866,8 +866,8 @@ class Root(PyMenu):
866
866
  AddChild : str
867
867
  LeakageName : str
868
868
  SelectionType : str
869
- DeadRegionsList : List[str]
870
- RegionSelectionSingle : List[str]
869
+ DeadRegionsList : list[str]
870
+ RegionSelectionSingle : list[str]
871
871
  DeadRegionsSize : float
872
872
  PlaneClippingValue : int
873
873
  PlaneDirection : str
@@ -890,7 +890,7 @@ class Root(PyMenu):
890
890
  AddEnclosure : str
891
891
  CloseCaps : str
892
892
  LocalRefinementRegions : str
893
- DescribeGeometryAndFlowOptions : Dict[str, Any]
893
+ DescribeGeometryAndFlowOptions : dict[str, Any]
894
894
 
895
895
  Returns
896
896
  -------
@@ -925,17 +925,17 @@ class Root(PyMenu):
925
925
  ExtractEdgesName : str
926
926
  ExtractMethodType : str
927
927
  SelectionType : str
928
- ObjectSelectionList : List[str]
929
- GeomObjectSelectionList : List[str]
930
- ZoneSelectionList : List[str]
931
- ZoneLocation : List[str]
932
- LabelSelectionList : List[str]
928
+ ObjectSelectionList : list[str]
929
+ GeomObjectSelectionList : list[str]
930
+ ZoneSelectionList : list[str]
931
+ ZoneLocation : list[str]
932
+ LabelSelectionList : list[str]
933
933
  FeatureAngleLocal : int
934
934
  IndividualCollective : str
935
935
  SharpAngle : int
936
- CompleteObjectSelectionList : List[str]
937
- CompleteGeomObjectSelectionList : List[str]
938
- NonExtractedObjects : List[str]
936
+ CompleteObjectSelectionList : list[str]
937
+ CompleteGeomObjectSelectionList : list[str]
938
+ NonExtractedObjects : list[str]
939
939
 
940
940
  Returns
941
941
  -------
@@ -951,13 +951,13 @@ class Root(PyMenu):
951
951
  ----------
952
952
  MExControlName : str
953
953
  Method : str
954
- ExternalBoundaryZoneList : List[str]
954
+ ExternalBoundaryZoneList : list[str]
955
955
  TotalHeight : float
956
956
  FirstHeight : float
957
957
  NumberofLayers : int
958
958
  GrowthRate : float
959
- VMExtrudePreferences : Dict[str, Any]
960
- ZoneLocation : List[str]
959
+ VMExtrudePreferences : dict[str, Any]
960
+ ZoneLocation : list[str]
961
961
 
962
962
  Returns
963
963
  -------
@@ -977,7 +977,7 @@ class Root(PyMenu):
977
977
  SizeFunctions : str
978
978
  CurvatureNormalAngle : float
979
979
  CellsPerGap : float
980
- PrimeMeshPreferences : Dict[str, Any]
980
+ PrimeMeshPreferences : dict[str, Any]
981
981
 
982
982
  Returns
983
983
  -------
@@ -1006,11 +1006,11 @@ class Root(PyMenu):
1006
1006
  Parameters
1007
1007
  ----------
1008
1008
  OrthogonalQualityLimit : float
1009
- RegionScope : List[str]
1009
+ RegionScope : list[str]
1010
1010
  NonConformal : str
1011
1011
  SizeFunctionScaleFactor : float
1012
- CFDSurfaceMeshControls : Dict[str, Any]
1013
- CompleteRegionScope : List[str]
1012
+ CFDSurfaceMeshControls : dict[str, Any]
1013
+ CompleteRegionScope : list[str]
1014
1014
 
1015
1015
  Returns
1016
1016
  -------
@@ -1055,13 +1055,13 @@ class Root(PyMenu):
1055
1055
 
1056
1056
  Parameters
1057
1057
  ----------
1058
- CFDSurfaceMeshControls : Dict[str, Any]
1058
+ CFDSurfaceMeshControls : dict[str, Any]
1059
1059
  SeparationRequired : str
1060
1060
  SeparationAngle : float
1061
1061
  RemeshSelectionType : str
1062
- RemeshZoneList : List[str]
1063
- RemeshLabelList : List[str]
1064
- SurfaceMeshPreferences : Dict[str, Any]
1062
+ RemeshZoneList : list[str]
1063
+ RemeshLabelList : list[str]
1064
+ SurfaceMeshPreferences : dict[str, Any]
1065
1065
  ImportType : str
1066
1066
  AppendMesh : bool
1067
1067
  CadFacetingFileName : str
@@ -1069,11 +1069,11 @@ class Root(PyMenu):
1069
1069
  Pattern : str
1070
1070
  LengthUnit : str
1071
1071
  TesselationMethod : str
1072
- OriginalZones : List[str]
1072
+ OriginalZones : list[str]
1073
1073
  ExecuteShareTopology : str
1074
- CADFacetingControls : Dict[str, Any]
1075
- CadImportOptions : Dict[str, Any]
1076
- ShareTopologyPreferences : Dict[str, Any]
1074
+ CADFacetingControls : dict[str, Any]
1075
+ CadImportOptions : dict[str, Any]
1076
+ ShareTopologyPreferences : dict[str, Any]
1077
1077
  PreviewSizeToggle : bool
1078
1078
 
1079
1079
  Returns
@@ -1093,15 +1093,15 @@ class Root(PyMenu):
1093
1093
  EnableParallel : bool
1094
1094
  SaveVolumeMesh : bool
1095
1095
  EditVolumeSettings : bool
1096
- RegionNameList : List[str]
1097
- RegionVolumeFillList : List[str]
1098
- RegionSizeList : List[str]
1099
- OldRegionNameList : List[str]
1100
- OldRegionVolumeFillList : List[str]
1101
- OldRegionSizeList : List[str]
1102
- AllRegionNameList : List[str]
1103
- AllRegionVolumeFillList : List[str]
1104
- AllRegionSizeList : List[str]
1096
+ RegionNameList : list[str]
1097
+ RegionVolumeFillList : list[str]
1098
+ RegionSizeList : list[str]
1099
+ OldRegionNameList : list[str]
1100
+ OldRegionVolumeFillList : list[str]
1101
+ OldRegionSizeList : list[str]
1102
+ AllRegionNameList : list[str]
1103
+ AllRegionVolumeFillList : list[str]
1104
+ AllRegionSizeList : list[str]
1105
1105
  AdvancedOptions : bool
1106
1106
  SpikeRemovalAngle : float
1107
1107
  DihedralMinAngle : float
@@ -1131,12 +1131,12 @@ class Root(PyMenu):
1131
1131
  MeshFluidRegions : bool
1132
1132
  MeshSolidRegions : bool
1133
1133
  SizingMethod : str
1134
- VolumeFillControls : Dict[str, Any]
1134
+ VolumeFillControls : dict[str, Any]
1135
1135
  RegionBasedPreferences : bool
1136
1136
  ReMergeZones : str
1137
1137
  ParallelMeshing : bool
1138
- VolumeMeshPreferences : Dict[str, Any]
1139
- PrismPreferences : Dict[str, Any]
1138
+ VolumeMeshPreferences : dict[str, Any]
1139
+ PrismPreferences : dict[str, Any]
1140
1140
  InvokePrimsControl : str
1141
1141
  OffsetMethodType : str
1142
1142
  NumberOfLayers : int
@@ -1146,20 +1146,20 @@ class Root(PyMenu):
1146
1146
  FirstHeight : float
1147
1147
  MeshObject : str
1148
1148
  MeshDeadRegions : bool
1149
- BodyLabelList : List[str]
1149
+ BodyLabelList : list[str]
1150
1150
  PrismLayers : bool
1151
1151
  QuadTetTransition : str
1152
1152
  MergeCellZones : bool
1153
- FaceScope : Dict[str, Any]
1154
- RegionTetNameList : List[str]
1155
- RegionTetMaxCellLengthList : List[str]
1156
- RegionTetGrowthRateList : List[str]
1157
- RegionHexNameList : List[str]
1158
- RegionHexMaxCellLengthList : List[str]
1159
- OldRegionTetMaxCellLengthList : List[str]
1160
- OldRegionTetGrowthRateList : List[str]
1161
- OldRegionHexMaxCellLengthList : List[str]
1162
- CFDSurfaceMeshControls : Dict[str, Any]
1153
+ FaceScope : dict[str, Any]
1154
+ RegionTetNameList : list[str]
1155
+ RegionTetMaxCellLengthList : list[str]
1156
+ RegionTetGrowthRateList : list[str]
1157
+ RegionHexNameList : list[str]
1158
+ RegionHexMaxCellLengthList : list[str]
1159
+ OldRegionTetMaxCellLengthList : list[str]
1160
+ OldRegionTetGrowthRateList : list[str]
1161
+ OldRegionHexMaxCellLengthList : list[str]
1162
+ CFDSurfaceMeshControls : dict[str, Any]
1163
1163
 
1164
1164
  Returns
1165
1165
  -------
@@ -1179,13 +1179,13 @@ class Root(PyMenu):
1179
1179
  InvokeShareTopology : str
1180
1180
  NonConformal : str
1181
1181
  Multizone : str
1182
- SetupInternals : List[str]
1183
- SetupInternalTypes : List[str]
1184
- OldZoneList : List[str]
1185
- OldZoneTypeList : List[str]
1186
- RegionList : List[str]
1187
- EdgeLabels : List[str]
1188
- SMImprovePreferences : Dict[str, Any]
1182
+ SetupInternals : list[str]
1183
+ SetupInternalTypes : list[str]
1184
+ OldZoneList : list[str]
1185
+ OldZoneTypeList : list[str]
1186
+ RegionList : list[str]
1187
+ EdgeLabels : list[str]
1188
+ SMImprovePreferences : dict[str, Any]
1189
1189
 
1190
1190
  Returns
1191
1191
  -------
@@ -1202,20 +1202,20 @@ class Root(PyMenu):
1202
1202
  MRFName : str
1203
1203
  CreationMethod : str
1204
1204
  SelectionType : str
1205
- ObjectSelectionSingle : List[str]
1206
- ZoneSelectionSingle : List[str]
1207
- LabelSelectionSingle : List[str]
1208
- ObjectSelectionList : List[str]
1209
- ZoneSelectionList : List[str]
1210
- ZoneLocation : List[str]
1211
- LabelSelectionList : List[str]
1205
+ ObjectSelectionSingle : list[str]
1206
+ ZoneSelectionSingle : list[str]
1207
+ LabelSelectionSingle : list[str]
1208
+ ObjectSelectionList : list[str]
1209
+ ZoneSelectionList : list[str]
1210
+ ZoneLocation : list[str]
1211
+ LabelSelectionList : list[str]
1212
1212
  DefeaturingSize : float
1213
1213
  OffsetHeight : float
1214
- Pivot : Dict[str, Any]
1215
- Axis : Dict[str, Any]
1216
- Rotation : Dict[str, Any]
1217
- CylinderObject : Dict[str, Any]
1218
- BoundingBoxObject : Dict[str, Any]
1214
+ Pivot : dict[str, Any]
1215
+ Axis : dict[str, Any]
1216
+ Rotation : dict[str, Any]
1217
+ CylinderObject : dict[str, Any]
1218
+ BoundingBoxObject : dict[str, Any]
1219
1219
 
1220
1220
  Returns
1221
1221
  -------
@@ -1231,9 +1231,9 @@ class Root(PyMenu):
1231
1231
  ----------
1232
1232
  DisplayGridName : str
1233
1233
  SelectionType : str
1234
- ObjectSelectionList : List[str]
1235
- ZoneSelectionList : List[str]
1236
- ZoneLocation : List[str]
1234
+ ObjectSelectionList : list[str]
1235
+ ZoneSelectionList : list[str]
1236
+ ZoneLocation : list[str]
1237
1237
  AdvancedOptions : bool
1238
1238
  DeviationMinValue : float
1239
1239
  DeviationMaxValue : float
@@ -1253,15 +1253,15 @@ class Root(PyMenu):
1253
1253
  Parameters
1254
1254
  ----------
1255
1255
  NumberOfOrphans : str
1256
- ObjectSelectionList : List[str]
1256
+ ObjectSelectionList : list[str]
1257
1257
  EnableGridPriority : bool
1258
1258
  DonorPriorityMethod : str
1259
1259
  OverlapBoundaries : str
1260
1260
  CheckOversetInterfaceIntersection : str
1261
- RegionNameList : List[str]
1262
- RegionSizeList : List[str]
1263
- OldRegionNameList : List[str]
1264
- OldRegionSizeList : List[str]
1261
+ RegionNameList : list[str]
1262
+ RegionSizeList : list[str]
1263
+ OldRegionNameList : list[str]
1264
+ OldRegionSizeList : list[str]
1265
1265
 
1266
1266
  Returns
1267
1267
  -------
@@ -1281,10 +1281,10 @@ class Root(PyMenu):
1281
1281
  NewRegionType : str
1282
1282
  LinkConstruction : str
1283
1283
  SelectionType : str
1284
- ZoneSelectionList : List[str]
1285
- ZoneLocation : List[str]
1286
- LabelSelectionList : List[str]
1287
- ObjectSelectionList : List[str]
1284
+ ZoneSelectionList : list[str]
1285
+ ZoneLocation : list[str]
1286
+ LabelSelectionList : list[str]
1287
+ ObjectSelectionList : list[str]
1288
1288
  GraphicalSelection : bool
1289
1289
  ShowCoordinates : bool
1290
1290
  X : float
@@ -1310,8 +1310,8 @@ class Root(PyMenu):
1310
1310
  Type : str
1311
1311
  GeometryFileName : str
1312
1312
  MeshFileName : str
1313
- ImportedObjects : List[str]
1314
- CadImportOptions : Dict[str, Any]
1313
+ ImportedObjects : list[str]
1314
+ CadImportOptions : dict[str, Any]
1315
1315
 
1316
1316
  Returns
1317
1317
  -------
@@ -1328,7 +1328,7 @@ class Root(PyMenu):
1328
1328
  FileFormat : str
1329
1329
  LengthUnit : str
1330
1330
  MeshUnit : str
1331
- ImportCadPreferences : Dict[str, Any]
1331
+ ImportCadPreferences : dict[str, Any]
1332
1332
  FileName : str
1333
1333
  FileNames : str
1334
1334
  MeshFileName : str
@@ -1337,7 +1337,7 @@ class Root(PyMenu):
1337
1337
  AppendMesh : bool
1338
1338
  Directory : str
1339
1339
  Pattern : str
1340
- CadImportOptions : Dict[str, Any]
1340
+ CadImportOptions : dict[str, Any]
1341
1341
 
1342
1342
  Returns
1343
1343
  -------
@@ -1354,7 +1354,7 @@ class Root(PyMenu):
1354
1354
  MeshObject : str
1355
1355
  FaceQualityLimit : float
1356
1356
  SQMinSize : float
1357
- SMImprovePreferences : Dict[str, Any]
1357
+ SMImprovePreferences : dict[str, Any]
1358
1358
 
1359
1359
  Returns
1360
1360
  -------
@@ -1369,7 +1369,7 @@ class Root(PyMenu):
1369
1369
  Parameters
1370
1370
  ----------
1371
1371
  CellQualityLimit : float
1372
- VMImprovePreferences : Dict[str, Any]
1372
+ VMImprovePreferences : dict[str, Any]
1373
1373
 
1374
1374
  Returns
1375
1375
  -------
@@ -1384,13 +1384,13 @@ class Root(PyMenu):
1384
1384
  Parameters
1385
1385
  ----------
1386
1386
  ChildName : str
1387
- ObjectList : List[str]
1387
+ ObjectList : list[str]
1388
1388
  AutoPopulateVector : str
1389
- PatternVector : Dict[str, Any]
1389
+ PatternVector : dict[str, Any]
1390
1390
  Pitch : float
1391
1391
  NumberOfUnits : int
1392
1392
  CheckOverlappingFaces : str
1393
- BatteryModelingOptions : Dict[str, Any]
1393
+ BatteryModelingOptions : dict[str, Any]
1394
1394
 
1395
1395
  Returns
1396
1396
  -------
@@ -1409,7 +1409,7 @@ class Root(PyMenu):
1409
1409
  Route : str
1410
1410
  CreateObjectPer : str
1411
1411
  NumParts : float
1412
- 2DRefaceting : Dict[str, Any]
1412
+ 2DRefaceting : dict[str, Any]
1413
1413
 
1414
1414
  Returns
1415
1415
  -------
@@ -1425,17 +1425,17 @@ class Root(PyMenu):
1425
1425
  ----------
1426
1426
  LocalSettingsName : str
1427
1427
  SelectionType : str
1428
- ObjectSelectionList : List[str]
1429
- LabelSelectionList : List[str]
1430
- ZoneSelectionList : List[str]
1431
- ZoneLocation : List[str]
1432
- EdgeSelectionList : List[str]
1433
- LocalSizeControlParameters : Dict[str, Any]
1428
+ ObjectSelectionList : list[str]
1429
+ LabelSelectionList : list[str]
1430
+ ZoneSelectionList : list[str]
1431
+ ZoneLocation : list[str]
1432
+ EdgeSelectionList : list[str]
1433
+ LocalSizeControlParameters : dict[str, Any]
1434
1434
  ValueChanged : str
1435
- CompleteZoneSelectionList : List[str]
1436
- CompleteLabelSelectionList : List[str]
1437
- CompleteObjectSelectionList : List[str]
1438
- CompleteEdgeSelectionList : List[str]
1435
+ CompleteZoneSelectionList : list[str]
1436
+ CompleteLabelSelectionList : list[str]
1437
+ CompleteObjectSelectionList : list[str]
1438
+ CompleteEdgeSelectionList : list[str]
1439
1439
 
1440
1440
  Returns
1441
1441
  -------
@@ -1456,18 +1456,18 @@ class Root(PyMenu):
1456
1456
  Volume : float
1457
1457
  EqualRange : float
1458
1458
  ZoneOrLabel : str
1459
- LabelList : List[str]
1460
- ManageFaceZoneList : List[str]
1461
- ManageCellZoneList : List[str]
1462
- BodyLabelList : List[str]
1459
+ LabelList : list[str]
1460
+ ManageFaceZoneList : list[str]
1461
+ ManageCellZoneList : list[str]
1462
+ BodyLabelList : list[str]
1463
1463
  Operation : str
1464
1464
  OperationName : str
1465
1465
  MZChildName : str
1466
1466
  AddPrefixName : str
1467
1467
  FaceMerge : str
1468
1468
  Angle : float
1469
- ZoneList : List[str]
1470
- ZoneLocation : List[str]
1469
+ ZoneList : list[str]
1470
+ ZoneLocation : list[str]
1471
1471
 
1472
1472
  Returns
1473
1473
  -------
@@ -1500,16 +1500,16 @@ class Root(PyMenu):
1500
1500
  RemeshControlName : str
1501
1501
  LocalSize : float
1502
1502
  FaceZoneOrLabel : str
1503
- RemeshFaceZoneList : List[str]
1504
- RemeshFaceLabelList : List[str]
1503
+ RemeshFaceZoneList : list[str]
1504
+ RemeshFaceLabelList : list[str]
1505
1505
  SizingType : str
1506
1506
  LocalMinSize : float
1507
1507
  LocalMaxSize : float
1508
1508
  RemeshGrowthRate : float
1509
1509
  RemeshCurvatureNormalAngle : float
1510
1510
  RemeshCellsPerGap : float
1511
- CFDSurfaceMeshControls : Dict[str, Any]
1512
- RemeshPreferences : Dict[str, Any]
1511
+ CFDSurfaceMeshControls : dict[str, Any]
1512
+ RemeshPreferences : dict[str, Any]
1513
1513
 
1514
1514
  Returns
1515
1515
  -------
@@ -1540,10 +1540,10 @@ class Root(PyMenu):
1540
1540
  RemoveEmptyParts : bool
1541
1541
  FeatureAngle : float
1542
1542
  OneZonePer : str
1543
- Refaceting : Dict[str, Any]
1543
+ Refaceting : dict[str, Any]
1544
1544
  IgnoreSolidNames : bool
1545
1545
  IgnoreSolidNamesAppend : bool
1546
- Options : Dict[str, Any]
1546
+ Options : dict[str, Any]
1547
1547
  EdgeExtraction : str
1548
1548
  Context : int
1549
1549
  ObjectSetting : str
@@ -1563,8 +1563,8 @@ class Root(PyMenu):
1563
1563
  PartReplacementName : str
1564
1564
  ManagementMethod : str
1565
1565
  CreationMethod : str
1566
- OldObjectSelectionList : List[str]
1567
- NewObjectSelectionList : List[str]
1566
+ OldObjectSelectionList : list[str]
1567
+ NewObjectSelectionList : list[str]
1568
1568
  AdvancedOptions : bool
1569
1569
  ScalingFactor : float
1570
1570
  MptMethodType : str
@@ -1632,14 +1632,14 @@ class Root(PyMenu):
1632
1632
  Type : str
1633
1633
  Method : str
1634
1634
  PeriodicityAngle : float
1635
- LCSOrigin : Dict[str, Any]
1636
- LCSVector : Dict[str, Any]
1637
- TransShift : Dict[str, Any]
1635
+ LCSOrigin : dict[str, Any]
1636
+ LCSVector : dict[str, Any]
1637
+ TransShift : dict[str, Any]
1638
1638
  SelectionType : str
1639
- ZoneList : List[str]
1640
- LabelList : List[str]
1639
+ ZoneList : list[str]
1640
+ LabelList : list[str]
1641
1641
  RemeshBoundariesOption : str
1642
- ZoneLocation : List[str]
1642
+ ZoneLocation : list[str]
1643
1643
  ListAllLabelToggle : bool
1644
1644
 
1645
1645
  Returns
@@ -1662,7 +1662,7 @@ class Root(PyMenu):
1662
1662
  LastRatioPercentage : float
1663
1663
  FirstHeight : float
1664
1664
  PrismLayers : int
1665
- RegionSelectionList : List[str]
1665
+ RegionSelectionList : list[str]
1666
1666
 
1667
1667
  Returns
1668
1668
  -------
@@ -1680,9 +1680,9 @@ class Root(PyMenu):
1680
1680
  GapDistanceConnect : float
1681
1681
  STMinSize : float
1682
1682
  InterfaceSelect : str
1683
- ShareTopologyPreferences : Dict[str, Any]
1684
- SMImprovePreferences : Dict[str, Any]
1685
- SurfaceMeshPreferences : Dict[str, Any]
1683
+ ShareTopologyPreferences : dict[str, Any]
1684
+ SMImprovePreferences : dict[str, Any]
1685
+ SurfaceMeshPreferences : dict[str, Any]
1686
1686
 
1687
1687
  Returns
1688
1688
  -------
@@ -1703,7 +1703,7 @@ class Root(PyMenu):
1703
1703
  InitialSizeControl : bool
1704
1704
  TargetSizeControl : bool
1705
1705
  SizeControlInterval : float
1706
- SizeControlParameters : Dict[str, Any]
1706
+ SizeControlParameters : dict[str, Any]
1707
1707
 
1708
1708
  Returns
1709
1709
  -------
@@ -1720,10 +1720,10 @@ class Root(PyMenu):
1720
1720
  MTControlName : str
1721
1721
  Type : str
1722
1722
  Method : str
1723
- CellZoneList : List[str]
1724
- LCSOrigin : Dict[str, Any]
1725
- LCSVector : Dict[str, Any]
1726
- TransShift : Dict[str, Any]
1723
+ CellZoneList : list[str]
1724
+ LCSOrigin : dict[str, Any]
1725
+ LCSVector : dict[str, Any]
1726
+ TransShift : dict[str, Any]
1727
1727
  Angle : float
1728
1728
  Copy : str
1729
1729
  NumOfCopies : int
@@ -1744,21 +1744,21 @@ class Root(PyMenu):
1744
1744
  ----------
1745
1745
  MeshObject : str
1746
1746
  SelectionType : str
1747
- BoundaryLabelList : List[str]
1748
- BoundaryLabelTypeList : List[str]
1749
- BoundaryZoneList : List[str]
1750
- BoundaryZoneTypeList : List[str]
1751
- OldBoundaryLabelList : List[str]
1752
- OldBoundaryLabelTypeList : List[str]
1753
- OldBoundaryZoneList : List[str]
1754
- OldBoundaryZoneTypeList : List[str]
1755
- OldLabelZoneList : List[str]
1747
+ BoundaryLabelList : list[str]
1748
+ BoundaryLabelTypeList : list[str]
1749
+ BoundaryZoneList : list[str]
1750
+ BoundaryZoneTypeList : list[str]
1751
+ OldBoundaryLabelList : list[str]
1752
+ OldBoundaryLabelTypeList : list[str]
1753
+ OldBoundaryZoneList : list[str]
1754
+ OldBoundaryZoneTypeList : list[str]
1755
+ OldLabelZoneList : list[str]
1756
1756
  ListAllBoundariesToggle : bool
1757
- ZoneLocation : List[str]
1758
- TopologyList : List[str]
1759
- TopologyTypeList : List[str]
1760
- OldTopologyList : List[str]
1761
- OldTopologyTypeList : List[str]
1757
+ ZoneLocation : list[str]
1758
+ TopologyList : list[str]
1759
+ TopologyTypeList : list[str]
1760
+ OldTopologyList : list[str]
1761
+ OldTopologyTypeList : list[str]
1762
1762
 
1763
1763
  Returns
1764
1764
  -------
@@ -1774,27 +1774,27 @@ class Root(PyMenu):
1774
1774
  ----------
1775
1775
  MainFluidRegion : str
1776
1776
  FilterCategory : str
1777
- RegionNameList : List[str]
1778
- RegionMeshMethodList : List[str]
1779
- RegionTypeList : List[str]
1780
- RegionVolumeFillList : List[str]
1781
- RegionLeakageSizeList : List[str]
1782
- RegionOversetComponenList : List[str]
1783
- OldRegionNameList : List[str]
1784
- OldRegionMeshMethodList : List[str]
1785
- OldRegionTypeList : List[str]
1786
- OldRegionVolumeFillList : List[str]
1787
- OldRegionLeakageSizeList : List[str]
1788
- OldRegionOversetComponenList : List[str]
1789
- AllRegionNameList : List[str]
1790
- AllRegionMeshMethodList : List[str]
1791
- AllRegionTypeList : List[str]
1792
- AllRegionVolumeFillList : List[str]
1793
- AllRegionLeakageSizeList : List[str]
1794
- AllRegionOversetComponenList : List[str]
1795
- AllRegionLinkedConstructionSurfaceList : List[str]
1796
- AllRegionSourceList : List[str]
1797
- AllRegionFilterCategories : List[str]
1777
+ RegionNameList : list[str]
1778
+ RegionMeshMethodList : list[str]
1779
+ RegionTypeList : list[str]
1780
+ RegionVolumeFillList : list[str]
1781
+ RegionLeakageSizeList : list[str]
1782
+ RegionOversetComponenList : list[str]
1783
+ OldRegionNameList : list[str]
1784
+ OldRegionMeshMethodList : list[str]
1785
+ OldRegionTypeList : list[str]
1786
+ OldRegionVolumeFillList : list[str]
1787
+ OldRegionLeakageSizeList : list[str]
1788
+ OldRegionOversetComponenList : list[str]
1789
+ AllRegionNameList : list[str]
1790
+ AllRegionMeshMethodList : list[str]
1791
+ AllRegionTypeList : list[str]
1792
+ AllRegionVolumeFillList : list[str]
1793
+ AllRegionLeakageSizeList : list[str]
1794
+ AllRegionOversetComponenList : list[str]
1795
+ AllRegionLinkedConstructionSurfaceList : list[str]
1796
+ AllRegionSourceList : list[str]
1797
+ AllRegionFilterCategories : list[str]
1798
1798
 
1799
1799
  Returns
1800
1800
  -------
@@ -1809,12 +1809,12 @@ class Root(PyMenu):
1809
1809
  Parameters
1810
1810
  ----------
1811
1811
  MeshObject : str
1812
- RegionNameList : List[str]
1813
- RegionTypeList : List[str]
1814
- OldRegionNameList : List[str]
1815
- OldRegionTypeList : List[str]
1816
- RegionInternals : List[str]
1817
- RegionInternalTypes : List[str]
1812
+ RegionNameList : list[str]
1813
+ RegionTypeList : list[str]
1814
+ OldRegionNameList : list[str]
1815
+ OldRegionTypeList : list[str]
1816
+ RegionInternals : list[str]
1817
+ RegionInternalTypes : list[str]
1818
1818
 
1819
1819
  Returns
1820
1820
  -------