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
@@ -125,85 +125,85 @@ class Root(PyMenu):
125
125
 
126
126
  class AllOversetNameList(PyTextual):
127
127
  """
128
- Parameter AllOversetNameList of value type List[str].
128
+ Parameter AllOversetNameList of value type list[str].
129
129
  """
130
130
  pass
131
131
 
132
132
  class AllOversetSizeList(PyTextual):
133
133
  """
134
- Parameter AllOversetSizeList of value type List[str].
134
+ Parameter AllOversetSizeList of value type list[str].
135
135
  """
136
136
  pass
137
137
 
138
138
  class AllOversetTypeList(PyTextual):
139
139
  """
140
- Parameter AllOversetTypeList of value type List[str].
140
+ Parameter AllOversetTypeList of value type list[str].
141
141
  """
142
142
  pass
143
143
 
144
144
  class AllOversetVolumeFillList(PyTextual):
145
145
  """
146
- Parameter AllOversetVolumeFillList of value type List[str].
146
+ Parameter AllOversetVolumeFillList of value type list[str].
147
147
  """
148
148
  pass
149
149
 
150
150
  class AllRegionFilterCategories(PyTextual):
151
151
  """
152
- Parameter AllRegionFilterCategories of value type List[str].
152
+ Parameter AllRegionFilterCategories of value type list[str].
153
153
  """
154
154
  pass
155
155
 
156
156
  class AllRegionLeakageSizeList(PyTextual):
157
157
  """
158
- Parameter AllRegionLeakageSizeList of value type List[str].
158
+ Parameter AllRegionLeakageSizeList of value type list[str].
159
159
  """
160
160
  pass
161
161
 
162
162
  class AllRegionLinkedConstructionSurfaceList(PyTextual):
163
163
  """
164
- Parameter AllRegionLinkedConstructionSurfaceList of value type List[str].
164
+ Parameter AllRegionLinkedConstructionSurfaceList of value type list[str].
165
165
  """
166
166
  pass
167
167
 
168
168
  class AllRegionMeshMethodList(PyTextual):
169
169
  """
170
- Parameter AllRegionMeshMethodList of value type List[str].
170
+ Parameter AllRegionMeshMethodList of value type list[str].
171
171
  """
172
172
  pass
173
173
 
174
174
  class AllRegionNameList(PyTextual):
175
175
  """
176
- Parameter AllRegionNameList of value type List[str].
176
+ Parameter AllRegionNameList of value type list[str].
177
177
  """
178
178
  pass
179
179
 
180
180
  class AllRegionOversetComponenList(PyTextual):
181
181
  """
182
- Parameter AllRegionOversetComponenList of value type List[str].
182
+ Parameter AllRegionOversetComponenList of value type list[str].
183
183
  """
184
184
  pass
185
185
 
186
186
  class AllRegionSizeList(PyTextual):
187
187
  """
188
- Parameter AllRegionSizeList of value type List[str].
188
+ Parameter AllRegionSizeList of value type list[str].
189
189
  """
190
190
  pass
191
191
 
192
192
  class AllRegionSourceList(PyTextual):
193
193
  """
194
- Parameter AllRegionSourceList of value type List[str].
194
+ Parameter AllRegionSourceList of value type list[str].
195
195
  """
196
196
  pass
197
197
 
198
198
  class AllRegionTypeList(PyTextual):
199
199
  """
200
- Parameter AllRegionTypeList of value type List[str].
200
+ Parameter AllRegionTypeList of value type list[str].
201
201
  """
202
202
  pass
203
203
 
204
204
  class AllRegionVolumeFillList(PyTextual):
205
205
  """
206
- Parameter AllRegionVolumeFillList of value type List[str].
206
+ Parameter AllRegionVolumeFillList of value type list[str].
207
207
  """
208
208
  pass
209
209
 
@@ -270,20 +270,20 @@ class Root(PyMenu):
270
270
  TransitionRatio : float
271
271
  Rate : float
272
272
  FirstHeight : float
273
- FaceScope : Dict[str, Any]
274
- RegionScope : List[str]
275
- BlLabelList : List[str]
276
- ZoneSelectionList : List[str]
277
- ZoneLocation : List[str]
278
- LocalPrismPreferences : Dict[str, Any]
279
- BLZoneList : List[str]
280
- BLRegionList : List[str]
281
- CompleteRegionScope : List[str]
282
- CompleteBlLabelList : List[str]
283
- CompleteBLZoneList : List[str]
284
- CompleteBLRegionList : List[str]
285
- CompleteZoneSelectionList : List[str]
286
- CompleteLabelSelectionList : List[str]
273
+ FaceScope : dict[str, Any]
274
+ RegionScope : list[str]
275
+ BlLabelList : list[str]
276
+ ZoneSelectionList : list[str]
277
+ ZoneLocation : list[str]
278
+ LocalPrismPreferences : dict[str, Any]
279
+ BLZoneList : list[str]
280
+ BLRegionList : list[str]
281
+ CompleteRegionScope : list[str]
282
+ CompleteBlLabelList : list[str]
283
+ CompleteBLZoneList : list[str]
284
+ CompleteBLRegionList : list[str]
285
+ CompleteZoneSelectionList : list[str]
286
+ CompleteLabelSelectionList : list[str]
287
287
 
288
288
  Returns
289
289
  -------
@@ -306,20 +306,20 @@ class Root(PyMenu):
306
306
  TransitionRatio : float
307
307
  Rate : float
308
308
  FirstHeight : float
