ansys-fluent-core 0.34.dev0__py3-none-any.whl → 0.35.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 (108) hide show
  1. ansys/fluent/core/__init__.py +48 -84
  2. ansys/fluent/core/codegen/allapigen.py +2 -2
  3. ansys/fluent/core/codegen/builtin_settingsgen.py +41 -13
  4. ansys/fluent/core/codegen/datamodelgen.py +3 -1
  5. ansys/fluent/core/codegen/print_fluent_version.py +2 -2
  6. ansys/fluent/core/codegen/settingsgen.py +18 -6
  7. ansys/fluent/core/codegen/tuigen.py +6 -5
  8. ansys/fluent/core/data_model_cache.py +2 -2
  9. ansys/fluent/core/docker/docker_compose.py +11 -9
  10. ansys/fluent/core/docker/utils.py +35 -0
  11. ansys/fluent/core/examples/downloads.py +8 -11
  12. ansys/fluent/core/exceptions.py +13 -1
  13. ansys/fluent/core/field_data_interfaces.py +239 -38
  14. ansys/fluent/core/file_session.py +167 -61
  15. ansys/fluent/core/fluent_connection.py +41 -26
  16. ansys/fluent/core/generated/api_tree/api_objects.json +1 -1
  17. ansys/fluent/core/generated/datamodel_231/flicing.py +40 -40
  18. ansys/fluent/core/generated/datamodel_231/meshing.py +231 -231
  19. ansys/fluent/core/generated/datamodel_232/flicing.py +50 -50
  20. ansys/fluent/core/generated/datamodel_232/meshing.py +189 -189
  21. ansys/fluent/core/generated/datamodel_241/flicing.py +30 -30
  22. ansys/fluent/core/generated/datamodel_241/meshing.py +290 -290
  23. ansys/fluent/core/generated/datamodel_242/flicing.py +50 -50
  24. ansys/fluent/core/generated/datamodel_242/meshing.py +331 -331
  25. ansys/fluent/core/generated/datamodel_242/part_management.py +6 -6
  26. ansys/fluent/core/generated/datamodel_251/flicing.py +65 -65
  27. ansys/fluent/core/generated/datamodel_251/meshing.py +300 -300
  28. ansys/fluent/core/generated/datamodel_251/part_management.py +6 -6
  29. ansys/fluent/core/generated/datamodel_252/flicing.py +25 -25
  30. ansys/fluent/core/generated/datamodel_252/meshing.py +382 -382
  31. ansys/fluent/core/generated/datamodel_252/part_management.py +10 -10
  32. ansys/fluent/core/generated/datamodel_261/flicing.py +45 -45
  33. ansys/fluent/core/generated/datamodel_261/meshing.py +454 -435
  34. ansys/fluent/core/generated/datamodel_261/part_management.py +5 -5
  35. ansys/fluent/core/generated/datamodel_261/preferences.py +7 -0
  36. ansys/fluent/core/generated/fluent_version_252.py +1 -1
  37. ansys/fluent/core/generated/fluent_version_261.py +3 -3
  38. ansys/fluent/core/generated/meshing/tui_261.py +54 -3
  39. ansys/fluent/core/generated/solver/settings_231.py +1 -0
  40. ansys/fluent/core/generated/solver/settings_231.pyi +3025 -1
  41. ansys/fluent/core/generated/solver/settings_232.py +1 -0
  42. ansys/fluent/core/generated/solver/settings_232.pyi +3425 -1
  43. ansys/fluent/core/generated/solver/settings_241.py +1 -0
  44. ansys/fluent/core/generated/solver/settings_241.pyi +4423 -1
  45. ansys/fluent/core/generated/solver/settings_242.py +1 -0
  46. ansys/fluent/core/generated/solver/settings_242.pyi +5474 -1
  47. ansys/fluent/core/generated/solver/settings_251.py +11 -0
  48. ansys/fluent/core/generated/solver/settings_251.pyi +6006 -1
  49. ansys/fluent/core/generated/solver/settings_252.py +11 -1
  50. ansys/fluent/core/generated/solver/settings_252.pyi +6782 -2
  51. ansys/fluent/core/generated/solver/settings_261.py +5592 -2740
  52. ansys/fluent/core/generated/solver/settings_261.pyi +10335 -1994
  53. ansys/fluent/core/generated/solver/settings_builtin.py +560 -38
  54. ansys/fluent/core/generated/solver/settings_builtin.pyi +24 -18
  55. ansys/fluent/core/generated/solver/tui_261.py +409 -285
  56. ansys/fluent/core/launcher/container_launcher.py +25 -6
  57. ansys/fluent/core/launcher/error_handler.py +1 -1
  58. ansys/fluent/core/launcher/fluent_container.py +97 -45
  59. ansys/fluent/core/launcher/launch_options.py +5 -4
  60. ansys/fluent/core/launcher/launcher.py +18 -2
  61. ansys/fluent/core/launcher/launcher_utils.py +63 -15
  62. ansys/fluent/core/launcher/pim_launcher.py +17 -3
  63. ansys/fluent/core/launcher/process_launch_string.py +3 -2
  64. ansys/fluent/core/launcher/server_info.py +7 -3
  65. ansys/fluent/core/launcher/slurm_launcher.py +4 -2
  66. ansys/fluent/core/launcher/standalone_launcher.py +6 -3
  67. ansys/fluent/core/launcher/watchdog.py +6 -6
  68. ansys/fluent/core/launcher/watchdog_exec +1 -1
  69. ansys/fluent/core/logger.py +3 -1
  70. ansys/fluent/core/module_config.py +358 -0
  71. ansys/fluent/core/pyfluent_warnings.py +9 -3
  72. ansys/fluent/core/report.py +2 -2
  73. ansys/fluent/core/search.py +34 -13
  74. ansys/fluent/core/services/__init__.py +2 -2
  75. ansys/fluent/core/services/api_upgrade.py +3 -2
  76. ansys/fluent/core/services/app_utilities.py +39 -0
  77. ansys/fluent/core/services/datamodel_se.py +4 -2
  78. ansys/fluent/core/services/deprecated_field_data.py +4 -4
  79. ansys/fluent/core/services/field_data.py +185 -49
  80. ansys/fluent/core/services/health_check.py +3 -1
  81. ansys/fluent/core/services/interceptors.py +8 -6
  82. ansys/fluent/core/services/reduction.py +16 -5
  83. ansys/fluent/core/services/settings.py +1 -0
  84. ansys/fluent/core/session.py +47 -4
  85. ansys/fluent/core/session_pure_meshing.py +6 -6
  86. ansys/fluent/core/session_pure_meshing.pyi +1 -0
  87. ansys/fluent/core/session_shared.py +4 -4
  88. ansys/fluent/core/session_solver.py +41 -10
  89. ansys/fluent/core/session_solver.pyi +1 -0
  90. ansys/fluent/core/session_utilities.py +7 -0
  91. ansys/fluent/core/solver/error_message.py +2 -2
  92. ansys/fluent/core/solver/flobject.py +192 -123
  93. ansys/fluent/core/solver/function/reduction.py +37 -9
  94. ansys/fluent/core/solver/settings_builtin_bases.py +3 -3
  95. ansys/fluent/core/solver/settings_builtin_data.py +7 -17
  96. ansys/fluent/core/streaming_services/datamodel_event_streaming.py +3 -2
  97. ansys/fluent/core/streaming_services/datamodel_streaming.py +3 -1
  98. ansys/fluent/core/streaming_services/events_streaming.py +2 -18
  99. ansys/fluent/core/system_coupling.py +3 -1
  100. ansys/fluent/core/utils/__init__.py +0 -7
  101. ansys/fluent/core/utils/data_transfer.py +3 -3
  102. ansys/fluent/core/utils/file_transfer_service.py +24 -15
  103. ansys/fluent/core/utils/fluent_version.py +4 -6
  104. ansys/fluent/core/utils/networking.py +21 -11
  105. {ansys_fluent_core-0.34.dev0.dist-info → ansys_fluent_core-0.35.dev0.dist-info}/METADATA +10 -11
  106. {ansys_fluent_core-0.34.dev0.dist-info → ansys_fluent_core-0.35.dev0.dist-info}/RECORD +108 -106
  107. {ansys_fluent_core-0.34.dev0.dist-info → ansys_fluent_core-0.35.dev0.dist-info}/WHEEL +1 -1
  108. {ansys_fluent_core-0.34.dev0.dist-info/licenses → ansys_fluent_core-0.35.dev0.dist-info}/LICENSE +0 -0
@@ -1302,14 +1302,14 @@ class Root(PyMenu):
1302
1302
  self.ConnectLabelWildcard = self._ConnectLabelWildcard(self, "ConnectLabelWildcard", service, rules, path)
1303
1303
  self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
1304
1304
  self.RelativeShareTopologyTolerance = self._RelativeShareTopologyTolerance(self, "RelativeShareTopologyTolerance", service, rules, path)
1305
- self.ShareTopologyAngle = self._ShareTopologyAngle(self, "ShareTopologyAngle", service, rules, path)
1305
+ self.FluidLabelWildcard = self._FluidLabelWildcard(self, "FluidLabelWildcard", service, rules, path)
1306
1306
  self.ExecuteJoinIntersect = self._ExecuteJoinIntersect(self, "ExecuteJoinIntersect", service, rules, path)
1307
1307
  self.Operation = self._Operation(self, "Operation", service, rules, path)
1308
- self.FluidLabelWildcard = self._FluidLabelWildcard(self, "FluidLabelWildcard", service, rules, path)
1308
+ self.ShareTopologyAngle = self._ShareTopologyAngle(self, "ShareTopologyAngle", service, rules, path)
1309
1309
  self.STToleranceIncrement = self._STToleranceIncrement(self, "STToleranceIncrement", service, rules, path)
1310
- self.ShowShareTopologyPreferences = self._ShowShareTopologyPreferences(self, "ShowShareTopologyPreferences", service, rules, path)
1311
- self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
1312
1310
  self.IntfLabelList = self._IntfLabelList(self, "IntfLabelList", service, rules, path)
1311
+ self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
1312
+ self.ShowShareTopologyPreferences = self._ShowShareTopologyPreferences(self, "ShowShareTopologyPreferences", service, rules, path)
1313
1313
  self.AdvancedImprove = self._AdvancedImprove(self, "AdvancedImprove", service, rules, path)
1314
1314
  self.NumberOfJoinTries = self._NumberOfJoinTries(self, "NumberOfJoinTries", service, rules, path)
1315
1315
 
@@ -1338,9 +1338,9 @@ class Root(PyMenu):
1338
1338
  Specify the relative tolerance for joining or intersecting face pairs, or the relative tolerance for connecting edge and face pairs.
1339
1339
  """
1340
1340
 
1341
- class _ShareTopologyAngle(PyNumericalCommandArgumentsSubItem):
1341
+ class _FluidLabelWildcard(PyTextualCommandArgumentsSubItem):
1342
1342
  """
1343
- Specify the threshold angle for joining face pairs.
1343
+ Argument FluidLabelWildcard.
1344
1344
  """
1345
1345
 
1346
1346
  class _ExecuteJoinIntersect(PyTextualCommandArgumentsSubItem):
@@ -1353,9 +1353,9 @@ class Root(PyMenu):
1353
1353
  Choose whether to apply share topology using the Join-Intersect method where you join and/or intersect the problematic faces, or using the Interface Connect method where you connect edges of overlapping face pairs. Note that imprinting of overlapping faces in SCDM/Discovery is highly recommended for the Interface Connect method.
1354
1354
  """
1355
1355
 
1356
- class _FluidLabelWildcard(PyTextualCommandArgumentsSubItem):
1356
+ class _ShareTopologyAngle(PyNumericalCommandArgumentsSubItem):
1357
1357
  """
1358
- Argument FluidLabelWildcard.
1358
+ Specify the threshold angle for joining face pairs.
1359
1359
  """
1360
1360
 
1361
1361
  class _STToleranceIncrement(PyNumericalCommandArgumentsSubItem):
@@ -1363,9 +1363,9 @@ class Root(PyMenu):
1363
1363
  Specify the increment by which the tolerance changes for each attempt to join face pairs.
1364
1364
  """
1365
1365
 
1366
- class _ShowShareTopologyPreferences(PyParameterCommandArgumentsSubItem):
1366
+ class _IntfLabelList(PyTextualCommandArgumentsSubItem):
1367
1367
  """
1368
- Display advanced options that you may want to apply to the task.
1368
+ Enter a text string to filter out the list of labels. Use the Filter Text drop-down to provide text and/or regular expressions in filtering the list (for example, using \\*, ?, and []). Choose Use Wildcard to provide wildcard expressions in filtering the list. When you use either ? or \\* in your expression, the matching list item(s) are automatically selected in the list. Use ^, |, and & in your expression to indicate boolean operations for NOT, OR, and AND, respectively. More...
1369
1369
  """
1370
1370
 
1371
1371
  class _PerLabelList(PyTextualCommandArgumentsSubItem):
@@ -1373,9 +1373,9 @@ class Root(PyMenu):
1373
1373
  Argument PerLabelList.
1374
1374
  """
1375
1375
 
1376
- class _IntfLabelList(PyTextualCommandArgumentsSubItem):
1376
+ class _ShowShareTopologyPreferences(PyParameterCommandArgumentsSubItem):
1377
1377
  """
1378
- Enter a text string to filter out the list of labels. Use the Filter Text drop-down to provide text and/or regular expressions in filtering the list (for example, using \\*, ?, and []). Choose Use Wildcard to provide wildcard expressions in filtering the list. When you use either ? or \\* in your expression, the matching list item(s) are automatically selected in the list. Use ^, |, and & in your expression to indicate boolean operations for NOT, OR, and AND, respectively. More...
1378
+ Display advanced options that you may want to apply to the task.
1379
1379
  """
1380
1380
 
1381
1381
  class _AdvancedImprove(PyTextualCommandArgumentsSubItem):
@@ -1526,8 +1526,8 @@ class Root(PyMenu):
1526
1526
  self.ExposeSide = self._ExposeSide(self, "ExposeSide", service, rules, path)
1527
1527
  self.MaxAspectRatio = self._MaxAspectRatio(self, "MaxAspectRatio", service, rules, path)
1528
1528
  self.MinAspectRatio = self._MinAspectRatio(self, "MinAspectRatio", service, rules, path)
1529
- self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
1530
1529
  self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
1530
+ self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
1531
1531
  self.GapFactor = self._GapFactor(self, "GapFactor", service, rules, path)
1532
1532
  self.AdjacentAttachAngle = self._AdjacentAttachAngle(self, "AdjacentAttachAngle", service, rules, path)
1533
1533
 
@@ -1551,14 +1551,14 @@ class Root(PyMenu):
1551
1551
  Argument MinAspectRatio.
1552
1552
  """
1553
1553
 
1554
- class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
1554
+ class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
1555
1555
  """
1556
- Argument LastRatioNumLayers.
1556
+ Argument LastRatioPercentage.
1557
1557
  """
1558
1558
 
1559
- class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
1559
+ class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
1560
1560
  """
1561
- Argument LastRatioPercentage.
1561
+ Argument LastRatioNumLayers.
1562
1562
  """
1563
1563
 
1564
1564
  class _GapFactor(PyNumericalCommandArgumentsSubItem):
@@ -1773,8 +1773,8 @@ class Root(PyMenu):
1773
1773
  self.SplitPrism = self._SplitPrism(self, "SplitPrism", service, rules, path)
1774
1774
  self.InvalidNormalMethod = self._InvalidNormalMethod(self, "InvalidNormalMethod", service, rules, path)
1775
1775
  self.ShowLocalPrismPreferences = self._ShowLocalPrismPreferences(self, "ShowLocalPrismPreferences", service, rules, path)
1776
- self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
1777
1776
  self.NumberOfSplitLayers = self._NumberOfSplitLayers(self, "NumberOfSplitLayers", service, rules, path)
1777
+ self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
1778
1778
  self.AllowedTangencyAtInvalidNormals = self._AllowedTangencyAtInvalidNormals(self, "AllowedTangencyAtInvalidNormals", service, rules, path)
1779
1779
  self.RemeshAtInvalidNormals = self._RemeshAtInvalidNormals(self, "RemeshAtInvalidNormals", service, rules, path)
1780
1780
  self.IgnoreBoundaryLayers = self._IgnoreBoundaryLayers(self, "IgnoreBoundaryLayers", service, rules, path)
@@ -1824,14 +1824,14 @@ class Root(PyMenu):
1824
1824
  Display advanced options that you may want to apply to this task.
1825
1825
  """
1826
1826
 
1827
- class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
1827
+ class _NumberOfSplitLayers(PyNumericalCommandArgumentsSubItem):
1828
1828
  """
1829
- Argument LastRatioNumLayers.
1829
+ Indicate the number of split prism layers you wish to apply to each layer that you specified for the boundary layer definition.
1830
1830
  """
1831
1831
 
1832
- class _NumberOfSplitLayers(PyNumericalCommandArgumentsSubItem):
1832
+ class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
1833
1833
  """
1834
- Indicate the number of split prism layers you wish to apply to each layer that you specified for the boundary layer definition.
1834
+ Argument LastRatioNumLayers.
1835
1835
  """
