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
@@ -0,0 +1,2644 @@
1
+ #
2
+ # This is an auto-generated file. DO NOT EDIT!
3
+ #
4
+ # pylint: disable=line-too-long
5
+
6
+ from ansys.fluent.core.services.datamodel_se import (
7
+ PyMenu,
8
+ PyParameter,
9
+ PyTextual,
10
+ PyNumerical,
11
+ PyDictionary,
12
+ PyNamedObjectContainer,
13
+ PyCommand,
14
+ PyQuery
15
+ )
16
+
17
+
18
+ class Root(PyMenu):
19
+ """
20
+ Singleton Root.
21
+ """
22
+ def __init__(self, service, rules, path):
23
+ self.Diagnostics = self.__class__.Diagnostics(service, rules, path + [("Diagnostics", "")])
24
+ self.File = self.__class__.File(service, rules, path + [("File", "")])
25
+ self.GlobalSettings = self.__class__.GlobalSettings(service, rules, path + [("GlobalSettings", "")])
26
+ self.Graphics = self.__class__.Graphics(service, rules, path + [("Graphics", "")])
27
+ self.Add2DBoundaryLayers = self.__class__.Add2DBoundaryLayers(service, rules, "Add2DBoundaryLayers", path)
28
+ self.AddBoundaryLayers = self.__class__.AddBoundaryLayers(service, rules, "AddBoundaryLayers", path)
29
+ self.AddBoundaryLayersForPartReplacement = self.__class__.AddBoundaryLayersForPartReplacement(service, rules, "AddBoundaryLayersForPartReplacement", path)
30
+ self.AddBoundaryType = self.__class__.AddBoundaryType(service, rules, "AddBoundaryType", path)
31
+ self.AddLocalSizingFTM = self.__class__.AddLocalSizingFTM(service, rules, "AddLocalSizingFTM", path)
32
+ self.AddLocalSizingWTM = self.__class__.AddLocalSizingWTM(service, rules, "AddLocalSizingWTM", path)
33
+ self.AddMultiZoneControls = self.__class__.AddMultiZoneControls(service, rules, "AddMultiZoneControls", path)
34
+ self.AddShellBoundaryLayerControls = self.__class__.AddShellBoundaryLayerControls(service, rules, "AddShellBoundaryLayerControls", path)
35
+ self.AddThickness = self.__class__.AddThickness(service, rules, "AddThickness", path)
36
+ self.AddThinVolumeMeshControls = self.__class__.AddThinVolumeMeshControls(service, rules, "AddThinVolumeMeshControls", path)
37
+ self.AddVirtualTopology = self.__class__.AddVirtualTopology(service, rules, "AddVirtualTopology", path)
38
+ self.Capping = self.__class__.Capping(service, rules, "Capping", path)
39
+ self.CheckMesh = self.__class__.CheckMesh(service, rules, "CheckMesh", path)
40
+ self.CheckSurfaceQuality = self.__class__.CheckSurfaceQuality(service, rules, "CheckSurfaceQuality", path)
41
+ self.CheckVolumeQuality = self.__class__.CheckVolumeQuality(service, rules, "CheckVolumeQuality", path)
42
+ self.ChooseMeshControlOptions = self.__class__.ChooseMeshControlOptions(service, rules, "ChooseMeshControlOptions", path)
43
+ self.ChoosePartReplacementOptions = self.__class__.ChoosePartReplacementOptions(service, rules, "ChoosePartReplacementOptions", path)
44
+ self.CloseLeakage = self.__class__.CloseLeakage(service, rules, "CloseLeakage", path)
45
+ self.ComplexMeshingRegions = self.__class__.ComplexMeshingRegions(service, rules, "ComplexMeshingRegions", path)
46
+ self.ComputeSizeField = self.__class__.ComputeSizeField(service, rules, "ComputeSizeField", path)
47
+ self.CreateBackgroundMesh = self.__class__.CreateBackgroundMesh(service, rules, "CreateBackgroundMesh", path)
48
+ self.CreateCollarMesh = self.__class__.CreateCollarMesh(service, rules, "CreateCollarMesh", path)
49
+ self.CreateComponentMesh = self.__class__.CreateComponentMesh(service, rules, "CreateComponentMesh", path)
50
+ self.CreateContactPatch = self.__class__.CreateContactPatch(service, rules, "CreateContactPatch", path)
51
+ self.CreateExternalFlowBoundaries = self.__class__.CreateExternalFlowBoundaries(service, rules, "CreateExternalFlowBoundaries", path)
52
+ self.CreateGapCover = self.__class__.CreateGapCover(service, rules, "CreateGapCover", path)
53
+ self.CreateLocalRefinementRegions = self.__class__.CreateLocalRefinementRegions(service, rules, "CreateLocalRefinementRegions", path)
54
+ self.CreateMeshObjects = self.__class__.CreateMeshObjects(service, rules, "CreateMeshObjects", path)
55
+ self.CreateOversetInterfaces = self.__class__.CreateOversetInterfaces(service, rules, "CreateOversetInterfaces", path)
56
+ self.CreatePorousRegions = self.__class__.CreatePorousRegions(service, rules, "CreatePorousRegions", path)
57
+ self.CreateRegions = self.__class__.CreateRegions(service, rules, "CreateRegions", path)
58
+ self.DefineGlobalSizing = self.__class__.DefineGlobalSizing(service, rules, "DefineGlobalSizing", path)
59
+ self.DefineLeakageThreshold = self.__class__.DefineLeakageThreshold(service, rules, "DefineLeakageThreshold", path)
60
+ self.DescribeGeometryAndFlow = self.__class__.DescribeGeometryAndFlow(service, rules, "DescribeGeometryAndFlow", path)
61
+ self.DescribeOversetFeatures = self.__class__.DescribeOversetFeatures(service, rules, "DescribeOversetFeatures", path)
62
+ self.ExtractEdges = self.__class__.ExtractEdges(service, rules, "ExtractEdges", path)
63
+ self.ExtrudeVolumeMesh = self.__class__.ExtrudeVolumeMesh(service, rules, "ExtrudeVolumeMesh", path)
64
+ self.GenerateInitialSurfaceMesh = self.__class__.GenerateInitialSurfaceMesh(service, rules, "GenerateInitialSurfaceMesh", path)
65
+ self.GenerateMapMesh = self.__class__.GenerateMapMesh(service, rules, "GenerateMapMesh", path)
66
+ self.GeneratePrisms = self.__class__.GeneratePrisms(service, rules, "GeneratePrisms", path)
67
+ self.GenerateShellBoundaryLayerMesh = self.__class__.GenerateShellBoundaryLayerMesh(service, rules, "GenerateShellBoundaryLayerMesh", path)
68
+ self.GenerateTheMultiZoneMesh = self.__class__.GenerateTheMultiZoneMesh(service, rules, "GenerateTheMultiZoneMesh", path)
69
+ self.GenerateTheSurfaceMeshFTM = self.__class__.GenerateTheSurfaceMeshFTM(service, rules, "GenerateTheSurfaceMeshFTM", path)
70
+ self.GenerateTheSurfaceMeshWTM = self.__class__.GenerateTheSurfaceMeshWTM(service, rules, "GenerateTheSurfaceMeshWTM", path)
71
+ self.GenerateTheVolumeMeshFTM = self.__class__.GenerateTheVolumeMeshFTM(service, rules, "GenerateTheVolumeMeshFTM", path)
72
+ self.GenerateTheVolumeMeshWTM = self.__class__.GenerateTheVolumeMeshWTM(service, rules, "GenerateTheVolumeMeshWTM", path)
73
+ self.GeometrySetup = self.__class__.GeometrySetup(service, rules, "GeometrySetup", path)
74
+ self.IdentifyConstructionSurfaces = self.__class__.IdentifyConstructionSurfaces(service, rules, "IdentifyConstructionSurfaces", path)
75
+ self.IdentifyDeviatedFaces = self.__class__.IdentifyDeviatedFaces(service, rules, "IdentifyDeviatedFaces", path)
76
+ self.IdentifyOrphans = self.__class__.IdentifyOrphans(service, rules, "IdentifyOrphans", path)
77
+ self.IdentifyRegions = self.__class__.IdentifyRegions(service, rules, "IdentifyRegions", path)
78
+ self.ImportBodyOfInfluenceGeometry = self.__class__.ImportBodyOfInfluenceGeometry(service, rules, "ImportBodyOfInfluenceGeometry", path)
79
+ self.ImportGeometry = self.__class__.ImportGeometry(service, rules, "ImportGeometry", path)
80
+ self.ImproveSurfaceMesh = self.__class__.ImproveSurfaceMesh(service, rules, "ImproveSurfaceMesh", path)
81
+ self.ImproveVolumeMesh = self.__class__.ImproveVolumeMesh(service, rules, "ImproveVolumeMesh", path)
82
+ self.LinearMeshPattern = self.__class__.LinearMeshPattern(service, rules, "LinearMeshPattern", path)
83
+ self.LoadCADGeometry = self.__class__.LoadCADGeometry(service, rules, "LoadCADGeometry", path)
84
+ self.LocalScopedSizingForPartReplacement = self.__class__.LocalScopedSizingForPartReplacement(service, rules, "LocalScopedSizingForPartReplacement", path)
85
+ self.ManageZones = self.__class__.ManageZones(service, rules, "ManageZones", path)
86
+ self.MeshFluidDomain = self.__class__.MeshFluidDomain(service, rules, "MeshFluidDomain", path)
87
+ self.ModifyMeshRefinement = self.__class__.ModifyMeshRefinement(service, rules, "ModifyMeshRefinement", path)
88
+ self.PartManagement = self.__class__.PartManagement(service, rules, "PartManagement", path)
89
+ self.PartReplacementSettings = self.__class__.PartReplacementSettings(service, rules, "PartReplacementSettings", path)
90
+ self.RemeshSurface = self.__class__.RemeshSurface(service, rules, "RemeshSurface", path)
91
+ self.RunCustomJournal = self.__class__.RunCustomJournal(service, rules, "RunCustomJournal", path)
92
+ self.SeparateContacts = self.__class__.SeparateContacts(service, rules, "SeparateContacts", path)
93
+ self.SetUpPeriodicBoundaries = self.__class__.SetUpPeriodicBoundaries(service, rules, "SetUpPeriodicBoundaries", path)
94
+ self.SetupBoundaryLayers = self.__class__.SetupBoundaryLayers(service, rules, "SetupBoundaryLayers", path)
95
+ self.ShareTopology = self.__class__.ShareTopology(service, rules, "ShareTopology", path)
96
+ self.SizeControlsTable = self.__class__.SizeControlsTable(service, rules, "SizeControlsTable", path)
97
+ self.SwitchToSolution = self.__class__.SwitchToSolution(service, rules, "SwitchToSolution", path)
98
+ self.TransformVolumeMesh = self.__class__.TransformVolumeMesh(service, rules, "TransformVolumeMesh", path)
99
+ self.UpdateBoundaries = self.__class__.UpdateBoundaries(service, rules, "UpdateBoundaries", path)
100
+ self.UpdateRegionSettings = self.__class__.UpdateRegionSettings(service, rules, "UpdateRegionSettings", path)
101
+ self.UpdateRegions = self.__class__.UpdateRegions(service, rules, "UpdateRegions", path)
102
+ self.UpdateTheVolumeMesh = self.__class__.UpdateTheVolumeMesh(service, rules, "UpdateTheVolumeMesh", path)
103
+ self.WrapMain = self.__class__.WrapMain(service, rules, "WrapMain", path)
104
+ self.Write2dMesh = self.__class__.Write2dMesh(service, rules, "Write2dMesh", path)
105
+ self.WriteSkinMesh = self.__class__.WriteSkinMesh(service, rules, "WriteSkinMesh", path)
106
+ super().__init__(service, rules, path)
107
+
108
+ class Diagnostics(PyMenu):
109
+ """
110
+ Singleton Diagnostics.
111
+ """
112
+ def __init__(self, service, rules, path):
113
+ self.Close = self.__class__.Close(service, rules, "Close", path)
114
+ self.Compute = self.__class__.Compute(service, rules, "Compute", path)
115
+ self.DiagOptions = self.__class__.DiagOptions(service, rules, "DiagOptions", path)
116
+ self.Draw = self.__class__.Draw(service, rules, "Draw", path)
117
+ self.First = self.__class__.First(service, rules, "First", path)
118
+ self.Histogram = self.__class__.Histogram(service, rules, "Histogram", path)
119
+ self.Ignore = self.__class__.Ignore(service, rules, "Ignore", path)
120
+ self.List = self.__class__.List(service, rules, "List", path)
121
+ self.Mark = self.__class__.Mark(service, rules, "Mark", path)
122
+ self.Next = self.__class__.Next(service, rules, "Next", path)
123
+ self.Previous = self.__class__.Previous(service, rules, "Previous", path)
124
+ self.Restore = self.__class__.Restore(service, rules, "Restore", path)
125
+ self.Summary = self.__class__.Summary(service, rules, "Summary", path)
126
+ self.Update = self.__class__.Update(service, rules, "Update", path)
127
+ super().__init__(service, rules, path)
128
+
129
+ class Close(PyCommand):
130
+ """
131
+ Command Close.
132
+
133
+
134
+ Returns
135
+ -------
136
+ None
137
+ """
138
+ pass
139
+
140
+ class Compute(PyCommand):
141
+ """
142
+ Command Compute.
143
+
144
+
145
+ Returns
146
+ -------
147
+ None
148
+ """
149
+ pass
150
+
151
+ class DiagOptions(PyCommand):
152
+ """
153
+ Command DiagOptions.
154
+
155
+ Parameters
156
+ ----------
157
+ Option : str
158
+ Measure : str
159
+ Average : float
160
+ Minimum : float
161
+ Maximum : float
162
+ MarkRangeType : str
163
+ MarkMin : float
164
+ MarkMax : float
165
+ Selected : str
166
+ MarkedCount : int
167
+ CurrentCount : int
168
+ ExtentsUpdateBounds : bool
169
+ ExtentsXMin : float
170
+ ExtentsYMin : float
171
+ ExtentsZMin : float
172
+ ExtentsXMax : float
173
+ ExtentsYMax : float
174
+ ExtentsZMax : float
175
+
176
+ Returns
177
+ -------
178
+ None
179
+ """
180
+ pass
181
+
182
+ class Draw(PyCommand):
183
+ """
184
+ Command Draw.
185
+
186
+
187
+ Returns
188
+ -------
189
+ None
190
+ """
191
+ pass
192
+
193
+ class First(PyCommand):
194
+ """
195
+ Command First.
196
+
197
+
198
+ Returns
199
+ -------
200
+ None
201
+ """
202
+ pass
203
+
204
+ class Histogram(PyCommand):
205
+ """
206
+ Command Histogram.
207
+
208
+
209
+ Returns
210
+ -------
211
+ None
212
+ """
213
+ pass
214
+
215
+ class Ignore(PyCommand):
216
+ """
217
+ Command Ignore.
218
+
219
+
220
+ Returns
221
+ -------
222
+ None
223
+ """
224
+ pass
225
+
226
+ class List(PyCommand):
227
+ """
228
+ Command List.
229
+
230
+
231
+ Returns
232
+ -------
233
+ None
234
+ """
235
+ pass
236
+
237
+ class Mark(PyCommand):
238
+ """
239
+ Command Mark.
240
+
241
+
242
+ Returns
243
+ -------
244
+ None
245
+ """
246
+ pass
247
+
248
+ class Next(PyCommand):
249
+ """
250
+ Command Next.
251
+
252
+
253
+ Returns
254
+ -------
255
+ None
256
+ """
257
+ pass
258
+
259
+ class Previous(PyCommand):
260
+ """
261
+ Command Previous.
262
+
263
+
264
+ Returns
265
+ -------
266
+ None
267
+ """
268
+ pass
269
+
270
+ class Restore(PyCommand):
271
+ """
272
+ Command Restore.
273
+
274
+
275
+ Returns
276
+ -------
277
+ None
278
+ """
279
+ pass
280
+
281
+ class Summary(PyCommand):
282
+ """
283
+ Command Summary.
284
+
285
+
286
+ Returns
287
+ -------
288
+ None
289
+ """
290
+ pass
291
+
292
+ class Update(PyCommand):
293
+ """
294
+ Command Update.
295
+
296
+
297
+ Returns
298
+ -------
299
+ None
300
+ """
301
+ pass
302
+
303
+ class File(PyMenu):
304
+ """
305
+ Singleton File.
306
+ """
307
+ def __init__(self, service, rules, path):
308
+ self.ReadCase = self.__class__.ReadCase(service, rules, "ReadCase", path)
309
+ self.ReadJournal = self.__class__.ReadJournal(service, rules, "ReadJournal", path)
310
+ self.ReadMesh = self.__class__.ReadMesh(service, rules, "ReadMesh", path)
311
+ self.StartJournal = self.__class__.StartJournal(service, rules, "StartJournal", path)
312
+ self.StopJournal = self.__class__.StopJournal(service, rules, "StopJournal", path)
313
+ self.WriteCase = self.__class__.WriteCase(service, rules, "WriteCase", path)
314
+ self.WriteMesh = self.__class__.WriteMesh(service, rules, "WriteMesh", path)
315
+ super().__init__(service, rules, path)
316
+
317
+ class ReadCase(PyCommand):
318
+ """
319
+ Command ReadCase.
320
+
321
+ Parameters
322
+ ----------
323
+ FileName : str
324
+
325
+ Returns
326
+ -------
327
+ None
328
+ """
329
+ pass
330
+
331
+ class ReadJournal(PyCommand):
332
+ """
333
+ Command ReadJournal.
334
+
335
+ Parameters
336
+ ----------
337
+ FileName : list[str]
338
+ ChangeDirectory : bool
339
+
340
+ Returns
341
+ -------
342
+ None
343
+ """
344
+ pass
345
+
346
+ class ReadMesh(PyCommand):
347
+ """
348
+ Command ReadMesh.
349
+
350
+ Parameters
351
+ ----------
352
+ FileName : str
353
+
354
+ Returns
355
+ -------
356
+ None
357
+ """
358
+ pass
359
+
360
+ class StartJournal(PyCommand):
361
+ """
362
+ Command StartJournal.
363
+
364
+ Parameters
365
+ ----------
366
+ FileName : str
367
+
368
+ Returns
369
+ -------
370
+ None
371
+ """
372
+ pass
373
+
374
+ class StopJournal(PyCommand):
375
+ """
376
+ Command StopJournal.
377
+
378
+
379
+ Returns
380
+ -------
381
+ None
382
+ """
383
+ pass
384
+
385
+ class WriteCase(PyCommand):
386
+ """
387
+ Command WriteCase.
388
+
389
+ Parameters
390
+ ----------
391
+ FileName : str
392
+
393
+ Returns
394
+ -------
395
+ None
396
+ """
397
+ pass
398
+
399
+ class WriteMesh(PyCommand):
400
+ """
401
+ Command WriteMesh.
402
+
403
+ Parameters
404
+ ----------
405
+ FileName : str
406
+
407
+ Returns
408
+ -------
409
+ None
410
+ """
411
+ pass
412
+
413
+ class GlobalSettings(PyMenu):
414
+ """
415
+ Singleton GlobalSettings.
416
+ """
417
+ def __init__(self, service, rules, path):
418
+ self.FTMRegionData = self.__class__.FTMRegionData(service, rules, path + [("FTMRegionData", "")])
419
+ self.AreaUnit = self.__class__.AreaUnit(service, rules, path + [("AreaUnit", "")])
420
+ self.EnableCleanCAD = self.__class__.EnableCleanCAD(service, rules, path + [("EnableCleanCAD", "")])
421
+ self.EnableComplexMeshing = self.__class__.EnableComplexMeshing(service, rules, path + [("EnableComplexMeshing", "")])
422
+ self.EnableOversetMeshing = self.__class__.EnableOversetMeshing(service, rules, path + [("EnableOversetMeshing", "")])
423
+ self.EnablePrime2dMeshing = self.__class__.EnablePrime2dMeshing(service, rules, path + [("EnablePrime2dMeshing", "")])
424
+ self.EnablePrimeMeshing = self.__class__.EnablePrimeMeshing(service, rules, path + [("EnablePrimeMeshing", "")])
425
+ self.InitialVersion = self.__class__.InitialVersion(service, rules, path + [("InitialVersion", "")])
426
+ self.LengthUnit = self.__class__.LengthUnit(service, rules, path + [("LengthUnit", "")])
427
+ self.NormalMode = self.__class__.NormalMode(service, rules, path + [("NormalMode", "")])
428
+ self.UseAllowedValues = self.__class__.UseAllowedValues(service, rules, path + [("UseAllowedValues", "")])
429
+ self.VolumeUnit = self.__class__.VolumeUnit(service, rules, path + [("VolumeUnit", "")])
430
+ super().__init__(service, rules, path)
431
+
432
+ class FTMRegionData(PyMenu):
433
+ """
434
+ Singleton FTMRegionData.
435
+ """
436
+ def __init__(self, service, rules, path):
437
+ self.AllOversetNameList = self.__class__.AllOversetNameList(service, rules, path + [("AllOversetNameList", "")])
438
+ self.AllOversetSizeList = self.__class__.AllOversetSizeList(service, rules, path + [("AllOversetSizeList", "")])
439
+ self.AllOversetTypeList = self.__class__.AllOversetTypeList(service, rules, path + [("AllOversetTypeList", "")])
440
+ self.AllOversetVolumeFillList = self.__class__.AllOversetVolumeFillList(service, rules, path + [("AllOversetVolumeFillList", "")])
441
+ self.AllRegionFilterCategories = self.__class__.AllRegionFilterCategories(service, rules, path + [("AllRegionFilterCategories", "")])
442
+ self.AllRegionLeakageSizeList = self.__class__.AllRegionLeakageSizeList(service, rules, path + [("AllRegionLeakageSizeList", "")])
443
+ self.AllRegionLinkedConstructionSurfaceList = self.__class__.AllRegionLinkedConstructionSurfaceList(service, rules, path + [("AllRegionLinkedConstructionSurfaceList", "")])
444
+ self.AllRegionMeshMethodList = self.__class__.AllRegionMeshMethodList(service, rules, path + [("AllRegionMeshMethodList", "")])
445
+ self.AllRegionNameList = self.__class__.AllRegionNameList(service, rules, path + [("AllRegionNameList", "")])
446
+ self.AllRegionOversetComponenList = self.__class__.AllRegionOversetComponenList(service, rules, path + [("AllRegionOversetComponenList", "")])
447
+ self.AllRegionSizeList = self.__class__.AllRegionSizeList(service, rules, path + [("AllRegionSizeList", "")])
448
+ self.AllRegionSourceList = self.__class__.AllRegionSourceList(service, rules, path + [("AllRegionSourceList", "")])
449
+ self.AllRegionTypeList = self.__class__.AllRegionTypeList(service, rules, path + [("AllRegionTypeList", "")])
450
+ self.AllRegionVolumeFillList = self.__class__.AllRegionVolumeFillList(service, rules, path + [("AllRegionVolumeFillList", "")])
451
+ super().__init__(service, rules, path)
452
+
453
+ class AllOversetNameList(PyTextual):
454
+ """
455
+ Parameter AllOversetNameList of value type list[str].
456
+ """
457
+ pass
458
+
459
+ class AllOversetSizeList(PyTextual):
460
+ """
461
+ Parameter AllOversetSizeList of value type list[str].
462
+ """
463
+ pass
464
+
465
+ class AllOversetTypeList(PyTextual):
466
+ """
467
+ Parameter AllOversetTypeList of value type list[str].
468
+ """
469
+ pass
470
+
471
+ class AllOversetVolumeFillList(PyTextual):
472
+ """
473
+ Parameter AllOversetVolumeFillList of value type list[str].
474
+ """
475
+ pass
476
+
477
+ class AllRegionFilterCategories(PyTextual):
478
+ """
479
+ Parameter AllRegionFilterCategories of value type list[str].
480
+ """
481
+ pass
482
+
483
+ class AllRegionLeakageSizeList(PyTextual):
484
+ """
485
+ Parameter AllRegionLeakageSizeList of value type list[str].
486
+ """
487
+ pass
488
+
489
+ class AllRegionLinkedConstructionSurfaceList(PyTextual):
490
+ """
491
+ Parameter AllRegionLinkedConstructionSurfaceList of value type list[str].
492
+ """
493
+ pass
494
+
495
+ class AllRegionMeshMethodList(PyTextual):
496
+ """
497
+ Parameter AllRegionMeshMethodList of value type list[str].
498
+ """
499
+ pass
500
+
501
+ class AllRegionNameList(PyTextual):
502
+ """
503
+ Parameter AllRegionNameList of value type list[str].
504
+ """
505
+ pass
506
+
507
+ class AllRegionOversetComponenList(PyTextual):
508
+ """
509
+ Parameter AllRegionOversetComponenList of value type list[str].
510
+ """
511
+ pass
512
+
513
+ class AllRegionSizeList(PyTextual):
514
+ """
515
+ Parameter AllRegionSizeList of value type list[str].
516
+ """
517
+ pass
518
+
519
+ class AllRegionSourceList(PyTextual):
520
+ """
521
+ Parameter AllRegionSourceList of value type list[str].
522
+ """
523
+ pass
524
+
525
+ class AllRegionTypeList(PyTextual):
526
+ """
527
+ Parameter AllRegionTypeList of value type list[str].
528
+ """
529
+ pass
530
+
531
+ class AllRegionVolumeFillList(PyTextual):
532
+ """
533
+ Parameter AllRegionVolumeFillList of value type list[str].
534
+ """
535
+ pass
536
+
537
+ class AreaUnit(PyTextual):
538
+ """
539
+ Parameter AreaUnit of value type str.
540
+ """
541
+ pass
542
+
543
+ class EnableCleanCAD(PyParameter):
544
+ """
545
+ Parameter EnableCleanCAD of value type bool.
546
+ """
547
+ pass
548
+
549
+ class EnableComplexMeshing(PyParameter):
550
+ """
551
+ Parameter EnableComplexMeshing of value type bool.
552
+ """
553
+ pass
554
+
555
+ class EnableOversetMeshing(PyParameter):
556
+ """
557
+ Parameter EnableOversetMeshing of value type bool.
558
+ """
559
+ pass
560
+
561
+ class EnablePrime2dMeshing(PyParameter):
562
+ """
563
+ Parameter EnablePrime2dMeshing of value type bool.
564
+ """
565
+ pass
566
+
567
+ class EnablePrimeMeshing(PyParameter):
568
+ """
569
+ Parameter EnablePrimeMeshing of value type bool.
570
+ """
571
+ pass
572
+
573
+ class InitialVersion(PyTextual):
574
+ """
575
+ Parameter InitialVersion of value type str.
576
+ """
577
+ pass
578
+
579
+ class LengthUnit(PyTextual):
580
+ """
581
+ Parameter LengthUnit of value type str.
582
+ """
583
+ pass
584
+
585
+ class NormalMode(PyParameter):
586
+ """
587
+ Parameter NormalMode of value type bool.
588
+ """
589
+ pass
590
+
591
+ class UseAllowedValues(PyParameter):
592
+ """
593
+ Parameter UseAllowedValues of value type bool.
594
+ """
595
+ pass
596
+
597
+ class VolumeUnit(PyTextual):
598
+ """
599
+ Parameter VolumeUnit of value type str.
600
+ """
601
+ pass
602
+
603
+ class Graphics(PyMenu):
604
+ """
605
+ Singleton Graphics.
606
+ """
607
+ def __init__(self, service, rules, path):
608
+ self.Bounds = self.__class__.Bounds(service, rules, path + [("Bounds", "")])
609
+ self.ClippingPlane = self.__class__.ClippingPlane(service, rules, "ClippingPlane", path)
610
+ self.GetClippingZoneIDs = self.__class__.GetClippingZoneIDs(service, rules, "GetClippingZoneIDs", path)
611
+ self.GetVisibleDomainBounds = self.__class__.GetVisibleDomainBounds(service, rules, "GetVisibleDomainBounds", path)
612
+ super().__init__(service, rules, path)
613
+
614
+ class Bounds(PyMenu):
615
+ """
616
+ Singleton Bounds.
617
+ """
618
+ def __init__(self, service, rules, path):
619
+ self.BoundX = self.__class__.BoundX(service, rules, path + [("BoundX", "")])
620
+ self.BoundY = self.__class__.BoundY(service, rules, path + [("BoundY", "")])
621
+ self.BoundZ = self.__class__.BoundZ(service, rules, path + [("BoundZ", "")])
622
+ self.Delta3D = self.__class__.Delta3D(service, rules, path + [("Delta3D", "")])
623
+ self.Selection = self.__class__.Selection(service, rules, path + [("Selection", "")])
624
+ self.ResetBounds = self.__class__.ResetBounds(service, rules, "ResetBounds", path)
625
+ self.SetBounds = self.__class__.SetBounds(service, rules, "SetBounds", path)
626
+ super().__init__(service, rules, path)
627
+
628
+ class BoundX(PyParameter):
629
+ """
630
+ Parameter BoundX of value type bool.
631
+ """
632
+ pass
633
+
634
+ class BoundY(PyParameter):
635
+ """
636
+ Parameter BoundY of value type bool.
637
+ """
638
+ pass
639
+
640
+ class BoundZ(PyParameter):
641
+ """
642
+ Parameter BoundZ of value type bool.
643
+ """
644
+ pass
645
+
646
+ class Delta3D(PyNumerical):
647
+ """
648
+ Parameter Delta3D of value type float.
649
+ """
650
+ pass
651
+
652
+ class Selection(PyTextual):
653
+ """
654
+ Parameter Selection of value type str.
655
+ """
656
+ pass
657
+
658
+ class ResetBounds(PyCommand):
659
+ """
660
+ Command ResetBounds.
661
+
662
+
663
+ Returns
664
+ -------
665
+ None
666
+ """
667
+ pass
668
+
669
+ class SetBounds(PyCommand):
670
+ """
671
+ Command SetBounds.
672
+
673
+
674
+ Returns
675
+ -------
676
+ None
677
+ """
678
+ pass
679
+
680
+ class ClippingPlane(PyCommand):
681
+ """
682
+ Command ClippingPlane.
683
+
684
+ Parameters
685
+ ----------
686
+ InsertClippingPlane : bool
687
+ DrawCellLayer : bool
688
+ FreezeCellLayer : bool
689
+ FlipClippingPlane : bool
690
+ PointCoordinates : list[float]
691
+ PlaneNormal : list[float]
692
+ SliderPosition : int
693
+ CutDirection : str
694
+
695
+ Returns
696
+ -------
697
+ None
698
+ """
699
+ pass
700
+
701
+ class GetClippingZoneIDs(PyCommand):
702
+ """
703
+ Command GetClippingZoneIDs.
704
+
705
+
706
+ Returns
707
+ -------
708
+ None
709
+ """
710
+ pass
711
+
712
+ class GetVisibleDomainBounds(PyCommand):
713
+ """
714
+ Command GetVisibleDomainBounds.
715
+
716
+
717
+ Returns
718
+ -------
719
+ None
720
+ """
721
+ pass
722
+
723
+ class Add2DBoundaryLayers(PyCommand):
724
+ """
725
+ Command Add2DBoundaryLayers.
726
+
727
+ Parameters
728
+ ----------
729
+ AddChild : str
730
+ BLControlName : str
731
+ OffsetMethodType : str
732
+ NumberOfLayers : int
733
+ FirstAspectRatio : float
734
+ TransitionRatio : float
735
+ LastAspectRatio : float
736
+ Rate : float
737
+ FirstLayerHeight : float
738
+ MaxLayerHeight : float
739
+ Addin : str
740
+ FaceLabelList : list[str]
741
+ GrowOn : str
742
+ EdgeLabelList : list[str]
743
+ EdgeZoneList : list[str]
744
+ ShellBLAdvancedOptions : dict[str, Any]
745
+
746
+ Returns
747
+ -------
748
+ bool
749
+ """
750
+ pass
751
+
752
+ class AddBoundaryLayers(PyCommand):
753
+ """
754
+ Command AddBoundaryLayers.
755
+
756
+ Parameters
757
+ ----------
758
+ AddChild : str
759
+ ReadPrismControlFile : str
760
+ BLControlName : str
761
+ OffsetMethodType : str
762
+ NumberOfLayers : int
763
+ FirstAspectRatio : float
764
+ TransitionRatio : float
765
+ Rate : float
766
+ FirstHeight : float
767
+ MaxLayerHeight : float
768
+ FaceScope : dict[str, Any]
769
+ RegionScope : list[str]
770
+ BlLabelList : list[str]
771
+ ZoneSelectionList : list[str]
772
+ ZoneLocation : list[str]
773
+ LocalPrismPreferences : dict[str, Any]
774
+ BLZoneList : list[str]
775
+ BLRegionList : list[str]
776
+ InvalidAdded : str
777
+ CompleteRegionScope : list[str]
778
+ CompleteBlLabelList : list[str]
779
+ CompleteBLZoneList : list[str]
780
+ CompleteBLRegionList : list[str]
781
+ CompleteZoneSelectionList : list[str]
782
+ CompleteLabelSelectionList : list[str]
783
+
784
+ Returns
785
+ -------
786
+ bool
787
+ """
788
+ pass
789
+
790
+ class AddBoundaryLayersForPartReplacement(PyCommand):
791
+ """
792
+ Command AddBoundaryLayersForPartReplacement.
793
+
794
+ Parameters
795
+ ----------
796
+ AddChild : str
797
+ ReadPrismControlFile : str
798
+ BLControlName : str
799
+ OffsetMethodType : str
800
+ NumberOfLayers : int
801
+ FirstAspectRatio : float
802
+ TransitionRatio : float
803
+ Rate : float
804
+ FirstHeight : float
805
+ MaxLayerHeight : float
806
+ FaceScope : dict[str, Any]
807
+ RegionScope : list[str]
808
+ BlLabelList : list[str]
809
+ ZoneSelectionList : list[str]
810
+ ZoneLocation : list[str]
811
+ LocalPrismPreferences : dict[str, Any]
812
+ BLZoneList : list[str]
813
+ BLRegionList : list[str]
814
+ CompleteRegionScope : list[str]
815
+ CompleteBlLabelList : list[str]
816
+ CompleteBLZoneList : list[str]
817
+ CompleteBLRegionList : list[str]
818
+ CompleteZoneSelectionList : list[str]
819
+ CompleteLabelSelectionList : list[str]
820
+
821
+ Returns
822
+ -------
823
+ bool
824
+ """
825
+ pass
826
+
827
+ class AddBoundaryType(PyCommand):
828
+ """
829
+ Command AddBoundaryType.
830
+
831
+ Parameters
832
+ ----------
833
+ MeshObject : str
834
+ NewBoundaryLabelName : str
835
+ NewBoundaryType : str
836
+ SelectionType : str
837
+ BoundaryFaceZoneList : list[str]
838
+ TopologyList : list[str]
839
+ Merge : str
840
+ ZoneLocation : list[str]
841
+
842
+ Returns
843
+ -------
844
+ bool
845
+ """
846
+ pass
847
+
848
+ class AddLocalSizingFTM(PyCommand):
849
+ """
850
+ Command AddLocalSizingFTM.
851
+
852
+ Parameters
853
+ ----------
854
+ LocalSettingsName : str
855
+ SelectionType : str
856
+ ObjectSelectionList : list[str]
857
+ LabelSelectionList : list[str]
858
+ ZoneSelectionList : list[str]
859
+ ZoneLocation : list[str]
860
+ EdgeSelectionList : list[str]
861
+ LocalSizeControlParameters : dict[str, Any]
862
+ ValueChanged : str
863
+ CompleteZoneSelectionList : list[str]
864
+ CompleteLabelSelectionList : list[str]
865
+ CompleteObjectSelectionList : list[str]
866
+ CompleteEdgeSelectionList : list[str]
867
+
868
+ Returns
869
+ -------
870
+ bool
871
+ """
872
+ pass
873
+
874
+ class AddLocalSizingWTM(PyCommand):
875
+ """
876
+ Command AddLocalSizingWTM.
877
+
878
+ Parameters
879
+ ----------
880
+ AddChild : str
881
+ BOIControlName : str
882
+ BOIGrowthRate : float
883
+ BOIExecution : str
884
+ AssignSizeUsing : str
885
+ BOISize : float
886
+ NumberofLayers : int
887
+ SmallestHeight : float
888
+ GrowthPattern : str
889
+ GrowthMethod : str
890
+ BiasFactor : float
891
+ BOIMinSize : float
892
+ BOIMaxSize : float
893
+ BOICurvatureNormalAngle : float
894
+ BOICellsPerGap : float
895
+ BOIScopeTo : str
896
+ IgnoreOrientation : str
897
+ BOIZoneorLabel : str
898
+ BOIFaceLabelList : list[str]
899
+ BOIFaceZoneList : list[str]
900
+ EdgeLabelList : list[str]
901
+ EdgeZoneList : list[str]
902
+ TopologyList : list[str]
903
+ ReverseEdgeZoneOrientation : bool
904
+ ReverseEdgeZoneList : list[str]
905
+ BOIPatchingtoggle : bool
906
+ DrawSizeControl : bool
907
+ ZoneLocation : list[str]
908
+ CompleteFaceZoneList : list[str]
909
+ CompleteFaceLabelList : list[str]
910
+ CompleteEdgeLabelList : list[str]
911
+ CompleteTopologyList : list[str]
912
+ PrimeSizeControlId : int
913
+
914
+ Returns
915
+ -------
916
+ bool
917
+ """
918
+ pass
919
+
920
+ class AddMultiZoneControls(PyCommand):
921
+ """
922
+ Command AddMultiZoneControls.
923
+
924
+ Parameters
925
+ ----------
926
+ ControlType : str
927
+ MultiZName : str
928
+ MeshMethod : str
929
+ FillWith : str
930
+ UseSweepSize : str
931
+ MaxSweepSize : float
932
+ RegionScope : list[str]
933
+ TopologyList : list[str]
934
+ SourceMethod : str
935
+ ParallelSelection : bool
936
+ ShowEdgeBiasing : str
937
+ LabelSourceList : list[str]
938
+ ZoneSourceList : list[str]
939
+ ZoneLocation : list[str]
940
+ AssignSizeUsing : str
941
+ Intervals : int
942
+ Size : float
943
+ SmallestHeight : float
944
+ BiasMethod : str
945
+ GrowthMethod : str
946
+ GrowthRate : float
947
+ BiasFactor : float
948
+ EdgeLabelSelection : list[str]
949
+ EdgeLabelList : list[str]
950
+ CFDSurfaceMeshControls : dict[str, Any]
951
+ CompleteRegionScope : list[str]
952
+ CompleteEdgeScope : list[str]
953
+
954
+ Returns
955
+ -------
956
+ bool
957
+ """
958
+ pass
959
+
960
+ class AddShellBoundaryLayerControls(PyCommand):
961
+ """
962
+ Command AddShellBoundaryLayerControls.
963
+
964
+ Parameters
965
+ ----------
966
+ AddChild : str
967
+ BLControlName : str
968
+ OffsetMethodType : str
969
+ NumberOfLayers : int
970
+ FirstAspectRatio : float
971
+ LastAspectRatio : float
972
+ Rate : float
973
+ FirstLayerHeight : float
974
+ MaxLayerHeight : float
975
+ GrowOn : str
976
+ FaceLabelList : list[str]
977
+ FaceZoneList : list[str]
978
+ EdgeSelectionType : str
979
+ EdgeLabelList : list[str]
980
+ EdgeZoneList : list[str]
981
+ ShellBLAdvancedOptions : dict[str, Any]
982
+
983
+ Returns
984
+ -------
985
+ bool
986
+ """
987
+ pass
988
+
989
+ class AddThickness(PyCommand):
990
+ """
991
+ Command AddThickness.
992
+
993
+ Parameters
994
+ ----------
995
+ ZeroThicknessName : str
996
+ SelectionType : str
997
+ ZoneSelectionList : list[str]
998
+ ZoneLocation : list[str]
999
+ ObjectSelectionList : list[str]
1000
+ LabelSelectionList : list[str]
1001
+ Distance : float
1002
+
1003
+ Returns
1004
+ -------
1005
+ bool
1006
+ """
1007
+ pass
1008
+
1009
+ class AddThinVolumeMeshControls(PyCommand):
1010
+ """
1011
+ Command AddThinVolumeMeshControls.
1012
+
1013
+ Parameters
1014
+ ----------
1015
+ ThinMeshingName : str
1016
+ AssignSizeUsing : str
1017
+ Intervals : int
1018
+ Size : float
1019
+ GrowthRate : float
1020
+ RemeshOverlapping : bool
1021
+ DoubleBiasing : bool
1022
+ SideImprints : bool
1023
+ StackedPlates : bool
1024
+ AutoControlCreation : bool
1025
+ RegionScope : list[str]
1026
+ SelectSourceBy : str
1027
+ ParallelSource : bool
1028
+ LabelSourceList : list[str]
1029
+ ZoneSourceList : list[str]
1030
+ SelectTargetBy : str
1031
+ ParallelTarget : bool
1032
+ LabelTargetList : list[str]
1033
+ ZoneTargetList : list[str]
1034
+ ThinVolRegs : list[str]
1035
+ CompleteRegionScope : list[str]
1036
+ CompleteLabelSourceList : list[str]
1037
+ CompleteZoneSourceList : list[str]
1038
+ CompleteLabelTargetList : list[str]
1039
+ CompleteZoneTargetList : list[str]
1040
+ ThinVolumePreferences : dict[str, Any]
1041
+ ZoneLocation : list[str]
1042
+ ZoneLocation2 : list[str]
1043
+
1044
+ Returns
1045
+ -------
1046
+ bool
1047
+ """
1048
+ pass
1049
+
1050
+ class AddVirtualTopology(PyCommand):
1051
+ """
1052
+ Command AddVirtualTopology.
1053
+
1054
+ Parameters
1055
+ ----------
1056
+ AddChild : str
1057
+ ControlName : str
1058
+ SelectionType : str
1059
+ FaceLabelList : list[str]
1060
+ FaceZoneList : list[str]
1061
+ NewFaces : list[int]
1062
+
1063
+ Returns
1064
+ -------
1065
+ bool
1066
+ """
1067
+ pass
1068
+
1069
+ class Capping(PyCommand):
1070
+ """
1071
+ Command Capping.
1072
+
1073
+ Parameters
1074
+ ----------
1075
+ PatchName : str
1076
+ ZoneType : str
1077
+ PatchType : str
1078
+ SelectionType : str
1079
+ LabelSelectionList : list[str]
1080
+ ZoneSelectionList : list[str]
1081
+ TopologyList : list[str]
1082
+ CreatePatchPreferences : dict[str, Any]
1083
+ ObjectAssociation : str
1084
+ NewObjectName : str
1085
+ PatchObjectName : str
1086
+ CapLabels : list[str]
1087
+ ZoneLocation : list[str]
1088
+ CompleteZoneSelectionList : list[str]
1089
+ CompleteLabelSelectionList : list[str]
1090
+ CompleteTopologyList : list[str]
1091
+
1092
+ Returns
1093
+ -------
1094
+ bool
1095
+ """
1096
+ pass
1097
+
1098
+ class CheckMesh(PyCommand):
1099
+ """
1100
+ Command CheckMesh.
1101
+
1102
+
1103
+ Returns
1104
+ -------
1105
+ None
1106
+ """
1107
+ pass
1108
+
1109
+ class CheckSurfaceQuality(PyCommand):
1110
+ """
1111
+ Command CheckSurfaceQuality.
1112
+
1113
+
1114
+ Returns
1115
+ -------
1116
+ None
1117
+ """
1118
+ pass
1119
+
1120
+ class CheckVolumeQuality(PyCommand):
1121
+ """
1122
+ Command CheckVolumeQuality.
1123
+
1124
+
1125
+ Returns
1126
+ -------
1127
+ None
1128
+ """
1129
+ pass
1130
+
1131
+ class ChooseMeshControlOptions(PyCommand):
1132
+ """
1133
+ Command ChooseMeshControlOptions.
1134
+
1135
+ Parameters
1136
+ ----------
1137
+ ReadOrCreate : str
1138
+ SizeControlFileName : str
1139
+ WrapSizeControlFileName : str
1140
+ CreationMethod : str
1141
+ ViewOption : str
1142
+ GlobalMin : float
1143
+ GlobalMax : float
1144
+ GlobalGrowthRate : float
1145
+ MeshControlOptions : dict[str, Any]
1146
+
1147
+ Returns
1148
+ -------
1149
+ bool
1150
+ """
1151
+ pass
1152
+
1153
+ class ChoosePartReplacementOptions(PyCommand):
1154
+ """
1155
+ Command ChoosePartReplacementOptions.
1156
+
1157
+ Parameters
1158
+ ----------
1159
+ AddPartManagement : str
1160
+ AddPartReplacement : str
1161
+ AddLocalSizing : str
1162
+ AddBoundaryLayer : str
1163
+ AddUpdateTheVolumeMesh : str
1164
+
1165
+ Returns
1166
+ -------
1167
+ bool
1168
+ """
1169
+ pass
1170
+
1171
+ class CloseLeakage(PyCommand):
1172
+ """
1173
+ Command CloseLeakage.
1174
+
1175
+ Parameters
1176
+ ----------
1177
+ CloseLeakageOption : bool
1178
+
1179
+ Returns
1180
+ -------
1181
+ bool
1182
+ """
1183
+ pass
1184
+
1185
+ class ComplexMeshingRegions(PyCommand):
1186
+ """
1187
+ Command ComplexMeshingRegions.
1188
+
1189
+ Parameters
1190
+ ----------
1191
+ ComplexMeshingRegionsOption : bool
1192
+
1193
+ Returns
1194
+ -------
1195
+ bool
1196
+ """
1197
+ pass
1198
+
1199
+ class ComputeSizeField(PyCommand):
1200
+ """
1201
+ Command ComputeSizeField.
1202
+
1203
+ Parameters
1204
+ ----------
1205
+ ComputeSizeFieldControl : str
1206
+
1207
+ Returns
1208
+ -------
1209
+ bool
1210
+ """
1211
+ pass
1212
+
1213
+ class CreateBackgroundMesh(PyCommand):
1214
+ """
1215
+ Command CreateBackgroundMesh.
1216
+
1217
+ Parameters
1218
+ ----------
1219
+ RefinementRegionsName : str
1220
+ CreationMethod : str
1221
+ BOIMaxSize : float
1222
+ BOISizeName : str
1223
+ SelectionType : str
1224
+ ZoneSelectionList : list[str]
1225
+ ZoneLocation : list[str]
1226
+ LabelSelectionList : list[str]
1227
+ ObjectSelectionList : list[str]
1228
+ ZoneSelectionSingle : list[str]
1229
+ ObjectSelectionSingle : list[str]
1230
+ TopologyList : list[str]
1231
+ BoundingBoxObject : dict[str, Any]
1232
+ OffsetObject : dict[str, Any]
1233
+ CylinderObject : dict[str, Any]
1234
+ Axis : dict[str, Any]
1235
+ VolumeFill : str
1236
+ CylinderMethod : str
1237
+ CylinderLength : float
1238
+
1239
+ Returns
1240
+ -------
1241
+ bool
1242
+ """
1243
+ pass
1244
+
1245
+ class CreateCollarMesh(PyCommand):
1246
+ """
1247
+ Command CreateCollarMesh.
1248
+
1249
+ Parameters
1250
+ ----------
1251
+ RefinementRegionsName : str
1252
+ CreationMethod : str
1253
+ BOIMaxSize : float
1254
+ BOISizeName : str
1255
+ SelectionType : str
1256
+ ZoneSelectionList : list[str]
1257
+ ZoneLocation : list[str]
1258
+ LabelSelectionList : list[str]
1259
+ ObjectSelectionList : list[str]
1260
+ ZoneSelectionSingle : list[str]
1261
+ ObjectSelectionSingle : list[str]
1262
+ TopologyList : list[str]
1263
+ BoundingBoxObject : dict[str, Any]
1264
+ OffsetObject : dict[str, Any]
1265
+ CylinderObject : dict[str, Any]
1266
+ Axis : dict[str, Any]
1267
+ VolumeFill : str
1268
+ CylinderMethod : str
1269
+ CylinderLength : float
1270
+
1271
+ Returns
1272
+ -------
1273
+ bool
1274
+ """
1275
+ pass
1276
+
1277
+ class CreateComponentMesh(PyCommand):
1278
+ """
1279
+ Command CreateComponentMesh.
1280
+
1281
+ Parameters
1282
+ ----------
1283
+ RefinementRegionsName : str
1284
+ CreationMethod : str
1285
+ BOIMaxSize : float
1286
+ BOISizeName : str
1287
+ SelectionType : str
1288
+ ZoneSelectionList : list[str]
1289
+ ZoneLocation : list[str]
1290
+ LabelSelectionList : list[str]
1291
+ ObjectSelectionList : list[str]
1292
+ ZoneSelectionSingle : list[str]
1293
+ ObjectSelectionSingle : list[str]
1294
+ TopologyList : list[str]
1295
+ BoundingBoxObject : dict[str, Any]
1296
+ OffsetObject : dict[str, Any]
1297
+ CylinderObject : dict[str, Any]
1298
+ Axis : dict[str, Any]
1299
+ VolumeFill : str
1300
+ CylinderMethod : str
1301
+ CylinderLength : float
1302
+
1303
+ Returns
1304
+ -------
1305
+ bool
1306
+ """
1307
+ pass
1308
+
1309
+ class CreateContactPatch(PyCommand):
1310
+ """
1311
+ Command CreateContactPatch.
1312
+
1313
+ Parameters
1314
+ ----------
1315
+ ContactPatchName : str
1316
+ SelectionType : str
1317
+ ZoneSelectionList : list[str]
1318
+ ZoneLocation : list[str]
1319
+ ObjectSelectionList : list[str]
1320
+ LabelSelectionList : list[str]
1321
+ GroundZoneSelectionList : list[str]
1322
+ Distance : float
1323
+ ContactPatchDefeaturingSize : float
1324
+ FeatureAngle : float
1325
+ PatchHole : bool
1326
+ FlipDirection : bool
1327
+
1328
+ Returns
1329
+ -------
1330
+ bool
1331
+ """
1332
+ pass
1333
+
1334
+ class CreateExternalFlowBoundaries(PyCommand):
1335
+ """
1336
+ Command CreateExternalFlowBoundaries.
1337
+
1338
+ Parameters
1339
+ ----------
1340
+ ExternalBoundariesName : str
1341
+ CreationMethod : str
1342
+ ExtractionMethod : str
1343
+ SelectionType : str
1344
+ ObjectSelectionList : list[str]
1345
+ ZoneSelectionList : list[str]
1346
+ ZoneLocation : list[str]
1347
+ LabelSelectionList : list[str]
1348
+ ObjectSelectionSingle : list[str]
1349
+ ZoneSelectionSingle : list[str]
1350
+ LabelSelectionSingle : list[str]
1351
+ OriginalObjectName : str
1352
+ BoundingBoxObject : dict[str, Any]
1353
+
1354
+ Returns
1355
+ -------
1356
+ bool
1357
+ """
1358
+ pass
1359
+
1360
+ class CreateGapCover(PyCommand):
1361
+ """
1362
+ Command CreateGapCover.
1363
+
1364
+ Parameters
1365
+ ----------
1366
+ GapCoverName : str
1367
+ SizingMethod : str
1368
+ GapSizeRatio : float
1369
+ GapSize : float
1370
+ SelectionType : str
1371
+ ZoneSelectionList : list[str]
1372
+ ZoneLocation : list[str]
1373
+ LabelSelectionList : list[str]
1374
+ ObjectSelectionList : list[str]
1375
+ GapCoverBetweenZones : str
1376
+ GapCoverRefineFactor : float
1377
+ GapCoverRefineFactorAtGap : float
1378
+ RefineWrapperBeforeProjection : str
1379
+ AdvancedOptions : bool
1380
+ MaxIslandFaceForGapCover : int
1381
+ GapCoverFeatureImprint : str
1382
+
1383
+ Returns
1384
+ -------
1385
+ bool
1386
+ """
1387
+ pass
1388
+
1389
+ class CreateLocalRefinementRegions(PyCommand):
1390
+ """
1391
+ Command CreateLocalRefinementRegions.
1392
+
1393
+ Parameters
1394
+ ----------
1395
+ RefinementRegionsName : str
1396
+ CreationMethod : str
1397
+ BOIMaxSize : float
1398
+ BOISizeName : str
1399
+ SelectionType : str
1400
+ ZoneSelectionList : list[str]
1401
+ ZoneLocation : list[str]
1402
+ LabelSelectionList : list[str]
1403
+ ObjectSelectionList : list[str]
1404
+ ZoneSelectionSingle : list[str]
1405
+ ObjectSelectionSingle : list[str]
1406
+ TopologyList : list[str]
1407
+ BoundingBoxObject : dict[str, Any]
1408
+ OffsetObject : dict[str, Any]
1409
+ CylinderObject : dict[str, Any]
1410
+ Axis : dict[str, Any]
1411
+ VolumeFill : str
1412
+ CylinderMethod : str
1413
+ CylinderLength : float
1414
+
1415
+ Returns
1416
+ -------
1417
+ bool
1418
+ """
1419
+ pass
1420
+
1421
+ class CreateMeshObjects(PyCommand):
1422
+ """
1423
+ Command CreateMeshObjects.
1424
+
1425
+ Parameters
1426
+ ----------
1427
+ MergeZonesBasedOnLabels : bool
1428
+ CreateAFaceZonePerBody : bool
1429
+
1430
+ Returns
1431
+ -------
1432
+ bool
1433
+ """
1434
+ pass
1435
+
1436
+ class CreateOversetInterfaces(PyCommand):
1437
+ """
1438
+ Command CreateOversetInterfaces.
1439
+
1440
+ Parameters
1441
+ ----------
1442
+ OversetInterfacesName : str
1443
+ ObjectSelectionList : list[str]
1444
+
1445
+ Returns
1446
+ -------
1447
+ bool
1448
+ """
1449
+ pass
1450
+
1451
+ class CreatePorousRegions(PyCommand):
1452
+ """
1453
+ Command CreatePorousRegions.
1454
+
1455
+ Parameters
1456
+ ----------
1457
+ InputMethod : str
1458
+ PorousRegionName : str
1459
+ WrapperSize : float
1460
+ FileName : str
1461
+ Location : str
1462
+ CellSizeP1P2 : float
1463
+ CellSizeP1P3 : float
1464
+ CellSizeP1P4 : float
1465
+ BufferSizeRatio : float
1466
+ P1 : list[float]
1467
+ P2 : list[float]
1468
+ P3 : list[float]
1469
+ P4 : list[float]
1470
+ NonRectangularParameters : dict[str, Any]
1471
+
1472
+ Returns
1473
+ -------
1474
+ bool
1475
+ """
1476
+ pass
1477
+
1478
+ class CreateRegions(PyCommand):
1479
+ """
1480
+ Command CreateRegions.
1481
+
1482
+ Parameters
1483
+ ----------
1484
+ NumberOfFlowVolumes : int
1485
+ RetainDeadRegionName : str
1486
+ MeshObject : str
1487
+
1488
+ Returns
1489
+ -------
1490
+ bool
1491
+ """
1492
+ pass
1493
+
1494
+ class DefineGlobalSizing(PyCommand):
1495
+ """
1496
+ Command DefineGlobalSizing.
1497
+
1498
+ Parameters
1499
+ ----------
1500
+ MinSize : float
1501
+ MaxSize : float
1502
+ GrowthRate : float
1503
+ SizeFunctions : str
1504
+ CurvatureNormalAngle : float
1505
+ CellsPerGap : float
1506
+ ScopeProximityTo : str
1507
+ Mesher : str
1508
+ PrimeSizeControlIds : list[int]
1509
+ EnableMultiThreading : bool
1510
+ NumberOfMultiThreads : int
1511
+
1512
+ Returns
1513
+ -------
1514
+ bool
1515
+ """
1516
+ pass
1517
+
1518
+ class DefineLeakageThreshold(PyCommand):
1519
+ """
1520
+ Command DefineLeakageThreshold.
1521
+
1522
+ Parameters
1523
+ ----------
1524
+ AddChild : str
1525
+ LeakageName : str
1526
+ SelectionType : str
1527
+ DeadRegionsList : list[str]
1528
+ RegionSelectionSingle : list[str]
1529
+ DeadRegionsSize : float
1530
+ PlaneClippingValue : int
1531
+ PlaneDirection : str
1532
+ FlipDirection : bool
1533
+
1534
+ Returns
1535
+ -------
1536
+ bool
1537
+ """
1538
+ pass
1539
+
1540
+ class DescribeGeometryAndFlow(PyCommand):
1541
+ """
1542
+ Command DescribeGeometryAndFlow.
1543
+
1544
+ Parameters
1545
+ ----------
1546
+ FlowType : str
1547
+ GeometryOptions : bool
1548
+ AddEnclosure : str
1549
+ CloseCaps : str
1550
+ LocalRefinementRegions : str
1551
+ DescribeGeometryAndFlowOptions : dict[str, Any]
1552
+ AllTaskList : list[str]
1553
+
1554
+ Returns
1555
+ -------
1556
+ bool
1557
+ """
1558
+ pass
1559
+
1560
+ class DescribeOversetFeatures(PyCommand):
1561
+ """
1562
+ Command DescribeOversetFeatures.
1563
+
1564
+ Parameters
1565
+ ----------
1566
+ AdvancedOptions : bool
1567
+ ComponentGrid : str
1568
+ CollarGrid : str
1569
+ BackgroundMesh : str
1570
+ OversetInterfaces : str
1571
+
1572
+ Returns
1573
+ -------
1574
+ bool
1575
+ """
1576
+ pass
1577
+
1578
+ class ExtractEdges(PyCommand):
1579
+ """
1580
+ Command ExtractEdges.
1581
+
1582
+ Parameters
1583
+ ----------
1584
+ ExtractEdgesName : str
1585
+ ExtractMethodType : str
1586
+ SelectionType : str
1587
+ ObjectSelectionList : list[str]
1588
+ GeomObjectSelectionList : list[str]
1589
+ ZoneSelectionList : list[str]
1590
+ ZoneLocation : list[str]
1591
+ LabelSelectionList : list[str]
1592
+ FeatureAngleLocal : int
1593
+ IndividualCollective : str
1594
+ SharpAngle : int
1595
+ CompleteObjectSelectionList : list[str]
1596
+ CompleteGeomObjectSelectionList : list[str]
1597
+ NonExtractedObjects : list[str]
1598
+
1599
+ Returns
1600
+ -------
1601
+ bool
1602
+ """
1603
+ pass
1604
+
1605
+ class ExtrudeVolumeMesh(PyCommand):
1606
+ """
1607
+ Command ExtrudeVolumeMesh.
1608
+
1609
+ Parameters
1610
+ ----------
1611
+ MExControlName : str
1612
+ Method : str
1613
+ SelectionType : str
1614
+ ExtendToPeriodicPair : bool
1615
+ ExtrudeNormalBased : bool
1616
+ ExternalBoundaryZoneList : list[str]
1617
+ TopologyList : list[str]
1618
+ TotalHeight : float
1619
+ FirstHeight : float
1620
+ NumberofLayers : int
1621
+ GrowthRate : float
1622
+ VMExtrudePreferences : dict[str, Any]
1623
+ ZoneLocation : list[str]
1624
+
1625
+ Returns
1626
+ -------
1627
+ bool
1628
+ """
1629
+ pass
1630
+
1631
+ class GenerateInitialSurfaceMesh(PyCommand):
1632
+ """
1633
+ Command GenerateInitialSurfaceMesh.
1634
+
1635
+ Parameters
1636
+ ----------
1637
+ GenerateQuads : bool
1638
+ ProjectOnGeometry : bool
1639
+ EnableMultiThreading : bool
1640
+ NumberOfMultiThreads : int
1641
+ Prism2DPreferences : dict[str, Any]
1642
+ Surface2DPreferences : dict[str, Any]
1643
+
1644
+ Returns
1645
+ -------
1646
+ bool
1647
+ """
1648
+ pass
1649
+
1650
+ class GenerateMapMesh(PyCommand):
1651
+ """
1652
+ Command GenerateMapMesh.
1653
+
1654
+ Parameters
1655
+ ----------
1656
+ AddChild : str
1657
+ ControlName : str
1658
+ SizingOption : str
1659
+ ConstantSize : float
1660
+ GrowthRate : float
1661
+ ShortSideDivisions : int
1662
+ SplitQuads : bool
1663
+ ProjectOnGeometry : bool
1664
+ SelectionType : str
1665
+ FaceLabelList : list[str]
1666
+ FaceZoneList : list[str]
1667
+
1668
+ Returns
1669
+ -------
1670
+ bool
1671
+ """
1672
+ pass
1673
+
1674
+ class GeneratePrisms(PyCommand):
1675
+ """
1676
+ Command GeneratePrisms.
1677
+
1678
+ Parameters
1679
+ ----------
1680
+ GeneratePrismsOption : bool
1681
+
1682
+ Returns
1683
+ -------
1684
+ bool
1685
+ """
1686
+ pass
1687
+
1688
+ class GenerateShellBoundaryLayerMesh(PyCommand):
1689
+ """
1690
+ Command GenerateShellBoundaryLayerMesh.
1691
+
1692
+ Parameters
1693
+ ----------
1694
+ GapFactor : float
1695
+ MaxAspectRatio : float
1696
+ MinAspectRatio : float
1697
+ LocalRemesh : str
1698
+ RemeshGrowthRate : float
1699
+ RefineStretchedQuads : str
1700
+ SplitQuads : str
1701
+ nOrthogonalLayers : int
1702
+ MaxFaceSkew : float
1703
+
1704
+ Returns
1705
+ -------
1706
+ bool
1707
+ """
1708
+ pass
1709
+
1710
+ class GenerateTheMultiZoneMesh(PyCommand):
1711
+ """
1712
+ Command GenerateTheMultiZoneMesh.
1713
+
1714
+ Parameters
1715
+ ----------
1716
+ OrthogonalQualityLimit : float
1717
+ SelectionType : str
1718
+ RegionScope : list[str]
1719
+ NonConformal : str
1720
+ SizeFunctionScaleFactor : float
1721
+ MeshingStrategy : str
1722
+ ReMergeZones : str
1723
+ MergeBodyLabels : str
1724
+ CFDSurfaceMeshControls : dict[str, Any]
1725
+ BodyLabelList : list[str]
1726
+ CellZoneList : list[str]
1727
+ CompleteRegionScope : list[str]
1728
+
1729
+ Returns
1730
+ -------
1731
+ bool
1732
+ """
1733
+ pass
1734
+
1735
+ class GenerateTheSurfaceMeshFTM(PyCommand):
1736
+ """
1737
+ Command GenerateTheSurfaceMeshFTM.
1738
+
1739
+ Parameters
1740
+ ----------
1741
+ SurfaceQuality : float
1742
+ SaveSurfaceMesh : bool
1743
+ AdvancedOptions : bool
1744
+ SaveIntermediateFiles : str
1745
+ IntermediateFileName : str
1746
+ SeparateSurface : str
1747
+ UseSizeFieldForPrimeWrap : str
1748
+ AutoPairing : str
1749
+ MergeWrapperAtSolidConacts : str
1750
+ ParallelSerialOption : str
1751
+ NumberOfSessions : int
1752
+ MaxIslandFace : int
1753
+ SpikeRemovalAngle : float
1754
+ DihedralMinAngle : float
1755
+ ProjectOnGeometry : str
1756
+ AutoAssignZoneTypes : str
1757
+ AdvancedInnerWrap : str
1758
+ GapCoverZoneRecovery : str
1759
+ GlobalMin : float
1760
+ ShowSubTasks : str
1761
+
1762
+ Returns
1763
+ -------
1764
+ bool
1765
+ """
1766
+ pass
1767
+
1768
+ class GenerateTheSurfaceMeshWTM(PyCommand):
1769
+ """
1770
+ Command GenerateTheSurfaceMeshWTM.
1771
+
1772
+ Parameters
1773
+ ----------
1774
+ CFDSurfaceMeshControls : dict[str, Any]
1775
+ SeparationRequired : str
1776
+ SeparationAngle : float
1777
+ RemeshSelectionType : str
1778
+ RemeshZoneList : list[str]
1779
+ RemeshLabelList : list[str]
1780
+ SurfaceMeshPreferences : dict[str, Any]
1781
+ ImportType : str
1782
+ AppendMesh : bool
1783
+ CadFacetingFileName : str
1784
+ Directory : str
1785
+ Pattern : str
1786
+ LengthUnit : str
1787
+ TesselationMethod : str
1788
+ OriginalZones : list[str]
1789
+ ExecuteShareTopology : str
1790
+ CADFacetingControls : dict[str, Any]
1791
+ CadImportOptions : dict[str, Any]
1792
+ ShareTopologyPreferences : dict[str, Any]
1793
+ PreviewSizeToggle : bool
1794
+
1795
+ Returns
1796
+ -------
1797
+ bool
1798
+ """
1799
+ pass
1800
+
1801
+ class GenerateTheVolumeMeshFTM(PyCommand):
1802
+ """
1803
+ Command GenerateTheVolumeMeshFTM.
1804
+
1805
+ Parameters
1806
+ ----------
1807
+ MeshQuality : float
1808
+ OrthogonalQuality : float
1809
+ EnableParallel : bool
1810
+ SaveVolumeMesh : bool
1811
+ EditVolumeSettings : bool
1812
+ RegionNameList : list[str]
1813
+ RegionVolumeFillList : list[str]
1814
+ RegionSizeList : list[str]
1815
+ OldRegionNameList : list[str]
1816
+ OldRegionVolumeFillList : list[str]
1817
+ OldRegionSizeList : list[str]
1818
+ AllRegionNameList : list[str]
1819
+ AllRegionVolumeFillList : list[str]
1820
+ AllRegionSizeList : list[str]
1821
+ AdvancedOptions : bool
1822
+ SpikeRemovalAngle : float
1823
+ DihedralMinAngle : float
1824
+ QualityMethod : str
1825
+ AvoidHangingNodes : str
1826
+ OctreePeelLayers : int
1827
+ FillWithSizeField : str
1828
+ OctreeBoundaryFaceSizeRatio : float
1829
+ GlobalBufferLayers : int
1830
+ TetPolyGrowthRate : float
1831
+ ConformalPrismSplit : str
1832
+ TetPrismStairstepExposedQuads : str
1833
+ PrismNormalSmoothRelaxationFactor : float
1834
+ ShowSubTasks : str
1835
+
1836
+ Returns
1837
+ -------
1838
+ bool
1839
+ """
1840
+ pass
1841
+
1842
+ class GenerateTheVolumeMeshWTM(PyCommand):
1843
+ """
1844
+ Command GenerateTheVolumeMeshWTM.
1845
+
1846
+ Parameters
1847
+ ----------
1848
+ Solver : str
1849
+ VolumeFill : str
1850
+ MeshFluidRegions : bool
1851
+ MeshSolidRegions : bool
1852
+ SizingMethod : str
1853
+ VolumeFillControls : dict[str, Any]
1854
+ RegionBasedPreferences : bool
1855
+ ReMergeZones : str
1856
+ ParallelMeshing : bool
1857
+ VolumeMeshPreferences : dict[str, Any]
1858
+ PrismPreferences : dict[str, Any]
1859
+ GlobalThinVolumePreferences : dict[str, Any]
1860
+ InvokePrimsControl : str
1861
+ OffsetMethodType : str
1862
+ NumberOfLayers : int
1863
+ FirstAspectRatio : float
1864
+ TransitionRatio : float
1865
+ Rate : float
1866
+ FirstHeight : float
1867
+ MeshObject : str
1868
+ MeshDeadRegions : bool
1869
+ BodyLabelList : list[str]
1870
+ PrismLayers : bool
1871
+ QuadTetTransition : str
1872
+ MergeCellZones : bool
1873
+ FaceScope : dict[str, Any]
1874
+ RegionTetNameList : list[str]
1875
+ RegionTetMaxCellLengthList : list[str]
1876
+ RegionTetGrowthRateList : list[str]
1877
+ RegionHexNameList : list[str]
1878
+ RegionHexMaxCellLengthList : list[str]
1879
+ OldRegionTetMaxCellLengthList : list[str]
1880
+ OldRegionTetGrowthRateList : list[str]
1881
+ OldRegionHexMaxCellLengthList : list[str]
1882
+ CFDSurfaceMeshControls : dict[str, Any]
1883
+ ShowSolidFluidMeshed : bool
1884
+
1885
+ Returns
1886
+ -------
1887
+ bool
1888
+ """
1889
+ pass
1890
+
1891
+ class GeometrySetup(PyCommand):
1892
+ """
1893
+ Command GeometrySetup.
1894
+
1895
+ Parameters
1896
+ ----------
1897
+ SetupType : str
1898
+ CappingRequired : str
1899
+ WallToInternal : str
1900
+ InvokeShareTopology : str
1901
+ NonConformal : str
1902
+ Multizone : str
1903
+ SetupInternals : list[str]
1904
+ SetupInternalTypes : list[str]
1905
+ OldZoneList : list[str]
1906
+ OldZoneTypeList : list[str]
1907
+ RegionList : list[str]
1908
+ EdgeZoneList : list[str]
1909
+ EdgeLabels : list[str]
1910
+ Duplicates : bool
1911
+ SMImprovePreferences : dict[str, Any]
1912
+
1913
+ Returns
1914
+ -------
1915
+ bool
1916
+ """
1917
+ pass
1918
+
1919
+ class IdentifyConstructionSurfaces(PyCommand):
1920
+ """
1921
+ Command IdentifyConstructionSurfaces.
1922
+
1923
+ Parameters
1924
+ ----------
1925
+ MRFName : str
1926
+ CreationMethod : str
1927
+ SelectionType : str
1928
+ ObjectSelectionSingle : list[str]
1929
+ ZoneSelectionSingle : list[str]
1930
+ LabelSelectionSingle : list[str]
1931
+ ObjectSelectionList : list[str]
1932
+ ZoneSelectionList : list[str]
1933
+ ZoneLocation : list[str]
1934
+ LabelSelectionList : list[str]
1935
+ DefeaturingSize : float
1936
+ OffsetHeight : float
1937
+ Pivot : dict[str, Any]
1938
+ Axis : dict[str, Any]
1939
+ Rotation : dict[str, Any]
1940
+ CylinderObject : dict[str, Any]
1941
+ CylinderMethod : str
1942
+ BoundingBoxObject : dict[str, Any]
1943
+
1944
+ Returns
1945
+ -------
1946
+ bool
1947
+ """
1948
+ pass
1949
+
1950
+ class IdentifyDeviatedFaces(PyCommand):
1951
+ """
1952
+ Command IdentifyDeviatedFaces.
1953
+
1954
+ Parameters
1955
+ ----------
1956
+ DisplayGridName : str
1957
+ SelectionType : str
1958
+ ObjectSelectionList : list[str]
1959
+ ZoneSelectionList : list[str]
1960
+ ZoneLocation : list[str]
1961
+ AdvancedOptions : bool
1962
+ DeviationMinValue : float
1963
+ DeviationMaxValue : float
1964
+ Overlay : str
1965
+ IncludeGapCoverGeometry : str
1966
+
1967
+ Returns
1968
+ -------
1969
+ bool
1970
+ """
1971
+ pass
1972
+
1973
+ class IdentifyOrphans(PyCommand):
1974
+ """
1975
+ Command IdentifyOrphans.
1976
+
1977
+ Parameters
1978
+ ----------
1979
+ NumberOfOrphans : str
1980
+ ObjectSelectionList : list[str]
1981
+ EnableGridPriority : bool
1982
+ DonorPriorityMethod : str
1983
+ OverlapBoundaries : str
1984
+ CheckOversetInterfaceIntersection : str
1985
+ RegionNameList : list[str]
1986
+ RegionSizeList : list[str]
1987
+ OldRegionNameList : list[str]
1988
+ OldRegionSizeList : list[str]
1989
+
1990
+ Returns
1991
+ -------
1992
+ bool
1993
+ """
1994
+ pass
1995
+
1996
+ class IdentifyRegions(PyCommand):
1997
+ """
1998
+ Command IdentifyRegions.
1999
+
2000
+ Parameters
2001
+ ----------
2002
+ AddChild : str
2003
+ MaterialPointsName : str
2004
+ MptMethodType : str
2005
+ NewRegionType : str
2006
+ LinkConstruction : str
2007
+ SelectionType : str
2008
+ ZoneSelectionList : list[str]
2009
+ ZoneLocation : list[str]
2010
+ LabelSelectionList : list[str]
2011
+ ObjectSelectionList : list[str]
2012
+ GraphicalSelection : bool
2013
+ ShowCoordinates : bool
2014
+ X : float
2015
+ Y : float
2016
+ Z : float
2017
+ OffsetX : float
2018
+ OffsetY : float
2019
+ OffsetZ : float
2020
+
2021
+ Returns
2022
+ -------
2023
+ bool
2024
+ """
2025
+ pass
2026
+
2027
+ class ImportBodyOfInfluenceGeometry(PyCommand):
2028
+ """
2029
+ Command ImportBodyOfInfluenceGeometry.
2030
+
2031
+ Parameters
2032
+ ----------
2033
+ Type : str
2034
+ GeometryFileName : str
2035
+ MeshFileName : str
2036
+ ImportedObjects : list[str]
2037
+ LengthUnit : str
2038
+ CadImportOptions : dict[str, Any]
2039
+
2040
+ Returns
2041
+ -------
2042
+ bool
2043
+ """
2044
+ pass
2045
+
2046
+ class ImportGeometry(PyCommand):
2047
+ """
2048
+ Command ImportGeometry.
2049
+
2050
+ Parameters
2051
+ ----------
2052
+ FileFormat : str
2053
+ ImportType : str
2054
+ LengthUnit : str
2055
+ MeshUnit : str
2056
+ UseBodyLabels : str
2057
+ ImportCadPreferences : dict[str, Any]
2058
+ FileName : str
2059
+ FileNames : str
2060
+ MeshFileName : str
2061
+ NumParts : float
2062
+ AppendMesh : bool
2063
+ Directory : str
2064
+ Pattern : str
2065
+ CadImportOptions : dict[str, Any]
2066
+
2067
+ Returns
2068
+ -------
2069
+ bool
2070
+ """
2071
+ pass
2072
+
2073
+ class ImproveSurfaceMesh(PyCommand):
2074
+ """
2075
+ Command ImproveSurfaceMesh.
2076
+
2077
+ Parameters
2078
+ ----------
2079
+ MeshObject : str
2080
+ FaceQualityLimit : float
2081
+ SQMinSize : float
2082
+ ScopeImproveTo : str
2083
+ SMImprovePreferences : dict[str, Any]
2084
+
2085
+ Returns
2086
+ -------
2087
+ bool
2088
+ """
2089
+ pass
2090
+
2091
+ class ImproveVolumeMesh(PyCommand):
2092
+ """
2093
+ Command ImproveVolumeMesh.
2094
+
2095
+ Parameters
2096
+ ----------
2097
+ QualityMethod : str
2098
+ CellQualityLimit : float
2099
+ AddMultipleQualityMethods : str
2100
+ QualityMethodList : list[str]
2101
+ QualityCriteriaList : list[str]
2102
+ OldQualityMethodList : list[str]
2103
+ OldQualityCriteriaList : list[str]
2104
+ VMImprovePreferences : dict[str, Any]
2105
+
2106
+ Returns
2107
+ -------
2108
+ bool
2109
+ """
2110
+ pass
2111
+
2112
+ class LinearMeshPattern(PyCommand):
2113
+ """
2114
+ Command LinearMeshPattern.
2115
+
2116
+ Parameters
2117
+ ----------
2118
+ ChildName : str
2119
+ ObjectList : list[str]
2120
+ AutoPopulateVector : str
2121
+ PatternVector : dict[str, Any]
2122
+ Pitch : float
2123
+ NumberOfUnits : int
2124
+ CheckOverlappingFaces : str
2125
+ BatteryModelingOptions : dict[str, Any]
2126
+
2127
+ Returns
2128
+ -------
2129
+ bool
2130
+ """
2131
+ pass
2132
+
2133
+ class LoadCADGeometry(PyCommand):
2134
+ """
2135
+ Command LoadCADGeometry.
2136
+
2137
+ Parameters
2138
+ ----------
2139
+ FileName : str
2140
+ LengthUnit : str
2141
+ Route : str
2142
+ UsePrimeGeometryKernel : bool
2143
+ FacetingTolerance : float
2144
+ CreateObjectPer : str
2145
+ NumParts : float
2146
+ Refaceting : dict[str, Any]
2147
+
2148
+ Returns
2149
+ -------
2150
+ bool
2151
+ """
2152
+ pass
2153
+
2154
+ class LocalScopedSizingForPartReplacement(PyCommand):
2155
+ """
2156
+ Command LocalScopedSizingForPartReplacement.
2157
+
2158
+ Parameters
2159
+ ----------
2160
+ LocalSettingsName : str
2161
+ SelectionType : str
2162
+ ObjectSelectionList : list[str]
2163
+ LabelSelectionList : list[str]
2164
+ ZoneSelectionList : list[str]
2165
+ ZoneLocation : list[str]
2166
+ EdgeSelectionList : list[str]
2167
+ LocalSizeControlParameters : dict[str, Any]
2168
+ ValueChanged : str
2169
+ CompleteZoneSelectionList : list[str]
2170
+ CompleteLabelSelectionList : list[str]
2171
+ CompleteObjectSelectionList : list[str]
2172
+ CompleteEdgeSelectionList : list[str]
2173
+
2174
+ Returns
2175
+ -------
2176
+ bool
2177
+ """
2178
+ pass
2179
+
2180
+ class ManageZones(PyCommand):
2181
+ """
2182
+ Command ManageZones.
2183
+
2184
+ Parameters
2185
+ ----------
2186
+ Type : str
2187
+ ZoneFilter : str
2188
+ SizeFilter : str
2189
+ Area : float
2190
+ Volume : float
2191
+ EqualRange : float
2192
+ ZoneOrLabel : str
2193
+ LabelList : list[str]
2194
+ ManageFaceZoneList : list[str]
2195
+ ManageCellZoneList : list[str]
2196
+ BodyLabelList : list[str]
2197
+ Operation : str
2198
+ OperationName : str
2199
+ MZChildName : str
2200
+ AddPrefixName : str
2201
+ FaceMerge : str
2202
+ Angle : float
2203
+ ZoneList : list[str]
2204
+ CompleteZoneList : list[str]
2205
+ CompleteLabelList : list[str]
2206
+ ZoneLocation : list[str]
2207
+
2208
+ Returns
2209
+ -------
2210
+ bool
2211
+ """
2212
+ pass
2213
+
2214
+ class MeshFluidDomain(PyCommand):
2215
+ """
2216
+ Command MeshFluidDomain.
2217
+
2218
+ Parameters
2219
+ ----------
2220
+ MeshFluidDomainOption : bool
2221
+
2222
+ Returns
2223
+ -------
2224
+ bool
2225
+ """
2226
+ pass
2227
+
2228
+ class ModifyMeshRefinement(PyCommand):
2229
+ """
2230
+ Command ModifyMeshRefinement.
2231
+
2232
+ Parameters
2233
+ ----------
2234
+ MeshObject : str
2235
+ RemeshExecution : str
2236
+ RemeshControlName : str
2237
+ LocalSize : float
2238
+ FaceZoneOrLabel : str
2239
+ RemeshFaceZoneList : list[str]
2240
+ RemeshFaceLabelList : list[str]
2241
+ SizingType : str
2242
+ LocalMinSize : float
2243
+ LocalMaxSize : float
2244
+ RemeshGrowthRate : float
2245
+ RemeshCurvatureNormalAngle : float
2246
+ RemeshCellsPerGap : float
2247
+ CFDSurfaceMeshControls : dict[str, Any]
2248
+ RemeshPreferences : dict[str, Any]
2249
+
2250
+ Returns
2251
+ -------
2252
+ bool
2253
+ """
2254
+ pass
2255
+
2256
+ class PartManagement(PyCommand):
2257
+ """
2258
+ Command PartManagement.
2259
+
2260
+ Parameters
2261
+ ----------
2262
+ FileLoaded : str
2263
+ FMDFileName : str
2264
+ AppendFileName : str
2265
+ Append : bool
2266
+ LengthUnit : str
2267
+ CreateObjectPer : str
2268
+ FileLengthUnit : str
2269
+ FileLengthUnitAppend : str
2270
+ Route : str
2271
+ RouteAppend : str
2272
+ JtLOD : str
2273
+ JtLODAppend : str
2274
+ PartPerBody : bool
2275
+ PrefixParentName : bool
2276
+ RemoveEmptyParts : bool
2277
+ FeatureAngle : float
2278
+ OneZonePer : str
2279
+ Refaceting : dict[str, Any]
2280
+ IgnoreSolidNames : bool
2281
+ IgnoreSolidNamesAppend : bool
2282
+ Options : dict[str, Any]
2283
+ EdgeExtraction : str
2284
+ Context : int
2285
+ ObjectSetting : str
2286
+ RefacetOptions : dict[str, Any]
2287
+
2288
+ Returns
2289
+ -------
2290
+ bool
2291
+ """
2292
+ pass
2293
+
2294
+ class PartReplacementSettings(PyCommand):
2295
+ """
2296
+ Command PartReplacementSettings.
2297
+
2298
+ Parameters
2299
+ ----------
2300
+ PartReplacementName : str
2301
+ ManagementMethod : str
2302
+ CreationMethod : str
2303
+ OldObjectSelectionList : list[str]
2304
+ NewObjectSelectionList : list[str]
2305
+ AdvancedOptions : bool
2306
+ ScalingFactor : float
2307
+ MptMethodType : str
2308
+ GraphicalSelection : bool
2309
+ ShowCoordinates : bool
2310
+ X : float
2311
+ Y : float
2312
+ Z : float
2313
+
2314
+ Returns
2315
+ -------
2316
+ bool
2317
+ """
2318
+ pass
2319
+
2320
+ class RemeshSurface(PyCommand):
2321
+ """
2322
+ Command RemeshSurface.
2323
+
2324
+ Parameters
2325
+ ----------
2326
+ RemeshSurfaceOption : bool
2327
+
2328
+ Returns
2329
+ -------
2330
+ bool
2331
+ """
2332
+ pass
2333
+
2334
+ class RunCustomJournal(PyCommand):
2335
+ """
2336
+ Command RunCustomJournal.
2337
+
2338
+ Parameters
2339
+ ----------
2340
+ JournalString : str
2341
+ PythonJournal : bool
2342
+ PrimeJournal : bool
2343
+
2344
+ Returns
2345
+ -------
2346
+ bool
2347
+ """
2348
+ pass
2349
+
2350
+ class SeparateContacts(PyCommand):
2351
+ """
2352
+ Command SeparateContacts.
2353
+
2354
+ Parameters
2355
+ ----------
2356
+ SeparateContactsOption : bool
2357
+
2358
+ Returns
2359
+ -------
2360
+ bool
2361
+ """
2362
+ pass
2363
+
2364
+ class SetUpPeriodicBoundaries(PyCommand):
2365
+ """
2366
+ Command SetUpPeriodicBoundaries.
2367
+
2368
+ Parameters
2369
+ ----------
2370
+ MeshObject : str
2371
+ Type : str
2372
+ Method : str
2373
+ PeriodicityAngle : float
2374
+ LCSOrigin : dict[str, Any]
2375
+ LCSVector : dict[str, Any]
2376
+ TransShift : dict[str, Any]
2377
+ SelectionType : str
2378
+ ZoneList : list[str]
2379
+ LabelList : list[str]
2380
+ TopologyList : list[str]
2381
+ RemeshBoundariesOption : str
2382
+ ZoneLocation : list[str]
2383
+ ListAllLabelToggle : bool
2384
+ AutoMultiplePeriodic : str
2385
+ MultipleOption : str
2386
+
2387
+ Returns
2388
+ -------
2389
+ bool
2390
+ """
2391
+ pass
2392
+
2393
+ class SetupBoundaryLayers(PyCommand):
2394
+ """
2395
+ Command SetupBoundaryLayers.
2396
+
2397
+ Parameters
2398
+ ----------
2399
+ AddChild : str
2400
+ PrismsSettingsName : str
2401
+ AspectRatio : float
2402
+ GrowthRate : float
2403
+ OffsetMethodType : str
2404
+ LastRatioPercentage : float
2405
+ FirstHeight : float
2406
+ PrismLayers : int
2407
+ RegionSelectionList : list[str]
2408
+
2409
+ Returns
2410
+ -------
2411
+ bool
2412
+ """
2413
+ pass
2414
+
2415
+ class ShareTopology(PyCommand):
2416
+ """
2417
+ Command ShareTopology.
2418
+
2419
+ Parameters
2420
+ ----------
2421
+ GapDistance : float
2422
+ GapDistanceConnect : float
2423
+ STMinSize : float
2424
+ InterfaceSelect : str
2425
+ EdgeLabels : list[str]
2426
+ ShareTopologyPreferences : dict[str, Any]
2427
+ SMImprovePreferences : dict[str, Any]
2428
+ SurfaceMeshPreferences : dict[str, Any]
2429
+
2430
+ Returns
2431
+ -------
2432
+ bool
2433
+ """
2434
+ pass
2435
+
2436
+ class SizeControlsTable(PyCommand):
2437
+ """
2438
+ Command SizeControlsTable.
2439
+
2440
+ Parameters
2441
+ ----------
2442
+ GlobalMin : float
2443
+ GlobalMax : float
2444
+ TargetGrowthRate : float
2445
+ DrawSizeControl : bool
2446
+ InitialSizeControl : bool
2447
+ TargetSizeControl : bool
2448
+ SizeControlInterval : float
2449
+ SizeControlParameters : dict[str, Any]
2450
+
2451
+ Returns
2452
+ -------
2453
+ bool
2454
+ """
2455
+ pass
2456
+
2457
+ class SwitchToSolution(PyCommand):
2458
+ """
2459
+ Command SwitchToSolution.
2460
+
2461
+
2462
+ Returns
2463
+ -------
2464
+ None
2465
+ """
2466
+ pass
2467
+
2468
+ class TransformVolumeMesh(PyCommand):
2469
+ """
2470
+ Command TransformVolumeMesh.
2471
+
2472
+ Parameters
2473
+ ----------
2474
+ MTControlName : str
2475
+ Type : str
2476
+ Method : str
2477
+ SelectionType : str
2478
+ TopoBodyList : list[str]
2479
+ CellZoneList : list[str]
2480
+ LCSOrigin : dict[str, Any]
2481
+ LCSVector : dict[str, Any]
2482
+ TransShift : dict[str, Any]
2483
+ Angle : float
2484
+ Copy : str
2485
+ NumOfCopies : int
2486
+ Merge : str
2487
+ Rename : str
2488
+ MergeBoundaries : list[str]
2489
+
2490
+ Returns
2491
+ -------
2492
+ bool
2493
+ """
2494
+ pass
2495
+
2496
+ class UpdateBoundaries(PyCommand):
2497
+ """
2498
+ Command UpdateBoundaries.
2499
+
2500
+ Parameters
2501
+ ----------
2502
+ MeshObject : str
2503
+ SelectionType : str
2504
+ BoundaryLabelList : list[str]
2505
+ BoundaryLabelTypeList : list[str]
2506
+ BoundaryZoneList : list[str]
2507
+ BoundaryZoneTypeList : list[str]
2508
+ OldBoundaryLabelList : list[str]
2509
+ OldBoundaryLabelTypeList : list[str]
2510
+ OldBoundaryZoneList : list[str]
2511
+ OldBoundaryZoneTypeList : list[str]
2512
+ OldLabelZoneList : list[str]
2513
+ ListAllBoundariesToggle : bool
2514
+ ZoneLocation : list[str]
2515
+ TopologyList : list[str]
2516
+ TopologyTypeList : list[str]
2517
+ OldTopologyList : list[str]
2518
+ OldTopologyTypeList : list[str]
2519
+ BoundaryCurrentList : list[str]
2520
+ BoundaryCurrentTypeList : list[str]
2521
+ BoundaryAllowedTypeList : list[str]
2522
+
2523
+ Returns
2524
+ -------
2525
+ bool
2526
+ """
2527
+ pass
2528
+
2529
+ class UpdateRegionSettings(PyCommand):
2530
+ """
2531
+ Command UpdateRegionSettings.
2532
+
2533
+ Parameters
2534
+ ----------
2535
+ MainFluidRegion : str
2536
+ FilterCategory : str
2537
+ RegionNameList : list[str]
2538
+ RegionMeshMethodList : list[str]
2539
+ RegionTypeList : list[str]
2540
+ RegionVolumeFillList : list[str]
2541
+ RegionLeakageSizeList : list[str]
2542
+ RegionOversetComponenList : list[str]
2543
+ OldRegionNameList : list[str]
2544
+ OldRegionMeshMethodList : list[str]
2545
+ OldRegionTypeList : list[str]
2546
+ OldRegionVolumeFillList : list[str]
2547
+ OldRegionLeakageSizeList : list[str]
2548
+ OldRegionOversetComponenList : list[str]
2549
+ AllRegionNameList : list[str]
2550
+ AllRegionMeshMethodList : list[str]
2551
+ AllRegionTypeList : list[str]
2552
+ AllRegionVolumeFillList : list[str]
2553
+ AllRegionLeakageSizeList : list[str]
2554
+ AllRegionOversetComponenList : list[str]
2555
+ AllRegionLinkedConstructionSurfaceList : list[str]
2556
+ AllRegionSourceList : list[str]
2557
+ AllRegionFilterCategories : list[str]
2558
+
2559
+ Returns
2560
+ -------
2561
+ bool
2562
+ """
2563
+ pass
2564
+
2565
+ class UpdateRegions(PyCommand):
2566
+ """
2567
+ Command UpdateRegions.
2568
+
2569
+ Parameters
2570
+ ----------
2571
+ MeshObject : str
2572
+ RegionNameList : list[str]
2573
+ RegionTypeList : list[str]
2574
+ OldRegionNameList : list[str]
2575
+ OldRegionTypeList : list[str]
2576
+ RegionInternals : list[str]
2577
+ RegionInternalTypes : list[str]
2578
+ RegionCurrentList : list[str]
2579
+ RegionCurrentTypeList : list[str]
2580
+ NumberOfListedRegions : int
2581
+
2582
+ Returns
2583
+ -------
2584
+ bool
2585
+ """
2586
+ pass
2587
+
2588
+ class UpdateTheVolumeMesh(PyCommand):
2589
+ """
2590
+ Command UpdateTheVolumeMesh.
2591
+
2592
+ Parameters
2593
+ ----------
2594
+ EnableParallel : bool
2595
+
2596
+ Returns
2597
+ -------
2598
+ bool
2599
+ """
2600
+ pass
2601
+
2602
+ class WrapMain(PyCommand):
2603
+ """
2604
+ Command WrapMain.
2605
+
2606
+ Parameters
2607
+ ----------
2608
+ WrapRegionsName : str
2609
+
2610
+ Returns
2611
+ -------
2612
+ bool
2613
+ """
2614
+ pass
2615
+
2616
+ class Write2dMesh(PyCommand):
2617
+ """
2618
+ Command Write2dMesh.
2619
+
2620
+ Parameters
2621
+ ----------
2622
+ FileName : str
2623
+ SkipExport : bool
2624
+
2625
+ Returns
2626
+ -------
2627
+ bool
2628
+ """
2629
+ pass
2630
+
2631
+ class WriteSkinMesh(PyCommand):
2632
+ """
2633
+ Command WriteSkinMesh.
2634
+
2635
+ Parameters
2636
+ ----------
2637
+ FileName : str
2638
+
2639
+ Returns
2640
+ -------
2641
+ bool
2642
+ """
2643
+ pass
2644
+