309
- FaceScope : Dict[str, Any]
310
- RegionScope : List[str]
311
- BlLabelList : List[str]
312
- ZoneSelectionList : List[str]
313
- ZoneLocation : List[str]
314
- LocalPrismPreferences : Dict[str, Any]
315
- BLZoneList : List[str]
316
- BLRegionList : List[str]
317
- CompleteRegionScope : List[str]
318
- CompleteBlLabelList : List[str]
319
- CompleteBLZoneList : List[str]
320
- CompleteBLRegionList : List[str]
321
- CompleteZoneSelectionList : List[str]
322
- CompleteLabelSelectionList : List[str]
309
+ FaceScope : dict[str, Any]
310
+ RegionScope : list[str]
311
+ BlLabelList : list[str]
312
+ ZoneSelectionList : list[str]
313
+ ZoneLocation : list[str]
314
+ LocalPrismPreferences : dict[str, Any]
315
+ BLZoneList : list[str]
316
+ BLRegionList : list[str]
317
+ CompleteRegionScope : list[str]
318
+ CompleteBlLabelList : list[str]
319
+ CompleteBLZoneList : list[str]
320
+ CompleteBLRegionList : list[str]
321
+ CompleteZoneSelectionList : list[str]
322
+ CompleteLabelSelectionList : list[str]
323
323
 
324
324
  Returns
325
325
  -------
@@ -336,9 +336,9 @@ class Root(PyMenu):
336
336
  MeshObject : str
337
337
  NewBoundaryLabelName : str
338
338
  NewBoundaryType : str
339
- BoundaryFaceZoneList : List[str]
339
+ BoundaryFaceZoneList : list[str]
340
340
  Merge : str
341
- ZoneLocation : List[str]
341
+ ZoneLocation : list[str]
342
342
 
343
343
  Returns
344
344
  -------
@@ -354,17 +354,17 @@ class Root(PyMenu):
354
354
  ----------
355
355
  LocalSettingsName : str
356
356
  SelectionType : str
357
- ObjectSelectionList : List[str]
358
- LabelSelectionList : List[str]
359
- ZoneSelectionList : List[str]
360
- ZoneLocation : List[str]
361
- EdgeSelectionList : List[str]
362
- LocalSizeControlParameters : Dict[str, Any]
357
+ ObjectSelectionList : list[str]
358
+ LabelSelectionList : list[str]
359
+ ZoneSelectionList : list[str]
360
+ ZoneLocation : list[str]
361
+ EdgeSelectionList : list[str]
362
+ LocalSizeControlParameters : dict[str, Any]
363
363
  ValueChanged : str
364
- CompleteZoneSelectionList : List[str]
365
- CompleteLabelSelectionList : List[str]
366
- CompleteObjectSelectionList : List[str]
367
- CompleteEdgeSelectionList : List[str]
364
+ CompleteZoneSelectionList : list[str]
365
+ CompleteLabelSelectionList : list[str]
366
+ CompleteObjectSelectionList : list[str]
367
+ CompleteEdgeSelectionList : list[str]
368
368
 
369
369
  Returns
370
370
  -------
@@ -390,17 +390,17 @@ class Root(PyMenu):
390
390
  BOIScopeTo : str
391
391
  IgnoreOrientation : str
392
392
  BOIZoneorLabel : str
393
- BOIFaceLabelList : List[str]
394
- BOIFaceZoneList : List[str]
395
- EdgeLabelList : List[str]
396
- TopologyList : List[str]
393
+ BOIFaceLabelList : list[str]
394
+ BOIFaceZoneList : list[str]
395
+ EdgeLabelList : list[str]
396
+ TopologyList : list[str]
397
397
  BOIPatchingtoggle : bool
398
398
  DrawSizeControl : bool
399
- ZoneLocation : List[str]
400
- CompleteFaceZoneList : List[str]
401
- CompleteFaceLabelList : List[str]
402
- CompleteEdgeLabelList : List[str]
403
- CompleteTopologyList : List[str]
399
+ ZoneLocation : list[str]
400
+ CompleteFaceZoneList : list[str]
401
+ CompleteFaceLabelList : list[str]
402
+ CompleteEdgeLabelList : list[str]
403
+ CompleteTopologyList : list[str]
404
404
 
405
405
  Returns
406
406
  -------
@@ -420,11 +420,11 @@ class Root(PyMenu):
420
420
  FillWith : str
421
421
  UseSweepSize : str
422
422
  MaxSweepSize : float
423
- RegionScope : List[str]
423
+ RegionScope : list[str]
424
424
  SourceMethod : str
425
425
  ParallelSelection : bool
426
- LabelSourceList : List[str]
427
- ZoneSourceList : List[str]
426
+ LabelSourceList : list[str]
427
+ ZoneSourceList : list[str]
428
428
  AssignSizeUsing : str
429
429
  Intervals : int
430
430
  Size : float
@@ -432,9 +432,9 @@ class Root(PyMenu):
432
432
  GrowthMethod : str
433
433
  GrowthRate : float
434
434
  LastFirstRatio : float
435
- EdgeLabelList : List[str]
436
- CFDSurfaceMeshControls : Dict[str, Any]
437
- CompleteRegionScope : List[str]
435
+ EdgeLabelList : list[str]
436
+ CFDSurfaceMeshControls : dict[str, Any]
437
+ CompleteRegionScope : list[str]
438
438
 
439
439
  Returns
440
440
  -------
@@ -450,10 +450,10 @@ class Root(PyMenu):
450
450
  ----------
451
451
  ZeroThicknessName : str
452
452
  SelectionType : str
453
- ZoneSelectionList : List[str]
454
- ZoneLocation : List[str]
455
- ObjectSelectionList : List[str]
456
- LabelSelectionList : List[str]
453
+ ZoneSelectionList : list[str]
454
+ ZoneLocation : list[str]
455
+ ObjectSelectionList : list[str]
456
+ LabelSelectionList : list[str]
457
457
  Distance : float
458
458
 
459
459
  Returns
@@ -472,18 +472,18 @@ class Root(PyMenu):
472
472
  ZoneType : str
473
473
  PatchType : str
474
474
  SelectionType : str
475
- LabelSelectionList : List[str]
476
- ZoneSelectionList : List[str]
477
- TopologyList : List[str]
478
- CreatePatchPreferences : Dict[str, Any]
475
+ LabelSelectionList : list[str]
476
+ ZoneSelectionList : list[str]
477
+ TopologyList : list[str]
478
+ CreatePatchPreferences : dict[str, Any]
479
479
  ObjectAssociation : str
480
480
  NewObjectName : str