1836
1836
 
1837
1837
  class _AllowedTangencyAtInvalidNormals(PyNumericalCommandArgumentsSubItem):
@@ -2090,12 +2090,12 @@ class Root(PyMenu):
2090
2090
  self.SphereRadiusFactorAtInvalidNormals = self._SphereRadiusFactorAtInvalidNormals(self, "SphereRadiusFactorAtInvalidNormals", service, rules, path)
2091
2091
  self.SmoothRingsAtInvalidNormals = self._SmoothRingsAtInvalidNormals(self, "SmoothRingsAtInvalidNormals", service, rules, path)
2092
2092
  self.Continuous = self._Continuous(self, "Continuous", service, rules, path)
2093
- self.SplitPrism = self._SplitPrism(self, "SplitPrism", service, rules, path)
2094
2093
  self.ModifyAtInvalidNormals = self._ModifyAtInvalidNormals(self, "ModifyAtInvalidNormals", service, rules, path)
2094
+ self.SplitPrism = self._SplitPrism(self, "SplitPrism", service, rules, path)
2095
2095
  self.InvalidNormalMethod = self._InvalidNormalMethod(self, "InvalidNormalMethod", service, rules, path)
2096
2096
  self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
2097
- self.ShowLocalPrismPreferences = self._ShowLocalPrismPreferences(self, "ShowLocalPrismPreferences", service, rules, path)
2098
2097
  self.NumberOfSplitLayers = self._NumberOfSplitLayers(self, "NumberOfSplitLayers", service, rules, path)
2098
+ self.ShowLocalPrismPreferences = self._ShowLocalPrismPreferences(self, "ShowLocalPrismPreferences", service, rules, path)
2099
2099
  self.AllowedTangencyAtInvalidNormals = self._AllowedTangencyAtInvalidNormals(self, "AllowedTangencyAtInvalidNormals", service, rules, path)
2100
2100
  self.RemeshAtInvalidNormals = self._RemeshAtInvalidNormals(self, "RemeshAtInvalidNormals", service, rules, path)
2101
2101
  self.IgnoreBoundaryLayers = self._IgnoreBoundaryLayers(self, "IgnoreBoundaryLayers", service, rules, path)
@@ -2125,14 +2125,14 @@ class Root(PyMenu):
2125
2125
  Specify how you would like to improve the generated boundary layer: as a continuous or stair-stepped boundary layer in the specified area(s).
2126
2126
  """
2127
2127
 
2128
- class _SplitPrism(PyTextualCommandArgumentsSubItem):
2128
+ class _ModifyAtInvalidNormals(PyTextualCommandArgumentsSubItem):
2129
2129
  """
2130
- Choose whether or not to add split prisms to each layer along the boundary. Not available when the Offset Method Type is set to last-ratio.
2130
+ Specify whether to automatically change the surface mesh where invalid normal faces are detected. To grow the boundary layer mesh in the proper direction (away from the boundary), normal vectors (valid) are required at the boundary face nodes of the surface mesh. More...
2131
2131
  """
2132
2132
 
2133
- class _ModifyAtInvalidNormals(PyTextualCommandArgumentsSubItem):
2133
+ class _SplitPrism(PyTextualCommandArgumentsSubItem):
2134
2134
  """
2135
- Specify whether to automatically change the surface mesh where invalid normal faces are detected. To grow the boundary layer mesh in the proper direction (away from the boundary), normal vectors (valid) are required at the boundary face nodes of the surface mesh. More...
2135
+ Choose whether or not to add split prisms to each layer along the boundary. Not available when the Offset Method Type is set to last-ratio.
2136
2136
  """
2137
2137
 
2138
2138
  class _InvalidNormalMethod(PyTextualCommandArgumentsSubItem):
@@ -2145,14 +2145,14 @@ class Root(PyMenu):
2145
2145
  Argument LastRatioNumLayers.
2146
2146
  """
2147
2147
 
2148
- class _ShowLocalPrismPreferences(PyParameterCommandArgumentsSubItem):
2148
+ class _NumberOfSplitLayers(PyNumericalCommandArgumentsSubItem):
2149
2149
  """
2150
- Display advanced options that you may want to apply to this task.
2150
+ Indicate the number of split prism layers you wish to apply to each layer that you specified for the boundary layer definition.
2151
2151
  """
2152
2152
 
2153
- class _NumberOfSplitLayers(PyNumericalCommandArgumentsSubItem):
2153
+ class _ShowLocalPrismPreferences(PyParameterCommandArgumentsSubItem):
2154
2154
  """
2155
- Indicate the number of split prism layers you wish to apply to each layer that you specified for the boundary layer definition.
2155
+ Display advanced options that you may want to apply to this task.
2156
2156
  """
2157
2157
 
2158
2158
  class _AllowedTangencyAtInvalidNormals(PyNumericalCommandArgumentsSubItem):
@@ -2999,8 +2999,8 @@ class Root(PyMenu):
2999
2999
  self.SaveSizeFieldFile = self._SaveSizeFieldFile(self, "SaveSizeFieldFile", service, rules, path)
3000
3000
  self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
3001
3001
  self.ScopeProximityTo = self._ScopeProximityTo(self, "ScopeProximityTo", service, rules, path)
3002
- self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
3003
3002
  self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
3003
+ self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
3004
3004
  self.SaveSizeField = self._SaveSizeField(self, "SaveSizeField", service, rules, path)
3005
3005
  self.UseSizeFiles = self._UseSizeFiles(self, "UseSizeFiles", service, rules, path)
3006
3006
  self.AutoCreateScopedSizing = self._AutoCreateScopedSizing(self, "AutoCreateScopedSizing", service, rules, path)
@@ -3030,14 +3030,14 @@ class Root(PyMenu):
3030
3030
  Argument ScopeProximityTo.
3031
3031
  """
3032
3032
 
3033
- class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
3033
+ class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
3034
3034
  """
3035
- Argument CurvatureNormalAngle.
3035
+ Argument PreviewSizefield.
3036
3036
  """
3037
3037
 
3038
- class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
3038
+ class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
3039
3039
  """
3040
- Argument PreviewSizefield.
3040
+ Argument CurvatureNormalAngle.
3041
3041
  """
3042
3042
 
3043
3043
  class _SaveSizeField(PyParameterCommandArgumentsSubItem):
@@ -4162,23 +4162,23 @@ class Root(PyMenu):
4162
4162
 
4163
4163
  def __init__(self, parent, attr, service, rules, path):
4164
4164
  super().__init__(parent, attr, service, rules, path)
4165
- self.WrapTargetRatio = self._WrapTargetRatio(self, "WrapTargetRatio", service, rules, path)
4165
+ self.TargeSizeFieldFileName = self._TargeSizeFieldFileName(self, "TargeSizeFieldFileName", service, rules, path)
4166
4166
  self.WrapTargetSizeFieldRatio = self._WrapTargetSizeFieldRatio(self, "WrapTargetSizeFieldRatio", service, rules, path)
4167
- self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
4167
+ self.WrapTargetBothOptions = self._WrapTargetBothOptions(self, "WrapTargetBothOptions", service, rules, path)
4168
4168
  self.SolidFluidRaio = self._SolidFluidRaio(self, "SolidFluidRaio", service, rules, path)
4169
4169
  self.BoundaryLayers = self._BoundaryLayers(self, "BoundaryLayers", service, rules, path)
4170
4170
  self.EdgeProximityComputation = self._EdgeProximityComputation(self, "EdgeProximityComputation", service, rules, path)
4171
- self.WrapTargetBothOptions = self._WrapTargetBothOptions(self, "WrapTargetBothOptions", service, rules, path)
4172
- self.ExistingSizeField = self._ExistingSizeField(self, "ExistingSizeField", service, rules, path)
4173
- self.TargetSizeFieldFileName = self._TargetSizeFieldFileName(self, "TargetSizeFieldFileName", service, rules, path)
4171
+ self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
4174
4172
  self.SolidFluidRatio = self._SolidFluidRatio(self, "SolidFluidRatio", service, rules, path)
4173
+ self.TargetSizeFieldFileName = self._TargetSizeFieldFileName(self, "TargetSizeFieldFileName", service, rules, path)
4174
+ self.ExistingSizeField = self._ExistingSizeField(self, "ExistingSizeField", service, rules, path)
4175
4175
  self.WrapSizeFieldFileName = self._WrapSizeFieldFileName(self, "WrapSizeFieldFileName", service, rules, path)
4176
- self.TargeSizeFieldFileName = self._TargeSizeFieldFileName(self, "TargeSizeFieldFileName", service, rules, path)
4176
+ self.WrapTargetRatio = self._WrapTargetRatio(self, "WrapTargetRatio", service, rules, path)
4177
4177
  self.WrapTargetRaio = self._WrapTargetRaio(self, "WrapTargetRaio", service, rules, path)
4178
4178
 
4179
- class _WrapTargetRatio(PyNumericalCommandArgumentsSubItem):
4179
+ class _TargeSizeFieldFileName(PyTextualCommandArgumentsSubItem):
4180
4180
  """
4181
- Argument WrapTargetRatio.
4181
+ Indicate the name and location of the target size field file (\\*.sf).
4182
4182
  """
4183
4183
 
4184
4184
  class _WrapTargetSizeFieldRatio(PyNumericalCommandArgumentsSubItem):
@@ -4186,9 +4186,9 @@ class Root(PyMenu):
4186
4186
  The ratio of the initial wrap size field and the local target size field.
4187
4187
  """
4188
4188
 
4189
- class _AdvancedOptions(PyParameterCommandArgumentsSubItem):
4189
+ class _WrapTargetBothOptions(PyTextualCommandArgumentsSubItem):
4190
4190
  """
4191
- Display advanced options that you may want to apply to the task.
4191
+ Determine how the size controls are calculated in the Add Local Sizing task: using Both Wrap and Target values, by Target Only (the default), or by Wrap Only. For complex models, computational expense can be lowered by choosing one of the other options. If either Wrap Only or Target Only is selected, then the other values are determined using the Wrap/Target Size Ratio value.
4192
4192
  """
4193
4193
 
4194
4194
  class _SolidFluidRaio(PyNumericalCommandArgumentsSubItem):
@@ -4206,14 +4206,14 @@ class Root(PyMenu):
4206
4206
  For geometries having a very large number of small feature edges, select Yes to speed up the calculation and reduce memory requirements when using a proximity size function.
4207
4207
  """
4208
4208
 
4209
- class _WrapTargetBothOptions(PyTextualCommandArgumentsSubItem):
4209
+ class _AdvancedOptions(PyParameterCommandArgumentsSubItem):
4210
4210
  """
4211
- Determine how the size controls are calculated in the Add Local Sizing task: using Both Wrap and Target values, by Target Only (the default), or by Wrap Only. For complex models, computational expense can be lowered by choosing one of the other options. If either Wrap Only or Target Only is selected, then the other values are determined using the Wrap/Target Size Ratio value.
4211
+ Display advanced options that you may want to apply to the task.
4212
4212
  """
4213
4213
 
4214
- class _ExistingSizeField(PyTextualCommandArgumentsSubItem):
4214
+ class _SolidFluidRatio(PyNumericalCommandArgumentsSubItem):
4215
4215
  """
4216
- Determine which existing size field files will be used: Both Wrap and Target (the default), Target Only, or Wrap Only. For complex models, computational expense can be lowered by choosing one of the other options. If either Wrap Only or Target Only is selected, then the other values are determined using the Wrap/Target Size Ratio value.
4216
+ Argument SolidFluidRatio.
4217
4217
  """
4218
4218
 
4219
4219
  class _TargetSizeFieldFileName(PyTextualCommandArgumentsSubItem):
@@ -4221,9 +4221,9 @@ class Root(PyMenu):
4221
4221
  Argument TargetSizeFieldFileName.
4222
4222
  """
4223
4223
 
4224
- class _SolidFluidRatio(PyNumericalCommandArgumentsSubItem):
4224
+ class _ExistingSizeField(PyTextualCommandArgumentsSubItem):
4225
4225
  """
4226
- Argument SolidFluidRatio.
4226
+ Determine which existing size field files will be used: Both Wrap and Target (the default), Target Only, or Wrap Only. For complex models, computational expense can be lowered by choosing one of the other options. If either Wrap Only or Target Only is selected, then the other values are determined using the Wrap/Target Size Ratio value.
4227
4227
  """
4228
4228
 
4229
4229
  class _WrapSizeFieldFileName(PyTextualCommandArgumentsSubItem):
@@ -4231,9 +4231,9 @@ class Root(PyMenu):
4231
4231
  Indicate the name and location of the wrap size field file (\\*.sf).
4232
4232
  """
4233
4233
 
4234
- class _TargeSizeFieldFileName(PyTextualCommandArgumentsSubItem):
4234
+ class _WrapTargetRatio(PyNumericalCommandArgumentsSubItem):
4235
4235
  """
4236
- Indicate the name and location of the target size field file (\\*.sf).
4236
+ Argument WrapTargetRatio.
4237
4237
  """
4238
4238
 
4239
4239
  class _WrapTargetRaio(PyNumericalCommandArgumentsSubItem):
@@ -4508,7 +4508,7 @@ class Root(PyMenu):
4508
4508
  def __init__(self, parent, attr, service, rules, path):
4509
4509
  super().__init__(parent, attr, service, rules, path)
4510
4510
  self.SizeRelativeLength = self._SizeRelativeLength(self, "SizeRelativeLength", service, rules, path)
4511
- self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
4511
+ self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
4512
4512
  self.XminRatio = self._XminRatio(self, "XminRatio", service, rules, path)
4513
4513
  self.YminRatio = self._YminRatio(self, "YminRatio", service, rules, path)
4514
4514
  self.Zmin = self._Zmin(self, "Zmin", service, rules, path)
@@ -4519,16 +4519,16 @@ class Root(PyMenu):
4519
4519
  self.Xmin = self._Xmin(self, "Xmin", service, rules, path)
4520
4520
  self.YmaxRatio = self._YmaxRatio(self, "YmaxRatio", service, rules, path)
4521
4521
  self.ZmaxRatio = self._ZmaxRatio(self, "ZmaxRatio", service, rules, path)
4522
- self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
4522
+ self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
4523
4523
 
4524
4524
  class _SizeRelativeLength(PyTextualCommandArgumentsSubItem):
4525
4525
  """
4526
4526
  Argument SizeRelativeLength.
4527
4527
  """
4528
4528
 
4529
- class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
4529
+ class _Xmax(PyNumericalCommandArgumentsSubItem):
4530
4530
  """
4531
- Argument XmaxRatio.
4531
+ Argument Xmax.
4532
4532
  """
4533
4533
 
4534
4534
  class _XminRatio(PyNumericalCommandArgumentsSubItem):
@@ -4581,9 +4581,9 @@ class Root(PyMenu):
4581
4581
  Argument ZmaxRatio.
4582
4582
  """
4583
4583
 
4584
- class _Xmax(PyNumericalCommandArgumentsSubItem):
4584
+ class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
4585
4585
  """
4586
- Argument Xmax.
4586
+ Argument XmaxRatio.
4587
4587
  """
4588
4588
 
4589
4589
  class _OffsetObject(PySingletonCommandArgumentsSubItem):
@@ -4599,17 +4599,17 @@ class Root(PyMenu):
4599
4599
  self.Y = self._Y(self, "Y", service, rules, path)
4600
4600
  self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
4601
4601
  self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
4602
- self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
4603
4602
  self.Rate = self._Rate(self, "Rate", service, rules, path)
4604
- self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
4603
+ self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
4604
+ self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
4605
4605
  self.FlowDirection = self._FlowDirection(self, "FlowDirection", service, rules, path)
4606
4606
  self.MptMethodType = self._MptMethodType(self, "MptMethodType", service, rules, path)
4607
4607
  self.EdgeSelectionList = self._EdgeSelectionList(self, "EdgeSelectionList", service, rules, path)
4608
- self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
4609
- self.X = self._X(self, "X", service, rules, path)
4608
+ self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
4610
4609
  self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
4611
- self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
4610
+ self.X = self._X(self, "X", service, rules, path)
4612
4611
  self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
4612
+ self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
4613
4613
  self.FirstHeight = self._FirstHeight(self, "FirstHeight", service, rules, path)
4614
4614
  self.BoundaryLayerHeight = self._BoundaryLayerHeight(self, "BoundaryLayerHeight", service, rules, path)
4615
4615
  self.CrossWakeGrowthFactor = self._CrossWakeGrowthFactor(self, "CrossWakeGrowthFactor", service, rules, path)
@@ -4644,19 +4644,19 @@ class Root(PyMenu):
4644
4644
  Argument AspectRatio.
4645
4645
  """
4646
4646
 
4647
- class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
4647
+ class _Rate(PyNumericalCommandArgumentsSubItem):
4648
4648
  """
4649
- Argument NumberOfLayers.
4649
+ Argument Rate.
4650
4650
  """
4651
4651
 
4652
- class _Rate(PyNumericalCommandArgumentsSubItem):
4652
+ class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
4653
4653
  """
4654
- Argument Rate.
4654
+ Argument BoundaryLayerLevels.
4655
4655
  """
4656
4656
 
4657
- class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
4657
+ class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
4658
4658
  """