481
481
  PatchObjectName : str
482
- CapLabels : List[str]
483
- ZoneLocation : List[str]
484
- CompleteZoneSelectionList : List[str]
485
- CompleteLabelSelectionList : List[str]
486
- CompleteTopologyList : List[str]
482
+ CapLabels : list[str]
483
+ ZoneLocation : list[str]
484
+ CompleteZoneSelectionList : list[str]
485
+ CompleteLabelSelectionList : list[str]
486
+ CompleteTopologyList : list[str]
487
487
 
488
488
  Returns
489
489
  -------
@@ -505,7 +505,7 @@ class Root(PyMenu):
505
505
  GlobalMin : float
506
506
  GlobalMax : float
507
507
  GlobalGrowthRate : float
508
- MeshControlOptions : Dict[str, Any]
508
+ MeshControlOptions : dict[str, Any]
509
509
 
510
510
  Returns
511
511
  -------
@@ -584,15 +584,15 @@ class Root(PyMenu):
584
584
  BOIMaxSize : float
585
585
  BOISizeName : str
586
586
  SelectionType : str
587
- ZoneSelectionList : List[str]
588
- ZoneLocation : List[str]
589
- LabelSelectionList : List[str]
590
- ObjectSelectionList : List[str]
591
- ZoneSelectionSingle : List[str]
592
- ObjectSelectionSingle : List[str]
593
- BoundingBoxObject : Dict[str, Any]
594
- OffsetObject : Dict[str, Any]
595
- CylinderObject : Dict[str, Any]
587
+ ZoneSelectionList : list[str]
588
+ ZoneLocation : list[str]
589
+ LabelSelectionList : list[str]
590
+ ObjectSelectionList : list[str]
591
+ ZoneSelectionSingle : list[str]
592
+ ObjectSelectionSingle : list[str]
593
+ BoundingBoxObject : dict[str, Any]
594
+ OffsetObject : dict[str, Any]
595
+ CylinderObject : dict[str, Any]
596
596
 
597
597
  Returns
598
598
  -------
@@ -611,15 +611,15 @@ class Root(PyMenu):
611
611
  BOIMaxSize : float
612
612
  BOISizeName : str
613
613
  SelectionType : str
614
- ZoneSelectionList : List[str]
615
- ZoneLocation : List[str]
616
- LabelSelectionList : List[str]
617
- ObjectSelectionList : List[str]
618
- ZoneSelectionSingle : List[str]
619
- ObjectSelectionSingle : List[str]
620
- BoundingBoxObject : Dict[str, Any]
621
- OffsetObject : Dict[str, Any]
622
- CylinderObject : Dict[str, Any]
614
+ ZoneSelectionList : list[str]
615
+ ZoneLocation : list[str]
616
+ LabelSelectionList : list[str]
617
+ ObjectSelectionList : list[str]
618
+ ZoneSelectionSingle : list[str]
619
+ ObjectSelectionSingle : list[str]
620
+ BoundingBoxObject : dict[str, Any]
621
+ OffsetObject : dict[str, Any]
622
+ CylinderObject : dict[str, Any]
623
623
  VolumeFill : str
624
624
 
625
625
  Returns
@@ -639,15 +639,15 @@ class Root(PyMenu):
639
639
  BOIMaxSize : float
640
640
  BOISizeName : str
641
641
  SelectionType : str
642
- ZoneSelectionList : List[str]
643
- ZoneLocation : List[str]
644
- LabelSelectionList : List[str]
645
- ObjectSelectionList : List[str]
646
- ZoneSelectionSingle : List[str]
647
- ObjectSelectionSingle : List[str]
648
- BoundingBoxObject : Dict[str, Any]
649
- OffsetObject : Dict[str, Any]
650
- CylinderObject : Dict[str, Any]
642
+ ZoneSelectionList : list[str]
643
+ ZoneLocation : list[str]
644
+ LabelSelectionList : list[str]
645
+ ObjectSelectionList : list[str]
646
+ ZoneSelectionSingle : list[str]
647
+ ObjectSelectionSingle : list[str]
648
+ BoundingBoxObject : dict[str, Any]
649
+ OffsetObject : dict[str, Any]
650
+ CylinderObject : dict[str, Any]
651
651
  VolumeFill : str
652
652
 
653
653
  Returns
@@ -664,11 +664,11 @@ class Root(PyMenu):
664
664
  ----------
665
665
  ContactPatchName : str
666
666
  SelectionType : str
667
- ZoneSelectionList : List[str]
668
- ZoneLocation : List[str]
669
- ObjectSelectionList : List[str]
670
- LabelSelectionList : List[str]
671
- GroundZoneSelectionList : List[str]
667
+ ZoneSelectionList : list[str]
668
+ ZoneLocation : list[str]
669
+ ObjectSelectionList : list[str]
670
+ LabelSelectionList : list[str]
671
+ GroundZoneSelectionList : list[str]
672
672
  Distance : float
673
673
  FeatureAngle : float
674
674
  PatchHole : bool
@@ -690,15 +690,15 @@ class Root(PyMenu):
690
690
  CreationMethod : str
691
691
  ExtractionMethod : str
692
692
  SelectionType : str
693
- ObjectSelectionList : List[str]
694
- ZoneSelectionList : List[str]
695
- ZoneLocation : List[str]
696
- LabelSelectionList : List[str]
697
- ObjectSelectionSingle : List[str]
698
- ZoneSelectionSingle : List[str]
699
- LabelSelectionSingle : List[str]
693
+ ObjectSelectionList : list[str]
694
+ ZoneSelectionList : list[str]
695
+ ZoneLocation : list[str]
696
+ LabelSelectionList : list[str]
697
+ ObjectSelectionSingle : list[str]
698
+ ZoneSelectionSingle : list[str]
699
+ LabelSelectionSingle : list[str]
700
700
  OriginalObjectName : str
701
- BoundingBoxObject : Dict[str, Any]
701
+ BoundingBoxObject : dict[str, Any]
702
702
 
703
703
  Returns
704
704
  -------
@@ -717,10 +717,10 @@ class Root(PyMenu):
717
717
  GapSizeRatio : float
718
718
  GapSize : float
719
719
  SelectionType : str
720
- ZoneSelectionList : List[str]
721
- ZoneLocation : List[str]
722
- LabelSelectionList : List[str]
723
- ObjectSelectionList : List[str]
720
+ ZoneSelectionList : list[str]
721
+ ZoneLocation : list[str]
722
+ LabelSelectionList : list[str]
723
+ ObjectSelectionList : list[str]
724
724
 
725
725
  Returns
726
726
  -------
@@ -739,15 +739,15 @@ class Root(PyMenu):
739
739
  BOIMaxSize : float
740
740
  BOISizeName : str
741
741
  SelectionType : str
742
- ZoneSelectionList : List[str]
743
- ZoneLocation : List[str]
744
- LabelSelectionList : List[str]
745
- ObjectSelectionList : List[str]
746
- ZoneSelectionSingle : List[str]
747
- ObjectSelectionSingle : List[str]
748
- BoundingBoxObject : Dict[str, Any]
749
- OffsetObject : Dict[str, Any]
750
- CylinderObject : Dict[str, Any]
742
+ ZoneSelectionList : list[str]
743
+ ZoneLocation : list[str]
744
+ LabelSelectionList : list[str]
745
+ ObjectSelectionList : list[str]
746
+ ZoneSelectionSingle : list[str]
747
+ ObjectSelectionSingle : list[str]
748
+ BoundingBoxObject : dict[str, Any]
749
+ OffsetObject : dict[str, Any]
750
+ CylinderObject : dict[str, Any]
751
751
  VolumeFill : str
752
752
 
753
753
  Returns
@@ -763,7 +763,7 @@ class Root(PyMenu):
763
763
  Parameters
764
764
  ----------
765
765
  OversetInterfacesName : str
766
- ObjectSelectionList : List[str]
766
+ ObjectSelectionList : list[str]
767
767
 
768
768
  Returns
769
769
  -------
@@ -785,11 +785,11 @@ class Root(PyMenu):
785
785
  CellSizeP1P3 : float
786
786
  CellSizeP1P4 : float
787
787
  BufferSizeRatio : float
788
- P1 : List[float]
789
- P2 : List[float]
790
- P3 : List[float]
791
- P4 : List[float]
792
- NonRectangularParameters : Dict[str, Any]
788
+ P1 : list[float]
789
+ P2 : list[float]
790
+ P3 : list[float]
791
+ P4 : list[float]
792
+ NonRectangularParameters : dict[str, Any]
793
793
 
794
794
  Returns
795
795
  -------
@@ -821,8 +821,8 @@ class Root(PyMenu):
821
821
  AddChild : str
822
822
  LeakageName : str
823
823
  SelectionType : str
824
- DeadRegionsList : List[str]
825
- RegionSelectionSingle : List[str]
824
+ DeadRegionsList : list[str]
825
+ RegionSelectionSingle : list[str]
826
826
  DeadRegionsSize : float
827
827
  PlaneClippingValue : int
828
828
  PlaneDirection : str
@@ -845,7 +845,7 @@ class Root(PyMenu):
845
845
  AddEnclosure : str
846
846
  CloseCaps : str
847
847
  LocalRefinementRegions : str
848
- DescribeGeometryAndFlowOptions : Dict[str, Any]
848
+ DescribeGeometryAndFlowOptions : dict[str, Any]
849
849
 
850
850
  Returns
851
851
  -------
@@ -880,17 +880,17 @@ class Root(PyMenu):
880
880
  ExtractEdgesName : str
881
881
  ExtractMethodType : str
882
882
  SelectionType : str
883
- ObjectSelectionList : List[str]
884
- GeomObjectSelectionList : List[str]
885
- ZoneSelectionList : List[str]
886
- ZoneLocation : List[str]
887
- LabelSelectionList : List[str]
883
+ ObjectSelectionList : list[str]
884
+ GeomObjectSelectionList : list[str]
885
+ ZoneSelectionList : list[str]
886
+ ZoneLocation : list[str]
887
+ LabelSelectionList : list[str]
888
888
  FeatureAngleLocal : int
889
889
  IndividualCollective : str
890
890
  SharpAngle : int
891
- CompleteObjectSelectionList : List[str]
892
- CompleteGeomObjectSelectionList : List[str]
893
- NonExtractedObjects : List[str]
891
+ CompleteObjectSelectionList : list[str]
892
+ CompleteGeomObjectSelectionList : list[str]
893
+ NonExtractedObjects : list[str]
894
894
 
895
895
  Returns
896
896
  -------
@@ -906,13 +906,13 @@ class Root(PyMenu):
906
906
  ----------
907
907
  MExControlName : str
908
908
  Method : str
909
- ExternalBoundaryZoneList : List[str]
909
+ ExternalBoundaryZoneList : list[str]
910
910
  TotalHeight : float
911
911
  FirstHeight : float
912
912
  NumberofLayers : int
913
913
  GrowthRate : float
914
- VMExtrudePreferences : Dict[str, Any]
915
- ZoneLocation : List[str]
914
+ VMExtrudePreferences : dict[str, Any]
915
+ ZoneLocation : list[str]
916
916
 
917
917
  Returns
918
918
  -------
@@ -941,11 +941,11 @@ class Root(PyMenu):
941
941
  Parameters
942
942
  ----------
943
943
  OrthogonalQualityLimit : float
944
- RegionScope : List[str]
944
+ RegionScope : list[str]
945
945
  NonConformal : str
946
946
  SizeFunctionScaleFactor : float
947
- CFDSurfaceMeshControls : Dict[str, Any]
948
- CompleteRegionScope : List[str]
947
+ CFDSurfaceMeshControls : dict[str, Any]
948
+ CompleteRegionScope : list[str]
949
949
 
950
950
  Returns
951
951
  -------
@@ -989,13 +989,13 @@ class Root(PyMenu):
989
989
 
990
990
  Parameters
991
991
  ----------