4659
- Argument WakeGrowthFactor.
4659
+ Argument NumberOfLayers.
4660
4660
  """
4661
4661
 
4662
4662
  class _FlowDirection(PyTextualCommandArgumentsSubItem):
@@ -4674,14 +4674,9 @@ class Root(PyMenu):
4674
4674
  Argument EdgeSelectionList.
4675
4675
  """
4676
4676
 
4677
- class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
4678
- """
4679
- Argument BoundaryLayerLevels.
4680
- """
4681
-
4682
- class _X(PyNumericalCommandArgumentsSubItem):
4677
+ class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
4683
4678
  """
4684
- Argument X.
4679
+ Argument WakeGrowthFactor.
4685
4680
  """
4686
4681
 
4687
4682
  class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
@@ -4689,9 +4684,9 @@ class Root(PyMenu):
4689
4684
  Argument LastRatioPercentage.
4690
4685
  """
4691
4686
 
4692
- class _OffsetMethodType(PyTextualCommandArgumentsSubItem):
4687
+ class _X(PyNumericalCommandArgumentsSubItem):
4693
4688
  """
4694
- Argument OffsetMethodType.
4689
+ Argument X.
4695
4690
  """
4696
4691
 
4697
4692
  class _FlipDirection(PyParameterCommandArgumentsSubItem):
@@ -4699,6 +4694,11 @@ class Root(PyMenu):
4699
4694
  Argument FlipDirection.
4700
4695
  """
4701
4696
 
4697
+ class _OffsetMethodType(PyTextualCommandArgumentsSubItem):
4698
+ """
4699
+ Argument OffsetMethodType.
4700
+ """
4701
+
4702
4702
  class _FirstHeight(PyNumericalCommandArgumentsSubItem):
4703
4703
  """
4704
4704
  Argument FirstHeight.
@@ -4873,8 +4873,8 @@ class Root(PyMenu):
4873
4873
  def __init__(self, parent, attr, service, rules, path):
4874
4874
  super().__init__(parent, attr, service, rules, path)
4875
4875
  self.CylinderZ2 = self._CylinderZ2(self, "CylinderZ2", service, rules, path)
4876
- self.CylinderX2 = self._CylinderX2(self, "CylinderX2", service, rules, path)
4877
4876
  self.BoxYLength = self._BoxYLength(self, "BoxYLength", service, rules, path)
4877
+ self.CylinderX2 = self._CylinderX2(self, "CylinderX2", service, rules, path)
4878
4878
  self.CylinderX1 = self._CylinderX1(self, "CylinderX1", service, rules, path)
4879
4879
  self.BoxZLength = self._BoxZLength(self, "BoxZLength", service, rules, path)
4880
4880
  self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
@@ -4883,8 +4883,8 @@ class Root(PyMenu):
4883
4883
  self.CylinderZ1 = self._CylinderZ1(self, "CylinderZ1", service, rules, path)
4884
4884
  self.CylinderRadius1 = self._CylinderRadius1(self, "CylinderRadius1", service, rules, path)
4885
4885
  self.BoxCenterX = self._BoxCenterX(self, "BoxCenterX", service, rules, path)
4886
- self.BoxCenterZ = self._BoxCenterZ(self, "BoxCenterZ", service, rules, path)
4887
4886
  self.CylinderRadius2 = self._CylinderRadius2(self, "CylinderRadius2", service, rules, path)
4887
+ self.BoxCenterZ = self._BoxCenterZ(self, "BoxCenterZ", service, rules, path)
4888
4888
  self.CylinderY2 = self._CylinderY2(self, "CylinderY2", service, rules, path)
4889
4889
 
4890
4890
  class _CylinderZ2(PyNumericalCommandArgumentsSubItem):
@@ -4892,14 +4892,14 @@ class Root(PyMenu):
4892
4892
  Argument CylinderZ2.
4893
4893
  """
4894
4894
 
4895
- class _CylinderX2(PyNumericalCommandArgumentsSubItem):
4895
+ class _BoxYLength(PyNumericalCommandArgumentsSubItem):
4896
4896
  """
4897
- Argument CylinderX2.
4897
+ Argument BoxYLength.
4898
4898
  """
4899
4899
 
4900
- class _BoxYLength(PyNumericalCommandArgumentsSubItem):
4900
+ class _CylinderX2(PyNumericalCommandArgumentsSubItem):
4901
4901
  """
4902
- Argument BoxYLength.
4902
+ Argument CylinderX2.
4903
4903
  """
4904
4904
 
4905
4905
  class _CylinderX1(PyNumericalCommandArgumentsSubItem):
@@ -4942,14 +4942,14 @@ class Root(PyMenu):
4942
4942
  Argument BoxCenterX.
4943
4943
  """
4944
4944
 
4945
- class _BoxCenterZ(PyNumericalCommandArgumentsSubItem):
4945
+ class _CylinderRadius2(PyNumericalCommandArgumentsSubItem):
4946
4946
  """
4947
- Argument BoxCenterZ.
4947
+ Argument CylinderRadius2.
4948
4948
  """
4949
4949
 
4950
- class _CylinderRadius2(PyNumericalCommandArgumentsSubItem):
4950
+ class _BoxCenterZ(PyNumericalCommandArgumentsSubItem):
4951
4951
  """
4952
- Argument CylinderRadius2.
4952
+ Argument BoxCenterZ.
4953
4953
  """
4954
4954
 
4955
4955
  class _CylinderY2(PyNumericalCommandArgumentsSubItem):
@@ -5186,13 +5186,13 @@ class Root(PyMenu):
5186
5186
  self.Y = self._Y(self, "Y", service, rules, path)
5187
5187
  self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
5188
5188
  self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
5189
- self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
5190
- self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
5191
5189
  self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
5190
+ self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
5191
+ self.Rate = self._Rate(self, "Rate", service, rules, path)
5192
5192
  self.FlowDirection = self._FlowDirection(self, "FlowDirection", service, rules, path)
5193
5193
  self.MptMethodType = self._MptMethodType(self, "MptMethodType", service, rules, path)
5194
5194
  self.EdgeSelectionList = self._EdgeSelectionList(self, "EdgeSelectionList", service, rules, path)
5195
- self.Rate = self._Rate(self, "Rate", service, rules, path)
5195
+ self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
5196
5196
  self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
5197
5197
  self.X = self._X(self, "X", service, rules, path)
5198
5198
  self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
@@ -5231,19 +5231,19 @@ class Root(PyMenu):
5231
5231
  Argument BoundaryLayerLevels.
5232
5232
  """
5233
5233
 
5234
- class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
5234
+ class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
5235
5235
  """
5236
- Argument NumberOfLayers.
5236
+ Argument WakeGrowthFactor.
5237
5237
  """
5238
5238
 
5239
- class _AspectRatio(PyNumericalCommandArgumentsSubItem):
5239
+ class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
5240
5240
  """
5241
- Argument AspectRatio.
5241
+ Argument NumberOfLayers.
5242
5242
  """
5243
5243
 
5244
- class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
5244
+ class _Rate(PyNumericalCommandArgumentsSubItem):
5245
5245
  """
5246
- Argument WakeGrowthFactor.
5246
+ Argument Rate.
5247
5247
  """
5248
5248
 
5249
5249
  class _FlowDirection(PyTextualCommandArgumentsSubItem):
@@ -5261,9 +5261,9 @@ class Root(PyMenu):
5261
5261
  Choose a single edge zone from the list below for your edge-based collar mesh. Use the Filter Text field to provide text and/or regular expressions in filtering the list. The matching list item(s) are automatically displayed in the list. Use ^, |, and & in your expression to indicate boolean operations for NOT, OR, and AND, respectively. More...
5262
5262
  """
5263
5263
 
5264
- class _Rate(PyNumericalCommandArgumentsSubItem):
5264
+ class _AspectRatio(PyNumericalCommandArgumentsSubItem):
5265
5265
  """
5266
- Argument Rate.
5266
+ Argument AspectRatio.
5267
5267
  """
5268
5268
 
5269
5269
  class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
@@ -5313,8 +5313,8 @@ class Root(PyMenu):
5313
5313
 
5314
5314
  def __init__(self, parent, attr, service, rules, path):
5315
5315
  super().__init__(parent, attr, service, rules, path)
5316
- self.X_Offset = self._X_Offset(self, "X-Offset", service, rules, path)
5317
5316
  self.HeightNode = self._HeightNode(self, "HeightNode", service, rules, path)
5317
+ self.X_Offset = self._X_Offset(self, "X-Offset", service, rules, path)
5318
5318
  self.HeightBackInc = self._HeightBackInc(self, "HeightBackInc", service, rules, path)
5319
5319
  self.X1 = self._X1(self, "X1", service, rules, path)
5320
5320
  self.Y1 = self._Y1(self, "Y1", service, rules, path)
@@ -5331,14 +5331,14 @@ class Root(PyMenu):
5331
5331
  self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
5332
5332
  self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
5333
5333
 
5334
- class _X_Offset(PyNumericalCommandArgumentsSubItem):
5334
+ class _HeightNode(PyTextualCommandArgumentsSubItem):
5335
5335
  """
5336
- Argument X-Offset.
5336
+ Argument HeightNode.
5337
5337
  """
5338
5338
 
5339
- class _HeightNode(PyTextualCommandArgumentsSubItem):
5339
+ class _X_Offset(PyNumericalCommandArgumentsSubItem):
5340
5340
  """
5341
- Argument HeightNode.
5341
+ Argument X-Offset.
5342
5342
  """
5343
5343
 
5344
5344
  class _HeightBackInc(PyNumericalCommandArgumentsSubItem):
@@ -5683,7 +5683,7 @@ class Root(PyMenu):
5683
5683
  def __init__(self, parent, attr, service, rules, path):
5684
5684
  super().__init__(parent, attr, service, rules, path)
5685
5685
  self.SizeRelativeLength = self._SizeRelativeLength(self, "SizeRelativeLength", service, rules, path)
5686
- self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
5686
+ self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
5687
5687
  self.XminRatio = self._XminRatio(self, "XminRatio", service, rules, path)
5688
5688
  self.YminRatio = self._YminRatio(self, "YminRatio", service, rules, path)
5689
5689
  self.Zmin = self._Zmin(self, "Zmin", service, rules, path)
@@ -5694,16 +5694,16 @@ class Root(PyMenu):
5694
5694
  self.Xmin = self._Xmin(self, "Xmin", service, rules, path)
5695
5695
  self.YmaxRatio = self._YmaxRatio(self, "YmaxRatio", service, rules, path)
5696
5696
  self.ZmaxRatio = self._ZmaxRatio(self, "ZmaxRatio", service, rules, path)
5697
- self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
5697
+ self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
5698
5698
 
5699
5699
  class _SizeRelativeLength(PyTextualCommandArgumentsSubItem):
5700
5700
  """
5701
5701
  Determine if you would like to specify the bounding box for the component mesh as a ratio of the geometry length, or by specifying a specific location for the minimum and maximum coordinates.
5702
5702
  """
5703
5703
 
5704
- class _Xmax(PyNumericalCommandArgumentsSubItem):
5704
+ class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
5705
5705
  """
5706
- Extends the maximum size of the bounding box in the X direction by the specified value.
5706
+ Extends the maximum size of the bounding box in the X direction by the specified value. The value is the ratio relative to the geometry size in the X direction.
5707
5707
  """
5708
5708
 
5709
5709
  class _XminRatio(PyNumericalCommandArgumentsSubItem):
@@ -5756,9 +5756,9 @@ class Root(PyMenu):
5756
5756
  Extends the maximum size of the bounding box in the Z direction by the specified value. The value is the ratio relative to the geometry size in the Z direction.
5757
5757
  """
5758
5758
 
5759
- class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
5759
+ class _Xmax(PyNumericalCommandArgumentsSubItem):
5760
5760
  """
5761
- Extends the maximum size of the bounding box in the X direction by the specified value. The value is the ratio relative to the geometry size in the X direction.
5761
+ Extends the maximum size of the bounding box in the X direction by the specified value.
5762
5762
  """
5763
5763
 
5764
5764
  class _OffsetObject(PySingletonCommandArgumentsSubItem):
@@ -5773,16 +5773,16 @@ class Root(PyMenu):
5773
5773
  self.ShowCoordinates = self._ShowCoordinates(self, "ShowCoordinates", service, rules, path)
5774
5774
  self.Y = self._Y(self, "Y", service, rules, path)
5775
5775
  self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
5776
- self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
5776
+ self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
5777
5777
  self.Rate = self._Rate(self, "Rate", service, rules, path)
5778
5778
  self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
5779
- self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
5779
+ self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
5780
5780
  self.FlowDirection = self._FlowDirection(self, "FlowDirection", service, rules, path)
5781
5781
  self.MptMethodType = self._MptMethodType(self, "MptMethodType", service, rules, path)
5782
5782
  self.EdgeSelectionList = self._EdgeSelectionList(self, "EdgeSelectionList", service, rules, path)
5783
- self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
5784
- self.X = self._X(self, "X", service, rules, path)
5783
+ self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
5785
5784
  self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
5785
+ self.X = self._X(self, "X", service, rules, path)
5786
5786
  self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
5787
5787
  self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
5788
5788
  self.FirstHeight = self._FirstHeight(self, "FirstHeight", service, rules, path)
@@ -5814,9 +5814,9 @@ class Root(PyMenu):
5814
5814
  Argument DefeaturingSize.
5815
5815
  """
5816
5816
 
5817
- class _AspectRatio(PyNumericalCommandArgumentsSubItem):
5817
+ class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
5818
5818
  """
5819
- Specify the ratio of the prism base length to the prism layer height.
5819
+ Argument BoundaryLayerLevels.
5820
5820
  """
5821
5821
 
5822
5822
  class _Rate(PyNumericalCommandArgumentsSubItem):
@@ -5829,9 +5829,9 @@ class Root(PyMenu):
5829
5829
  Argument WakeGrowthFactor.
5830
5830
  """
5831
5831
 
5832
- class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
5832
+ class _AspectRatio(PyNumericalCommandArgumentsSubItem):
5833
5833
  """
5834
- Select the number of boundary layers to be generated.
5834
+ Specify the ratio of the prism base length to the prism layer height.
5835
5835
  """
5836
5836
 
5837
5837
  class _FlowDirection(PyTextualCommandArgumentsSubItem):
@@ -5849,19 +5849,19 @@ class Root(PyMenu):
5849
5849
  Argument EdgeSelectionList.
5850
5850
  """
5851
5851
 
5852
- class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
5852
+ class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
5853
5853
  """
5854
- Argument BoundaryLayerLevels.
5854
+ Select the number of boundary layers to be generated.
5855
5855
  """
5856
5856
 
5857
- class _X(PyNumericalCommandArgumentsSubItem):
5857
+ class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
5858
5858
  """
5859
- Argument X.
5859
+ Specify the offset height of the last layer as a percentage of the local base mesh size.
5860
5860
  """
5861
5861
 
5862
- class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
5862
+ class _X(PyNumericalCommandArgumentsSubItem):
5863
5863
  """
5864
- Specify the offset height of the last layer as a percentage of the local base mesh size.
5864
+ Argument X.
5865
5865
  """
5866
5866
 
5867
5867
  class _OffsetMethodType(PyTextualCommandArgumentsSubItem):
@@ -5901,32 +5901,32 @@ class Root(PyMenu):
5901
5901
 
5902
5902
  def __init__(self, parent, attr, service, rules, path):
5903
5903
  super().__init__(parent, attr, service, rules, path)
5904
- self.X_Offset = self._X_Offset(self, "X-Offset", service, rules, path)
5905
5904
  self.HeightNode = self._HeightNode(self, "HeightNode", service, rules, path)
5905
+ self.X_Offset = self._X_Offset(self, "X-Offset", service, rules, path)
5906
5906
  self.HeightBackInc = self._HeightBackInc(self, "HeightBackInc", service, rules, path)
5907
5907
  self.X1 = self._X1(self, "X1", service, rules, path)
5908
5908
  self.Y1 = self._Y1(self, "Y1", service, rules, path)
5909
5909
  self.Z_Offset = self._Z_Offset(self, "Z-Offset", service, rules, path)
5910
- self.Z2 = self._Z2(self, "Z2", service, rules, path)
5911
- self.Node1 = self._Node1(self, "Node1", service, rules, path)
5912
5910
  self.Z1 = self._Z1(self, "Z1", service, rules, path)
5911
+ self.Node1 = self._Node1(self, "Node1", service, rules, path)
5912
+ self.Z2 = self._Z2(self, "Z2", service, rules, path)
5913
5913
  self.Radius2 = self._Radius2(self, "Radius2", service, rules, path)
5914
5914
  self.Y2 = self._Y2(self, "Y2", service, rules, path)
5915
5915
  self.Node3 = self._Node3(self, "Node3", service, rules, path)
5916
+ self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
5916
5917
  self.Node2 = self._Node2(self, "Node2", service, rules, path)
5917
5918
  self.X2 = self._X2(self, "X2", service, rules, path)
5918
- self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
5919
5919
  self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
5920
5920
  self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
5921
5921
 
5922
- class _X_Offset(PyNumericalCommandArgumentsSubItem):
5922
+ class _HeightNode(PyTextualCommandArgumentsSubItem):
5923
5923
  """
5924
- Argument X-Offset.
5924
+ Argument HeightNode.
5925
5925
  """
5926
5926
 
5927
- class _HeightNode(PyTextualCommandArgumentsSubItem):
5927
+ class _X_Offset(PyNumericalCommandArgumentsSubItem):
5928
5928
  """
5929
- Argument HeightNode.
5929
+ Argument X-Offset.
5930
5930
  """
5931
5931
 
5932
5932
  class _HeightBackInc(PyNumericalCommandArgumentsSubItem):
@@ -5949,9 +5949,9 @@ class Root(PyMenu):
5949
5949
  Argument Z-Offset.
5950
5950
  """
5951
5951
 
5952
- class _Z2(PyNumericalCommandArgumentsSubItem):
5952
+ class _Z1(PyNumericalCommandArgumentsSubItem):
5953
5953
  """
5954
- Argument Z2.
5954
+ Argument Z1.
5955
5955
  """
5956
5956
 
5957
5957
  class _Node1(PyTextualCommandArgumentsSubItem):
@@ -5959,9 +5959,9 @@ class Root(PyMenu):
5959
5959
  Argument Node1.
5960
5960
  """
5961
5961
 
5962
- class _Z1(PyNumericalCommandArgumentsSubItem):
5962
+ class _Z2(PyNumericalCommandArgumentsSubItem):
5963
5963
  """
5964
- Argument Z1.
5964
+ Argument Z2.
5965
5965
  """
5966
5966
 
5967
5967
  class _Radius2(PyNumericalCommandArgumentsSubItem):
@@ -5979,6 +5979,11 @@ class Root(PyMenu):
5979
5979
  Argument Node3.
5980
5980
  """
5981
5981
 
5982
+ class _Y_Offset(PyNumericalCommandArgumentsSubItem):
5983
+ """
5984
+ Argument Y-Offset.
5985
+ """
5986
+
5982
5987
  class _Node2(PyTextualCommandArgumentsSubItem):
5983
5988
  """
5984
5989
  Argument Node2.
@@ -5989,11 +5994,6 @@ class Root(PyMenu):
5989
5994
  Argument X2.
5990
5995
  """
5991
5996
 
5992
- class _Y_Offset(PyNumericalCommandArgumentsSubItem):
5993
- """
5994
- Argument Y-Offset.
5995
- """
5996
-
5997
5997
  class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
5998
5998
  """
5999
5999
  Argument HeightFrontInc.
@@ -6981,16 +6981,16 @@ class Root(PyMenu):
6981
6981
  self.ShowCoordinates = self._ShowCoordinates(self, "ShowCoordinates", service, rules, path)
6982
6982
  self.Y = self._Y(self, "Y", service, rules, path)
6983
6983
  self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
6984
- self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
6985
- self.Rate = self._Rate(self, "Rate", service, rules, path)
6986
6984
  self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
6987
- self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
6985
+ self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
6986
+ self.Rate = self._Rate(self, "Rate", service, rules, path)
6987
+ self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
6988
6988
  self.FlowDirection = self._FlowDirection(self, "FlowDirection", service, rules, path)
6989
6989
  self.MptMethodType = self._MptMethodType(self, "MptMethodType", service, rules, path)
6990
6990
  self.EdgeSelectionList = self._EdgeSelectionList(self, "EdgeSelectionList", service, rules, path)
6991
- self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
6992
- self.X = self._X(self, "X", service, rules, path)
6991
+ self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
6993
6992
  self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
6993
+ self.X = self._X(self, "X", service, rules, path)
6994
6994
  self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
6995
6995
  self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
6996
6996
  self.FirstHeight = self._FirstHeight(self, "FirstHeight", service, rules, path)
@@ -7022,24 +7022,24 @@ class Root(PyMenu):
7022
7022
  Specify a value that is used to obtain a rough shape of the selected object(s). The larger the value, the more approximate the shape.
7023
7023
  """
7024
7024
 
7025
- class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
7025
+ class _AspectRatio(PyNumericalCommandArgumentsSubItem):
7026
7026
  """
7027
- Specify the number of boundary layers that are to be captured in the refinement region.
7027
+ Argument AspectRatio.
7028
7028
  """
7029
7029
 
7030
- class _Rate(PyNumericalCommandArgumentsSubItem):
7030
+ class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
7031
7031
  """
7032
- Argument Rate.
7032
+ Specify the factor by which the refinement region expands in the wake of the flow direction.
7033
7033
  """
7034
7034
 
7035
- class _AspectRatio(PyNumericalCommandArgumentsSubItem):
7035
+ class _Rate(PyNumericalCommandArgumentsSubItem):
7036
7036
  """
7037
- Argument AspectRatio.
7037
+ Argument Rate.
7038
7038
  """
7039
7039
 
7040
- class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
7040
+ class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
7041
7041
  """
7042
- Argument NumberOfLayers.
7042
+ Specify the number of boundary layers that are to be captured in the refinement region.
7043
7043
  """
7044
7044
 
7045
7045
  class _FlowDirection(PyTextualCommandArgumentsSubItem):
@@ -7057,19 +7057,19 @@ class Root(PyMenu):
7057
7057
  Argument EdgeSelectionList.
7058
7058
  """
7059
7059
 
7060
- class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
7060
+ class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
7061
7061
  """
7062
- Specify the factor by which the refinement region expands in the wake of the flow direction.
7062
+ Argument NumberOfLayers.
7063
7063
  """
7064
7064
 
7065
- class _X(PyNumericalCommandArgumentsSubItem):
7065
+ class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
7066
7066
  """
7067
- Specify the X-coordinate for the initial position of the cylindrical refinement region.
7067
+ Argument LastRatioPercentage.
7068
7068
  """
7069
7069
 
7070
- class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
7070
+ class _X(PyNumericalCommandArgumentsSubItem):
7071
7071
  """
7072
- Argument LastRatioPercentage.
7072
+ Specify the X-coordinate for the initial position of the cylindrical refinement region.
7073
7073
  """
7074
7074
 
7075
7075
  class _OffsetMethodType(PyTextualCommandArgumentsSubItem):
@@ -7109,8 +7109,8 @@ class Root(PyMenu):
7109
7109
 
7110
7110
  def __init__(self, parent, attr, service, rules, path):
7111
7111
  super().__init__(parent, attr, service, rules, path)
7112
- self.HeightNode = self._HeightNode(self, "HeightNode", service, rules, path)
7113
7112
  self.X_Offset = self._X_Offset(self, "X-Offset", service, rules, path)
7113
+ self.HeightNode = self._HeightNode(self, "HeightNode", service, rules, path)
7114
7114
  self.HeightBackInc = self._HeightBackInc(self, "HeightBackInc", service, rules, path)
7115
7115
  self.X1 = self._X1(self, "X1", service, rules, path)
7116
7116
  self.Y1 = self._Y1(self, "Y1", service, rules, path)
@@ -7121,20 +7121,20 @@ class Root(PyMenu):
7121
7121
  self.Radius2 = self._Radius2(self, "Radius2", service, rules, path)
7122
7122
  self.Y2 = self._Y2(self, "Y2", service, rules, path)
7123
7123
  self.Node3 = self._Node3(self, "Node3", service, rules, path)
7124
- self.X2 = self._X2(self, "X2", service, rules, path)
7125
7124
  self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
7125
+ self.X2 = self._X2(self, "X2", service, rules, path)
7126
7126
  self.Node2 = self._Node2(self, "Node2", service, rules, path)
7127
7127
  self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
7128
7128
  self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
7129
7129
 
7130
- class _HeightNode(PyTextualCommandArgumentsSubItem):
7130
+ class _X_Offset(PyNumericalCommandArgumentsSubItem):
7131
7131
  """
7132
- Argument HeightNode.
7132
+ Specify the X-coordinate for the offset of the initial position of the cylinder.
7133
7133
  """
7134
7134
 
7135
- class _X_Offset(PyNumericalCommandArgumentsSubItem):
7135
+ class _HeightNode(PyTextualCommandArgumentsSubItem):
7136
7136
  """
7137
- Specify the X-coordinate for the offset of the initial position of the cylinder.
7137
+ Argument HeightNode.
7138
7138
  """
7139
7139
 
7140
7140
  class _HeightBackInc(PyNumericalCommandArgumentsSubItem):
@@ -7187,14 +7187,14 @@ class Root(PyMenu):
7187
7187
  Argument Node3.
7188
7188
  """
7189
7189
 
7190
- class _X2(PyNumericalCommandArgumentsSubItem):
7190
+ class _Y_Offset(PyNumericalCommandArgumentsSubItem):
7191
7191
  """
7192
- Specify the X-coordinate of the second position of the cylinder.
7192
+ Specify the Y-coordinate for the offset of the initial position of the cylinder.
7193
7193
  """
7194
7194
 
7195
- class _Y_Offset(PyNumericalCommandArgumentsSubItem):
7195
+ class _X2(PyNumericalCommandArgumentsSubItem):
7196
7196
  """
7197
- Specify the Y-coordinate for the offset of the initial position of the cylinder.
7197
+ Specify the X-coordinate of the second position of the cylinder.
7198
7198
  """
7199
7199
 
7200
7200
  class _Node2(PyTextualCommandArgumentsSubItem):
@@ -7256,18 +7256,18 @@ class Root(PyMenu):
7256
7256
  def __init__(self, parent, attr, service, rules, path):
7257
7257
  super().__init__(parent, attr, service, rules, path)
7258
7258
  self.CylinderZ2 = self._CylinderZ2(self, "CylinderZ2", service, rules, path)
7259
- self.CylinderX2 = self._CylinderX2(self, "CylinderX2", service, rules, path)
7260
7259
  self.BoxYLength = self._BoxYLength(self, "BoxYLength", service, rules, path)
7260
+ self.CylinderX2 = self._CylinderX2(self, "CylinderX2", service, rules, path)
7261
7261
  self.CylinderX1 = self._CylinderX1(self, "CylinderX1", service, rules, path)
7262
- self.BoxZLength = self._BoxZLength(self, "BoxZLength", service, rules, path)
7263
- self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
7264
7262
  self.BoxXLength = self._BoxXLength(self, "BoxXLength", service, rules, path)
7263
+ self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
7264
+ self.BoxZLength = self._BoxZLength(self, "BoxZLength", service, rules, path)
7265
7265
  self.BoxCenterY = self._BoxCenterY(self, "BoxCenterY", service, rules, path)
7266
7266
  self.CylinderZ1 = self._CylinderZ1(self, "CylinderZ1", service, rules, path)
7267
7267
  self.CylinderRadius1 = self._CylinderRadius1(self, "CylinderRadius1", service, rules, path)
7268
7268
  self.BoxCenterX = self._BoxCenterX(self, "BoxCenterX", service, rules, path)
7269
- self.BoxCenterZ = self._BoxCenterZ(self, "BoxCenterZ", service, rules, path)
7270
7269
  self.CylinderRadius2 = self._CylinderRadius2(self, "CylinderRadius2", service, rules, path)
7270
+ self.BoxCenterZ = self._BoxCenterZ(self, "BoxCenterZ", service, rules, path)
7271
7271
  self.CylinderY2 = self._CylinderY2(self, "CylinderY2", service, rules, path)
7272
7272
 
7273
7273
  class _CylinderZ2(PyNumericalCommandArgumentsSubItem):
@@ -7275,14 +7275,14 @@ class Root(PyMenu):
7275
7275
  Specify the Z-coordinate of the second position of the cylinder.
7276
7276
  """
7277
7277
 
7278
- class _CylinderX2(PyNumericalCommandArgumentsSubItem):
7278
+ class _BoxYLength(PyNumericalCommandArgumentsSubItem):
7279
7279
  """
7280
- Specify the X-coordinate of the second position of the cylinder.
7280
+ Argument BoxYLength.
7281
7281
  """
7282
7282
 
7283
- class _BoxYLength(PyNumericalCommandArgumentsSubItem):
7283
+ class _CylinderX2(PyNumericalCommandArgumentsSubItem):
7284
7284
  """
7285
- Argument BoxYLength.
7285
+ Specify the X-coordinate of the second position of the cylinder.
7286
7286
  """
7287
7287
 
7288
7288
  class _CylinderX1(PyNumericalCommandArgumentsSubItem):
@@ -7290,9 +7290,9 @@ class Root(PyMenu):
7290
7290
  Specify the X-coordinate of the first position of the cylinder.
7291
7291
  """
7292
7292
 
7293
- class _BoxZLength(PyNumericalCommandArgumentsSubItem):
7293
+ class _BoxXLength(PyNumericalCommandArgumentsSubItem):
7294
7294
  """
7295
- Argument BoxZLength.
7295
+ Argument BoxXLength.
7296
7296
  """
7297
7297
 
7298
7298
  class _CylinderY1(PyNumericalCommandArgumentsSubItem):
@@ -7300,9 +7300,9 @@ class Root(PyMenu):
7300
7300
  Specify the Y-coordinate of the first position of the cylinder.
7301
7301
  """
7302
7302
 
7303
- class _BoxXLength(PyNumericalCommandArgumentsSubItem):
7303
+ class _BoxZLength(PyNumericalCommandArgumentsSubItem):
7304
7304
  """
7305
- Argument BoxXLength.
7305
+ Argument BoxZLength.
7306
7306
  """
7307
7307
 
7308
7308
  class _BoxCenterY(PyNumericalCommandArgumentsSubItem):
@@ -7325,14 +7325,14 @@ class Root(PyMenu):
7325
7325
  Specify the X-coordinate for the initial position of the cylindrical refinement region.
7326
7326
  """
7327
7327
 
7328
- class _BoxCenterZ(PyNumericalCommandArgumentsSubItem):
7328
+ class _CylinderRadius2(PyNumericalCommandArgumentsSubItem):
7329
7329
  """
7330
- Specify the Z-coordinate for the initial position of the cylindrical refinement region.
7330
+ Specify the radius of the cylinder at the second position.
7331
7331
  """
7332
7332
 
7333
- class _CylinderRadius2(PyNumericalCommandArgumentsSubItem):
7333
+ class _BoxCenterZ(PyNumericalCommandArgumentsSubItem):
7334
7334
  """
7335
- Specify the radius of the cylinder at the second position.
7335
+ Specify the Z-coordinate for the initial position of the cylindrical refinement region.
7336
7336
  """
7337
7337
 
7338
7338
  class _CylinderY2(PyNumericalCommandArgumentsSubItem):
@@ -7538,8 +7538,8 @@ class Root(PyMenu):
7538
7538
  super().__init__(parent, attr, service, rules, path)
7539
7539
  self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
7540
7540
  self.LabelSelectionList = self._LabelSelectionList(self, "LabelSelectionList", service, rules, path)
7541
- self.ZoneSelectionList = self._ZoneSelectionList(self, "ZoneSelectionList", service, rules, path)
7542
7541
  self.SelectionType = self._SelectionType(self, "SelectionType", service, rules, path)
7542
+ self.ZoneSelectionList = self._ZoneSelectionList(self, "ZoneSelectionList", service, rules, path)
7543
7543
  self.Thickness = self._Thickness(self, "Thickness", service, rules, path)
7544
7544
  self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
7545
7545
  self.MeshSize = self._MeshSize(self, "MeshSize", service, rules, path)
@@ -7558,14 +7558,14 @@ class Root(PyMenu):
7558
7558
  Select a single label that will correspond to the porous region. Use the Filter Text field to provide text and/or regular expressions in filtering the list. The matching list item(s) are automatically displayed in the list. Use ^, |, and & in your expression to indicate boolean operations for NOT, OR, and AND, respectively. More...
7559
7559
  """
7560
7560
 
7561
- class _ZoneSelectionList(PyTextualCommandArgumentsSubItem):
7561
+ class _SelectionType(PyTextualCommandArgumentsSubItem):
7562
7562
  """
7563
- Choose a single face zone from the list below. Use the Filter Text field to provide text and/or regular expressions in filtering the list. The matching list item(s) are automatically displayed in the list. Use ^, |, and & in your expression to indicate boolean operations for NOT, OR, and AND, respectively. More...
7563
+ Choose how you want to make your selection (by object, zone, or label).
7564
7564
  """
7565
7565
 
7566
- class _SelectionType(PyTextualCommandArgumentsSubItem):
7566
+ class _ZoneSelectionList(PyTextualCommandArgumentsSubItem):
7567
7567
  """