992
- CFDSurfaceMeshControls : Dict[str, Any]
992
+ CFDSurfaceMeshControls : dict[str, Any]
993
993
  SeparationRequired : str
994
994
  SeparationAngle : float
995
995
  RemeshSelectionType : str
996
- RemeshZoneList : List[str]
997
- RemeshLabelList : List[str]
998
- SurfaceMeshPreferences : Dict[str, Any]
996
+ RemeshZoneList : list[str]
997
+ RemeshLabelList : list[str]
998
+ SurfaceMeshPreferences : dict[str, Any]
999
999
  ImportType : str
1000
1000
  AppendMesh : bool
1001
1001
  CadFacetingFileName : str
@@ -1003,11 +1003,11 @@ class Root(PyMenu):
1003
1003
  Pattern : str
1004
1004
  LengthUnit : str
1005
1005
  TesselationMethod : str
1006
- OriginalZones : List[str]
1006
+ OriginalZones : list[str]
1007
1007
  ExecuteShareTopology : str
1008
- CADFacetingControls : Dict[str, Any]
1009
- CadImportOptions : Dict[str, Any]
1010
- ShareTopologyPreferences : Dict[str, Any]
1008
+ CADFacetingControls : dict[str, Any]
1009
+ CadImportOptions : dict[str, Any]
1010
+ ShareTopologyPreferences : dict[str, Any]
1011
1011
  PreviewSizeToggle : bool
1012
1012
 
1013
1013
  Returns
@@ -1027,15 +1027,15 @@ class Root(PyMenu):
1027
1027
  EnableParallel : bool
1028
1028
  SaveVolumeMesh : bool
1029
1029
  EditVolumeSettings : bool
1030
- RegionNameList : List[str]
1031
- RegionVolumeFillList : List[str]
1032
- RegionSizeList : List[str]
1033
- OldRegionNameList : List[str]
1034
- OldRegionVolumeFillList : List[str]
1035
- OldRegionSizeList : List[str]
1036
- AllRegionNameList : List[str]
1037
- AllRegionVolumeFillList : List[str]
1038
- AllRegionSizeList : List[str]
1030
+ RegionNameList : list[str]
1031
+ RegionVolumeFillList : list[str]
1032
+ RegionSizeList : list[str]
1033
+ OldRegionNameList : list[str]
1034
+ OldRegionVolumeFillList : list[str]
1035
+ OldRegionSizeList : list[str]
1036
+ AllRegionNameList : list[str]
1037
+ AllRegionVolumeFillList : list[str]
1038
+ AllRegionSizeList : list[str]
1039
1039
  AdvancedOptions : bool
1040
1040
  SpikeRemovalAngle : float
1041
1041
  DihedralMinAngle : float
@@ -1058,12 +1058,12 @@ class Root(PyMenu):
1058
1058
  VolumeFill : str
1059
1059
  MeshSolidRegions : bool
1060
1060
  SizingMethod : str
1061
- VolumeFillControls : Dict[str, Any]
1061
+ VolumeFillControls : dict[str, Any]
1062
1062
  RegionBasedPreferences : bool
1063
1063
  ReMergeZones : str
1064
1064
  ParallelMeshing : bool
1065
- VolumeMeshPreferences : Dict[str, Any]
1066
- PrismPreferences : Dict[str, Any]
1065
+ VolumeMeshPreferences : dict[str, Any]
1066
+ PrismPreferences : dict[str, Any]
1067
1067
  InvokePrimsControl : str
1068
1068
  OffsetMethodType : str
1069
1069
  NumberOfLayers : int
@@ -1073,20 +1073,20 @@ class Root(PyMenu):
1073
1073
  FirstHeight : float
1074
1074
  MeshObject : str
1075
1075
  MeshDeadRegions : bool
1076
- BodyLabelList : List[str]
1076
+ BodyLabelList : list[str]
1077
1077
  PrismLayers : bool
1078
1078
  QuadTetTransition : str
1079
1079
  MergeCellZones : bool
1080
- FaceScope : Dict[str, Any]
1081
- RegionTetNameList : List[str]
1082
- RegionTetMaxCellLengthList : List[str]
1083
- RegionTetGrowthRateList : List[str]
1084
- RegionHexNameList : List[str]
1085
- RegionHexMaxCellLengthList : List[str]
1086
- OldRegionTetMaxCellLengthList : List[str]
1087
- OldRegionTetGrowthRateList : List[str]
1088
- OldRegionHexMaxCellLengthList : List[str]
1089
- CFDSurfaceMeshControls : Dict[str, Any]
1080
+ FaceScope : dict[str, Any]
1081
+ RegionTetNameList : list[str]
1082
+ RegionTetMaxCellLengthList : list[str]
1083
+ RegionTetGrowthRateList : list[str]
1084
+ RegionHexNameList : list[str]
1085
+ RegionHexMaxCellLengthList : list[str]
1086
+ OldRegionTetMaxCellLengthList : list[str]
1087
+ OldRegionTetGrowthRateList : list[str]
1088
+ OldRegionHexMaxCellLengthList : list[str]
1089
+ CFDSurfaceMeshControls : dict[str, Any]
1090
1090
 
1091
1091
  Returns
1092
1092
  -------
@@ -1106,12 +1106,12 @@ class Root(PyMenu):
1106
1106
  InvokeShareTopology : str
1107
1107
  NonConformal : str
1108
1108
  Multizone : str
1109
- SetupInternals : List[str]
1110
- SetupInternalTypes : List[str]
1111
- OldZoneList : List[str]
1112
- OldZoneTypeList : List[str]
1113
- RegionList : List[str]
1114
- SMImprovePreferences : Dict[str, Any]
1109
+ SetupInternals : list[str]
1110
+ SetupInternalTypes : list[str]
1111
+ OldZoneList : list[str]
1112
+ OldZoneTypeList : list[str]
1113
+ RegionList : list[str]
1114
+ SMImprovePreferences : dict[str, Any]
1115
1115
 
1116
1116
  Returns
1117
1117
  -------