7568
- Choose how you want to make your selection (by object, zone, or label).
7568
+ Choose a single face zone from the list below. Use the Filter Text field to provide text and/or regular expressions in filtering the list. The matching list item(s) are automatically displayed in the list. Use ^, |, and & in your expression to indicate boolean operations for NOT, OR, and AND, respectively. More...
7569
7569
  """
7570
7570
 
7571
7571
  class _Thickness(PyNumericalCommandArgumentsSubItem):
@@ -7912,9 +7912,9 @@ class Root(PyMenu):
7912
7912
  super().__init__(parent, attr, service, rules, path)
7913
7913
  self.PorousRegions = self._PorousRegions(self, "PorousRegions", service, rules, path)
7914
7914
  self.ZeroThickness = self._ZeroThickness(self, "ZeroThickness", service, rules, path)
7915
- self.CloseLeakges = self._CloseLeakges(self, "CloseLeakges", service, rules, path)
7916
- self.CloseLeakages = self._CloseLeakages(self, "CloseLeakages", service, rules, path)
7917
7915
  self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
7916
+ self.CloseLeakages = self._CloseLeakages(self, "CloseLeakages", service, rules, path)
7917
+ self.CloseLeakges = self._CloseLeakges(self, "CloseLeakges", service, rules, path)
7918
7918
  self.ExtractEdgeFeatures = self._ExtractEdgeFeatures(self, "ExtractEdgeFeatures", service, rules, path)
7919
7919
  self.MovingObjects = self._MovingObjects(self, "MovingObjects", service, rules, path)
7920
7920
  self.EnablePrimeWrapper = self._EnablePrimeWrapper(self, "EnablePrimeWrapper", service, rules, path)
@@ -7931,9 +7931,9 @@ class Root(PyMenu):
7931
7931
  Specify whether or not you will need to account for any portions of your geometry with zero-thickness, and apply thickness to them for a more refined surface mesh. If so, then an Add Thickness task will be added to the workflow.
7932
7932
  """
7933
7933
 
7934
- class _CloseLeakges(PyTextualCommandArgumentsSubItem):
7934
+ class _AdvancedOptions(PyParameterCommandArgumentsSubItem):
7935
7935
  """
7936
- Specify whether or not your geometry contains any problems (such as gaps or overlapping/intersecting surfaces) that may create leakages that need to be closed. If so, then a Define Leakage Threshold task is added to the workflow.
7936
+ Display advanced options that you may want to apply to the workflow.
7937
7937
  """
7938
7938
 
7939
7939
  class _CloseLeakages(PyTextualCommandArgumentsSubItem):
@@ -7941,9 +7941,9 @@ class Root(PyMenu):
7941
7941
  Argument CloseLeakages.
7942
7942
  """
7943
7943
 
7944
- class _AdvancedOptions(PyParameterCommandArgumentsSubItem):
7944
+ class _CloseLeakges(PyTextualCommandArgumentsSubItem):
7945
7945
  """
7946
- Display advanced options that you may want to apply to the workflow.
7946
+ Specify whether or not your geometry contains any problems (such as gaps or overlapping/intersecting surfaces) that may create leakages that need to be closed. If so, then a Define Leakage Threshold task is added to the workflow.
7947
7947
  """
7948
7948
 
7949
7949
  class _ExtractEdgeFeatures(PyTextualCommandArgumentsSubItem):
@@ -8290,8 +8290,8 @@ class Root(PyMenu):
8290
8290
  self.MaxLayerHeight = self._MaxLayerHeight(self, "MaxLayerHeight", service, rules, path)
8291
8291
  self.MidSpanLength = self._MidSpanLength(self, "MidSpanLength", service, rules, path)
8292
8292
  self.BiasMethod = self._BiasMethod(self, "BiasMethod", service, rules, path)
8293
- self.BiasMethodControl = self._BiasMethodControl(self, "BiasMethodControl", service, rules, path)
8294
8293
  self.MergeCellZones = self._MergeCellZones(self, "MergeCellZones", service, rules, path)
8294
+ self.BiasMethodControl = self._BiasMethodControl(self, "BiasMethodControl", service, rules, path)
8295
8295
  self.ShowVMExtrudePreferences = self._ShowVMExtrudePreferences(self, "ShowVMExtrudePreferences", service, rules, path)
8296
8296
 
8297
8297
  class _MaxLayerHeight(PyNumericalCommandArgumentsSubItem):
@@ -8309,14 +8309,14 @@ class Root(PyMenu):
8309
8309
  Select from a choice of patterns that you want to apply to your volume mesh extrusion.
8310
8310
  """
8311
8311
 
8312
- class _BiasMethodControl(PyTextualCommandArgumentsSubItem):
8312
+ class _MergeCellZones(PyParameterCommandArgumentsSubItem):
8313
8313
  """
8314
- Argument BiasMethodControl.
8314
+ Indicate whether or not you want to merge the extruded layers with any adjacent regions.
8315
8315
  """
8316
8316
 
8317
- class _MergeCellZones(PyParameterCommandArgumentsSubItem):
8317
+ class _BiasMethodControl(PyTextualCommandArgumentsSubItem):
8318
8318
  """
8319
- Indicate whether or not you want to merge the extruded layers with any adjacent regions.
8319
+ Argument BiasMethodControl.
8320
8320
  """
8321
8321
 
8322
8322
  class _ShowVMExtrudePreferences(PyParameterCommandArgumentsSubItem):
@@ -8394,9 +8394,9 @@ class Root(PyMenu):
8394
8394
  self.RemeshGrowthRate = self._RemeshGrowthRate(self, "RemeshGrowthRate", service, rules, path)
8395
8395
  self.LocalRemesh = self._LocalRemesh(self, "LocalRemesh", service, rules, path)
8396
8396
  self.GapFactor = self._GapFactor(self, "GapFactor", service, rules, path)
8397
- self.ShowPrism2DPreferences = self._ShowPrism2DPreferences(self, "ShowPrism2DPreferences", service, rules, path)
8398
8397
  self.RefineStretchedQuads = self._RefineStretchedQuads(self, "RefineStretchedQuads", service, rules, path)
8399
8398
  self.MaxFaceSkew = self._MaxFaceSkew(self, "MaxFaceSkew", service, rules, path)
8399
+ self.ShowPrism2DPreferences = self._ShowPrism2DPreferences(self, "ShowPrism2DPreferences", service, rules, path)
8400
8400
  self.nOrthogonalLayers = self._nOrthogonalLayers(self, "nOrthogonalLayers", service, rules, path)
8401
8401
 
8402
8402
  class _SplitQuads(PyTextualCommandArgumentsSubItem):
@@ -8429,11 +8429,6 @@ class Root(PyMenu):
8429
8429
  Argument GapFactor.
8430
8430
  """
8431
8431
 
8432
- class _ShowPrism2DPreferences(PyParameterCommandArgumentsSubItem):
8433
- """
8434
- Argument ShowPrism2DPreferences.
8435
- """
8436
-
8437
8432
  class _RefineStretchedQuads(PyTextualCommandArgumentsSubItem):
8438
8433
  """
8439
8434
  Argument RefineStretchedQuads.
@@ -8444,6 +8439,11 @@ class Root(PyMenu):
8444
8439
  Argument MaxFaceSkew.
8445
8440
  """
8446
8441
 
8442
+ class _ShowPrism2DPreferences(PyParameterCommandArgumentsSubItem):
8443
+ """
8444
+ Argument ShowPrism2DPreferences.
8445
+ """
8446
+
8447
8447
  class _nOrthogonalLayers(PyNumericalCommandArgumentsSubItem):
8448
8448
  """
8449
8449
  Argument nOrthogonalLayers.
@@ -8456,18 +8456,18 @@ class Root(PyMenu):
8456
8456
 
8457
8457
  def __init__(self, parent, attr, service, rules, path):
8458
8458
  super().__init__(parent, attr, service, rules, path)
8459
- self.MergeEdgeZonesBasedOnLabels = self._MergeEdgeZonesBasedOnLabels(self, "MergeEdgeZonesBasedOnLabels", service, rules, path)
8460
8459
  self.MergeFaceZonesBasedOnLabels = self._MergeFaceZonesBasedOnLabels(self, "MergeFaceZonesBasedOnLabels", service, rules, path)
8460
+ self.MergeEdgeZonesBasedOnLabels = self._MergeEdgeZonesBasedOnLabels(self, "MergeEdgeZonesBasedOnLabels", service, rules, path)
8461
8461
  self.ShowAdvancedOptions = self._ShowAdvancedOptions(self, "ShowAdvancedOptions", service, rules, path)
8462
8462
 
8463
- class _MergeEdgeZonesBasedOnLabels(PyTextualCommandArgumentsSubItem):
8463
+ class _MergeFaceZonesBasedOnLabels(PyTextualCommandArgumentsSubItem):
8464
8464
  """
8465
- Argument MergeEdgeZonesBasedOnLabels.
8465
+ Argument MergeFaceZonesBasedOnLabels.
8466
8466
  """
8467
8467
 
8468
- class _MergeFaceZonesBasedOnLabels(PyTextualCommandArgumentsSubItem):
8468
+ class _MergeEdgeZonesBasedOnLabels(PyTextualCommandArgumentsSubItem):
8469
8469
  """
8470
- Argument MergeFaceZonesBasedOnLabels.
8470
+ Argument MergeEdgeZonesBasedOnLabels.
8471
8471
  """
8472
8472
 
8473
8473
  class _ShowAdvancedOptions(PyParameterCommandArgumentsSubItem):
@@ -9307,21 +9307,21 @@ class Root(PyMenu):
9307
9307
  def __init__(self, parent, attr, service, rules, path):
9308
9308
  super().__init__(parent, attr, service, rules, path)
9309
9309
  self.SMQualityCollapseLimit = self._SMQualityCollapseLimit(self, "SMQualityCollapseLimit", service, rules, path)
9310
- self.FoldFaceLimit = self._FoldFaceLimit(self, "FoldFaceLimit", service, rules, path)
9310
+ self.AutoMerge = self._AutoMerge(self, "AutoMerge", service, rules, path)
9311
9311
  self.SMSeparation = self._SMSeparation(self, "SMSeparation", service, rules, path)
9312
9312
  self.ShowSurfaceMeshPreferences = self._ShowSurfaceMeshPreferences(self, "ShowSurfaceMeshPreferences", service, rules, path)
9313
9313
  self.SMSeparationAngle = self._SMSeparationAngle(self, "SMSeparationAngle", service, rules, path)
9314
9314
  self.SMQualityImprove = self._SMQualityImprove(self, "SMQualityImprove", service, rules, path)
9315
9315
  self.TVMAutoControlCreation = self._TVMAutoControlCreation(self, "TVMAutoControlCreation", service, rules, path)
9316
- self.AutoMerge = self._AutoMerge(self, "AutoMerge", service, rules, path)
9316
+ self.FoldFaceLimit = self._FoldFaceLimit(self, "FoldFaceLimit", service, rules, path)
9317
9317
  self.SMRemoveStep = self._SMRemoveStep(self, "SMRemoveStep", service, rules, path)
9318
9318
  self.SMStepWidth = self._SMStepWidth(self, "SMStepWidth", service, rules, path)
9319
- self.VolumeMeshMaxSize = self._VolumeMeshMaxSize(self, "VolumeMeshMaxSize", service, rules, path)
9320
- self.AutoAssignZoneTypes = self._AutoAssignZoneTypes(self, "AutoAssignZoneTypes", service, rules, path)
9321
9319
  self.SMQualityMaxAngle = self._SMQualityMaxAngle(self, "SMQualityMaxAngle", service, rules, path)
9322
- self.SMQualityImproveLimit = self._SMQualityImproveLimit(self, "SMQualityImproveLimit", service, rules, path)
9323
- self.AutoSurfaceRemesh = self._AutoSurfaceRemesh(self, "AutoSurfaceRemesh", service, rules, path)
9320
+ self.AutoAssignZoneTypes = self._AutoAssignZoneTypes(self, "AutoAssignZoneTypes", service, rules, path)
9321
+ self.VolumeMeshMaxSize = self._VolumeMeshMaxSize(self, "VolumeMeshMaxSize", service, rules, path)
9324
9322
  self.SelfIntersectCheck = self._SelfIntersectCheck(self, "SelfIntersectCheck", service, rules, path)
9323
+ self.AutoSurfaceRemesh = self._AutoSurfaceRemesh(self, "AutoSurfaceRemesh", service, rules, path)
9324
+ self.SMQualityImproveLimit = self._SMQualityImproveLimit(self, "SMQualityImproveLimit", service, rules, path)
9325
9325
  self.SetVolumeMeshMaxSize = self._SetVolumeMeshMaxSize(self, "SetVolumeMeshMaxSize", service, rules, path)
9326
9326
 
9327
9327
  class _SMQualityCollapseLimit(PyNumericalCommandArgumentsSubItem):
@@ -9329,9 +9329,9 @@ class Root(PyMenu):
9329
9329
  Specify the limiting skewness value for cell collapse to improve the mesh. If any remaining triangles are above this limit, these triangles will be aggressively removed using a fixed maximum angle of 120 degrees.
9330
9330
  """
9331
9331
 
9332
- class _FoldFaceLimit(PyNumericalCommandArgumentsSubItem):
9332
+ class _AutoMerge(PyParameterCommandArgumentsSubItem):
9333
9333
  """
9334
- Specify the value limiting when folded faces are smoothed or resolved. Folded faces are resolved while under this limit. Set this value to 0 if the number of free nodes (due to a zero-thickness wall such as a baffle for instance) falls below 10.
9334
+ Argument AutoMerge.
9335
9335
  """
9336
9336
 
9337
9337
  class _SMSeparation(PyTextualCommandArgumentsSubItem):
@@ -9359,9 +9359,9 @@ class Root(PyMenu):
9359
9359
  If your geometry contains small edges, you can choose to extract these edge features when generating the surface mesh by selecting yes. Note that selecting yes , will always extract small edge features regardless of your selection for the Auto Remesh to Remove Clustering? option.
9360
9360
  """
9361
9361
 
9362
- class _AutoMerge(PyParameterCommandArgumentsSubItem):
9362
+ class _FoldFaceLimit(PyNumericalCommandArgumentsSubItem):
9363
9363
  """
9364
- Argument AutoMerge.
9364
+ Specify the value limiting when folded faces are smoothed or resolved. Folded faces are resolved while under this limit. Set this value to 0 if the number of free nodes (due to a zero-thickness wall such as a baffle for instance) falls below 10.
9365
9365
  """
9366
9366
 
9367
9367
  class _SMRemoveStep(PyTextualCommandArgumentsSubItem):
@@ -9374,9 +9374,9 @@ class Root(PyMenu):
9374
9374
  Specify the width of the step that you wish to remove.
9375
9375
  """
9376
9376
 
9377
- class _VolumeMeshMaxSize(PyNumericalCommandArgumentsSubItem):
9377
+ class _SMQualityMaxAngle(PyNumericalCommandArgumentsSubItem):
9378
9378
  """
9379
- Specify the maximum size of the elements for the surface mesh.
9379
+ Specify the maximum angle between the normals of adjacent faces. This quality measure is useful in locating sharp corners in complicated geometries. The angle value ranges from 0 to 180 degrees. Four consecutive attempts are made to improve the quality, each using a larger adjacent angle, until this maximum value.
9380
9380
  """
9381
9381
 
9382
9382
  class _AutoAssignZoneTypes(PyTextualCommandArgumentsSubItem):
@@ -9384,14 +9384,14 @@ class Root(PyMenu):
9384
9384
  Choose whether or not to automatically assign boundary types to zones.
9385
9385
  """
9386
9386
 
9387
- class _SMQualityMaxAngle(PyNumericalCommandArgumentsSubItem):
9387
+ class _VolumeMeshMaxSize(PyNumericalCommandArgumentsSubItem):
9388
9388
  """
9389
- Specify the maximum angle between the normals of adjacent faces. This quality measure is useful in locating sharp corners in complicated geometries. The angle value ranges from 0 to 180 degrees. Four consecutive attempts are made to improve the quality, each using a larger adjacent angle, until this maximum value.
9389
+ Specify the maximum size of the elements for the surface mesh.
9390
9390
  """
9391
9391
 
9392
- class _SMQualityImproveLimit(PyNumericalCommandArgumentsSubItem):
9392
+ class _SelfIntersectCheck(PyTextualCommandArgumentsSubItem):
9393
9393
  """
9394
- Specify a limiting value for skewness to improve the quality of the surface mesh. Quality improvement is attempted on those triangles where the skewness is above this limit.
9394
+ Choose whether or not to check for self-intersecting faces. Performance may be improved if this is disabled.
9395
9395
  """
9396
9396
 
9397
9397
  class _AutoSurfaceRemesh(PyTextualCommandArgumentsSubItem):
@@ -9399,9 +9399,9 @@ class Root(PyMenu):
9399
9399
  Choose whether or not to automatically remesh in order to remove excessive clustering of nodes. By default (auto), this is done if local sizing has been assigned or Share Topology is invoked, but skipped if not. Performance may be improved if this is disabled. In addition, you can choose to use the much faster refaceting technique as an alternative to automatic remeshing. When importing the mesh, remeshing is only performed if this option is set to yes and then all faces are remeshed; and the refaceting option is not available because the initial mesh cannot be refaceted.
9400
9400
  """
9401
9401
 
9402
- class _SelfIntersectCheck(PyTextualCommandArgumentsSubItem):
9402
+ class _SMQualityImproveLimit(PyNumericalCommandArgumentsSubItem):
9403
9403
  """
9404
- Choose whether or not to check for self-intersecting faces. Performance may be improved if this is disabled.
9404
+ Specify a limiting value for skewness to improve the quality of the surface mesh. Quality improvement is attempted on those triangles where the skewness is above this limit.
9405
9405
  """
9406
9406
 
9407
9407
  class _SetVolumeMeshMaxSize(PyTextualCommandArgumentsSubItem):
@@ -9461,18 +9461,18 @@ class Root(PyMenu):
9461
9461
 
9462
9462
  def __init__(self, parent, attr, service, rules, path):
9463
9463
  super().__init__(parent, attr, service, rules, path)
9464
- self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
9465
9464
  self.RefineFaceting = self._RefineFaceting(self, "RefineFaceting", service, rules, path)
9465
+ self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
9466
9466
  self.Tolerance = self._Tolerance(self, "Tolerance", service, rules, path)
9467
9467
 
9468
- class _MaxSize(PyNumericalCommandArgumentsSubItem):
9468
+ class _RefineFaceting(PyParameterCommandArgumentsSubItem):
9469
9469
  """
9470
- Specify the maximum size of the elements for the surface mesh.
9470
+ Argument RefineFaceting.
9471
9471
  """
9472
9472
 
9473
- class _RefineFaceting(PyParameterCommandArgumentsSubItem):
9473
+ class _MaxSize(PyNumericalCommandArgumentsSubItem):
9474
9474
  """
9475
- Argument RefineFaceting.
9475
+ Specify the maximum size of the elements for the surface mesh.
9476
9476
  """
9477
9477
 
9478
9478
  class _Tolerance(PyNumericalCommandArgumentsSubItem):
@@ -9493,11 +9493,11 @@ class Root(PyMenu):
9493
9493
  self.CreateCADAssemblies = self._CreateCADAssemblies(self, "CreateCADAssemblies", service, rules, path)
9494
9494
  self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
9495
9495
  self.OneZonePer = self._OneZonePer(self, "OneZonePer", service, rules, path)
9496
- self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
9497
- self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
9496
+ self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
9498
9497
  self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
9498
+ self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
9499
9499
  self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
9500
- self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
9500
+ self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
9501
9501
 
9502
9502
  class _SavePMDBIntermediateFile(PyParameterCommandArgumentsSubItem):
9503
9503
  """
@@ -9529,19 +9529,19 @@ class Root(PyMenu):
9529
9529
  Argument OneZonePer.
9530
9530
  """
9531
9531
 
9532
- class _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
9532
+ class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
9533
9533
  """
9534
- Argument UsePartOrBodyAsSuffix.
9534
+ Argument ImportCurvatureDataFromCAD.
9535
9535
  """
9536
9536
 
9537
- class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
9537
+ class _ImportNamedSelections(PyParameterCommandArgumentsSubItem):
9538
9538
  """
9539
- Argument ExtractFeatures.
9539
+ Argument ImportNamedSelections.
9540
9540
  """
9541
9541
 
9542
- class _ImportNamedSelections(PyParameterCommandArgumentsSubItem):
9542
+ class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
9543
9543
  """
9544
- Argument ImportNamedSelections.
9544
+ Argument ExtractFeatures.
9545
9545
  """
9546
9546
 
9547
9547
  class _ImportPartNames(PyParameterCommandArgumentsSubItem):
@@ -9549,9 +9549,9 @@ class Root(PyMenu):
9549
9549
  Argument ImportPartNames.
9550
9550
  """
9551
9551
 
9552
- class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
9552
+ class _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
9553
9553
  """
9554
- Argument ImportCurvatureDataFromCAD.
9554
+ Argument UsePartOrBodyAsSuffix.
9555
9555
  """
9556
9556
 
9557
9557
  class _ShareTopologyPreferences(PySingletonCommandArgumentsSubItem):
@@ -9566,10 +9566,10 @@ class Root(PyMenu):
9566
9566
  self.ConnectLabelWildcard = self._ConnectLabelWildcard(self, "ConnectLabelWildcard", service, rules, path)
9567
9567
  self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
9568
9568
  self.RelativeShareTopologyTolerance = self._RelativeShareTopologyTolerance(self, "RelativeShareTopologyTolerance", service, rules, path)
9569
- self.FluidLabelWildcard = self._FluidLabelWildcard(self, "FluidLabelWildcard", service, rules, path)
9569
+ self.ShareTopologyAngle = self._ShareTopologyAngle(self, "ShareTopologyAngle", service, rules, path)
9570
9570
  self.ExecuteJoinIntersect = self._ExecuteJoinIntersect(self, "ExecuteJoinIntersect", service, rules, path)
9571
9571
  self.Operation = self._Operation(self, "Operation", service, rules, path)
9572
- self.ShareTopologyAngle = self._ShareTopologyAngle(self, "ShareTopologyAngle", service, rules, path)
9572
+ self.FluidLabelWildcard = self._FluidLabelWildcard(self, "FluidLabelWildcard", service, rules, path)
9573
9573
  self.STToleranceIncrement = self._STToleranceIncrement(self, "STToleranceIncrement", service, rules, path)
9574
9574
  self.ShowShareTopologyPreferences = self._ShowShareTopologyPreferences(self, "ShowShareTopologyPreferences", service, rules, path)
9575
9575
  self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
@@ -9602,9 +9602,9 @@ class Root(PyMenu):
9602
9602
  Specify the relative tolerance for joining or intersecting face pairs, or the relative tolerance for connecting edge and face pairs.
9603
9603
  """
9604
9604
 
9605
- class _FluidLabelWildcard(PyTextualCommandArgumentsSubItem):
9605
+ class _ShareTopologyAngle(PyNumericalCommandArgumentsSubItem):
9606
9606
  """
9607
- Argument FluidLabelWildcard.
9607
+ Specify the threshold angle for joining face pairs.
9608
9608
  """
9609
9609
 
9610
9610
  class _ExecuteJoinIntersect(PyTextualCommandArgumentsSubItem):
@@ -9617,9 +9617,9 @@ class Root(PyMenu):
9617
9617
  Choose whether to apply share topology using the Join-Intersect method where you join and/or intersect the problematic faces, or using the Interface Connect method where you connect edges of overlapping face pairs. Note that imprinting of overlapping faces in SCDM/Discovery is highly recommended for the Interface Connect method.
9618
9618
  """
9619
9619
 
9620
- class _ShareTopologyAngle(PyNumericalCommandArgumentsSubItem):
9620
+ class _FluidLabelWildcard(PyTextualCommandArgumentsSubItem):
9621
9621
  """
9622
- Specify the threshold angle for joining face pairs.
9622
+ Argument FluidLabelWildcard.
9623
9623
  """
9624
9624
 
9625
9625
  class _STToleranceIncrement(PyNumericalCommandArgumentsSubItem):
@@ -10114,34 +10114,34 @@ class Root(PyMenu):
10114
10114
 
10115
10115
  def __init__(self, parent, attr, service, rules, path):
10116
10116
  super().__init__(parent, attr, service, rules, path)
10117
+ self.MergeBodyLabels = self._MergeBodyLabels(self, "MergeBodyLabels", service, rules, path)
10118
+ self.QualityMethod = self._QualityMethod(self, "QualityMethod", service, rules, path)
10119
+ self.MinPolySize = self._MinPolySize(self, "MinPolySize", service, rules, path)
10117
10120
  self.UseSizeFieldInSolids = self._UseSizeFieldInSolids(self, "UseSizeFieldInSolids", service, rules, path)
10118
10121
  self.PolyFeatureAngle = self._PolyFeatureAngle(self, "PolyFeatureAngle", service, rules, path)
10119
- self.MinPolySize = self._MinPolySize(self, "MinPolySize", service, rules, path)
10120
- self.QualityMethod = self._QualityMethod(self, "QualityMethod", service, rules, path)
10121
- self.MergeBodyLabels = self._MergeBodyLabels(self, "MergeBodyLabels", service, rules, path)
10122
10122
  self.UseSizeField = self._UseSizeField(self, "UseSizeField", service, rules, path)
10123
- self.ShowVolumeMeshPreferences = self._ShowVolumeMeshPreferences(self, "ShowVolumeMeshPreferences", service, rules, path)
10124
- self.TetInSolids = self._TetInSolids(self, "TetInSolids", service, rules, path)
10123
+ self.PolyInSolids = self._PolyInSolids(self, "PolyInSolids", service, rules, path)
10124
+ self.MinEdgeLength = self._MinEdgeLength(self, "MinEdgeLength", service, rules, path)
10125
10125
  self.AddMultipleQualityMethods = self._AddMultipleQualityMethods(self, "AddMultipleQualityMethods", service, rules, path)
10126
10126
  self.MaxCellSizeChange = self._MaxCellSizeChange(self, "MaxCellSizeChange", service, rules, path)
10127
10127
  self.WritePrismControlFile = self._WritePrismControlFile(self, "WritePrismControlFile", service, rules, path)
10128
10128
  self.MinFaceArea = self._MinFaceArea(self, "MinFaceArea", service, rules, path)
10129
10129
  self.CheckSelfProximity = self._CheckSelfProximity(self, "CheckSelfProximity", service, rules, path)
10130
10130
  self.Avoid1_8Transition = self._Avoid1_8Transition(self, "Avoid1_8Transition", service, rules, path)
10131
- self.PolyInSolids = self._PolyInSolids(self, "PolyInSolids", service, rules, path)
10132
- self.MinEdgeLength = self._MinEdgeLength(self, "MinEdgeLength", service, rules, path)
10133
- self.SolidGrowthRate = self._SolidGrowthRate(self, "SolidGrowthRate", service, rules, path)
10134
10131
  self.PrepareZoneNames = self._PrepareZoneNames(self, "PrepareZoneNames", service, rules, path)
10132
+ self.ShowVolumeMeshPreferences = self._ShowVolumeMeshPreferences(self, "ShowVolumeMeshPreferences", service, rules, path)
10133
+ self.SolidGrowthRate = self._SolidGrowthRate(self, "SolidGrowthRate", service, rules, path)
10134
+ self.TetInSolids = self._TetInSolids(self, "TetInSolids", service, rules, path)
10135
10135
  self.QualityWarningLimit = self._QualityWarningLimit(self, "QualityWarningLimit", service, rules, path)
10136
10136
 
10137
- class _UseSizeFieldInSolids(PyTextualCommandArgumentsSubItem):
10137
+ class _MergeBodyLabels(PyTextualCommandArgumentsSubItem):
10138
10138
  """
10139
- This option is available when both the Use Size Field? and Fill Polyhedra in Solids? options are enabled for the poly-hexcore fill method. By default this option is set to no, which specifies growth-rate-based sizing for polyhedra regions during poly-hexcore generation. Selecting yes for this option specifies the sizing for polyhedra regions to be size-field based and is recommended when BOI(s) or body sizing have been defined that include the polyhedra region.
10139
+ Determine whether or not you would like to merge bodies that contain multiple body labels when generating the volume mesh (the default is yes)
10140
10140
  """
10141
10141
 
10142
- class _PolyFeatureAngle(PyNumericalCommandArgumentsSubItem):
10142
+ class _QualityMethod(PyTextualCommandArgumentsSubItem):
10143
10143
  """
10144
- Specify the angle to preserve features when using a polyhedral-based mesh.
10144
+ Choose from several different types of mesh quality controls (skewness, aspect ratio, change in size, and so on). Choices include Orthogonal (the default for the workflows), Enhanced Orthogonal, and Skewness. For more information, see More... .
10145
10145
  """
10146
10146
 
10147
10147
  class _MinPolySize(PyNumericalCommandArgumentsSubItem):
@@ -10149,14 +10149,14 @@ class Root(PyMenu):
10149
10149
  Argument MinPolySize.
10150
10150
  """
10151
10151
 
10152
- class _QualityMethod(PyTextualCommandArgumentsSubItem):
10152
+ class _UseSizeFieldInSolids(PyTextualCommandArgumentsSubItem):
10153
10153
  """
10154
- Choose from several different types of mesh quality controls (skewness, aspect ratio, change in size, and so on). Choices include Orthogonal (the default for the workflows), Enhanced Orthogonal, and Skewness. For more information, see More... .
10154
+ This option is available when both the Use Size Field? and Fill Polyhedra in Solids? options are enabled for the poly-hexcore fill method. By default this option is set to no, which specifies growth-rate-based sizing for polyhedra regions during poly-hexcore generation. Selecting yes for this option specifies the sizing for polyhedra regions to be size-field based and is recommended when BOI(s) or body sizing have been defined that include the polyhedra region.
10155
10155
  """
10156
10156
 
10157
- class _MergeBodyLabels(PyTextualCommandArgumentsSubItem):
10157
+ class _PolyFeatureAngle(PyNumericalCommandArgumentsSubItem):
10158
10158
  """
10159
- Determine whether or not you would like to merge bodies that contain multiple body labels when generating the volume mesh (the default is yes)
10159
+ Specify the angle to preserve features when using a polyhedral-based mesh.
10160
10160
  """
10161
10161
 
10162
10162
  class _UseSizeField(PyTextualCommandArgumentsSubItem):
@@ -10164,14 +10164,14 @@ class Root(PyMenu):
10164
10164
  Specify whether or not to use size fields as part of generating the volume mesh. By default, this is set to yes when a BOI or body sizing has been defined in the Add Local Sizing task, however, for large cases, it can be turned off for the hexcore and poly-hexcore volume fill methods.
10165
10165
  """
10166
10166
 
10167
- class _ShowVolumeMeshPreferences(PyParameterCommandArgumentsSubItem):
10167
+ class _PolyInSolids(PyTextualCommandArgumentsSubItem):
10168
10168
  """
10169
- Display advanced options that you may want to apply to the task.
10169
+ Indicate whether or not to fill only polyhedra cells in all solid regions during volume meshing using the poly-hexcore volume fill method. The default value is no. Setting this to yes may improve meshing efficiency.
10170
10170
  """
10171
10171
 
10172
- class _TetInSolids(PyTextualCommandArgumentsSubItem):
10172
+ class _MinEdgeLength(PyNumericalCommandArgumentsSubItem):
10173
10173
  """
10174
- Argument TetInSolids.
10174
+ Argument MinEdgeLength.
10175
10175
  """
10176
10176
 
10177
10177
  class _AddMultipleQualityMethods(PyTextualCommandArgumentsSubItem):
@@ -10204,14 +10204,14 @@ class Root(PyMenu):
10204
10204
  Indicate whether or not you want to avoid any potential 1:8 cell transition in the hexcore region of the volume mesh, replacing any abrupt change in the cell size with polyhedral cells to improve solver performance in such transitional areas.
10205
10205
  """
10206
10206
 
10207
- class _PolyInSolids(PyTextualCommandArgumentsSubItem):
10207
+ class _PrepareZoneNames(PyTextualCommandArgumentsSubItem):
10208
10208
  """
10209
- Indicate whether or not to fill only polyhedra cells in all solid regions during volume meshing using the poly-hexcore volume fill method. The default value is no. Setting this to yes may improve meshing efficiency.
10209
+ Indicate whether or not you want to persistently rename volume mesh components. This will make zone names equivalent to region names, and will make cell and face zone names unique. Using this field is highly recommended for any parametric study. Persistent renaming only works if all body names are unique.
10210
10210
  """
10211
10211
 
10212
- class _MinEdgeLength(PyNumericalCommandArgumentsSubItem):
10212
+ class _ShowVolumeMeshPreferences(PyParameterCommandArgumentsSubItem):
10213
10213
  """
10214
- Argument MinEdgeLength.
10214
+ Display advanced options that you may want to apply to the task.
10215
10215
  """
10216
10216
 
10217
10217
  class _SolidGrowthRate(PyNumericalCommandArgumentsSubItem):
@@ -10219,9 +10219,9 @@ class Root(PyMenu):
10219
10219
  Specify the rate of growth for a tetrahedron or polyhedron mesh.
10220
10220
  """
10221
10221
 
10222
- class _PrepareZoneNames(PyTextualCommandArgumentsSubItem):
10222
+ class _TetInSolids(PyTextualCommandArgumentsSubItem):
10223
10223
  """
10224
- Indicate whether or not you want to persistently rename volume mesh components. This will make zone names equivalent to region names, and will make cell and face zone names unique. Using this field is highly recommended for any parametric study. Persistent renaming only works if all body names are unique.
10224
+ Argument TetInSolids.
10225
10225
  """
10226
10226
 
10227
10227
  class _QualityWarningLimit(PyNumericalCommandArgumentsSubItem):
@@ -10245,8 +10245,8 @@ class Root(PyMenu):
10245
10245
  self.MergeBoundaryLayers = self._MergeBoundaryLayers(self, "MergeBoundaryLayers", service, rules, path)
10246
10246
  self.ShowPrismPreferences = self._ShowPrismPreferences(self, "ShowPrismPreferences", service, rules, path)
10247
10247
  self.NormalSmoothRelaxationFactor = self._NormalSmoothRelaxationFactor(self, "NormalSmoothRelaxationFactor", service, rules, path)
10248
- self.PrismMinAspectRatio = self._PrismMinAspectRatio(self, "PrismMinAspectRatio", service, rules, path)
10249
10248
  self.StairstepExposedQuads = self._StairstepExposedQuads(self, "StairstepExposedQuads", service, rules, path)
10249
+ self.PrismMinAspectRatio = self._PrismMinAspectRatio(self, "PrismMinAspectRatio", service, rules, path)
10250
10250
  self.PrismAdjacentAngle = self._PrismAdjacentAngle(self, "PrismAdjacentAngle", service, rules, path)