@@ -1128,20 +1128,20 @@ class Root(PyMenu):
1128
1128
  MRFName : str
1129
1129
  CreationMethod : str
1130
1130
  SelectionType : str
1131
- ObjectSelectionSingle : List[str]
1132
- ZoneSelectionSingle : List[str]
1133
- LabelSelectionSingle : List[str]
1134
- ObjectSelectionList : List[str]
1135
- ZoneSelectionList : List[str]
1136
- ZoneLocation : List[str]
1137
- LabelSelectionList : List[str]
1131
+ ObjectSelectionSingle : list[str]
1132
+ ZoneSelectionSingle : list[str]
1133
+ LabelSelectionSingle : list[str]
1134
+ ObjectSelectionList : list[str]
1135
+ ZoneSelectionList : list[str]
1136
+ ZoneLocation : list[str]
1137
+ LabelSelectionList : list[str]
1138
1138
  DefeaturingSize : float
1139
1139
  OffsetHeight : float
1140
- Pivot : Dict[str, Any]
1141
- Axis : Dict[str, Any]
1142
- Rotation : Dict[str, Any]
1143
- CylinderObject : Dict[str, Any]
1144
- BoundingBoxObject : Dict[str, Any]
1140
+ Pivot : dict[str, Any]
1141
+ Axis : dict[str, Any]
1142
+ Rotation : dict[str, Any]
1143
+ CylinderObject : dict[str, Any]
1144
+ BoundingBoxObject : dict[str, Any]
1145
1145
 
1146
1146
  Returns
1147
1147
  -------
@@ -1157,9 +1157,9 @@ class Root(PyMenu):
1157
1157
  ----------
1158
1158
  DisplayGridName : str
1159
1159
  SelectionType : str
1160
- ObjectSelectionList : List[str]
1161
- ZoneSelectionList : List[str]
1162
- ZoneLocation : List[str]
1160
+ ObjectSelectionList : list[str]
1161
+ ZoneSelectionList : list[str]
1162
+ ZoneLocation : list[str]
1163
1163
  AdvancedOptions : bool
1164
1164
  DeviationMinValue : float
1165
1165
  DeviationMaxValue : float
@@ -1178,7 +1178,7 @@ class Root(PyMenu):
1178
1178
  Parameters
1179
1179
  ----------
1180
1180
  NumberOfOrphans : str
1181
- ObjectSelectionList : List[str]
1181
+ ObjectSelectionList : list[str]
1182
1182
  DonorPriorityMethod : str
1183
1183
  OverlapBoundaries : str
1184
1184
 
@@ -1200,10 +1200,10 @@ class Root(PyMenu):
1200
1200
  NewRegionType : str
1201
1201
  LinkConstruction : str
1202
1202
  SelectionType : str
1203
- ZoneSelectionList : List[str]
1204
- ZoneLocation : List[str]
1205
- LabelSelectionList : List[str]
1206
- ObjectSelectionList : List[str]
1203
+ ZoneSelectionList : list[str]
1204
+ ZoneLocation : list[str]
1205
+ LabelSelectionList : list[str]
1206
+ ObjectSelectionList : list[str]
1207
1207
  GraphicalSelection : bool
1208
1208
  ShowCoordinates : bool
1209
1209
  X : float
@@ -1229,8 +1229,8 @@ class Root(PyMenu):
1229
1229
  Type : str
1230
1230
  GeometryFileName : str
1231
1231
  MeshFileName : str
1232
- ImportedObjects : List[str]
1233
- CadImportOptions : Dict[str, Any]
1232
+ ImportedObjects : list[str]
1233
+ CadImportOptions : dict[str, Any]
1234
1234
 
1235
1235
  Returns
1236
1236
  -------
@@ -1247,7 +1247,7 @@ class Root(PyMenu):
1247
1247
  FileFormat : str
1248
1248
  LengthUnit : str
1249
1249
  MeshUnit : str
1250
- ImportCadPreferences : Dict[str, Any]
1250
+ ImportCadPreferences : dict[str, Any]
1251
1251
  FileName : str
1252
1252
  MeshFileName : str
1253
1253
  NumParts : float
@@ -1255,7 +1255,7 @@ class Root(PyMenu):
1255
1255
  AppendMesh : bool
1256
1256
  Directory : str
1257
1257
  Pattern : str
1258
- CadImportOptions : Dict[str, Any]
1258
+ CadImportOptions : dict[str, Any]
1259
1259
 
1260
1260
  Returns
1261
1261
  -------
@@ -1272,7 +1272,7 @@ class Root(PyMenu):
1272
1272
  MeshObject : str
1273
1273
  FaceQualityLimit : float
1274
1274
  SQMinSize : float
1275
- SMImprovePreferences : Dict[str, Any]
1275
+ SMImprovePreferences : dict[str, Any]
1276
1276
 
1277
1277
  Returns
1278
1278
  -------
@@ -1287,7 +1287,7 @@ class Root(PyMenu):
1287
1287
  Parameters
1288
1288
  ----------
1289
1289
  CellQualityLimit : float
1290
- VMImprovePreferences : Dict[str, Any]
1290
+ VMImprovePreferences : dict[str, Any]
1291
1291
 
1292
1292
  Returns
1293
1293
  -------
@@ -1302,13 +1302,13 @@ class Root(PyMenu):
1302
1302
  Parameters
1303
1303
  ----------
1304
1304
  ChildName : str
1305
- ObjectList : List[str]
1305
+ ObjectList : list[str]
1306
1306
  AutoPopulateVector : str
1307
- PatternVector : Dict[str, Any]
1307
+ PatternVector : dict[str, Any]
1308
1308
  Pitch : float
1309
1309
  NumberOfUnits : int
1310
1310
  CheckOverlappingFaces : str
1311
- BatteryModelingOptions : Dict[str, Any]
1311
+ BatteryModelingOptions : dict[str, Any]
1312
1312
 
1313
1313
  Returns
1314
1314
  -------
@@ -1324,17 +1324,17 @@ class Root(PyMenu):
1324
1324
  ----------