10251
10251
 
10252
10252
  class _PrismKeepFirstLayer(PyTextualCommandArgumentsSubItem):
@@ -10294,14 +10294,14 @@ class Root(PyMenu):
10294
10294
  Specify the smoothness factor for normal prism layers. Increasing this value will generate more prism layers especially near sharp corners.
10295
10295
  """
10296
10296
 
10297
- class _PrismMinAspectRatio(PyNumericalCommandArgumentsSubItem):
10297
+ class _StairstepExposedQuads(PyTextualCommandArgumentsSubItem):
10298
10298
  """
10299
- Controls the minimum aspect ratio for cells at the boundary of the thin volume mesh regions. By default, this option is set to 0.3, other than for Stacked Plates, where it is set to 0.1. For flat parallel plates (not including stacked plates), it is recommended to use a value of 0.1 to produce a high quality thin volume mesh.
10299
+ This option can be used when generating a tetrahedral mesh with prism cells and is set to No by default. Selecting Yes for this option will enable stair-stepping for exposed quadrilateral faces (exposed quads) on prism cells. Stair-stepping will prevent pyramids from being created on these exposed quads, which generally would lead to poor quality in the exposed quad location.
10300
10300
  """
10301
10301
 
10302
- class _StairstepExposedQuads(PyTextualCommandArgumentsSubItem):
10302
+ class _PrismMinAspectRatio(PyNumericalCommandArgumentsSubItem):
10303
10303
  """
10304
- This option can be used when generating a tetrahedral mesh with prism cells and is set to No by default. Selecting Yes for this option will enable stair-stepping for exposed quadrilateral faces (exposed quads) on prism cells. Stair-stepping will prevent pyramids from being created on these exposed quads, which generally would lead to poor quality in the exposed quad location.
10304
+ Controls the minimum aspect ratio for cells at the boundary of the thin volume mesh regions. By default, this option is set to 0.3, other than for Stacked Plates, where it is set to 0.1. For flat parallel plates (not including stacked plates), it is recommended to use a value of 0.1 to produce a high quality thin volume mesh.
10305
10305
  """
10306
10306
 
10307
10307
  class _PrismAdjacentAngle(PyNumericalCommandArgumentsSubItem):
@@ -10316,19 +10316,19 @@ class Root(PyMenu):
10316
10316
 
10317
10317
  def __init__(self, parent, attr, service, rules, path):
10318
10318
  super().__init__(parent, attr, service, rules, path)
10319
- self.ShowGlobalThinVolumePreferences = self._ShowGlobalThinVolumePreferences(self, "ShowGlobalThinVolumePreferences", service, rules, path)
10320
10319
  self.MinAspectRatio = self._MinAspectRatio(self, "MinAspectRatio", service, rules, path)
10320
+ self.ShowGlobalThinVolumePreferences = self._ShowGlobalThinVolumePreferences(self, "ShowGlobalThinVolumePreferences", service, rules, path)
10321
10321
  self.StairStep = self._StairStep(self, "StairStep", service, rules, path)
10322
10322
  self.AutoOrderControls = self._AutoOrderControls(self, "AutoOrderControls", service, rules, path)
10323
10323
 
10324
- class _ShowGlobalThinVolumePreferences(PyParameterCommandArgumentsSubItem):
10324
+ class _MinAspectRatio(PyNumericalCommandArgumentsSubItem):
10325
10325
  """
10326
- Display global settings for thin volume meshing.
10326
+ Controls the minimum aspect ratio for cells at the boundary of the thin volume mesh regions. By default, this option is set to 0.3, other than for Stacked Plates, where it is set to 0.1. For flat parallel plates (not including stacked plates), it is recommended to use a value of 0.1 to produce a high quality thin volume mesh.
10327
10327
  """
10328
10328
 
10329
- class _MinAspectRatio(PyNumericalCommandArgumentsSubItem):
10329
+ class _ShowGlobalThinVolumePreferences(PyParameterCommandArgumentsSubItem):
10330
10330
  """
10331
- Controls the minimum aspect ratio for cells at the boundary of the thin volume mesh regions. By default, this option is set to 0.3, other than for Stacked Plates, where it is set to 0.1. For flat parallel plates (not including stacked plates), it is recommended to use a value of 0.1 to produce a high quality thin volume mesh.
10331
+ Display global settings for thin volume meshing.
10332
10332
  """
10333
10333
 
10334
10334
  class _StairStep(PyTextualCommandArgumentsSubItem):
@@ -10488,8 +10488,8 @@ class Root(PyMenu):
10488
10488
  self.SaveSizeFieldFile = self._SaveSizeFieldFile(self, "SaveSizeFieldFile", service, rules, path)
10489
10489
  self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
10490
10490
  self.ScopeProximityTo = self._ScopeProximityTo(self, "ScopeProximityTo", service, rules, path)
10491
- self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
10492
10491
  self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
10492
+ self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
10493
10493
  self.SaveSizeField = self._SaveSizeField(self, "SaveSizeField", service, rules, path)
10494
10494
  self.UseSizeFiles = self._UseSizeFiles(self, "UseSizeFiles", service, rules, path)
10495
10495
  self.AutoCreateScopedSizing = self._AutoCreateScopedSizing(self, "AutoCreateScopedSizing", service, rules, path)
@@ -10519,14 +10519,14 @@ class Root(PyMenu):
10519
10519
  Argument ScopeProximityTo.
10520
10520
  """
10521
10521
 
10522
- class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
10522
+ class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
10523
10523
  """
10524
- Argument PreviewSizefield.
10524
+ Argument CurvatureNormalAngle.
10525
10525
  """
10526
10526
 
10527
- class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
10527
+ class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
10528
10528
  """
10529
- Argument CurvatureNormalAngle.
10529
+ Argument PreviewSizefield.
10530
10530
  """
10531
10531
 
10532
10532
  class _SaveSizeField(PyParameterCommandArgumentsSubItem):
@@ -11012,8 +11012,8 @@ class Root(PyMenu):
11012
11012
  self.Y2 = self._Y2(self, "Y2", service, rules, path)
11013
11013
  self.Node3 = self._Node3(self, "Node3", service, rules, path)
11014
11014
  self.X2 = self._X2(self, "X2", service, rules, path)
11015
- self.Node2 = self._Node2(self, "Node2", service, rules, path)
11016
11015
  self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
11016
+ self.Node2 = self._Node2(self, "Node2", service, rules, path)
11017
11017
  self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
11018
11018
  self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
11019
11019
 
@@ -11082,14 +11082,14 @@ class Root(PyMenu):
11082
11082
  Argument X2.
11083
11083
  """
11084
11084
 
11085
- class _Node2(PyTextualCommandArgumentsSubItem):
11085
+ class _Y_Offset(PyNumericalCommandArgumentsSubItem):
11086
11086
  """
11087
- Argument Node2.
11087
+ Argument Y-Offset.
11088
11088
  """
11089
11089
 
11090
- class _Y_Offset(PyNumericalCommandArgumentsSubItem):
11090
+ class _Node2(PyTextualCommandArgumentsSubItem):
11091
11091
  """
11092
- Argument Y-Offset.
11092
+ Argument Node2.
11093
11093
  """
11094
11094
 
11095
11095
  class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
@@ -11115,7 +11115,7 @@ class Root(PyMenu):
11115
11115
  def __init__(self, parent, attr, service, rules, path):
11116
11116
  super().__init__(parent, attr, service, rules, path)
11117
11117
  self.SizeRelativeLength = self._SizeRelativeLength(self, "SizeRelativeLength", service, rules, path)
11118
- self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
11118
+ self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
11119
11119
  self.XminRatio = self._XminRatio(self, "XminRatio", service, rules, path)
11120
11120
  self.YminRatio = self._YminRatio(self, "YminRatio", service, rules, path)
11121
11121
  self.Zmin = self._Zmin(self, "Zmin", service, rules, path)
@@ -11126,16 +11126,16 @@ class Root(PyMenu):
11126
11126
  self.Xmin = self._Xmin(self, "Xmin", service, rules, path)
11127
11127
  self.YmaxRatio = self._YmaxRatio(self, "YmaxRatio", service, rules, path)
11128
11128
  self.ZmaxRatio = self._ZmaxRatio(self, "ZmaxRatio", service, rules, path)
11129
- self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
11129
+ self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
11130
11130
 
11131
11131
  class _SizeRelativeLength(PyTextualCommandArgumentsSubItem):
11132
11132
  """
11133
11133
  Determine if you would like to specify the bounding box for the construction surface as a ratio of the geometry length, or by specifying a specific location for the minimum and maximum coordinates.
11134
11134
  """
11135
11135
 
11136
- class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
11136
+ class _Xmax(PyNumericalCommandArgumentsSubItem):
11137
11137
  """
11138
- Extends the maximum size of the bounding box in the X direction by the specified value. The value is the ratio relative to the geometry size in the X direction.
11138
+ Extends the maximum size of the bounding box in the X direction by the specified value.
11139
11139
  """
11140
11140
 
11141
11141
  class _XminRatio(PyNumericalCommandArgumentsSubItem):
@@ -11188,9 +11188,9 @@ class Root(PyMenu):
11188
11188
  Extends the maximum size of the bounding box in the Z direction by the specified value. The value is the ratio relative to the geometry size in the Z direction.
11189
11189
  """
11190
11190
 
11191
- class _Xmax(PyNumericalCommandArgumentsSubItem):
11191
+ class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
11192
11192
  """
11193
- Extends the maximum size of the bounding box in the X direction by the specified value.
11193
+ Extends the maximum size of the bounding box in the X direction by the specified value. The value is the ratio relative to the geometry size in the X direction.
11194
11194
  """
11195
11195
 
11196
11196
  def create_instance(self) -> _IdentifyConstructionSurfacesCommandArguments:
@@ -11623,9 +11623,9 @@ class Root(PyMenu):
11623
11623
  self.OneZonePer = self._OneZonePer(self, "OneZonePer", service, rules, path)
11624
11624
  self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
11625
11625
  self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
11626
- self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
11627
- self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
11628
11626
  self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
11627
+ self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
11628
+ self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
11629
11629
 
11630
11630
  class _SavePMDBIntermediateFile(PyParameterCommandArgumentsSubItem):
11631
11631
  """
@@ -11667,9 +11667,9 @@ class Root(PyMenu):
11667
11667
  Argument ImportNamedSelections.
11668
11668
  """
11669
11669
 
11670
- class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
11670
+ class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
11671
11671
  """
11672
- Argument ImportCurvatureDataFromCAD.
11672
+ Argument ExtractFeatures.
11673
11673
  """
11674
11674
 
11675
11675
  class _ImportPartNames(PyParameterCommandArgumentsSubItem):
@@ -11677,9 +11677,9 @@ class Root(PyMenu):
11677
11677
  Argument ImportPartNames.
11678
11678
  """
11679
11679
 
11680
- class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
11680
+ class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
11681
11681
  """
11682
- Argument ExtractFeatures.
11682
+ Argument ImportCurvatureDataFromCAD.
11683
11683
  """
11684
11684
 
11685
11685
  def create_instance(self) -> _ImportBodyOfInfluenceGeometryCommandArguments:
@@ -11884,11 +11884,11 @@ class Root(PyMenu):
11884
11884
  self.CreateCADAssemblies = self._CreateCADAssemblies(self, "CreateCADAssemblies", service, rules, path)
11885
11885
  self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
11886
11886
  self.OneZonePer = self._OneZonePer(self, "OneZonePer", service, rules, path)
11887
- self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
11888
- self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
11889
11887
  self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
11890
- self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
11891
11888
  self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
11889
+ self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
11890
+ self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
11891
+ self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
11892
11892
 
11893
11893
  class _SavePMDBIntermediateFile(PyParameterCommandArgumentsSubItem):
11894
11894
  """
@@ -11920,19 +11920,19 @@ class Root(PyMenu):
11920
11920
  Argument OneZonePer.
11921
11921
  """
11922
11922
 
11923
- class _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
11923
+ class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
11924
11924
  """
11925
- Argument UsePartOrBodyAsSuffix.
11925
+ Argument ImportCurvatureDataFromCAD.
11926
11926
  """
11927
11927
 
11928
- class _ImportNamedSelections(PyParameterCommandArgumentsSubItem):
11928
+ class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
11929
11929
  """
11930
- Argument ImportNamedSelections.
11930
+ Argument ExtractFeatures.
11931
11931
  """
11932
11932
 
11933
- class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
11933
+ class _ImportNamedSelections(PyParameterCommandArgumentsSubItem):
11934
11934
  """
11935
- Argument ImportCurvatureDataFromCAD.
11935
+ Argument ImportNamedSelections.
11936
11936
  """
11937
11937
 
11938
11938
  class _ImportPartNames(PyParameterCommandArgumentsSubItem):
@@ -11940,9 +11940,9 @@ class Root(PyMenu):
11940
11940
  Argument ImportPartNames.
11941
11941
  """
11942
11942
 
11943
- class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
11943
+ class _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
11944
11944
  """
11945
- Argument ExtractFeatures.
11945
+ Argument UsePartOrBodyAsSuffix.
11946
11946
  """
11947
11947
 
11948
11948
  def create_instance(self) -> _ImportGeometryCommandArguments:
@@ -12378,9 +12378,9 @@ class Root(PyMenu):
12378
12378
  super().__init__(parent, attr, service, rules, path)
12379
12379
  self.FacetMaxEdgeLength = self._FacetMaxEdgeLength(self, "FacetMaxEdgeLength", service, rules, path)
12380
12380
  self.FacetResolution = self._FacetResolution(self, "FacetResolution", service, rules, path)
12381
- self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
12382
- self.MaxEdgeLengthFactor = self._MaxEdgeLengthFactor(self, "MaxEdgeLengthFactor", service, rules, path)
12383
12381
  self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
12382
+ self.MaxEdgeLengthFactor = self._MaxEdgeLengthFactor(self, "MaxEdgeLengthFactor", service, rules, path)
12383
+ self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
12384
12384
  self.MaxEdgeLength = self._MaxEdgeLength(self, "MaxEdgeLength", service, rules, path)
12385
12385
  self.CustomNormalAngle = self._CustomNormalAngle(self, "CustomNormalAngle", service, rules, path)
12386
12386
  self.CustomDeviation = self._CustomDeviation(self, "CustomDeviation", service, rules, path)
@@ -12396,9 +12396,9 @@ class Root(PyMenu):
12396
12396
  Argument FacetResolution.
12397
12397
  """
12398
12398
 
12399
- class _NormalAngle(PyNumericalCommandArgumentsSubItem):
12399
+ class _Deviation(PyNumericalCommandArgumentsSubItem):
12400
12400
  """
12401
- Argument NormalAngle.
12401
+ Argument Deviation.
12402
12402
  """
12403
12403
 
12404
12404
  class _MaxEdgeLengthFactor(PyNumericalCommandArgumentsSubItem):
@@ -12406,9 +12406,9 @@ class Root(PyMenu):
12406
12406
  Argument MaxEdgeLengthFactor.
12407
12407
  """
12408
12408
 
12409
- class _Deviation(PyNumericalCommandArgumentsSubItem):
12409
+ class _NormalAngle(PyNumericalCommandArgumentsSubItem):
12410
12410
  """
12411
- Argument Deviation.
12411
+ Argument NormalAngle.
12412
12412
  """
12413
12413
 
12414
12414
  class _MaxEdgeLength(PyNumericalCommandArgumentsSubItem):
@@ -12535,9 +12535,9 @@ class Root(PyMenu):
12535
12535
  self.MinSize = self._MinSize(self, "MinSize", service, rules, path)
12536
12536
  self.WrapMax = self._WrapMax(self, "WrapMax", service, rules, path)
12537
12537
  self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
12538
- self.SizingType = self._SizingType(self, "SizingType", service, rules, path)
12539
12538
  self.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", service, rules, path)
12540
12539
  self.InitialSizeControl = self._InitialSizeControl(self, "InitialSizeControl", service, rules, path)
12540
+ self.SizingType = self._SizingType(self, "SizingType", service, rules, path)
12541
12541
  self.CellsPerGap = self._CellsPerGap(self, "CellsPerGap", service, rules, path)
12542
12542
  self.WrapCurvatureNormalAngle = self._WrapCurvatureNormalAngle(self, "WrapCurvatureNormalAngle", service, rules, path)
12543
12543
  self.TargetSizeControl = self._TargetSizeControl(self, "TargetSizeControl", service, rules, path)
@@ -12588,11 +12588,6 @@ class Root(PyMenu):
12588
12588
  Display advanced wrap-specific options that are also applied to the task. See this description for more information about wrap (and target) mesh size controls.
12589
12589
  """
12590
12590
 
12591
- class _SizingType(PyTextualCommandArgumentsSubItem):
12592
- """
12593
- Choose the type of sizing control (curvature, proximity, soft, or boi).
12594
- """
12595
-
12596
12591
  class _WrapGrowthRate(PyNumericalCommandArgumentsSubItem):
12597
12592
  """
12598
12593
  Specify the increase in element edge length with each succeeding layer of elements.