1325
1325
  LocalSettingsName : str
1326
1326
  SelectionType : str
1327
- ObjectSelectionList : List[str]
1328
- LabelSelectionList : List[str]
1329
- ZoneSelectionList : List[str]
1330
- ZoneLocation : List[str]
1331
- EdgeSelectionList : List[str]
1332
- LocalSizeControlParameters : Dict[str, Any]
1327
+ ObjectSelectionList : list[str]
1328
+ LabelSelectionList : list[str]
1329
+ ZoneSelectionList : list[str]
1330
+ ZoneLocation : list[str]
1331
+ EdgeSelectionList : list[str]
1332
+ LocalSizeControlParameters : dict[str, Any]
1333
1333
  ValueChanged : str
1334
- CompleteZoneSelectionList : List[str]
1335
- CompleteLabelSelectionList : List[str]
1336
- CompleteObjectSelectionList : List[str]
1337
- CompleteEdgeSelectionList : List[str]
1334
+ CompleteZoneSelectionList : list[str]
1335
+ CompleteLabelSelectionList : list[str]
1336
+ CompleteObjectSelectionList : list[str]
1337
+ CompleteEdgeSelectionList : list[str]
1338
1338
 
1339
1339
  Returns
1340
1340
  -------
@@ -1355,18 +1355,18 @@ class Root(PyMenu):
1355
1355
  Volume : float
1356
1356
  EqualRange : float
1357
1357
  ZoneOrLabel : str
1358
- LabelList : List[str]
1359
- ManageFaceZoneList : List[str]
1360
- ManageCellZoneList : List[str]
1361
- BodyLabelList : List[str]
1358
+ LabelList : list[str]
1359
+ ManageFaceZoneList : list[str]
1360
+ ManageCellZoneList : list[str]
1361
+ BodyLabelList : list[str]
1362
1362
  Operation : str
1363
1363
  OperationName : str
1364
1364
  MZChildName : str
1365
1365
  AddPrefixName : str
1366
1366
  FaceMerge : str
1367
1367
  Angle : float
1368
- ZoneList : List[str]
1369
- ZoneLocation : List[str]
1368
+ ZoneList : list[str]
1369
+ ZoneLocation : list[str]
1370
1370
 
1371
1371
  Returns
1372
1372
  -------
@@ -1399,16 +1399,16 @@ class Root(PyMenu):
1399
1399
  RemeshControlName : str
1400
1400
  LocalSize : float
1401
1401
  FaceZoneOrLabel : str
1402
- RemeshFaceZoneList : List[str]
1403
- RemeshFaceLabelList : List[str]
1402
+ RemeshFaceZoneList : list[str]
1403
+ RemeshFaceLabelList : list[str]
1404
1404
  SizingType : str
1405
1405
  LocalMinSize : float
1406
1406
  LocalMaxSize : float
1407
1407
  RemeshGrowthRate : float
1408
1408
  RemeshCurvatureNormalAngle : float
1409
1409
  RemeshCellsPerGap : float
1410
- CFDSurfaceMeshControls : Dict[str, Any]
1411
- RemeshPreferences : Dict[str, Any]
1410
+ CFDSurfaceMeshControls : dict[str, Any]
1411
+ RemeshPreferences : dict[str, Any]
1412
1412
 
1413
1413
  Returns
1414
1414
  -------
@@ -1437,10 +1437,10 @@ class Root(PyMenu):
1437
1437
  PartPerBody : bool
1438
1438
  FeatureAngle : float
1439
1439
  OneZonePer : str
1440
- Refaceting : Dict[str, Any]
1440
+ Refaceting : dict[str, Any]
1441
1441
  IgnoreSolidNames : bool
1442
1442
  IgnoreSolidNamesAppend : bool
1443
- Options : Dict[str, Any]
1443
+ Options : dict[str, Any]
1444
1444
  EdgeExtraction : str
1445
1445
  Context : int
1446
1446
  ObjectSetting : str
@@ -1460,8 +1460,8 @@ class Root(PyMenu):
1460
1460
  PartReplacementName : str
1461
1461
  ManagementMethod : str
1462
1462
  CreationMethod : str
1463
- OldObjectSelectionList : List[str]
1464
- NewObjectSelectionList : List[str]
1463
+ OldObjectSelectionList : list[str]
1464
+ NewObjectSelectionList : list[str]
1465
1465
  AdvancedOptions : bool
1466
1466
  ScalingFactor : float
1467
1467
  MptMethodType : str
@@ -1529,14 +1529,14 @@ class Root(PyMenu):
1529
1529
  Type : str
1530
1530
  Method : str
1531
1531
  PeriodicityAngle : float
1532
- LCSOrigin : Dict[str, Any]
1533
- LCSVector : Dict[str, Any]
1534
- TransShift : Dict[str, Any]
1532
+ LCSOrigin : dict[str, Any]
1533
+ LCSVector : dict[str, Any]
1534
+ TransShift : dict[str, Any]
1535
1535
  SelectionType : str
1536
- ZoneList : List[str]
1537
- LabelList : List[str]
1536
+ ZoneList : list[str]
1537
+ LabelList : list[str]
1538
1538
  RemeshBoundariesOption : str
1539
- ZoneLocation : List[str]
1539
+ ZoneLocation : list[str]
1540
1540
  ListAllLabelToggle : bool
1541
1541
 
1542
1542
  Returns
@@ -1559,7 +1559,7 @@ class Root(PyMenu):
1559
1559
  LastRatioPercentage : float
1560
1560
  FirstHeight : float
1561
1561
  PrismLayers : int
1562
- RegionSelectionList : List[str]
1562
+ RegionSelectionList : list[str]
1563
1563
 
1564
1564
  Returns
1565
1565
  -------
@@ -1577,9 +1577,9 @@ class Root(PyMenu):
1577
1577
  GapDistanceConnect : float
1578
1578
  STMinSize : float
1579
1579
  InterfaceSelect : str
1580
- ShareTopologyPreferences : Dict[str, Any]
1581
- SMImprovePreferences : Dict[str, Any]
1582
- SurfaceMeshPreferences : Dict[str, Any]
1580
+ ShareTopologyPreferences : dict[str, Any]
1581
+ SMImprovePreferences : dict[str, Any]
1582
+ SurfaceMeshPreferences : dict[str, Any]
1583
1583
 
1584
1584
  Returns
1585
1585
  -------
@@ -1600,7 +1600,7 @@ class Root(PyMenu):
1600
1600
  InitialSizeControl : bool
1601
1601
  TargetSizeControl : bool
1602
1602
  SizeControlInterval : float
1603
- SizeControlParameters : Dict[str, Any]
1603
+ SizeControlParameters : dict[str, Any]
1604
1604
 
1605
1605
  Returns
1606
1606
  -------
@@ -1617,10 +1617,10 @@ class Root(PyMenu):
1617
1617
  MTControlName : str
1618
1618
  Type : str
1619
1619
  Method : str
1620
- CellZoneList : List[str]
1621
- LCSOrigin : Dict[str, Any]
1622
- LCSVector : Dict[str, Any]
1623
- TransShift : Dict[str, Any]
1620
+ CellZoneList : list[str]
1621
+ LCSOrigin : dict[str, Any]
1622
+ LCSVector : dict[str, Any]
1623
+ TransShift : dict[str, Any]
1624
1624
  Angle : float
1625
1625
  Copy : str
1626
1626
  NumOfCopies : int
@@ -1641,17 +1641,17 @@ class Root(PyMenu):
1641
1641
  ----------
1642
1642
  MeshObject : str
1643
1643
  SelectionType : str
1644
- BoundaryLabelList : List[str]
1645
- BoundaryLabelTypeList : List[str]
1646
- BoundaryZoneList : List[str]
1647
- BoundaryZoneTypeList : List[str]
1648
- OldBoundaryLabelList : List[str]
1649
- OldBoundaryLabelTypeList : List[str]
1650
- OldBoundaryZoneList : List[str]
1651
- OldBoundaryZoneTypeList : List[str]
1652
- OldLabelZoneList : List[str]
1644
+ BoundaryLabelList : list[str]
1645
+ BoundaryLabelTypeList : list[str]
1646
+ BoundaryZoneList : list[str]
1647
+ BoundaryZoneTypeList : list[str]
1648
+ OldBoundaryLabelList : list[str]
1649
+ OldBoundaryLabelTypeList : list[str]
1650
+ OldBoundaryZoneList : list[str]
1651
+ OldBoundaryZoneTypeList : list[str]
1652
+ OldLabelZoneList : list[str]
1653
1653
  ListAllBoundariesToggle : bool
1654
- ZoneLocation : List[str]
1654
+ ZoneLocation : list[str]
1655
1655
 
1656
1656
  Returns
1657
1657
  -------
@@ -1667,27 +1667,27 @@ class Root(PyMenu):
1667
1667
  ----------
1668
1668
  MainFluidRegion : str
1669
1669
  FilterCategory : str
1670
- RegionNameList : List[str]
1671
- RegionMeshMethodList : List[str]
1672
- RegionTypeList : List[str]
1673
- RegionVolumeFillList : List[str]
1674
- RegionLeakageSizeList : List[str]
1675
- RegionOversetComponenList : List[str]
1676
- OldRegionNameList : List[str]
1677
- OldRegionMeshMethodList : List[str]
1678
- OldRegionTypeList : List[str]
1679
- OldRegionVolumeFillList : List[str]
1680
- OldRegionLeakageSizeList : List[str]
1681
- OldRegionOversetComponenList : List[str]
1682
- AllRegionNameList : List[str]
1683
- AllRegionMeshMethodList : List[str]
1684
- AllRegionTypeList : List[str]
1685
- AllRegionVolumeFillList : List[str]
1686
- AllRegionLeakageSizeList : List[str]
1687
- AllRegionOversetComponenList : List[str]
1688
- AllRegionLinkedConstructionSurfaceList : List[str]
1689
- AllRegionSourceList : List[str]
1690
- AllRegionFilterCategories : List[str]
1670
+ RegionNameList : list[str]
1671
+ RegionMeshMethodList : list[str]
1672
+ RegionTypeList : list[str]
1673
+ RegionVolumeFillList : list[str]
1674
+ RegionLeakageSizeList : list[str]
1675
+ RegionOversetComponenList : list[str]
1676
+ OldRegionNameList : list[str]
1677
+ OldRegionMeshMethodList : list[str]
1678
+ OldRegionTypeList : list[str]
1679
+ OldRegionVolumeFillList : list[str]
1680
+ OldRegionLeakageSizeList : list[str]
1681
+ OldRegionOversetComponenList : list[str]
1682
+ AllRegionNameList : list[str]
1683
+ AllRegionMeshMethodList : list[str]
1684
+ AllRegionTypeList : list[str]
1685
+ AllRegionVolumeFillList : list[str]
1686
+ AllRegionLeakageSizeList : list[str]
1687
+ AllRegionOversetComponenList : list[str]
1688
+ AllRegionLinkedConstructionSurfaceList : list[str]
1689
+ AllRegionSourceList : list[str]
1690
+ AllRegionFilterCategories : list[str]
1691
1691
 
1692
1692
  Returns
1693
1693
  -------
@@ -1702,12 +1702,12 @@ class Root(PyMenu):
1702
1702
  Parameters
1703
1703
  ----------
1704
1704
  MeshObject : str
1705
- RegionNameList : List[str]
1706
- RegionTypeList : List[str]
1707
- OldRegionNameList : List[str]
1708
- OldRegionTypeList : List[str]
1709
- RegionInternals : List[str]
1710
- RegionInternalTypes : List[str]
1705
+ RegionNameList : list[str]
1706
+ RegionTypeList : list[str]
1707
+ OldRegionNameList : list[str]
1708
+ OldRegionTypeList : list[str]
1709
+ RegionInternals : list[str]
1710
+ RegionInternalTypes : list[str]
1711
1711
 
1712
1712
  Returns
1713
1713
  -------