@@ -12603,6 +12598,11 @@ class Root(PyMenu):
12603
12598
  Enable this field to display the initial size control in the graphics window.
12604
12599
  """
12605
12600
 
12601
+ class _SizingType(PyTextualCommandArgumentsSubItem):
12602
+ """
12603
+ Choose the type of sizing control (curvature, proximity, soft, or boi).
12604
+ """
12605
+
12606
12606
  class _CellsPerGap(PyNumericalCommandArgumentsSubItem):
12607
12607
  """
12608
12608
  Specify the minimum number of layers of elements to be generated in the gaps. The number of cells per gap can be a real value, with a minimum value of 0.01.
@@ -12994,8 +12994,8 @@ class Root(PyMenu):
12994
12994
  self.SaveSizeFieldFile = self._SaveSizeFieldFile(self, "SaveSizeFieldFile", service, rules, path)
12995
12995
  self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
12996
12996
  self.ScopeProximityTo = self._ScopeProximityTo(self, "ScopeProximityTo", service, rules, path)
12997
- self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
12998
12997
  self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
12998
+ self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
12999
12999
  self.SaveSizeField = self._SaveSizeField(self, "SaveSizeField", service, rules, path)
13000
13000
  self.UseSizeFiles = self._UseSizeFiles(self, "UseSizeFiles", service, rules, path)
13001
13001
  self.AutoCreateScopedSizing = self._AutoCreateScopedSizing(self, "AutoCreateScopedSizing", service, rules, path)
@@ -13025,14 +13025,14 @@ class Root(PyMenu):
13025
13025
  Argument ScopeProximityTo.
13026
13026
  """
13027
13027
 
13028
- class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
13028
+ class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
13029
13029
  """
13030
- Argument CurvatureNormalAngle.
13030
+ Argument PreviewSizefield.
13031
13031
  """
13032
13032
 
13033
- class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
13033
+ class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
13034
13034
  """
13035
- Argument PreviewSizefield.
13035
+ Argument CurvatureNormalAngle.
13036
13036
  """
13037
13037
 
13038
13038
  class _SaveSizeField(PyParameterCommandArgumentsSubItem):
@@ -14020,10 +14020,10 @@ class Root(PyMenu):
14020
14020
  self.ConnectLabelWildcard = self._ConnectLabelWildcard(self, "ConnectLabelWildcard", service, rules, path)
14021
14021
  self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
14022
14022
  self.RelativeShareTopologyTolerance = self._RelativeShareTopologyTolerance(self, "RelativeShareTopologyTolerance", service, rules, path)
14023
- self.ShareTopologyAngle = self._ShareTopologyAngle(self, "ShareTopologyAngle", service, rules, path)
14023
+ self.FluidLabelWildcard = self._FluidLabelWildcard(self, "FluidLabelWildcard", service, rules, path)
14024
14024
  self.ExecuteJoinIntersect = self._ExecuteJoinIntersect(self, "ExecuteJoinIntersect", service, rules, path)
14025
14025
  self.Operation = self._Operation(self, "Operation", service, rules, path)
14026
- self.FluidLabelWildcard = self._FluidLabelWildcard(self, "FluidLabelWildcard", service, rules, path)
14026
+ self.ShareTopologyAngle = self._ShareTopologyAngle(self, "ShareTopologyAngle", service, rules, path)
14027
14027
  self.STToleranceIncrement = self._STToleranceIncrement(self, "STToleranceIncrement", service, rules, path)
14028
14028
  self.IntfLabelList = self._IntfLabelList(self, "IntfLabelList", service, rules, path)
14029
14029
  self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
@@ -14056,9 +14056,9 @@ class Root(PyMenu):
14056
14056
  Specify the relative tolerance for joining or intersecting face pairs, or the relative tolerance for connecting edge and face pairs.
14057
14057
  """
14058
14058
 
14059
- class _ShareTopologyAngle(PyNumericalCommandArgumentsSubItem):
14059
+ class _FluidLabelWildcard(PyTextualCommandArgumentsSubItem):
14060
14060
  """
14061
- Specify the threshold angle for joining face pairs.
14061
+ Argument FluidLabelWildcard.
14062
14062
  """
14063
14063
 
14064
14064
  class _ExecuteJoinIntersect(PyTextualCommandArgumentsSubItem):
@@ -14071,9 +14071,9 @@ class Root(PyMenu):
14071
14071
  Choose whether to apply share topology using the Join-Intersect method where you join and/or intersect the problematic faces, or using the Interface Connect method where you connect edges of overlapping face pairs. Note that imprinting of overlapping faces in SCDM/Discovery is highly recommended for the Interface Connect method.
14072
14072
  """
14073
14073
 
14074
- class _FluidLabelWildcard(PyTextualCommandArgumentsSubItem):
14074
+ class _ShareTopologyAngle(PyNumericalCommandArgumentsSubItem):
14075
14075
  """
14076
- Argument FluidLabelWildcard.
14076
+ Specify the threshold angle for joining face pairs.
14077
14077
  """
14078
14078
 
14079
14079
  class _STToleranceIncrement(PyNumericalCommandArgumentsSubItem):
@@ -14118,10 +14118,10 @@ class Root(PyMenu):
14118
14118
  self.SIQualityIterations = self._SIQualityIterations(self, "SIQualityIterations", service, rules, path)
14119
14119
  self.SIQualityMaxAngle = self._SIQualityMaxAngle(self, "SIQualityMaxAngle", service, rules, path)
14120
14120
  self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
14121
- self.ShowSMImprovePreferences = self._ShowSMImprovePreferences(self, "ShowSMImprovePreferences", service, rules, path)
14121
+ self.SIRemoveStep = self._SIRemoveStep(self, "SIRemoveStep", service, rules, path)
14122
14122
  self.AdvancedImprove = self._AdvancedImprove(self, "AdvancedImprove", service, rules, path)
14123
14123
  self.SIStepWidth = self._SIStepWidth(self, "SIStepWidth", service, rules, path)
14124
- self.SIRemoveStep = self._SIRemoveStep(self, "SIRemoveStep", service, rules, path)
14124
+ self.ShowSMImprovePreferences = self._ShowSMImprovePreferences(self, "ShowSMImprovePreferences", service, rules, path)
14125
14125
 
14126
14126
  class _SIStepQualityLimit(PyNumericalCommandArgumentsSubItem):
14127
14127
  """
@@ -14148,9 +14148,9 @@ class Root(PyMenu):
14148
14148
  Argument AllowDefeaturing.
14149
14149
  """
14150
14150
 
14151
- class _ShowSMImprovePreferences(PyParameterCommandArgumentsSubItem):
14151
+ class _SIRemoveStep(PyTextualCommandArgumentsSubItem):
14152
14152
  """
14153
- Argument ShowSMImprovePreferences.
14153
+ Argument SIRemoveStep.
14154
14154
  """
14155
14155
 
14156
14156
  class _AdvancedImprove(PyTextualCommandArgumentsSubItem):
@@ -14163,9 +14163,9 @@ class Root(PyMenu):
14163
14163
  Argument SIStepWidth.
14164
14164
  """
14165
14165
 
14166
- class _SIRemoveStep(PyTextualCommandArgumentsSubItem):
14166
+ class _ShowSMImprovePreferences(PyParameterCommandArgumentsSubItem):
14167
14167
  """
14168
- Argument SIRemoveStep.
14168
+ Argument ShowSMImprovePreferences.
14169
14169
  """
14170
14170
 
14171
14171
  class _SurfaceMeshPreferences(PySingletonCommandArgumentsSubItem):
@@ -14178,19 +14178,19 @@ class Root(PyMenu):
14178
14178
  self.SMQualityCollapseLimit = self._SMQualityCollapseLimit(self, "SMQualityCollapseLimit", service, rules, path)
14179
14179
  self.AutoMerge = self._AutoMerge(self, "AutoMerge", service, rules, path)
14180
14180
  self.SMSeparation = self._SMSeparation(self, "SMSeparation", service, rules, path)
14181
+ self.SMSeparationAngle = self._SMSeparationAngle(self, "SMSeparationAngle", service, rules, path)
14181
14182
  self.ShowSurfaceMeshPreferences = self._ShowSurfaceMeshPreferences(self, "ShowSurfaceMeshPreferences", service, rules, path)
14182
- self.SMQualityImprove = self._SMQualityImprove(self, "SMQualityImprove", service, rules, path)
14183
14183
  self.FoldFaceLimit = self._FoldFaceLimit(self, "FoldFaceLimit", service, rules, path)
14184
14184
  self.TVMAutoControlCreation = self._TVMAutoControlCreation(self, "TVMAutoControlCreation", service, rules, path)
14185
- self.SMSeparationAngle = self._SMSeparationAngle(self, "SMSeparationAngle", service, rules, path)
14185
+ self.SMQualityImprove = self._SMQualityImprove(self, "SMQualityImprove", service, rules, path)
14186
14186
  self.SMRemoveStep = self._SMRemoveStep(self, "SMRemoveStep", service, rules, path)
14187
14187
  self.SMStepWidth = self._SMStepWidth(self, "SMStepWidth", service, rules, path)
14188
- self.VolumeMeshMaxSize = self._VolumeMeshMaxSize(self, "VolumeMeshMaxSize", service, rules, path)
14189
- self.AutoAssignZoneTypes = self._AutoAssignZoneTypes(self, "AutoAssignZoneTypes", service, rules, path)
14190
14188
  self.SMQualityMaxAngle = self._SMQualityMaxAngle(self, "SMQualityMaxAngle", service, rules, path)
14191
- self.SMQualityImproveLimit = self._SMQualityImproveLimit(self, "SMQualityImproveLimit", service, rules, path)
14192
- self.AutoSurfaceRemesh = self._AutoSurfaceRemesh(self, "AutoSurfaceRemesh", service, rules, path)
14189
+ self.AutoAssignZoneTypes = self._AutoAssignZoneTypes(self, "AutoAssignZoneTypes", service, rules, path)
14190
+ self.VolumeMeshMaxSize = self._VolumeMeshMaxSize(self, "VolumeMeshMaxSize", service, rules, path)
14193
14191
  self.SelfIntersectCheck = self._SelfIntersectCheck(self, "SelfIntersectCheck", service, rules, path)
14192
+ self.AutoSurfaceRemesh = self._AutoSurfaceRemesh(self, "AutoSurfaceRemesh", service, rules, path)
14193
+ self.SMQualityImproveLimit = self._SMQualityImproveLimit(self, "SMQualityImproveLimit", service, rules, path)
14194
14194
  self.SetVolumeMeshMaxSize = self._SetVolumeMeshMaxSize(self, "SetVolumeMeshMaxSize", service, rules, path)
14195
14195
 
14196
14196
  class _SMQualityCollapseLimit(PyNumericalCommandArgumentsSubItem):
@@ -14208,14 +14208,14 @@ class Root(PyMenu):
14208
14208
  Argument SMSeparation.
14209
14209
  """
14210
14210
 
14211
- class _ShowSurfaceMeshPreferences(PyParameterCommandArgumentsSubItem):
14211
+ class _SMSeparationAngle(PyNumericalCommandArgumentsSubItem):
14212
14212
  """
14213
- Argument ShowSurfaceMeshPreferences.
14213
+ Argument SMSeparationAngle.
14214
14214
  """
14215
14215
 
14216
- class _SMQualityImprove(PyTextualCommandArgumentsSubItem):
14216
+ class _ShowSurfaceMeshPreferences(PyParameterCommandArgumentsSubItem):
14217
14217
  """
14218
- Argument SMQualityImprove.
14218
+ Argument ShowSurfaceMeshPreferences.
14219
14219
  """
14220
14220
 
14221
14221
  class _FoldFaceLimit(PyNumericalCommandArgumentsSubItem):
@@ -14228,9 +14228,9 @@ class Root(PyMenu):
14228
14228
  Argument TVMAutoControlCreation.
14229
14229
  """
14230
14230
 
14231
- class _SMSeparationAngle(PyNumericalCommandArgumentsSubItem):
14231
+ class _SMQualityImprove(PyTextualCommandArgumentsSubItem):
14232
14232
  """
14233
- Argument SMSeparationAngle.
14233
+ Argument SMQualityImprove.
14234
14234
  """
14235
14235
 
14236
14236
  class _SMRemoveStep(PyTextualCommandArgumentsSubItem):
@@ -14243,9 +14243,9 @@ class Root(PyMenu):
14243
14243
  Argument SMStepWidth.
14244
14244
  """
14245
14245
 
14246
- class _VolumeMeshMaxSize(PyNumericalCommandArgumentsSubItem):
14246
+ class _SMQualityMaxAngle(PyNumericalCommandArgumentsSubItem):
14247
14247
  """
14248
- Argument VolumeMeshMaxSize.
14248
+ Argument SMQualityMaxAngle.
14249
14249
  """
14250
14250
 
14251
14251
  class _AutoAssignZoneTypes(PyTextualCommandArgumentsSubItem):
@@ -14253,14 +14253,14 @@ class Root(PyMenu):
14253
14253
  Argument AutoAssignZoneTypes.
14254
14254
  """
14255
14255
 
14256
- class _SMQualityMaxAngle(PyNumericalCommandArgumentsSubItem):
14256
+ class _VolumeMeshMaxSize(PyNumericalCommandArgumentsSubItem):
14257
14257
  """
14258
- Argument SMQualityMaxAngle.
14258
+ Argument VolumeMeshMaxSize.
14259
14259
  """
14260
14260
 
14261
- class _SMQualityImproveLimit(PyNumericalCommandArgumentsSubItem):
14261
+ class _SelfIntersectCheck(PyTextualCommandArgumentsSubItem):
14262
14262
  """
14263
- Argument SMQualityImproveLimit.
14263
+ Argument SelfIntersectCheck.
14264
14264
  """
14265
14265
 
14266
14266
  class _AutoSurfaceRemesh(PyTextualCommandArgumentsSubItem):
@@ -14268,9 +14268,9 @@ class Root(PyMenu):
14268
14268
  Argument AutoSurfaceRemesh.
14269
14269
  """
14270
14270
 
14271
- class _SelfIntersectCheck(PyTextualCommandArgumentsSubItem):
14271
+ class _SMQualityImproveLimit(PyNumericalCommandArgumentsSubItem):
14272
14272
  """
14273
- Argument SelfIntersectCheck.
14273
+ Argument SMQualityImproveLimit.
14274
14274
  """
14275
14275
 
14276
14276
  class _SetVolumeMeshMaxSize(PyTextualCommandArgumentsSubItem):
@@ -14360,10 +14360,10 @@ class Root(PyMenu):
14360
14360
  def __init__(self, parent, attr, service, rules, path):
14361
14361
  super().__init__(parent, attr, service, rules, path)
14362
14362
  self.NewLabelObjects = self._NewLabelObjects(self, "NewLabelObjects", service, rules, path)
14363
- self.NewLabels = self._NewLabels(self, "NewLabels", service, rules, path)
14364
- self.NewLabelType = self._NewLabelType(self, "NewLabelType", service, rules, path)
14365
14363
  self.NewLabelResolution = self._NewLabelResolution(self, "NewLabelResolution", service, rules, path)
14364
+ self.NewLabelType = self._NewLabelType(self, "NewLabelType", service, rules, path)
14366
14365
  self.NewLabelCells = self._NewLabelCells(self, "NewLabelCells", service, rules, path)
14366
+ self.NewLabels = self._NewLabels(self, "NewLabels", service, rules, path)
14367
14367
  self.NewLabelMax = self._NewLabelMax(self, "NewLabelMax", service, rules, path)
14368
14368
  self.NewZoneType = self._NewZoneType(self, "NewZoneType", service, rules, path)
14369
14369
  self.NewLabelCurvature = self._NewLabelCurvature(self, "NewLabelCurvature", service, rules, path)
@@ -14374,9 +14374,9 @@ class Root(PyMenu):
14374
14374
  Argument NewLabelObjects.
14375
14375
  """
14376
14376
 
14377
- class _NewLabels(PyTextualCommandArgumentsSubItem):
14377
+ class _NewLabelResolution(PyTextualCommandArgumentsSubItem):
14378
14378
  """
14379
- Argument NewLabels.
14379
+ Argument NewLabelResolution.
14380
14380
  """
14381
14381
 
14382
14382
  class _NewLabelType(PyTextualCommandArgumentsSubItem):
@@ -14384,14 +14384,14 @@ class Root(PyMenu):
14384
14384
  Argument NewLabelType.
14385
14385
  """
14386
14386
 
14387
- class _NewLabelResolution(PyTextualCommandArgumentsSubItem):
14387
+ class _NewLabelCells(PyTextualCommandArgumentsSubItem):
14388
14388
  """
14389
- Argument NewLabelResolution.
14389
+ Argument NewLabelCells.
14390
14390
  """
14391
14391
 
14392
- class _NewLabelCells(PyTextualCommandArgumentsSubItem):
14392
+ class _NewLabels(PyTextualCommandArgumentsSubItem):
14393
14393
  """
14394
- Argument NewLabelCells.
14394
+ Argument NewLabels.
14395
14395
  """
14396
14396
 
14397
14397
  class _NewLabelMax(PyTextualCommandArgumentsSubItem):