ansys-fluent-core 0.34.0__py3-none-any.whl → 0.34.1__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 (31) hide show
  1. ansys/fluent/core/__init__.py +2 -2
  2. ansys/fluent/core/file_session.py +28 -2
  3. ansys/fluent/core/generated/api_tree/api_objects.json +1 -1
  4. ansys/fluent/core/generated/datamodel_231/flicing.py +35 -35
  5. ansys/fluent/core/generated/datamodel_231/meshing.py +182 -182
  6. ansys/fluent/core/generated/datamodel_232/flicing.py +35 -35
  7. ansys/fluent/core/generated/datamodel_232/meshing.py +201 -201
  8. ansys/fluent/core/generated/datamodel_241/flicing.py +45 -45
  9. ansys/fluent/core/generated/datamodel_241/meshing.py +298 -298
  10. ansys/fluent/core/generated/datamodel_242/flicing.py +45 -45
  11. ansys/fluent/core/generated/datamodel_242/meshing.py +334 -334
  12. ansys/fluent/core/generated/datamodel_242/part_management.py +6 -6
  13. ansys/fluent/core/generated/datamodel_251/flicing.py +50 -50
  14. ansys/fluent/core/generated/datamodel_251/meshing.py +340 -340
  15. ansys/fluent/core/generated/datamodel_251/part_management.py +6 -6
  16. ansys/fluent/core/generated/datamodel_252/flicing.py +35 -35
  17. ansys/fluent/core/generated/datamodel_252/meshing.py +402 -402
  18. ansys/fluent/core/generated/datamodel_252/part_management.py +10 -10
  19. ansys/fluent/core/generated/datamodel_261/flicing.py +45 -45
  20. ansys/fluent/core/generated/datamodel_261/meshing.py +377 -377
  21. ansys/fluent/core/generated/datamodel_261/meshing_utilities.py +296 -616
  22. ansys/fluent/core/generated/datamodel_261/part_management.py +10 -10
  23. ansys/fluent/core/generated/fluent_version_261.py +3 -3
  24. ansys/fluent/core/generated/solver/settings_261.py +3023 -2378
  25. ansys/fluent/core/generated/solver/settings_261.pyi +1456 -1537
  26. ansys/fluent/core/generated/solver/tui_261.py +1436 -599
  27. ansys/fluent/core/services/field_data.py +27 -8
  28. {ansys_fluent_core-0.34.0.dist-info → ansys_fluent_core-0.34.1.dist-info}/METADATA +1 -1
  29. {ansys_fluent_core-0.34.0.dist-info → ansys_fluent_core-0.34.1.dist-info}/RECORD +31 -31
  30. {ansys_fluent_core-0.34.0.dist-info → ansys_fluent_core-0.34.1.dist-info}/LICENSE +0 -0
  31. {ansys_fluent_core-0.34.0.dist-info → ansys_fluent_core-0.34.1.dist-info}/WHEEL +0 -0
@@ -1302,10 +1302,10 @@ 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.FluidLabelWildcard = self._FluidLabelWildcard(self, "FluidLabelWildcard", service, rules, path)
1305
+ self.ShareTopologyAngle = self._ShareTopologyAngle(self, "ShareTopologyAngle", 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.ShareTopologyAngle = self._ShareTopologyAngle(self, "ShareTopologyAngle", service, rules, path)
1308
+ self.FluidLabelWildcard = self._FluidLabelWildcard(self, "FluidLabelWildcard", service, rules, path)
1309
1309
  self.STToleranceIncrement = self._STToleranceIncrement(self, "STToleranceIncrement", service, rules, path)
1310
1310
  self.ShowShareTopologyPreferences = self._ShowShareTopologyPreferences(self, "ShowShareTopologyPreferences", service, rules, path)
1311
1311
  self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
@@ -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 _FluidLabelWildcard(PyTextualCommandArgumentsSubItem):
1341
+ class _ShareTopologyAngle(PyNumericalCommandArgumentsSubItem):
1342
1342
  """
1343
- Argument FluidLabelWildcard.
1343
+ Specify the threshold angle for joining face pairs.
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 _ShareTopologyAngle(PyNumericalCommandArgumentsSubItem):
1356
+ class _FluidLabelWildcard(PyTextualCommandArgumentsSubItem):
1357
1357
  """
1358
- Specify the threshold angle for joining face pairs.
1358
+ Argument FluidLabelWildcard.
1359
1359
  """
1360
1360
 
1361
1361
  class _STToleranceIncrement(PyNumericalCommandArgumentsSubItem):
@@ -1522,8 +1522,8 @@ class Root(PyMenu):
1522
1522
 
1523
1523
  def __init__(self, parent, attr, service, rules, path):
1524
1524
  super().__init__(parent, attr, service, rules, path)
1525
- self.ShowShellBLAdvancedOptions = self._ShowShellBLAdvancedOptions(self, "ShowShellBLAdvancedOptions", service, rules, path)
1526
1525
  self.ExposeSide = self._ExposeSide(self, "ExposeSide", service, rules, path)
1526
+ self.ShowShellBLAdvancedOptions = self._ShowShellBLAdvancedOptions(self, "ShowShellBLAdvancedOptions", 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
1529
  self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
@@ -1531,14 +1531,14 @@ class Root(PyMenu):
1531
1531
  self.GapFactor = self._GapFactor(self, "GapFactor", service, rules, path)
1532
1532
  self.AdjacentAttachAngle = self._AdjacentAttachAngle(self, "AdjacentAttachAngle", service, rules, path)
1533
1533
 
1534
- class _ShowShellBLAdvancedOptions(PyParameterCommandArgumentsSubItem):
1534
+ class _ExposeSide(PyTextualCommandArgumentsSubItem):
1535
1535
  """
1536
- Argument ShowShellBLAdvancedOptions.
1536
+ Argument ExposeSide.
1537
1537
  """
1538
1538
 
1539
- class _ExposeSide(PyTextualCommandArgumentsSubItem):
1539
+ class _ShowShellBLAdvancedOptions(PyParameterCommandArgumentsSubItem):
1540
1540
  """
1541
- Argument ExposeSide.
1541
+ Argument ShowShellBLAdvancedOptions.
1542
1542
  """
1543
1543
 
1544
1544
  class _MaxAspectRatio(PyNumericalCommandArgumentsSubItem):
@@ -1769,11 +1769,11 @@ class Root(PyMenu):
1769
1769
  self.SphereRadiusFactorAtInvalidNormals = self._SphereRadiusFactorAtInvalidNormals(self, "SphereRadiusFactorAtInvalidNormals", service, rules, path)
1770
1770
  self.SmoothRingsAtInvalidNormals = self._SmoothRingsAtInvalidNormals(self, "SmoothRingsAtInvalidNormals", service, rules, path)
1771
1771
  self.Continuous = self._Continuous(self, "Continuous", service, rules, path)
1772
- self.SplitPrism = self._SplitPrism(self, "SplitPrism", service, rules, path)
1773
1772
  self.ModifyAtInvalidNormals = self._ModifyAtInvalidNormals(self, "ModifyAtInvalidNormals", service, rules, path)
1773
+ self.SplitPrism = self._SplitPrism(self, "SplitPrism", service, rules, path)
1774
1774
  self.InvalidNormalMethod = self._InvalidNormalMethod(self, "InvalidNormalMethod", service, rules, path)
1775
- self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
1776
1775
  self.ShowLocalPrismPreferences = self._ShowLocalPrismPreferences(self, "ShowLocalPrismPreferences", service, rules, path)
1776
+ self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
1777
1777
  self.NumberOfSplitLayers = self._NumberOfSplitLayers(self, "NumberOfSplitLayers", 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)
@@ -1804,14 +1804,14 @@ class Root(PyMenu):
1804
1804
  Specify how you would like to improve the generated boundary layer: as a continuous or stair-stepped boundary layer in the specified area(s).
1805
1805
  """
1806
1806
 
1807
- class _SplitPrism(PyTextualCommandArgumentsSubItem):
1807
+ class _ModifyAtInvalidNormals(PyTextualCommandArgumentsSubItem):
1808
1808
  """
1809
- 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.
1809
+ 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...
1810
1810
  """
1811
1811
 
1812
- class _ModifyAtInvalidNormals(PyTextualCommandArgumentsSubItem):
1812
+ class _SplitPrism(PyTextualCommandArgumentsSubItem):
1813
1813
  """
1814
- 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...
1814
+ 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.
1815
1815
  """
1816
1816
 
1817
1817
  class _InvalidNormalMethod(PyTextualCommandArgumentsSubItem):
@@ -1819,14 +1819,14 @@ class Root(PyMenu):
1819
1819
  Argument InvalidNormalMethod.
1820
1820
  """
1821
1821
 
1822
- class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
1822
+ class _ShowLocalPrismPreferences(PyParameterCommandArgumentsSubItem):
1823
1823
  """
1824
- Argument LastRatioNumLayers.
1824
+ Display advanced options that you may want to apply to this task.
1825
1825
  """
1826
1826
 
1827
- class _ShowLocalPrismPreferences(PyParameterCommandArgumentsSubItem):
1827
+ class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
1828
1828
  """
1829
- Display advanced options that you may want to apply to this task.
1829
+ Argument LastRatioNumLayers.
1830
1830
  """
1831
1831
 
1832
1832
  class _NumberOfSplitLayers(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
+ self.ShowLocalPrismPreferences = self._ShowLocalPrismPreferences(self, "ShowLocalPrismPreferences", service, rules, path)
2096
2097
  self.NumberOfSplitLayers = self._NumberOfSplitLayers(self, "NumberOfSplitLayers", service, rules, path)
2097
2098
  self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", 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):
@@ -2140,6 +2140,11 @@ class Root(PyMenu):
2140
2140
  Argument InvalidNormalMethod.
2141
2141
  """
2142
2142
 
2143
+ class _ShowLocalPrismPreferences(PyParameterCommandArgumentsSubItem):
2144
+ """
2145
+ Display advanced options that you may want to apply to this task.
2146
+ """
2147
+
2143
2148
  class _NumberOfSplitLayers(PyNumericalCommandArgumentsSubItem):
2144
2149
  """
2145
2150
  Indicate the number of split prism layers you wish to apply to each layer that you specified for the boundary layer definition.
@@ -2150,11 +2155,6 @@ class Root(PyMenu):
2150
2155
  Argument LastRatioNumLayers.
2151
2156
  """
2152
2157
 
2153
- class _ShowLocalPrismPreferences(PyParameterCommandArgumentsSubItem):
2154
- """
2155
- Display advanced options that you may want to apply to this task.
2156
- """
2157
-
2158
2158
  class _AllowedTangencyAtInvalidNormals(PyNumericalCommandArgumentsSubItem):
2159
2159
  """
2160
2160
  Controls the tangency of the invalid normal faces. An invalid normal location with all 90 degree angles has a tangency of 1. So, faces are still treated as an invalid normal even if the angle deviates slightly from 90 degrees (resulting in a tangency of 0.98).
@@ -2395,9 +2395,9 @@ class Root(PyMenu):
2395
2395
  self.MinSize = self._MinSize(self, "MinSize", service, rules, path)
2396
2396
  self.WrapMax = self._WrapMax(self, "WrapMax", service, rules, path)
2397
2397
  self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
2398
- self.InitialSizeControl = self._InitialSizeControl(self, "InitialSizeControl", service, rules, path)
2399
- self.SizingType = self._SizingType(self, "SizingType", service, rules, path)
2400
2398
  self.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", service, rules, path)
2399
+ self.SizingType = self._SizingType(self, "SizingType", service, rules, path)
2400
+ self.InitialSizeControl = self._InitialSizeControl(self, "InitialSizeControl", service, rules, path)
2401
2401
  self.CellsPerGap = self._CellsPerGap(self, "CellsPerGap", service, rules, path)
2402
2402
  self.WrapCurvatureNormalAngle = self._WrapCurvatureNormalAngle(self, "WrapCurvatureNormalAngle", service, rules, path)
2403
2403
  self.TargetSizeControl = self._TargetSizeControl(self, "TargetSizeControl", service, rules, path)
@@ -2448,9 +2448,9 @@ class Root(PyMenu):
2448
2448
  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.
2449
2449
  """
2450
2450
 
2451
- class _InitialSizeControl(PyParameterCommandArgumentsSubItem):
2451
+ class _WrapGrowthRate(PyNumericalCommandArgumentsSubItem):
2452
2452
  """
2453
- Enable this field to display the initial size control in the graphics window.
2453
+ Specify the increase in element edge length with each succeeding layer of elements.
2454
2454
  """
2455
2455
 
2456
2456
  class _SizingType(PyTextualCommandArgumentsSubItem):
@@ -2458,9 +2458,9 @@ class Root(PyMenu):
2458
2458
  Choose the type of sizing control (curvature, proximity, soft, or boi).
2459
2459
  """
2460
2460
 
2461
- class _WrapGrowthRate(PyNumericalCommandArgumentsSubItem):
2461
+ class _InitialSizeControl(PyParameterCommandArgumentsSubItem):
2462
2462
  """
2463
- Specify the increase in element edge length with each succeeding layer of elements.
2463
+ Enable this field to display the initial size control in the graphics window.
2464
2464
  """
2465
2465
 
2466
2466
  class _CellsPerGap(PyNumericalCommandArgumentsSubItem):
@@ -4164,14 +4164,14 @@ class Root(PyMenu):
4164
4164
  super().__init__(parent, attr, service, rules, path)
4165
4165
  self.WrapTargetRatio = self._WrapTargetRatio(self, "WrapTargetRatio", service, rules, path)
4166
4166
  self.WrapTargetSizeFieldRatio = self._WrapTargetSizeFieldRatio(self, "WrapTargetSizeFieldRatio", service, rules, path)
4167
- self.WrapTargetBothOptions = self._WrapTargetBothOptions(self, "WrapTargetBothOptions", service, rules, path)
4167
+ self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", 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.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
4172
- self.SolidFluidRatio = self._SolidFluidRatio(self, "SolidFluidRatio", service, rules, path)
4173
- self.TargetSizeFieldFileName = self._TargetSizeFieldFileName(self, "TargetSizeFieldFileName", service, rules, path)
4171
+ self.WrapTargetBothOptions = self._WrapTargetBothOptions(self, "WrapTargetBothOptions", service, rules, path)
4174
4172
  self.ExistingSizeField = self._ExistingSizeField(self, "ExistingSizeField", service, rules, path)
4173
+ self.TargetSizeFieldFileName = self._TargetSizeFieldFileName(self, "TargetSizeFieldFileName", service, rules, path)
4174
+ self.SolidFluidRatio = self._SolidFluidRatio(self, "SolidFluidRatio", service, rules, path)
4175
4175
  self.WrapSizeFieldFileName = self._WrapSizeFieldFileName(self, "WrapSizeFieldFileName", service, rules, path)
4176
4176
  self.TargeSizeFieldFileName = self._TargeSizeFieldFileName(self, "TargeSizeFieldFileName", service, rules, path)
4177
4177
  self.WrapTargetRaio = self._WrapTargetRaio(self, "WrapTargetRaio", service, rules, path)
@@ -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 _WrapTargetBothOptions(PyTextualCommandArgumentsSubItem):
4189
+ class _AdvancedOptions(PyParameterCommandArgumentsSubItem):
4190
4190
  """
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.
4191
+ Display advanced options that you may want to apply to the task.
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 _AdvancedOptions(PyParameterCommandArgumentsSubItem):
4209
+ class _WrapTargetBothOptions(PyTextualCommandArgumentsSubItem):
4210
4210
  """
4211
- Display advanced options that you may want to apply to the task.
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.
4212
4212
  """
4213
4213
 
4214
- class _SolidFluidRatio(PyNumericalCommandArgumentsSubItem):
4214
+ class _ExistingSizeField(PyTextualCommandArgumentsSubItem):
4215
4215
  """
4216
- Argument SolidFluidRatio.
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.
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 _ExistingSizeField(PyTextualCommandArgumentsSubItem):
4224
+ class _SolidFluidRatio(PyNumericalCommandArgumentsSubItem):
4225
4225
  """
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.
4226
+ Argument SolidFluidRatio.
4227
4227
  """
4228
4228
 
4229
4229
  class _WrapSizeFieldFileName(PyTextualCommandArgumentsSubItem):
@@ -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.Rate = self._Rate(self, "Rate", service, rules, path)
4602
+ self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
4603
4603
  self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
4604
- self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
4604
+ self.Rate = self._Rate(self, "Rate", 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.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
4609
- self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
4608
+ self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
4610
4609
  self.X = self._X(self, "X", service, rules, path)
4611
- self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
4610
+ self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
4612
4611
  self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
4612
+ self.FlipDirection = self._FlipDirection(self, "FlipDirection", 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,9 +4644,9 @@ class Root(PyMenu):
4644
4644
  Argument AspectRatio.
4645
4645
  """
4646
4646
 
4647
- class _Rate(PyNumericalCommandArgumentsSubItem):
4647
+ class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
4648
4648
  """
4649
- Argument Rate.
4649
+ Argument NumberOfLayers.
4650
4650
  """
4651
4651
 
4652
4652
  class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
@@ -4654,9 +4654,9 @@ class Root(PyMenu):
4654
4654
  Argument WakeGrowthFactor.
4655
4655
  """
4656
4656
 
4657
- class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
4657
+ class _Rate(PyNumericalCommandArgumentsSubItem):
4658
4658
  """
4659
- Argument BoundaryLayerLevels.
4659
+ Argument Rate.
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 _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
4678
- """
4679
- Argument NumberOfLayers.
4680
- """
4681
-
4682
- class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
4677
+ class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
4683
4678
  """
4684
- Argument LastRatioPercentage.
4679
+ Argument BoundaryLayerLevels.
4685
4680
  """
4686
4681
 
4687
4682
  class _X(PyNumericalCommandArgumentsSubItem):
@@ -4689,9 +4684,9 @@ class Root(PyMenu):
4689
4684
  Argument X.
4690
4685
  """
4691
4686
 
4692
- class _FlipDirection(PyParameterCommandArgumentsSubItem):
4687
+ class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
4693
4688
  """
4694
- Argument FlipDirection.
4689
+ Argument LastRatioPercentage.
4695
4690
  """
4696
4691
 
4697
4692
  class _OffsetMethodType(PyTextualCommandArgumentsSubItem):
@@ -4699,6 +4694,11 @@ class Root(PyMenu):
4699
4694
  Argument OffsetMethodType.
4700
4695
  """
4701
4696
 
4697
+ class _FlipDirection(PyParameterCommandArgumentsSubItem):
4698
+ """
4699
+ Argument FlipDirection.
4700
+ """
4701
+
4702
4702
  class _FirstHeight(PyNumericalCommandArgumentsSubItem):
4703
4703
  """
4704
4704
  Argument FirstHeight.
@@ -4738,8 +4738,8 @@ class Root(PyMenu):
4738
4738
  self.Radius2 = self._Radius2(self, "Radius2", service, rules, path)
4739
4739
  self.Y2 = self._Y2(self, "Y2", service, rules, path)
4740
4740
  self.Node3 = self._Node3(self, "Node3", service, rules, path)
4741
- self.Node2 = self._Node2(self, "Node2", service, rules, path)
4742
4741
  self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
4742
+ self.Node2 = self._Node2(self, "Node2", service, rules, path)
4743
4743
  self.X2 = self._X2(self, "X2", service, rules, path)
4744
4744
  self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
4745
4745
  self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
@@ -4804,14 +4804,14 @@ class Root(PyMenu):
4804
4804
  Argument Node3.
4805
4805
  """
4806
4806
 
4807
- class _Node2(PyTextualCommandArgumentsSubItem):
4807
+ class _Y_Offset(PyNumericalCommandArgumentsSubItem):
4808
4808
  """
4809
- Argument Node2.
4809
+ Argument Y-Offset.
4810
4810
  """
4811
4811
 
4812
- class _Y_Offset(PyNumericalCommandArgumentsSubItem):
4812
+ class _Node2(PyTextualCommandArgumentsSubItem):
4813
4813
  """
4814
- Argument Y-Offset.
4814
+ Argument Node2.
4815
4815
  """
4816
4816
 
4817
4817
  class _X2(PyNumericalCommandArgumentsSubItem):
@@ -5095,7 +5095,7 @@ class Root(PyMenu):
5095
5095
  def __init__(self, parent, attr, service, rules, path):
5096
5096
  super().__init__(parent, attr, service, rules, path)
5097
5097
  self.SizeRelativeLength = self._SizeRelativeLength(self, "SizeRelativeLength", service, rules, path)
5098
- self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
5098
+ self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
5099
5099
  self.XminRatio = self._XminRatio(self, "XminRatio", service, rules, path)
5100
5100
  self.YminRatio = self._YminRatio(self, "YminRatio", service, rules, path)
5101
5101
  self.Zmin = self._Zmin(self, "Zmin", service, rules, path)
@@ -5106,16 +5106,16 @@ class Root(PyMenu):
5106
5106
  self.Xmin = self._Xmin(self, "Xmin", service, rules, path)
5107
5107
  self.YmaxRatio = self._YmaxRatio(self, "YmaxRatio", service, rules, path)
5108
5108
  self.ZmaxRatio = self._ZmaxRatio(self, "ZmaxRatio", service, rules, path)
5109
- self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
5109
+ self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
5110
5110
 
5111
5111
  class _SizeRelativeLength(PyTextualCommandArgumentsSubItem):
5112
5112
  """
5113
5113
  Argument SizeRelativeLength.
5114
5114
  """
5115
5115
 
5116
- class _Xmax(PyNumericalCommandArgumentsSubItem):
5116
+ class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
5117
5117
  """
5118
- Specify the x-coordinate of the offset collar mesh.
5118
+ Argument XmaxRatio.
5119
5119
  """
5120
5120
 
5121
5121
  class _XminRatio(PyNumericalCommandArgumentsSubItem):
@@ -5168,9 +5168,9 @@ class Root(PyMenu):
5168
5168
  Argument ZmaxRatio.
5169
5169
  """
5170
5170
 
5171
- class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
5171
+ class _Xmax(PyNumericalCommandArgumentsSubItem):
5172
5172
  """
5173
- Argument XmaxRatio.
5173
+ Specify the x-coordinate of the offset collar mesh.
5174
5174
  """
5175
5175
 
5176
5176
  class _OffsetObject(PySingletonCommandArgumentsSubItem):
@@ -5186,17 +5186,17 @@ 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.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
5189
+ self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
5190
5190
  self.Rate = self._Rate(self, "Rate", service, rules, path)
5191
5191
  self.AspectRatio = self._AspectRatio(self, "AspectRatio", 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.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
5195
+ self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
5196
5196
  self.X = self._X(self, "X", service, rules, path)
5197
5197
  self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
5198
- self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
5199
5198
  self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
5199
+ self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
5200
5200
  self.FirstHeight = self._FirstHeight(self, "FirstHeight", service, rules, path)
5201
5201
  self.BoundaryLayerHeight = self._BoundaryLayerHeight(self, "BoundaryLayerHeight", service, rules, path)
5202
5202
  self.CrossWakeGrowthFactor = self._CrossWakeGrowthFactor(self, "CrossWakeGrowthFactor", service, rules, path)
@@ -5231,9 +5231,9 @@ class Root(PyMenu):
5231
5231
  Argument BoundaryLayerLevels.
5232
5232
  """
5233
5233
 
5234
- class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
5234
+ class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
5235
5235
  """
5236
- Argument WakeGrowthFactor.
5236
+ Argument NumberOfLayers.
5237
5237
  """
5238
5238
 
5239
5239
  class _Rate(PyNumericalCommandArgumentsSubItem):
@@ -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 _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
5264
+ class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
5265
5265
  """
5266
- Argument NumberOfLayers.
5266
+ Argument WakeGrowthFactor.
5267
5267
  """
5268
5268
 
5269
5269
  class _X(PyNumericalCommandArgumentsSubItem):
@@ -5276,14 +5276,14 @@ class Root(PyMenu):
5276
5276
  Argument LastRatioPercentage.
5277
5277
  """
5278
5278
 
5279
- class _FlipDirection(PyParameterCommandArgumentsSubItem):
5279
+ class _OffsetMethodType(PyTextualCommandArgumentsSubItem):
5280
5280
  """
5281
- Argument FlipDirection.
5281
+ Argument OffsetMethodType.
5282
5282
  """
5283
5283
 
5284
- class _OffsetMethodType(PyTextualCommandArgumentsSubItem):
5284
+ class _FlipDirection(PyParameterCommandArgumentsSubItem):
5285
5285
  """
5286
- Argument OffsetMethodType.
5286
+ Argument FlipDirection.
5287
5287
  """
5288
5288
 
5289
5289
  class _FirstHeight(PyNumericalCommandArgumentsSubItem):
@@ -5325,9 +5325,9 @@ class Root(PyMenu):
5325
5325
  self.Radius2 = self._Radius2(self, "Radius2", service, rules, path)
5326
5326
  self.Y2 = self._Y2(self, "Y2", service, rules, path)
5327
5327
  self.Node3 = self._Node3(self, "Node3", service, rules, path)
5328
- self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
5329
5328
  self.Node2 = self._Node2(self, "Node2", service, rules, path)
5330
5329
  self.X2 = self._X2(self, "X2", service, rules, path)
5330
+ self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
5331
5331
  self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
5332
5332
  self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
5333
5333
 
@@ -5391,11 +5391,6 @@ class Root(PyMenu):
5391
5391
  Argument Node3.
5392
5392
  """
5393
5393
 
5394
- class _Y_Offset(PyNumericalCommandArgumentsSubItem):
5395
- """
5396
- Argument Y-Offset.
5397
- """
5398
-
5399
5394
  class _Node2(PyTextualCommandArgumentsSubItem):
5400
5395
  """
5401
5396
  Argument Node2.
@@ -5406,6 +5401,11 @@ class Root(PyMenu):
5406
5401
  Argument X2.
5407
5402
  """
5408
5403
 
5404
+ class _Y_Offset(PyNumericalCommandArgumentsSubItem):
5405
+ """
5406
+ Argument Y-Offset.
5407
+ """
5408
+
5409
5409
  class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
5410
5410
  """
5411
5411
  Argument HeightFrontInc.
@@ -5463,9 +5463,9 @@ class Root(PyMenu):
5463
5463
  self.CylinderX2 = self._CylinderX2(self, "CylinderX2", service, rules, path)
5464
5464
  self.BoxYLength = self._BoxYLength(self, "BoxYLength", service, rules, path)
5465
5465
  self.CylinderX1 = self._CylinderX1(self, "CylinderX1", service, rules, path)
5466
- self.BoxXLength = self._BoxXLength(self, "BoxXLength", service, rules, path)
5467
- self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
5468
5466
  self.BoxZLength = self._BoxZLength(self, "BoxZLength", service, rules, path)
5467
+ self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
5468
+ self.BoxXLength = self._BoxXLength(self, "BoxXLength", service, rules, path)
5469
5469
  self.BoxCenterY = self._BoxCenterY(self, "BoxCenterY", service, rules, path)
5470
5470
  self.CylinderZ1 = self._CylinderZ1(self, "CylinderZ1", service, rules, path)
5471
5471
  self.CylinderRadius1 = self._CylinderRadius1(self, "CylinderRadius1", service, rules, path)
@@ -5494,9 +5494,9 @@ class Root(PyMenu):
5494
5494
  Argument CylinderX1.
5495
5495
  """
5496
5496
 
5497
- class _BoxXLength(PyNumericalCommandArgumentsSubItem):
5497
+ class _BoxZLength(PyNumericalCommandArgumentsSubItem):
5498
5498
  """
5499
- Argument BoxXLength.
5499
+ Argument BoxZLength.
5500
5500
  """
5501
5501
 
5502
5502
  class _CylinderY1(PyNumericalCommandArgumentsSubItem):
@@ -5504,9 +5504,9 @@ class Root(PyMenu):
5504
5504
  Argument CylinderY1.
5505
5505
  """
5506
5506
 
5507
- class _BoxZLength(PyNumericalCommandArgumentsSubItem):
5507
+ class _BoxXLength(PyNumericalCommandArgumentsSubItem):
5508
5508
  """
5509
- Argument BoxZLength.
5509
+ Argument BoxXLength.
5510
5510
  """
5511
5511
 
5512
5512
  class _BoxCenterY(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):
@@ -5774,13 +5774,13 @@ class Root(PyMenu):
5774
5774
  self.Y = self._Y(self, "Y", service, rules, path)
5775
5775
  self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
5776
5776
  self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
5777
- self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
5778
- self.Rate = self._Rate(self, "Rate", service, rules, path)
5779
5777
  self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
5778
+ self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
5779
+ self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", 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)
5783
+ self.Rate = self._Rate(self, "Rate", service, rules, path)
5784
5784
  self.X = self._X(self, "X", service, rules, path)
5785
5785
  self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
5786
5786
  self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
@@ -5819,19 +5819,19 @@ class Root(PyMenu):
5819
5819
  Specify the ratio of the prism base length to the prism layer height.
5820
5820
  """
5821
5821
 
5822
- class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
5822
+ class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
5823
5823
  """
5824
- Argument WakeGrowthFactor.
5824
+ Select the number of boundary layers to be generated.
5825
5825
  """
5826
5826
 
5827
- class _Rate(PyNumericalCommandArgumentsSubItem):
5827
+ class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
5828
5828
  """
5829
- Specify the rate of growth of the boundary layer.
5829
+ Argument WakeGrowthFactor.
5830
5830
  """
5831
5831
 
5832
- class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
5832
+ class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
5833
5833
  """
5834
- Select the number of boundary layers to be generated.
5834
+ Argument BoundaryLayerLevels.
5835
5835
  """
5836
5836
 
5837
5837
  class _FlowDirection(PyTextualCommandArgumentsSubItem):
@@ -5849,9 +5849,9 @@ class Root(PyMenu):
5849
5849
  Argument EdgeSelectionList.
5850
5850
  """
5851
5851
 
5852
- class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
5852
+ class _Rate(PyNumericalCommandArgumentsSubItem):
5853
5853
  """
5854
- Argument BoundaryLayerLevels.
5854
+ Specify the rate of growth of the boundary layer.
5855
5855
  """
5856
5856
 
5857
5857
  class _X(PyNumericalCommandArgumentsSubItem):
@@ -5901,15 +5901,15 @@ 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.HeightNode = self._HeightNode(self, "HeightNode", service, rules, path)
5905
5904
  self.X_Offset = self._X_Offset(self, "X-Offset", service, rules, path)
5905
+ self.HeightNode = self._HeightNode(self, "HeightNode", 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)
@@ -5919,14 +5919,14 @@ class Root(PyMenu):
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 _HeightNode(PyTextualCommandArgumentsSubItem):
5922
+ class _X_Offset(PyNumericalCommandArgumentsSubItem):
5923
5923
  """
5924
- Argument HeightNode.
5924
+ Argument X-Offset.
5925
5925
  """
5926
5926
 
5927
- class _X_Offset(PyNumericalCommandArgumentsSubItem):
5927
+ class _HeightNode(PyTextualCommandArgumentsSubItem):
5928
5928
  """
5929
- Argument X-Offset.
5929
+ Argument HeightNode.
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):
@@ -6058,8 +6058,8 @@ class Root(PyMenu):
6058
6058
  self.CylinderZ1 = self._CylinderZ1(self, "CylinderZ1", service, rules, path)
6059
6059
  self.CylinderRadius1 = self._CylinderRadius1(self, "CylinderRadius1", service, rules, path)
6060
6060
  self.BoxCenterX = self._BoxCenterX(self, "BoxCenterX", service, rules, path)
6061
- self.BoxCenterZ = self._BoxCenterZ(self, "BoxCenterZ", service, rules, path)
6062
6061
  self.CylinderRadius2 = self._CylinderRadius2(self, "CylinderRadius2", service, rules, path)
6062
+ self.BoxCenterZ = self._BoxCenterZ(self, "BoxCenterZ", service, rules, path)
6063
6063
  self.CylinderY2 = self._CylinderY2(self, "CylinderY2", service, rules, path)
6064
6064
 
6065
6065
  class _CylinderZ2(PyNumericalCommandArgumentsSubItem):
@@ -6117,14 +6117,14 @@ class Root(PyMenu):
6117
6117
  Argument BoxCenterX.
6118
6118
  """
6119
6119
 
6120
- class _BoxCenterZ(PyNumericalCommandArgumentsSubItem):
6120
+ class _CylinderRadius2(PyNumericalCommandArgumentsSubItem):
6121
6121
  """
6122
- Argument BoxCenterZ.
6122
+ Argument CylinderRadius2.
6123
6123
  """
6124
6124
 
6125
- class _CylinderRadius2(PyNumericalCommandArgumentsSubItem):
6125
+ class _BoxCenterZ(PyNumericalCommandArgumentsSubItem):
6126
6126
  """
6127
- Argument CylinderRadius2.
6127
+ Argument BoxCenterZ.
6128
6128
  """
6129
6129
 
6130
6130
  class _CylinderY2(PyNumericalCommandArgumentsSubItem):
@@ -6891,7 +6891,7 @@ class Root(PyMenu):
6891
6891
  def __init__(self, parent, attr, service, rules, path):
6892
6892
  super().__init__(parent, attr, service, rules, path)
6893
6893
  self.SizeRelativeLength = self._SizeRelativeLength(self, "SizeRelativeLength", service, rules, path)
6894
- self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
6894
+ self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
6895
6895
  self.XminRatio = self._XminRatio(self, "XminRatio", service, rules, path)
6896
6896
  self.YminRatio = self._YminRatio(self, "YminRatio", service, rules, path)
6897
6897
  self.Zmin = self._Zmin(self, "Zmin", service, rules, path)
@@ -6902,16 +6902,16 @@ class Root(PyMenu):
6902
6902
  self.Xmin = self._Xmin(self, "Xmin", service, rules, path)
6903
6903
  self.YmaxRatio = self._YmaxRatio(self, "YmaxRatio", service, rules, path)
6904
6904
  self.ZmaxRatio = self._ZmaxRatio(self, "ZmaxRatio", service, rules, path)
6905
- self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
6905
+ self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
6906
6906
 
6907
6907
  class _SizeRelativeLength(PyTextualCommandArgumentsSubItem):
6908
6908
  """
6909
6909
  Determine if you would like to specify the bounding box for the refinement region as a ratio of the geometry length, or by specifying a specific location for the minimum and maximum coordinates.
6910
6910
  """
6911
6911
 
6912
- class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
6912
+ class _Xmax(PyNumericalCommandArgumentsSubItem):
6913
6913
  """
6914
- 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.
6914
+ Specify the X-coordinate for the initial position of the cylindrical refinement region.
6915
6915
  """
6916
6916
 
6917
6917
  class _XminRatio(PyNumericalCommandArgumentsSubItem):
@@ -6964,9 +6964,9 @@ class Root(PyMenu):
6964
6964
  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.
6965
6965
  """
6966
6966
 
6967
- class _Xmax(PyNumericalCommandArgumentsSubItem):
6967
+ class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
6968
6968
  """
6969
- Specify the X-coordinate for the initial position of the cylindrical refinement region.
6969
+ 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.
6970
6970
  """
6971
6971
 
6972
6972
  class _OffsetObject(PySingletonCommandArgumentsSubItem):
@@ -6981,9 +6981,9 @@ 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.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
6985
- self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
6986
6984
  self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
6985
+ self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
6986
+ self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
6987
6987
  self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", 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)
@@ -7022,9 +7022,9 @@ 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 _AspectRatio(PyNumericalCommandArgumentsSubItem):
7025
+ class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
7026
7026
  """
7027
- Argument AspectRatio.
7027
+ Specify the number of boundary layers that are to be captured in the refinement region.
7028
7028
  """
7029
7029
 
7030
7030
  class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
@@ -7032,9 +7032,9 @@ class Root(PyMenu):
7032
7032
  Argument NumberOfLayers.
7033
7033
  """
7034
7034
 
7035
- class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
7035
+ class _AspectRatio(PyNumericalCommandArgumentsSubItem):
7036
7036
  """
7037
- Specify the number of boundary layers that are to be captured in the refinement region.
7037
+ Argument AspectRatio.
7038
7038
  """
7039
7039
 
7040
7040
  class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
@@ -7121,9 +7121,9 @@ 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.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
7124
7125
  self.Node2 = self._Node2(self, "Node2", service, rules, path)
7125
7126
  self.X2 = self._X2(self, "X2", service, rules, path)
7126
- self.Y_Offset = self._Y_Offset(self, "Y-Offset", 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
 
@@ -7187,6 +7187,11 @@ class Root(PyMenu):
7187
7187
  Argument Node3.
7188
7188
  """
7189
7189
 
7190
+ class _Y_Offset(PyNumericalCommandArgumentsSubItem):
7191
+ """
7192
+ Specify the Y-coordinate for the offset of the initial position of the cylinder.
7193
+ """
7194
+
7190
7195
  class _Node2(PyTextualCommandArgumentsSubItem):
7191
7196
  """
7192
7197
  Argument Node2.
@@ -7197,11 +7202,6 @@ class Root(PyMenu):
7197
7202
  Specify the X-coordinate of the second position of the cylinder.
7198
7203
  """
7199
7204
 
7200
- class _Y_Offset(PyNumericalCommandArgumentsSubItem):
7201
- """
7202
- Specify the Y-coordinate for the offset of the initial position of the cylinder.
7203
- """
7204
-
7205
7205
  class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
7206
7206
  """
7207
7207
  Argument HeightFrontInc.
@@ -7266,8 +7266,8 @@ class Root(PyMenu):
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.CylinderRadius2 = self._CylinderRadius2(self, "CylinderRadius2", service, rules, path)
7270
7269
  self.BoxCenterZ = self._BoxCenterZ(self, "BoxCenterZ", service, rules, path)
7270
+ self.CylinderRadius2 = self._CylinderRadius2(self, "CylinderRadius2", service, rules, path)
7271
7271
  self.CylinderY2 = self._CylinderY2(self, "CylinderY2", service, rules, path)
7272
7272
 
7273
7273
  class _CylinderZ2(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 _CylinderRadius2(PyNumericalCommandArgumentsSubItem):
7328
+ class _BoxCenterZ(PyNumericalCommandArgumentsSubItem):
7329
7329
  """
7330
- Specify the radius of the cylinder at the second position.
7330
+ Specify the Z-coordinate for the initial position of the cylindrical refinement region.
7331
7331
  """
7332
7332
 
7333
- class _BoxCenterZ(PyNumericalCommandArgumentsSubItem):
7333
+ class _CylinderRadius2(PyNumericalCommandArgumentsSubItem):
7334
7334
  """
7335
- Specify the Z-coordinate for the initial position of the cylindrical refinement region.
7335
+ Specify the radius of the cylinder at the second position.
7336
7336
  """
7337
7337
 
7338
7338
  class _CylinderY2(PyNumericalCommandArgumentsSubItem):
@@ -7537,10 +7537,10 @@ class Root(PyMenu):
7537
7537
  def __init__(self, parent, attr, service, rules, path):
7538
7538
  super().__init__(parent, attr, service, rules, path)
7539
7539
  self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
7540
- self.Thickness = self._Thickness(self, "Thickness", service, rules, path)
7541
- self.ZoneSelectionList = self._ZoneSelectionList(self, "ZoneSelectionList", service, rules, path)
7542
7540
  self.LabelSelectionList = self._LabelSelectionList(self, "LabelSelectionList", service, rules, path)
7541
+ self.ZoneSelectionList = self._ZoneSelectionList(self, "ZoneSelectionList", service, rules, path)
7543
7542
  self.SelectionType = self._SelectionType(self, "SelectionType", service, rules, path)
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)
7546
7546
  self.BufferSize = self._BufferSize(self, "BufferSize", service, rules, path)
@@ -7553,9 +7553,9 @@ class Root(PyMenu):
7553
7553
  Specify the number of layers, or divisions, along the thickness of the porous region.
7554
7554
  """
7555
7555
 
7556
- class _Thickness(PyNumericalCommandArgumentsSubItem):
7556
+ class _LabelSelectionList(PyTextualCommandArgumentsSubItem):
7557
7557
  """
7558
- Specify the thickness (or the total height) of the porous region.
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
7561
  class _ZoneSelectionList(PyTextualCommandArgumentsSubItem):
@@ -7563,14 +7563,14 @@ class Root(PyMenu):
7563
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...
7564
7564
  """
7565
7565
 
7566
- class _LabelSelectionList(PyTextualCommandArgumentsSubItem):
7566
+ class _SelectionType(PyTextualCommandArgumentsSubItem):
7567
7567
  """
7568
- 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...
7568
+ Choose how you want to make your selection (by object, zone, or label).
7569
7569
  """
7570
7570
 
7571
- class _SelectionType(PyTextualCommandArgumentsSubItem):
7571
+ class _Thickness(PyNumericalCommandArgumentsSubItem):
7572
7572
  """
7573
- Choose how you want to make your selection (by object, zone, or label).
7573
+ Specify the thickness (or the total height) of the porous region.
7574
7574
  """
7575
7575
 
7576
7576
  class _FeatureAngle(PyNumericalCommandArgumentsSubItem):
@@ -7911,10 +7911,10 @@ class Root(PyMenu):
7911
7911
  def __init__(self, parent, attr, service, rules, path):
7912
7912
  super().__init__(parent, attr, service, rules, path)
7913
7913
  self.PorousRegions = self._PorousRegions(self, "PorousRegions", service, rules, path)
7914
- self.ZeroThickness = self._ZeroThickness(self, "ZeroThickness", service, rules, path)
7915
- self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
7916
7914
  self.CloseLeakages = self._CloseLeakages(self, "CloseLeakages", service, rules, path)
7917
7915
  self.CloseLeakges = self._CloseLeakges(self, "CloseLeakges", service, rules, path)
7916
+ self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
7917
+ self.ZeroThickness = self._ZeroThickness(self, "ZeroThickness", 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)
@@ -7926,24 +7926,24 @@ class Root(PyMenu):
7926
7926
  Specify whether or not you will have any porous regions in your geometry. If so, then a Create Porous Regions task will be added to the workflow. A simple primitive rectangle will be placed over complex and detailed geometry of a porous region (for example, fins and tubes of a heat exchanger). With buffer layer:
7927
7927
  """
7928
7928
 
7929
- class _ZeroThickness(PyTextualCommandArgumentsSubItem):
7929
+ class _CloseLeakages(PyTextualCommandArgumentsSubItem):
7930
7930
  """
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.
7931
+ Argument CloseLeakages.
7932
7932
  """
7933
7933
 
7934
- class _AdvancedOptions(PyParameterCommandArgumentsSubItem):
7934
+ class _CloseLeakges(PyTextualCommandArgumentsSubItem):
7935
7935
  """
7936
- Display advanced options that you may want to apply to the workflow.
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.
7937
7937
  """
7938
7938
 
7939
- class _CloseLeakages(PyTextualCommandArgumentsSubItem):
7939
+ class _AdvancedOptions(PyParameterCommandArgumentsSubItem):
7940
7940
  """
7941
- Argument CloseLeakages.
7941
+ Display advanced options that you may want to apply to the workflow.
7942
7942
  """
7943
7943
 
7944
- class _CloseLeakges(PyTextualCommandArgumentsSubItem):
7944
+ class _ZeroThickness(PyTextualCommandArgumentsSubItem):
7945
7945
  """
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.
7946
+ 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.
7947
7947
  """
7948
7948
 
7949
7949
  class _ExtractEdgeFeatures(PyTextualCommandArgumentsSubItem):
@@ -8294,19 +8294,19 @@ class Root(PyMenu):
8294
8294
 
8295
8295
  def __init__(self, parent, attr, service, rules, path):
8296
8296
  super().__init__(parent, attr, service, rules, path)
8297
- self.BiasMethod = self._BiasMethod(self, "BiasMethod", service, rules, path)
8298
8297
  self.MaxLayerHeight = self._MaxLayerHeight(self, "MaxLayerHeight", service, rules, path)
8298
+ self.BiasMethod = self._BiasMethod(self, "BiasMethod", service, rules, path)
8299
8299
  self.MergeCellZones = self._MergeCellZones(self, "MergeCellZones", service, rules, path)
8300
8300
  self.ShowVMExtrudePreferences = self._ShowVMExtrudePreferences(self, "ShowVMExtrudePreferences", service, rules, path)
8301
8301
 
8302
- class _BiasMethod(PyTextualCommandArgumentsSubItem):
8302
+ class _MaxLayerHeight(PyNumericalCommandArgumentsSubItem):
8303
8303
  """
8304
- Select from a choice of patterns that you want to apply to your volume mesh extrusion.
8304
+ Argument MaxLayerHeight.
8305
8305
  """
8306
8306
 
8307
- class _MaxLayerHeight(PyNumericalCommandArgumentsSubItem):
8307
+ class _BiasMethod(PyTextualCommandArgumentsSubItem):
8308
8308
  """
8309
- Argument MaxLayerHeight.
8309
+ Select from a choice of patterns that you want to apply to your volume mesh extrusion.
8310
8310
  """
8311
8311
 
8312
8312
  class _MergeCellZones(PyParameterCommandArgumentsSubItem):
@@ -8386,8 +8386,8 @@ class Root(PyMenu):
8386
8386
  self.SplitQuads = self._SplitQuads(self, "SplitQuads", service, rules, path)
8387
8387
  self.MaxAspectRatio = self._MaxAspectRatio(self, "MaxAspectRatio", service, rules, path)
8388
8388
  self.MinAspectRatio = self._MinAspectRatio(self, "MinAspectRatio", service, rules, path)
8389
- self.RemeshGrowthRate = self._RemeshGrowthRate(self, "RemeshGrowthRate", service, rules, path)
8390
8389
  self.LocalRemesh = self._LocalRemesh(self, "LocalRemesh", service, rules, path)
8390
+ self.RemeshGrowthRate = self._RemeshGrowthRate(self, "RemeshGrowthRate", service, rules, path)
8391
8391
  self.GapFactor = self._GapFactor(self, "GapFactor", service, rules, path)
8392
8392
  self.ShowPrism2DPreferences = self._ShowPrism2DPreferences(self, "ShowPrism2DPreferences", service, rules, path)
8393
8393
  self.MaxFaceSkew = self._MaxFaceSkew(self, "MaxFaceSkew", service, rules, path)
@@ -8409,14 +8409,14 @@ class Root(PyMenu):
8409
8409
  Argument MinAspectRatio.
8410
8410
  """
8411
8411
 
8412
- class _RemeshGrowthRate(PyNumericalCommandArgumentsSubItem):
8412
+ class _LocalRemesh(PyTextualCommandArgumentsSubItem):
8413
8413
  """
8414
- Argument RemeshGrowthRate.
8414
+ Argument LocalRemesh.
8415
8415
  """
8416
8416
 
8417
- class _LocalRemesh(PyTextualCommandArgumentsSubItem):
8417
+ class _RemeshGrowthRate(PyNumericalCommandArgumentsSubItem):
8418
8418
  """
8419
- Argument LocalRemesh.
8419
+ Argument RemeshGrowthRate.
8420
8420
  """
8421
8421
 
8422
8422
  class _GapFactor(PyNumericalCommandArgumentsSubItem):
@@ -8775,8 +8775,8 @@ class Root(PyMenu):
8775
8775
  self.SaveSizeFieldFile = self._SaveSizeFieldFile(self, "SaveSizeFieldFile", service, rules, path)
8776
8776
  self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
8777
8777
  self.ScopeProximityTo = self._ScopeProximityTo(self, "ScopeProximityTo", service, rules, path)
8778
- self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
8779
8778
  self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
8779
+ self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
8780
8780
  self.SaveSizeField = self._SaveSizeField(self, "SaveSizeField", service, rules, path)
8781
8781
  self.UseSizeFiles = self._UseSizeFiles(self, "UseSizeFiles", service, rules, path)
8782
8782
  self.AutoCreateScopedSizing = self._AutoCreateScopedSizing(self, "AutoCreateScopedSizing", service, rules, path)
@@ -8806,14 +8806,14 @@ class Root(PyMenu):
8806
8806
  Argument ScopeProximityTo.
8807
8807
  """
8808
8808
 
8809
- class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
8809
+ class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
8810
8810
  """
8811
- Argument CurvatureNormalAngle.
8811
+ Argument PreviewSizefield.
8812
8812
  """
8813
8813
 
8814
- class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
8814
+ class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
8815
8815
  """
8816
- Argument PreviewSizefield.
8816
+ Argument CurvatureNormalAngle.
8817
8817
  """
8818
8818
 
8819
8819
  class _SaveSizeField(PyParameterCommandArgumentsSubItem):
@@ -9305,8 +9305,8 @@ class Root(PyMenu):
9305
9305
  self.FoldFaceLimit = self._FoldFaceLimit(self, "FoldFaceLimit", service, rules, path)
9306
9306
  self.SMQualityImprove = self._SMQualityImprove(self, "SMQualityImprove", service, rules, path)
9307
9307
  self.SMSeparationAngle = self._SMSeparationAngle(self, "SMSeparationAngle", service, rules, path)
9308
- self.ShowSurfaceMeshPreferences = self._ShowSurfaceMeshPreferences(self, "ShowSurfaceMeshPreferences", service, rules, path)
9309
9308
  self.AutoMerge = self._AutoMerge(self, "AutoMerge", service, rules, path)
9309
+ self.ShowSurfaceMeshPreferences = self._ShowSurfaceMeshPreferences(self, "ShowSurfaceMeshPreferences", service, rules, path)
9310
9310
  self.TVMAutoControlCreation = self._TVMAutoControlCreation(self, "TVMAutoControlCreation", service, rules, path)
9311
9311
  self.SMSeparation = self._SMSeparation(self, "SMSeparation", service, rules, path)
9312
9312
  self.SMRemoveStep = self._SMRemoveStep(self, "SMRemoveStep", service, rules, path)
@@ -9340,14 +9340,14 @@ class Root(PyMenu):
9340
9340
  Specify a desired angle for determining separation. Assigning a smaller separation angle will produce more zones.
9341
9341
  """
9342
9342
 
9343
- class _ShowSurfaceMeshPreferences(PyParameterCommandArgumentsSubItem):
9343
+ class _AutoMerge(PyParameterCommandArgumentsSubItem):
9344
9344
  """
9345
- Display advanced options that you may want to apply to the task.
9345
+ Argument AutoMerge.
9346
9346
  """
9347
9347
 
9348
- class _AutoMerge(PyParameterCommandArgumentsSubItem):
9348
+ class _ShowSurfaceMeshPreferences(PyParameterCommandArgumentsSubItem):
9349
9349
  """
9350
- Argument AutoMerge.
9350
+ Display advanced options that you may want to apply to the task.
9351
9351
  """
9352
9352
 
9353
9353
  class _TVMAutoControlCreation(PyTextualCommandArgumentsSubItem):
@@ -9494,11 +9494,11 @@ class Root(PyMenu):
9494
9494
  self.CreateCADAssemblies = self._CreateCADAssemblies(self, "CreateCADAssemblies", service, rules, path)
9495
9495
  self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
9496
9496
  self.OneZonePer = self._OneZonePer(self, "OneZonePer", service, rules, path)
9497
- self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
9497
+ self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
9498
9498
  self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
9499
- self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
9499
+ self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
9500
9500
  self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
9501
- self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
9501
+ self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
9502
9502
 
9503
9503
  class _SavePMDBIntermediateFile(PyParameterCommandArgumentsSubItem):
9504
9504
  """
@@ -9530,9 +9530,9 @@ class Root(PyMenu):
9530
9530
  Argument OneZonePer.
9531
9531
  """
9532
9532
 
9533
- class _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
9533
+ class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
9534
9534
  """
9535
- Argument UsePartOrBodyAsSuffix.
9535
+ Argument ImportCurvatureDataFromCAD.
9536
9536
  """
9537
9537
 
9538
9538
  class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
@@ -9540,9 +9540,9 @@ class Root(PyMenu):
9540
9540
  Argument ExtractFeatures.
9541
9541
  """
9542
9542
 
9543
- class _ImportNamedSelections(PyParameterCommandArgumentsSubItem):
9543
+ class _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
9544
9544
  """
9545
- Argument ImportNamedSelections.
9545
+ Argument UsePartOrBodyAsSuffix.
9546
9546
  """
9547
9547
 
9548
9548
  class _ImportPartNames(PyParameterCommandArgumentsSubItem):
@@ -9550,9 +9550,9 @@ class Root(PyMenu):
9550
9550
  Argument ImportPartNames.
9551
9551
  """
9552
9552
 
9553
- class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
9553
+ class _ImportNamedSelections(PyParameterCommandArgumentsSubItem):
9554
9554
  """
9555
- Argument ImportCurvatureDataFromCAD.
9555
+ Argument ImportNamedSelections.
9556
9556
  """
9557
9557
 
9558
9558
  class _ShareTopologyPreferences(PySingletonCommandArgumentsSubItem):
@@ -9567,10 +9567,10 @@ class Root(PyMenu):
9567
9567
  self.ConnectLabelWildcard = self._ConnectLabelWildcard(self, "ConnectLabelWildcard", service, rules, path)
9568
9568
  self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
9569
9569
  self.RelativeShareTopologyTolerance = self._RelativeShareTopologyTolerance(self, "RelativeShareTopologyTolerance", service, rules, path)
9570
- self.ShareTopologyAngle = self._ShareTopologyAngle(self, "ShareTopologyAngle", service, rules, path)
9570
+ self.FluidLabelWildcard = self._FluidLabelWildcard(self, "FluidLabelWildcard", service, rules, path)
9571
9571
  self.ExecuteJoinIntersect = self._ExecuteJoinIntersect(self, "ExecuteJoinIntersect", service, rules, path)
9572
9572
  self.Operation = self._Operation(self, "Operation", service, rules, path)
9573
- self.FluidLabelWildcard = self._FluidLabelWildcard(self, "FluidLabelWildcard", service, rules, path)
9573
+ self.ShareTopologyAngle = self._ShareTopologyAngle(self, "ShareTopologyAngle", service, rules, path)
9574
9574
  self.STToleranceIncrement = self._STToleranceIncrement(self, "STToleranceIncrement", service, rules, path)
9575
9575
  self.IntfLabelList = self._IntfLabelList(self, "IntfLabelList", service, rules, path)
9576
9576
  self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
@@ -9603,9 +9603,9 @@ class Root(PyMenu):
9603
9603
  Specify the relative tolerance for joining or intersecting face pairs, or the relative tolerance for connecting edge and face pairs.
9604
9604
  """
9605
9605
 
9606
- class _ShareTopologyAngle(PyNumericalCommandArgumentsSubItem):
9606
+ class _FluidLabelWildcard(PyTextualCommandArgumentsSubItem):
9607
9607
  """
9608
- Specify the threshold angle for joining face pairs.
9608
+ Argument FluidLabelWildcard.
9609
9609
  """
9610
9610
 
9611
9611
  class _ExecuteJoinIntersect(PyTextualCommandArgumentsSubItem):
@@ -9618,9 +9618,9 @@ class Root(PyMenu):
9618
9618
  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.
9619
9619
  """
9620
9620
 
9621
- class _FluidLabelWildcard(PyTextualCommandArgumentsSubItem):
9621
+ class _ShareTopologyAngle(PyNumericalCommandArgumentsSubItem):
9622
9622
  """
9623
- Argument FluidLabelWildcard.
9623
+ Specify the threshold angle for joining face pairs.
9624
9624
  """
9625
9625
 
9626
9626
  class _STToleranceIncrement(PyNumericalCommandArgumentsSubItem):
@@ -10115,30 +10115,30 @@ class Root(PyMenu):
10115
10115
 
10116
10116
  def __init__(self, parent, attr, service, rules, path):
10117
10117
  super().__init__(parent, attr, service, rules, path)
10118
- self.MergeBodyLabels = self._MergeBodyLabels(self, "MergeBodyLabels", service, rules, path)
10118
+ self.UseSizeFieldInSolids = self._UseSizeFieldInSolids(self, "UseSizeFieldInSolids", service, rules, path)
10119
10119
  self.QualityMethod = self._QualityMethod(self, "QualityMethod", service, rules, path)
10120
10120
  self.MinPolySize = self._MinPolySize(self, "MinPolySize", service, rules, path)
10121
- self.UseSizeField = self._UseSizeField(self, "UseSizeField", service, rules, path)
10122
- self.SizeFieldPeriodicity = self._SizeFieldPeriodicity(self, "SizeFieldPeriodicity", service, rules, path)
10123
10121
  self.PolyFeatureAngle = self._PolyFeatureAngle(self, "PolyFeatureAngle", service, rules, path)
10124
- self.UseSizeFieldInSolids = self._UseSizeFieldInSolids(self, "UseSizeFieldInSolids", service, rules, path)
10122
+ self.SizeFieldPeriodicity = self._SizeFieldPeriodicity(self, "SizeFieldPeriodicity", service, rules, path)
10123
+ self.MergeBodyLabels = self._MergeBodyLabels(self, "MergeBodyLabels", service, rules, path)
10124
+ self.UseSizeField = self._UseSizeField(self, "UseSizeField", service, rules, path)
10125
10125
  self.PolyInSolids = self._PolyInSolids(self, "PolyInSolids", service, rules, path)
10126
- self.MinEdgeLength = self._MinEdgeLength(self, "MinEdgeLength", service, rules, path)
10126
+ self.TetInSolids = self._TetInSolids(self, "TetInSolids", service, rules, path)
10127
10127
  self.AddMultipleQualityMethods = self._AddMultipleQualityMethods(self, "AddMultipleQualityMethods", service, rules, path)
10128
10128
  self.MaxCellSizeChange = self._MaxCellSizeChange(self, "MaxCellSizeChange", service, rules, path)
10129
10129
  self.WritePrismControlFile = self._WritePrismControlFile(self, "WritePrismControlFile", service, rules, path)
10130
- self.MinFaceArea = self._MinFaceArea(self, "MinFaceArea", service, rules, path)
10130
+ self.PrepareZoneNames = self._PrepareZoneNames(self, "PrepareZoneNames", service, rules, path)
10131
10131
  self.CheckSelfProximity = self._CheckSelfProximity(self, "CheckSelfProximity", service, rules, path)
10132
10132
  self.Avoid1_8Transition = self._Avoid1_8Transition(self, "Avoid1_8Transition", service, rules, path)
10133
10133
  self.ShowVolumeMeshPreferences = self._ShowVolumeMeshPreferences(self, "ShowVolumeMeshPreferences", service, rules, path)
10134
- self.PrepareZoneNames = self._PrepareZoneNames(self, "PrepareZoneNames", service, rules, path)
10134
+ self.MinEdgeLength = self._MinEdgeLength(self, "MinEdgeLength", service, rules, path)
10135
10135
  self.SolidGrowthRate = self._SolidGrowthRate(self, "SolidGrowthRate", service, rules, path)
10136
- self.TetInSolids = self._TetInSolids(self, "TetInSolids", service, rules, path)
10136
+ self.MinFaceArea = self._MinFaceArea(self, "MinFaceArea", service, rules, path)
10137
10137
  self.QualityWarningLimit = self._QualityWarningLimit(self, "QualityWarningLimit", service, rules, path)
10138
10138
 
10139
- class _MergeBodyLabels(PyTextualCommandArgumentsSubItem):
10139
+ class _UseSizeFieldInSolids(PyTextualCommandArgumentsSubItem):
10140
10140
  """
10141
- Determine whether or not you would like to merge bodies that contain multiple body labels when generating the volume mesh (the default is yes)
10141
+ 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.
10142
10142
  """
10143
10143
 
10144
10144
  class _QualityMethod(PyTextualCommandArgumentsSubItem):
@@ -10151,9 +10151,9 @@ class Root(PyMenu):
10151
10151
  Argument MinPolySize.
10152
10152
  """
10153
10153
 
10154
- class _UseSizeField(PyTextualCommandArgumentsSubItem):
10154
+ class _PolyFeatureAngle(PyNumericalCommandArgumentsSubItem):
10155
10155
  """
10156
- 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.
10156
+ Specify the angle to preserve features when using a polyhedral-based mesh.
10157
10157
  """
10158
10158
 
10159
10159
  class _SizeFieldPeriodicity(PyTextualCommandArgumentsSubItem):
@@ -10161,14 +10161,14 @@ class Root(PyMenu):
10161
10161
  Argument SizeFieldPeriodicity.
10162
10162
  """
10163
10163
 
10164
- class _PolyFeatureAngle(PyNumericalCommandArgumentsSubItem):
10164
+ class _MergeBodyLabels(PyTextualCommandArgumentsSubItem):
10165
10165
  """
10166
- Specify the angle to preserve features when using a polyhedral-based mesh.
10166
+ Determine whether or not you would like to merge bodies that contain multiple body labels when generating the volume mesh (the default is yes)
10167
10167
  """
10168
10168
 
10169
- class _UseSizeFieldInSolids(PyTextualCommandArgumentsSubItem):
10169
+ class _UseSizeField(PyTextualCommandArgumentsSubItem):
10170
10170
  """
10171
- 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.
10171
+ 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.
10172
10172
  """
10173
10173
 
10174
10174
  class _PolyInSolids(PyTextualCommandArgumentsSubItem):
@@ -10176,9 +10176,9 @@ class Root(PyMenu):
10176
10176
  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.
10177
10177
  """
10178
10178
 
10179
- class _MinEdgeLength(PyNumericalCommandArgumentsSubItem):
10179
+ class _TetInSolids(PyTextualCommandArgumentsSubItem):
10180
10180
  """
10181
- Argument MinEdgeLength.
10181
+ Argument TetInSolids.
10182
10182
  """
10183
10183
 
10184
10184
  class _AddMultipleQualityMethods(PyTextualCommandArgumentsSubItem):
@@ -10196,9 +10196,9 @@ class Root(PyMenu):
10196
10196
  Indicate whether or not you want to save a .pzmcontrol file to your working folder that will contain the boundary (prism) layer specifications.
10197
10197
  """
10198
10198
 
10199
- class _MinFaceArea(PyNumericalCommandArgumentsSubItem):
10199
+ class _PrepareZoneNames(PyTextualCommandArgumentsSubItem):
10200
10200
  """
10201
- Argument MinFaceArea.
10201
+ 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.
10202
10202
  """
10203
10203
 
10204
10204
  class _CheckSelfProximity(PyTextualCommandArgumentsSubItem):
@@ -10216,9 +10216,9 @@ class Root(PyMenu):
10216
10216
  Display advanced options that you may want to apply to the task.
10217
10217
  """
10218
10218
 
10219
- class _PrepareZoneNames(PyTextualCommandArgumentsSubItem):
10219
+ class _MinEdgeLength(PyNumericalCommandArgumentsSubItem):
10220
10220
  """
10221
- 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.
10221
+ Argument MinEdgeLength.
10222
10222
  """
10223
10223
 
10224
10224
  class _SolidGrowthRate(PyNumericalCommandArgumentsSubItem):
@@ -10226,9 +10226,9 @@ class Root(PyMenu):
10226
10226
  Specify the rate of growth for a tetrahedron or polyhedron mesh.
10227
10227
  """
10228
10228
 
10229
- class _TetInSolids(PyTextualCommandArgumentsSubItem):
10229
+ class _MinFaceArea(PyNumericalCommandArgumentsSubItem):
10230
10230
  """
10231
- Argument TetInSolids.
10231
+ Argument MinFaceArea.
10232
10232
  """
10233
10233
 
10234
10234
  class _QualityWarningLimit(PyNumericalCommandArgumentsSubItem):
@@ -10250,10 +10250,10 @@ class Root(PyMenu):
10250
10250
  self.PrismGapFactor = self._PrismGapFactor(self, "PrismGapFactor", service, rules, path)
10251
10251
  self.IgnoreInflation = self._IgnoreInflation(self, "IgnoreInflation", service, rules, path)
10252
10252
  self.MergeBoundaryLayers = self._MergeBoundaryLayers(self, "MergeBoundaryLayers", service, rules, path)
10253
- self.ShowPrismPreferences = self._ShowPrismPreferences(self, "ShowPrismPreferences", service, rules, path)
10254
10253
  self.NormalSmoothRelaxationFactor = self._NormalSmoothRelaxationFactor(self, "NormalSmoothRelaxationFactor", service, rules, path)
10255
- self.StairstepExposedQuads = self._StairstepExposedQuads(self, "StairstepExposedQuads", service, rules, path)
10254
+ self.ShowPrismPreferences = self._ShowPrismPreferences(self, "ShowPrismPreferences", service, rules, path)
10256
10255
  self.PrismMinAspectRatio = self._PrismMinAspectRatio(self, "PrismMinAspectRatio", service, rules, path)
10256
+ self.StairstepExposedQuads = self._StairstepExposedQuads(self, "StairstepExposedQuads", service, rules, path)
10257
10257
  self.PrismAdjacentAngle = self._PrismAdjacentAngle(self, "PrismAdjacentAngle", service, rules, path)
10258
10258
 
10259
10259
  class _PrismKeepFirstLayer(PyTextualCommandArgumentsSubItem):
@@ -10291,19 +10291,14 @@ class Root(PyMenu):
10291
10291
  Choose whether or not you want to have the boundary layer mesh merged into the bulk mesh.
10292
10292
  """
10293
10293
 
10294
- class _ShowPrismPreferences(PyParameterCommandArgumentsSubItem):
10295
- """
10296
- Display global settings for your boundary layers. Note that these settings are not applied for Multizone boundary layers
10297
- """
10298
-
10299
10294
  class _NormalSmoothRelaxationFactor(PyNumericalCommandArgumentsSubItem):
10300
10295
  """
10301
10296
  Specify the smoothness factor for normal prism layers. Increasing this value will generate more prism layers especially near sharp corners.
10302
10297
  """
10303
10298
 
10304
- class _StairstepExposedQuads(PyTextualCommandArgumentsSubItem):
10299
+ class _ShowPrismPreferences(PyParameterCommandArgumentsSubItem):
10305
10300
  """
10306
- 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.
10301
+ Display global settings for your boundary layers. Note that these settings are not applied for Multizone boundary layers
10307
10302
  """
10308
10303
 
10309
10304
  class _PrismMinAspectRatio(PyNumericalCommandArgumentsSubItem):
@@ -10311,6 +10306,11 @@ class Root(PyMenu):
10311
10306
  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.
10312
10307
  """
10313
10308
 
10309
+ class _StairstepExposedQuads(PyTextualCommandArgumentsSubItem):
10310
+ """
10311
+ 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.
10312
+ """
10313
+
10314
10314
  class _PrismAdjacentAngle(PyNumericalCommandArgumentsSubItem):
10315
10315
  """
10316
10316
  Specify the angle for which the boundary layer would imprint on an adjacent boundary.
@@ -10324,18 +10324,18 @@ class Root(PyMenu):
10324
10324
  def __init__(self, parent, attr, service, rules, path):
10325
10325
  super().__init__(parent, attr, service, rules, path)
10326
10326
  self.ShowGlobalThinVolumePreferences = self._ShowGlobalThinVolumePreferences(self, "ShowGlobalThinVolumePreferences", service, rules, path)
10327
- self.MinAspectRatio = self._MinAspectRatio(self, "MinAspectRatio", service, rules, path)
10328
- self.StairStep = self._StairStep(self, "StairStep", service, rules, path)
10329
10327
  self.AutoOrderControls = self._AutoOrderControls(self, "AutoOrderControls", service, rules, path)
10328
+ self.StairStep = self._StairStep(self, "StairStep", service, rules, path)
10329
+ self.MinAspectRatio = self._MinAspectRatio(self, "MinAspectRatio", service, rules, path)
10330
10330
 
10331
10331
  class _ShowGlobalThinVolumePreferences(PyParameterCommandArgumentsSubItem):
10332
10332
  """
10333
10333
  Display global settings for thin volume meshing.
10334
10334
  """
10335
10335
 
10336
- class _MinAspectRatio(PyNumericalCommandArgumentsSubItem):
10336
+ class _AutoOrderControls(PyTextualCommandArgumentsSubItem):
10337
10337
  """
10338
- 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.
10338
+ When set to yes, will automatically swap source and target faces in order to increase the success rate of the thin volume mesh generation. This option is set to yes by default for conventional thin volume meshing and is set to no when Stacked Plates is enabled.
10339
10339
  """
10340
10340
 
10341
10341
  class _StairStep(PyTextualCommandArgumentsSubItem):
@@ -10343,9 +10343,9 @@ class Root(PyMenu):
10343
10343
  Use this option to invoke stair-stepping at thin volume mesh regions.
10344
10344
  """
10345
10345
 
10346
- class _AutoOrderControls(PyTextualCommandArgumentsSubItem):
10346
+ class _MinAspectRatio(PyNumericalCommandArgumentsSubItem):
10347
10347
  """
10348
- When set to yes, will automatically swap source and target faces in order to increase the success rate of the thin volume mesh generation. This option is set to yes by default for conventional thin volume meshing and is set to no when Stacked Plates is enabled.
10348
+ 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.
10349
10349
  """
10350
10350
 
10351
10351
  class _InvokePrimsControl(PyTextualCommandArgumentsSubItem):
@@ -10495,8 +10495,8 @@ class Root(PyMenu):
10495
10495
  self.SaveSizeFieldFile = self._SaveSizeFieldFile(self, "SaveSizeFieldFile", service, rules, path)
10496
10496
  self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
10497
10497
  self.ScopeProximityTo = self._ScopeProximityTo(self, "ScopeProximityTo", service, rules, path)
10498
- self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
10499
10498
  self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
10499
+ self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
10500
10500
  self.SaveSizeField = self._SaveSizeField(self, "SaveSizeField", service, rules, path)
10501
10501
  self.UseSizeFiles = self._UseSizeFiles(self, "UseSizeFiles", service, rules, path)
10502
10502
  self.AutoCreateScopedSizing = self._AutoCreateScopedSizing(self, "AutoCreateScopedSizing", service, rules, path)
@@ -10526,14 +10526,14 @@ class Root(PyMenu):
10526
10526
  Argument ScopeProximityTo.
10527
10527
  """
10528
10528
 
10529
- class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
10529
+ class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
10530
10530
  """
10531
- Argument PreviewSizefield.
10531
+ Argument CurvatureNormalAngle.
10532
10532
  """
10533
10533
 
10534
- class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
10534
+ class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
10535
10535
  """
10536
- Argument CurvatureNormalAngle.
10536
+ Argument PreviewSizefield.
10537
10537
  """
10538
10538
 
10539
10539
  class _SaveSizeField(PyParameterCommandArgumentsSubItem):
@@ -10750,10 +10750,10 @@ class Root(PyMenu):
10750
10750
  self.SIQualityIterations = self._SIQualityIterations(self, "SIQualityIterations", service, rules, path)
10751
10751
  self.SIQualityMaxAngle = self._SIQualityMaxAngle(self, "SIQualityMaxAngle", service, rules, path)
10752
10752
  self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
10753
- self.SIRemoveStep = self._SIRemoveStep(self, "SIRemoveStep", service, rules, path)
10753
+ self.ShowSMImprovePreferences = self._ShowSMImprovePreferences(self, "ShowSMImprovePreferences", service, rules, path)
10754
10754
  self.AdvancedImprove = self._AdvancedImprove(self, "AdvancedImprove", service, rules, path)
10755
10755
  self.SIStepWidth = self._SIStepWidth(self, "SIStepWidth", service, rules, path)
10756
- self.ShowSMImprovePreferences = self._ShowSMImprovePreferences(self, "ShowSMImprovePreferences", service, rules, path)
10756
+ self.SIRemoveStep = self._SIRemoveStep(self, "SIRemoveStep", service, rules, path)
10757
10757
 
10758
10758
  class _SIStepQualityLimit(PyNumericalCommandArgumentsSubItem):
10759
10759
  """
@@ -10780,9 +10780,9 @@ class Root(PyMenu):
10780
10780
  Argument AllowDefeaturing.
10781
10781
  """
10782
10782
 
10783
- class _SIRemoveStep(PyTextualCommandArgumentsSubItem):
10783
+ class _ShowSMImprovePreferences(PyParameterCommandArgumentsSubItem):
10784
10784
  """
10785
- Argument SIRemoveStep.
10785
+ Argument ShowSMImprovePreferences.
10786
10786
  """
10787
10787
 
10788
10788
  class _AdvancedImprove(PyTextualCommandArgumentsSubItem):
@@ -10795,9 +10795,9 @@ class Root(PyMenu):
10795
10795
  Argument SIStepWidth.
10796
10796
  """
10797
10797
 
10798
- class _ShowSMImprovePreferences(PyParameterCommandArgumentsSubItem):
10798
+ class _SIRemoveStep(PyTextualCommandArgumentsSubItem):
10799
10799
  """
10800
- Argument ShowSMImprovePreferences.
10800
+ Argument SIRemoveStep.
10801
10801
  """
10802
10802
 
10803
10803
  def create_instance(self) -> _GeometrySetupCommandArguments:
@@ -11012,15 +11012,15 @@ class Root(PyMenu):
11012
11012
  self.X1 = self._X1(self, "X1", service, rules, path)
11013
11013
  self.Y1 = self._Y1(self, "Y1", service, rules, path)
11014
11014
  self.Z_Offset = self._Z_Offset(self, "Z-Offset", service, rules, path)
11015
- self.Z2 = self._Z2(self, "Z2", service, rules, path)
11016
- self.Node1 = self._Node1(self, "Node1", service, rules, path)
11017
11015
  self.Z1 = self._Z1(self, "Z1", service, rules, path)
11016
+ self.Node1 = self._Node1(self, "Node1", service, rules, path)
11017
+ self.Z2 = self._Z2(self, "Z2", service, rules, path)
11018
11018
  self.Radius2 = self._Radius2(self, "Radius2", service, rules, path)
11019
11019
  self.Y2 = self._Y2(self, "Y2", service, rules, path)
11020
11020
  self.Node3 = self._Node3(self, "Node3", service, rules, path)
11021
- self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
11022
11021
  self.X2 = self._X2(self, "X2", service, rules, path)
11023
11022
  self.Node2 = self._Node2(self, "Node2", service, rules, path)
11023
+ self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
11024
11024
  self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
11025
11025
  self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
11026
11026
 
@@ -11054,9 +11054,9 @@ class Root(PyMenu):
11054
11054
  Argument Z-Offset.
11055
11055
  """
11056
11056
 
11057
- class _Z2(PyNumericalCommandArgumentsSubItem):
11057
+ class _Z1(PyNumericalCommandArgumentsSubItem):
11058
11058
  """
11059
- Argument Z2.
11059
+ Argument Z1.
11060
11060
  """
11061
11061
 
11062
11062
  class _Node1(PyTextualCommandArgumentsSubItem):
@@ -11064,9 +11064,9 @@ class Root(PyMenu):
11064
11064
  Argument Node1.
11065
11065
  """
11066
11066
 
11067
- class _Z1(PyNumericalCommandArgumentsSubItem):
11067
+ class _Z2(PyNumericalCommandArgumentsSubItem):
11068
11068
  """
11069
- Argument Z1.
11069
+ Argument Z2.
11070
11070
  """
11071
11071
 
11072
11072
  class _Radius2(PyNumericalCommandArgumentsSubItem):
@@ -11084,11 +11084,6 @@ class Root(PyMenu):
11084
11084
  Argument Node3.
11085
11085
  """
11086
11086
 
11087
- class _Y_Offset(PyNumericalCommandArgumentsSubItem):
11088
- """
11089
- Argument Y-Offset.
11090
- """
11091
-
11092
11087
  class _X2(PyNumericalCommandArgumentsSubItem):
11093
11088
  """
11094
11089
  Argument X2.
@@ -11099,6 +11094,11 @@ class Root(PyMenu):
11099
11094
  Argument Node2.
11100
11095
  """
11101
11096
 
11097
+ class _Y_Offset(PyNumericalCommandArgumentsSubItem):
11098
+ """
11099
+ Argument Y-Offset.
11100
+ """
11101
+
11102
11102
  class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
11103
11103
  """
11104
11104
  Argument HeightFrontInc.
@@ -11628,11 +11628,11 @@ class Root(PyMenu):
11628
11628
  self.CreateCADAssemblies = self._CreateCADAssemblies(self, "CreateCADAssemblies", service, rules, path)
11629
11629
  self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
11630
11630
  self.OneZonePer = self._OneZonePer(self, "OneZonePer", service, rules, path)
11631
- self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
11632
- self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
11633
11631
  self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
11634
- self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
11635
11632
  self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
11633
+ self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
11634
+ self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
11635
+ self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
11636
11636
 
11637
11637
  class _SavePMDBIntermediateFile(PyParameterCommandArgumentsSubItem):
11638
11638
  """
@@ -11664,19 +11664,19 @@ class Root(PyMenu):
11664
11664
  Argument OneZonePer.
11665
11665
  """
11666
11666
 
11667
- class _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
11667
+ class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
11668
11668
  """
11669
- Argument UsePartOrBodyAsSuffix.
11669
+ Argument ImportCurvatureDataFromCAD.
11670
11670
  """
11671
11671
 
11672
- class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
11672
+ class _ImportNamedSelections(PyParameterCommandArgumentsSubItem):
11673
11673
  """
11674
- Argument ExtractFeatures.
11674
+ Argument ImportNamedSelections.
11675
11675
  """
11676
11676
 
11677
- class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
11677
+ class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
11678
11678
  """
11679
- Argument ImportCurvatureDataFromCAD.
11679
+ Argument ExtractFeatures.
11680
11680
  """
11681
11681
 
11682
11682
  class _ImportPartNames(PyParameterCommandArgumentsSubItem):
@@ -11684,9 +11684,9 @@ class Root(PyMenu):
11684
11684
  Argument ImportPartNames.
11685
11685
  """
11686
11686
 
11687
- class _ImportNamedSelections(PyParameterCommandArgumentsSubItem):
11687
+ class _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
11688
11688
  """
11689
- Argument ImportNamedSelections.
11689
+ Argument UsePartOrBodyAsSuffix.
11690
11690
  """
11691
11691
 
11692
11692
  def create_instance(self) -> _ImportBodyOfInfluenceGeometryCommandArguments:
@@ -11777,15 +11777,15 @@ class Root(PyMenu):
11777
11777
  def __init__(self, parent, attr, service, rules, path):
11778
11778
  super().__init__(parent, attr, service, rules, path)
11779
11779
  self.EdgeLabel = self._EdgeLabel(self, "EdgeLabel", service, rules, path)
11780
- self.FacetedBodies = self._FacetedBodies(self, "FacetedBodies", service, rules, path)
11780
+ self.MaxFacetLengthOption = self._MaxFacetLengthOption(self, "MaxFacetLengthOption", service, rules, path)
11781
11781
  self.CISeparation = self._CISeparation(self, "CISeparation", service, rules, path)
11782
- self.MergeNodes = self._MergeNodes(self, "MergeNodes", service, rules, path)
11782
+ self.FacetedBodies = self._FacetedBodies(self, "FacetedBodies", service, rules, path)
11783
11783
  self.CIRefaceting = self._CIRefaceting(self, "CIRefaceting", service, rules, path)
11784
- self.MaxFacetLengthOption = self._MaxFacetLengthOption(self, "MaxFacetLengthOption", service, rules, path)
11784
+ self.MergeNodes = self._MergeNodes(self, "MergeNodes", service, rules, path)
11785
11785
  self.AutomaticObjectCreation = self._AutomaticObjectCreation(self, "AutomaticObjectCreation", service, rules, path)
11786
- self.ShowImportCadPreferences = self._ShowImportCadPreferences(self, "ShowImportCadPreferences", service, rules, path)
11787
- self.MaxFacetLength = self._MaxFacetLength(self, "MaxFacetLength", service, rules, path)
11788
11786
  self.MaxFacetLengthRatio = self._MaxFacetLengthRatio(self, "MaxFacetLengthRatio", service, rules, path)
11787
+ self.MaxFacetLength = self._MaxFacetLength(self, "MaxFacetLength", service, rules, path)
11788
+ self.ShowImportCadPreferences = self._ShowImportCadPreferences(self, "ShowImportCadPreferences", service, rules, path)
11789
11789
  self.ExtractAngle = self._ExtractAngle(self, "ExtractAngle", service, rules, path)
11790
11790
  self.CISeparationAngle = self._CISeparationAngle(self, "CISeparationAngle", service, rules, path)
11791
11791
  self.CITolerence = self._CITolerence(self, "CITolerence", service, rules, path)
@@ -11795,9 +11795,9 @@ class Root(PyMenu):
11795
11795
  Specify whether or not the imported CAD geometry already includes specific edges with assigned names (named selections). These named edges can be available later in the workflow when you are adding local size controls.
11796
11796
  """
11797
11797
 
11798
- class _FacetedBodies(PyTextualCommandArgumentsSubItem):
11798
+ class _MaxFacetLengthOption(PyTextualCommandArgumentsSubItem):
11799
11799
  """
11800
- When performing faceting and wrapping operations in your CAD tool lead to non-CAD geometries, set this option to yes to be able to use such geometries in the workflow. To ensure a relatively good quality surface mesh, you should shrink wrap any faceted bodies. In addition, each shrink-wrapped faceted body should be defined in its own unique component within the CAD environment.
11800
+ Argument MaxFacetLengthOption.
11801
11801
  """
11802
11802
 
11803
11803
  class _CISeparation(PyTextualCommandArgumentsSubItem):
@@ -11805,9 +11805,9 @@ class Root(PyMenu):
11805
11805
  Choose whether or not you are going to separate zones upon import based on a region, a region and a specified separation angle, a face, or neither. This is required to select faces for local sizing. If Named Selections have already been defined at these locations, then separation is not needed.
11806
11806
  """
11807
11807
 
11808
- class _MergeNodes(PyTextualCommandArgumentsSubItem):
11808
+ class _FacetedBodies(PyTextualCommandArgumentsSubItem):
11809
11809
  """
11810
- Argument MergeNodes.
11810
+ When performing faceting and wrapping operations in your CAD tool lead to non-CAD geometries, set this option to yes to be able to use such geometries in the workflow. To ensure a relatively good quality surface mesh, you should shrink wrap any faceted bodies. In addition, each shrink-wrapped faceted body should be defined in its own unique component within the CAD environment.
11811
11811
  """
11812
11812
 
11813
11813
  class _CIRefaceting(PyParameterCommandArgumentsSubItem):
@@ -11815,9 +11815,9 @@ class Root(PyMenu):
11815
11815
  Enable this option to be able to set the Tolerance and the Max Facet Length custom faceting options for the imported geometry.
11816
11816
  """
11817
11817
 
11818
- class _MaxFacetLengthOption(PyTextualCommandArgumentsSubItem):
11818
+ class _MergeNodes(PyTextualCommandArgumentsSubItem):
11819
11819
  """
11820
- Argument MaxFacetLengthOption.
11820
+ Argument MergeNodes.
11821
11821
  """
11822
11822
 
11823
11823
  class _AutomaticObjectCreation(PyTextualCommandArgumentsSubItem):
@@ -11825,9 +11825,9 @@ class Root(PyMenu):
11825
11825
  Determine whether or not mesh objects and labels are automatically created upon import, potentially and dramatically increasing the mesh import speed for very large cases. By default, this is set to yes however, if it is set to no, then no labels are created and a single mesh object is created employing all zones.
11826
11826
  """
11827
11827
 
11828
- class _ShowImportCadPreferences(PyParameterCommandArgumentsSubItem):
11828
+ class _MaxFacetLengthRatio(PyNumericalCommandArgumentsSubItem):
11829
11829
  """
11830
- Display advanced options that you may want to apply to the task.
11830
+ Argument MaxFacetLengthRatio.
11831
11831
  """
11832
11832
 
11833
11833
  class _MaxFacetLength(PyNumericalCommandArgumentsSubItem):
@@ -11835,9 +11835,9 @@ class Root(PyMenu):
11835
11835
  Enables you to specify a maximum facet size for the imported model to avoid very large facets during the file import. Depending on the CAD geometry, this may yield more accuracy.
11836
11836
  """
11837
11837
 
11838
- class _MaxFacetLengthRatio(PyNumericalCommandArgumentsSubItem):
11838
+ class _ShowImportCadPreferences(PyParameterCommandArgumentsSubItem):
11839
11839
  """
11840
- Argument MaxFacetLengthRatio.
11840
+ Display advanced options that you may want to apply to the task.
11841
11841
  """
11842
11842
 
11843
11843
  class _ExtractAngle(PyNumericalCommandArgumentsSubItem):
@@ -11903,11 +11903,11 @@ class Root(PyMenu):
11903
11903
  self.CreateCADAssemblies = self._CreateCADAssemblies(self, "CreateCADAssemblies", service, rules, path)
11904
11904
  self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
11905
11905
  self.OneZonePer = self._OneZonePer(self, "OneZonePer", service, rules, path)
11906
- self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
11907
- self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
11908
11906
  self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
11909
- self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
11910
11907
  self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
11908
+ self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
11909
+ self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
11910
+ self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
11911
11911
 
11912
11912
  class _SavePMDBIntermediateFile(PyParameterCommandArgumentsSubItem):
11913
11913
  """
@@ -11939,19 +11939,19 @@ class Root(PyMenu):
11939
11939
  Argument OneZonePer.
11940
11940
  """
11941
11941
 
11942
- class _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
11942
+ class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
11943
11943
  """
11944
- Argument UsePartOrBodyAsSuffix.
11944
+ Argument ImportCurvatureDataFromCAD.
11945
11945
  """
11946
11946
 
11947
- class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
11947
+ class _ImportNamedSelections(PyParameterCommandArgumentsSubItem):
11948
11948
  """
11949
- Argument ExtractFeatures.
11949
+ Argument ImportNamedSelections.
11950
11950
  """
11951
11951
 
11952
- class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
11952
+ class _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
11953
11953
  """
11954
- Argument ImportCurvatureDataFromCAD.
11954
+ Argument UsePartOrBodyAsSuffix.
11955
11955
  """
11956
11956
 
11957
11957
  class _ImportPartNames(PyParameterCommandArgumentsSubItem):
@@ -11959,9 +11959,9 @@ class Root(PyMenu):
11959
11959
  Argument ImportPartNames.
11960
11960
  """
11961
11961
 
11962
- class _ImportNamedSelections(PyParameterCommandArgumentsSubItem):
11962
+ class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
11963
11963
  """
11964
- Argument ImportNamedSelections.
11964
+ Argument ExtractFeatures.
11965
11965
  """
11966
11966
 
11967
11967
  def create_instance(self) -> _ImportGeometryCommandArguments:
@@ -12026,10 +12026,10 @@ class Root(PyMenu):
12026
12026
  self.SIQualityIterations = self._SIQualityIterations(self, "SIQualityIterations", service, rules, path)
12027
12027
  self.SIQualityMaxAngle = self._SIQualityMaxAngle(self, "SIQualityMaxAngle", service, rules, path)
12028
12028
  self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
12029
- self.SIRemoveStep = self._SIRemoveStep(self, "SIRemoveStep", service, rules, path)
12029
+ self.ShowSMImprovePreferences = self._ShowSMImprovePreferences(self, "ShowSMImprovePreferences", service, rules, path)
12030
12030
  self.AdvancedImprove = self._AdvancedImprove(self, "AdvancedImprove", service, rules, path)
12031
12031
  self.SIStepWidth = self._SIStepWidth(self, "SIStepWidth", service, rules, path)
12032
- self.ShowSMImprovePreferences = self._ShowSMImprovePreferences(self, "ShowSMImprovePreferences", service, rules, path)
12032
+ self.SIRemoveStep = self._SIRemoveStep(self, "SIRemoveStep", service, rules, path)
12033
12033
 
12034
12034
  class _SIStepQualityLimit(PyNumericalCommandArgumentsSubItem):
12035
12035
  """
@@ -12056,9 +12056,9 @@ class Root(PyMenu):
12056
12056
  Argument AllowDefeaturing.
12057
12057
  """
12058
12058
 
12059
- class _SIRemoveStep(PyTextualCommandArgumentsSubItem):
12059
+ class _ShowSMImprovePreferences(PyParameterCommandArgumentsSubItem):
12060
12060
  """
12061
- Indicate if there are any small imperfections (ledge or step artifacts from the original CAD geometry) that can be removed as part of this task. If you select yes, then you must specify a Max Step Width and the Step Skewness Quality Limit.
12061
+ Display advanced options that you may want to apply to the task.
12062
12062
  """
12063
12063
 
12064
12064
  class _AdvancedImprove(PyTextualCommandArgumentsSubItem):
@@ -12071,9 +12071,9 @@ class Root(PyMenu):
12071
12071
  Specify the width of the step that you wish to remove.
12072
12072
  """
12073
12073
 
12074
- class _ShowSMImprovePreferences(PyParameterCommandArgumentsSubItem):
12074
+ class _SIRemoveStep(PyTextualCommandArgumentsSubItem):
12075
12075
  """
12076
- Display advanced options that you may want to apply to the task.
12076
+ Indicate if there are any small imperfections (ledge or step artifacts from the original CAD geometry) that can be removed as part of this task. If you select yes, then you must specify a Max Step Width and the Step Skewness Quality Limit.
12077
12077
  """
12078
12078
 
12079
12079
  def create_instance(self) -> _ImproveSurfaceMeshCommandArguments:
@@ -12287,8 +12287,8 @@ class Root(PyMenu):
12287
12287
  def __init__(self, parent, attr, service, rules, path):
12288
12288
  super().__init__(parent, attr, service, rules, path)
12289
12289
  self.FirstNumber = self._FirstNumber(self, "FirstNumber", service, rules, path)
12290
- self.CustomPatternString = self._CustomPatternString(self, "CustomPatternString", service, rules, path)
12291
12290
  self.NbCellsPerUnit = self._NbCellsPerUnit(self, "NbCellsPerUnit", service, rules, path)
12291
+ self.CustomPatternString = self._CustomPatternString(self, "CustomPatternString", service, rules, path)
12292
12292
  self.InvokeBatteryModelingOptions = self._InvokeBatteryModelingOptions(self, "InvokeBatteryModelingOptions", service, rules, path)
12293
12293
  self.UseCustomPattern = self._UseCustomPattern(self, "UseCustomPattern", service, rules, path)
12294
12294
 
@@ -12297,14 +12297,14 @@ class Root(PyMenu):
12297
12297
  Specify the numerical value that will be appended to the name of the first unit associated with the meshing pattern object. This value also dictates the labeling for mesh objects associated with this mesh pattern. More...
12298
12298
  """
12299
12299
 
12300
- class _CustomPatternString(PyTextualCommandArgumentsSubItem):
12300
+ class _NbCellsPerUnit(PyNumericalCommandArgumentsSubItem):
12301
12301
  """
12302
- Argument CustomPatternString.
12302
+ Specify the numerical value that will be appended to the name of the first unit associated with the meshing pattern object. This value also dictates the labeling for mesh objects associated with this mesh pattern. More...
12303
12303
  """
12304
12304
 
12305
- class _NbCellsPerUnit(PyNumericalCommandArgumentsSubItem):
12305
+ class _CustomPatternString(PyTextualCommandArgumentsSubItem):
12306
12306
  """
12307
- Specify the numerical value that will be appended to the name of the first unit associated with the meshing pattern object. This value also dictates the labeling for mesh objects associated with this mesh pattern. More...
12307
+ Argument CustomPatternString.
12308
12308
  """
12309
12309
 
12310
12310
  class _InvokeBatteryModelingOptions(PyTextualCommandArgumentsSubItem):
@@ -12397,8 +12397,8 @@ class Root(PyMenu):
12397
12397
  super().__init__(parent, attr, service, rules, path)
12398
12398
  self.FacetMaxEdgeLength = self._FacetMaxEdgeLength(self, "FacetMaxEdgeLength", service, rules, path)
12399
12399
  self.FacetResolution = self._FacetResolution(self, "FacetResolution", service, rules, path)
12400
- self.MaxEdgeLengthFactor = self._MaxEdgeLengthFactor(self, "MaxEdgeLengthFactor", service, rules, path)
12401
12400
  self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
12401
+ self.MaxEdgeLengthFactor = self._MaxEdgeLengthFactor(self, "MaxEdgeLengthFactor", service, rules, path)
12402
12402
  self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
12403
12403
  self.MaxEdgeLength = self._MaxEdgeLength(self, "MaxEdgeLength", service, rules, path)
12404
12404
  self.CustomNormalAngle = self._CustomNormalAngle(self, "CustomNormalAngle", service, rules, path)
@@ -12415,14 +12415,14 @@ class Root(PyMenu):
12415
12415
  Argument FacetResolution.
12416
12416
  """
12417
12417
 
12418
- class _MaxEdgeLengthFactor(PyNumericalCommandArgumentsSubItem):
12418
+ class _Deviation(PyNumericalCommandArgumentsSubItem):
12419
12419
  """
12420
- Argument MaxEdgeLengthFactor.
12420
+ Argument Deviation.
12421
12421
  """
12422
12422
 
12423
- class _Deviation(PyNumericalCommandArgumentsSubItem):
12423
+ class _MaxEdgeLengthFactor(PyNumericalCommandArgumentsSubItem):
12424
12424
  """
12425
- Argument Deviation.
12425
+ Argument MaxEdgeLengthFactor.
12426
12426
  """
12427
12427
 
12428
12428
  class _NormalAngle(PyNumericalCommandArgumentsSubItem):
@@ -12554,9 +12554,9 @@ class Root(PyMenu):
12554
12554
  self.MinSize = self._MinSize(self, "MinSize", service, rules, path)
12555
12555
  self.WrapMax = self._WrapMax(self, "WrapMax", service, rules, path)
12556
12556
  self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
12557
+ self.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", service, rules, path)
12557
12558
  self.InitialSizeControl = self._InitialSizeControl(self, "InitialSizeControl", service, rules, path)
12558
12559
  self.SizingType = self._SizingType(self, "SizingType", service, rules, path)
12559
- self.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", service, rules, path)
12560
12560
  self.WrapCurvatureNormalAngle = self._WrapCurvatureNormalAngle(self, "WrapCurvatureNormalAngle", service, rules, path)
12561
12561
  self.CellsPerGap = self._CellsPerGap(self, "CellsPerGap", service, rules, path)
12562
12562
  self.TargetSizeControl = self._TargetSizeControl(self, "TargetSizeControl", service, rules, path)
@@ -12607,6 +12607,11 @@ class Root(PyMenu):
12607
12607
  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.
12608
12608
  """
12609
12609
 
12610
+ class _WrapGrowthRate(PyNumericalCommandArgumentsSubItem):
12611
+ """
12612
+ Specify the increase in element edge length with each succeeding layer of elements.
12613
+ """
12614
+
12610
12615
  class _InitialSizeControl(PyParameterCommandArgumentsSubItem):
12611
12616
  """
12612
12617
  Enable this field to display the initial size control in the graphics window.
@@ -12617,11 +12622,6 @@ class Root(PyMenu):
12617
12622
  Choose the type of sizing control (curvature, proximity, soft, or boi).
12618
12623
  """
12619
12624
 
12620
- class _WrapGrowthRate(PyNumericalCommandArgumentsSubItem):
12621
- """
12622
- Specify the increase in element edge length with each succeeding layer of elements.
12623
- """
12624
-
12625
12625
  class _WrapCurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
12626
12626
  """
12627
12627
  Specify the maximum allowable angle (from 0 to 180 degrees) that one element edge is allowed to span given a particular geometry curvature. You can use this field to limit the number of elements that are generated along a curve or surface if the minimum size is too small for that particular curve.
@@ -13333,10 +13333,10 @@ class Root(PyMenu):
13333
13333
  super().__init__(parent, attr, service, rules, path)
13334
13334
  self.FacetMaxEdgeLength = self._FacetMaxEdgeLength(self, "FacetMaxEdgeLength", service, rules, path)
13335
13335
  self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
13336
- self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
13337
13336
  self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
13338
- self.Refacet = self._Refacet(self, "Refacet", service, rules, path)
13339
13337
  self.MaxEdgeLengthFactor = self._MaxEdgeLengthFactor(self, "MaxEdgeLengthFactor", service, rules, path)
13338
+ self.Refacet = self._Refacet(self, "Refacet", service, rules, path)
13339
+ self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
13340
13340
 
13341
13341
  class _FacetMaxEdgeLength(PyTextualCommandArgumentsSubItem):
13342
13342
  """
@@ -13348,14 +13348,14 @@ class Root(PyMenu):
13348
13348
  Specify a maximum element size for the imported model to avoid very large facets during the file import.
13349
13349
  """
13350
13350
 
13351
- class _NormalAngle(PyNumericalCommandArgumentsSubItem):
13351
+ class _Deviation(PyNumericalCommandArgumentsSubItem):
13352
13352
  """
13353
- Specify a rotational angle (in degrees) of transformation.
13353
+ Specify the distance between facet edges and the geometry edges. Decreasing this value will result in more facets along curved edges.
13354
13354
  """
13355
13355
 
13356
- class _Deviation(PyNumericalCommandArgumentsSubItem):
13356
+ class _MaxEdgeLengthFactor(PyNumericalCommandArgumentsSubItem):
13357
13357
  """
13358
- Specify the distance between facet edges and the geometry edges. Decreasing this value will result in more facets along curved edges.
13358
+ Specifies the maximum size of the facets relative to the bounding box of the geometry.
13359
13359
  """
13360
13360
 
13361
13361
  class _Refacet(PyParameterCommandArgumentsSubItem):
@@ -13363,9 +13363,9 @@ class Root(PyMenu):
13363
13363
  Select this option when you want to change faceting of the selected object. Refaceting will refacet the original CAD geometry. Only the faceted CAD geometry is used during the meshing process. The refaceting settings control how far the facet edges are from the model and the size of the facets. More...
13364
13364
  """
13365
13365
 
13366
- class _MaxEdgeLengthFactor(PyNumericalCommandArgumentsSubItem):
13366
+ class _NormalAngle(PyNumericalCommandArgumentsSubItem):
13367
13367
  """
13368
- Specifies the maximum size of the facets relative to the bounding box of the geometry.
13368
+ Specify a rotational angle (in degrees) of transformation.
13369
13369
  """
13370
13370
 
13371
13371
  class _IgnoreSolidNames(PyParameterCommandArgumentsSubItem):
@@ -14039,14 +14039,14 @@ class Root(PyMenu):
14039
14039
  self.ConnectLabelWildcard = self._ConnectLabelWildcard(self, "ConnectLabelWildcard", service, rules, path)
14040
14040
  self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
14041
14041
  self.RelativeShareTopologyTolerance = self._RelativeShareTopologyTolerance(self, "RelativeShareTopologyTolerance", service, rules, path)
14042
- self.ShareTopologyAngle = self._ShareTopologyAngle(self, "ShareTopologyAngle", service, rules, path)
14042
+ self.FluidLabelWildcard = self._FluidLabelWildcard(self, "FluidLabelWildcard", service, rules, path)
14043
14043
  self.ExecuteJoinIntersect = self._ExecuteJoinIntersect(self, "ExecuteJoinIntersect", service, rules, path)
14044
14044
  self.Operation = self._Operation(self, "Operation", service, rules, path)
14045
- self.FluidLabelWildcard = self._FluidLabelWildcard(self, "FluidLabelWildcard", service, rules, path)
14045
+ self.ShareTopologyAngle = self._ShareTopologyAngle(self, "ShareTopologyAngle", service, rules, path)
14046
14046
  self.STToleranceIncrement = self._STToleranceIncrement(self, "STToleranceIncrement", service, rules, path)
14047
- self.ShowShareTopologyPreferences = self._ShowShareTopologyPreferences(self, "ShowShareTopologyPreferences", service, rules, path)
14048
- self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
14049
14047
  self.IntfLabelList = self._IntfLabelList(self, "IntfLabelList", service, rules, path)
14048
+ self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
14049
+ self.ShowShareTopologyPreferences = self._ShowShareTopologyPreferences(self, "ShowShareTopologyPreferences", service, rules, path)
14050
14050
  self.AdvancedImprove = self._AdvancedImprove(self, "AdvancedImprove", service, rules, path)
14051
14051
  self.NumberOfJoinTries = self._NumberOfJoinTries(self, "NumberOfJoinTries", service, rules, path)
14052
14052
 
@@ -14075,9 +14075,9 @@ class Root(PyMenu):
14075
14075
  Specify the relative tolerance for joining or intersecting face pairs, or the relative tolerance for connecting edge and face pairs.
14076
14076
  """
14077
14077
 
14078
- class _ShareTopologyAngle(PyNumericalCommandArgumentsSubItem):
14078
+ class _FluidLabelWildcard(PyTextualCommandArgumentsSubItem):
14079
14079
  """
14080
- Specify the threshold angle for joining face pairs.
14080
+ Argument FluidLabelWildcard.
14081
14081
  """
14082
14082
 
14083
14083
  class _ExecuteJoinIntersect(PyTextualCommandArgumentsSubItem):
@@ -14090,9 +14090,9 @@ class Root(PyMenu):
14090
14090
  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.
14091
14091
  """
14092
14092
 
14093
- class _FluidLabelWildcard(PyTextualCommandArgumentsSubItem):
14093
+ class _ShareTopologyAngle(PyNumericalCommandArgumentsSubItem):
14094
14094
  """
14095
- Argument FluidLabelWildcard.
14095
+ Specify the threshold angle for joining face pairs.
14096
14096
  """
14097
14097
 
14098
14098
  class _STToleranceIncrement(PyNumericalCommandArgumentsSubItem):
@@ -14100,9 +14100,9 @@ class Root(PyMenu):
14100
14100
  Specify the increment by which the tolerance changes for each attempt to join face pairs.
14101
14101
  """
14102
14102
 
14103
- class _ShowShareTopologyPreferences(PyParameterCommandArgumentsSubItem):
14103
+ class _IntfLabelList(PyTextualCommandArgumentsSubItem):
14104
14104
  """
14105
- Display advanced options that you may want to apply to the task.
14105
+ 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...
14106
14106
  """
14107
14107
 
14108
14108
  class _PerLabelList(PyTextualCommandArgumentsSubItem):
@@ -14110,9 +14110,9 @@ class Root(PyMenu):
14110
14110
  Argument PerLabelList.
14111
14111
  """
14112
14112
 
14113
- class _IntfLabelList(PyTextualCommandArgumentsSubItem):
14113
+ class _ShowShareTopologyPreferences(PyParameterCommandArgumentsSubItem):
14114
14114
  """
14115
- 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...
14115
+ Display advanced options that you may want to apply to the task.
14116
14116
  """
14117
14117
 
14118
14118
  class _AdvancedImprove(PyTextualCommandArgumentsSubItem):
@@ -14196,15 +14196,15 @@ class Root(PyMenu):
14196
14196
  super().__init__(parent, attr, service, rules, path)
14197
14197
  self.SMQualityCollapseLimit = self._SMQualityCollapseLimit(self, "SMQualityCollapseLimit", service, rules, path)
14198
14198
  self.FoldFaceLimit = self._FoldFaceLimit(self, "FoldFaceLimit", service, rules, path)
14199
- self.SMSeparation = self._SMSeparation(self, "SMSeparation", service, rules, path)
14200
- self.SMSeparationAngle = self._SMSeparationAngle(self, "SMSeparationAngle", service, rules, path)
14201
14199
  self.SMQualityImprove = self._SMQualityImprove(self, "SMQualityImprove", service, rules, path)
14202
- self.AutoMerge = self._AutoMerge(self, "AutoMerge", service, rules, path)
14203
- self.TVMAutoControlCreation = self._TVMAutoControlCreation(self, "TVMAutoControlCreation", service, rules, path)
14200
+ self.SMSeparationAngle = self._SMSeparationAngle(self, "SMSeparationAngle", service, rules, path)
14201
+ self.SMSeparation = self._SMSeparation(self, "SMSeparation", service, rules, path)
14204
14202
  self.ShowSurfaceMeshPreferences = self._ShowSurfaceMeshPreferences(self, "ShowSurfaceMeshPreferences", service, rules, path)
14203
+ self.TVMAutoControlCreation = self._TVMAutoControlCreation(self, "TVMAutoControlCreation", service, rules, path)
14204
+ self.AutoMerge = self._AutoMerge(self, "AutoMerge", service, rules, path)
14205
14205
  self.SMRemoveStep = self._SMRemoveStep(self, "SMRemoveStep", service, rules, path)
14206
- self.SMStepWidth = self._SMStepWidth(self, "SMStepWidth", service, rules, path)
14207
14206
  self.ParallelRegionCompute = self._ParallelRegionCompute(self, "ParallelRegionCompute", service, rules, path)
14207
+ self.SMStepWidth = self._SMStepWidth(self, "SMStepWidth", service, rules, path)
14208
14208
  self.VolumeMeshMaxSize = self._VolumeMeshMaxSize(self, "VolumeMeshMaxSize", service, rules, path)
14209
14209
  self.AutoAssignZoneTypes = self._AutoAssignZoneTypes(self, "AutoAssignZoneTypes", service, rules, path)
14210
14210
  self.SMQualityMaxAngle = self._SMQualityMaxAngle(self, "SMQualityMaxAngle", service, rules, path)
@@ -14223,9 +14223,9 @@ class Root(PyMenu):
14223
14223
  Argument FoldFaceLimit.
14224
14224
  """
14225
14225
 
14226
- class _SMSeparation(PyTextualCommandArgumentsSubItem):
14226
+ class _SMQualityImprove(PyTextualCommandArgumentsSubItem):
14227
14227
  """
14228
- Argument SMSeparation.
14228
+ Argument SMQualityImprove.
14229
14229
  """
14230
14230
 
14231
14231
  class _SMSeparationAngle(PyNumericalCommandArgumentsSubItem):
@@ -14233,14 +14233,14 @@ class Root(PyMenu):
14233
14233
  Argument SMSeparationAngle.
14234
14234
  """
14235
14235
 
14236
- class _SMQualityImprove(PyTextualCommandArgumentsSubItem):
14236
+ class _SMSeparation(PyTextualCommandArgumentsSubItem):
14237
14237
  """
14238
- Argument SMQualityImprove.
14238
+ Argument SMSeparation.
14239
14239
  """
14240
14240
 
14241
- class _AutoMerge(PyParameterCommandArgumentsSubItem):
14241
+ class _ShowSurfaceMeshPreferences(PyParameterCommandArgumentsSubItem):
14242
14242
  """
14243
- Argument AutoMerge.
14243
+ Argument ShowSurfaceMeshPreferences.
14244
14244
  """
14245
14245
 
14246
14246
  class _TVMAutoControlCreation(PyTextualCommandArgumentsSubItem):
@@ -14248,9 +14248,9 @@ class Root(PyMenu):
14248
14248
  Argument TVMAutoControlCreation.
14249
14249
  """
14250
14250
 
14251
- class _ShowSurfaceMeshPreferences(PyParameterCommandArgumentsSubItem):
14251
+ class _AutoMerge(PyParameterCommandArgumentsSubItem):
14252
14252
  """
14253
- Argument ShowSurfaceMeshPreferences.
14253
+ Argument AutoMerge.
14254
14254
  """
14255
14255
 
14256
14256
  class _SMRemoveStep(PyTextualCommandArgumentsSubItem):
@@ -14258,14 +14258,14 @@ class Root(PyMenu):
14258
14258
  Argument SMRemoveStep.
14259
14259
  """
14260
14260
 
14261
- class _SMStepWidth(PyNumericalCommandArgumentsSubItem):
14261
+ class _ParallelRegionCompute(PyTextualCommandArgumentsSubItem):
14262
14262
  """
14263
- Argument SMStepWidth.
14263
+ Argument ParallelRegionCompute.
14264
14264
  """
14265
14265
 
14266
- class _ParallelRegionCompute(PyTextualCommandArgumentsSubItem):
14266
+ class _SMStepWidth(PyNumericalCommandArgumentsSubItem):
14267
14267
  """
14268
- Argument ParallelRegionCompute.
14268
+ Argument SMStepWidth.
14269
14269
  """
14270
14270
 
14271
14271
  class _VolumeMeshMaxSize(PyNumericalCommandArgumentsSubItem):
@@ -14385,10 +14385,10 @@ class Root(PyMenu):
14385
14385
  def __init__(self, parent, attr, service, rules, path):
14386
14386
  super().__init__(parent, attr, service, rules, path)
14387
14387
  self.NewLabelObjects = self._NewLabelObjects(self, "NewLabelObjects", service, rules, path)
14388
- self.NewLabels = self._NewLabels(self, "NewLabels", service, rules, path)
14388
+ self.NewLabelCells = self._NewLabelCells(self, "NewLabelCells", service, rules, path)
14389
14389
  self.NewLabelType = self._NewLabelType(self, "NewLabelType", service, rules, path)
14390
+ self.NewLabels = self._NewLabels(self, "NewLabels", service, rules, path)
14390
14391
  self.NewLabelResolution = self._NewLabelResolution(self, "NewLabelResolution", service, rules, path)
14391
- self.NewLabelCells = self._NewLabelCells(self, "NewLabelCells", service, rules, path)
14392
14392
  self.NewLabelMax = self._NewLabelMax(self, "NewLabelMax", service, rules, path)
14393
14393
  self.NewZoneType = self._NewZoneType(self, "NewZoneType", service, rules, path)
14394
14394
  self.NewLabelCurvature = self._NewLabelCurvature(self, "NewLabelCurvature", service, rules, path)
@@ -14399,9 +14399,9 @@ class Root(PyMenu):
14399
14399
  Argument NewLabelObjects.
14400
14400
  """
14401
14401
 
14402
- class _NewLabels(PyTextualCommandArgumentsSubItem):
14402
+ class _NewLabelCells(PyTextualCommandArgumentsSubItem):
14403
14403
  """
14404
- Argument NewLabels.
14404
+ Argument NewLabelCells.
14405
14405
  """
14406
14406
 
14407
14407
  class _NewLabelType(PyTextualCommandArgumentsSubItem):
@@ -14409,14 +14409,14 @@ class Root(PyMenu):
14409
14409
  Argument NewLabelType.
14410
14410
  """
14411
14411
 
14412
- class _NewLabelResolution(PyTextualCommandArgumentsSubItem):
14412
+ class _NewLabels(PyTextualCommandArgumentsSubItem):
14413
14413
  """
14414
- Argument NewLabelResolution.
14414
+ Argument NewLabels.
14415
14415
  """
14416
14416
 
14417
- class _NewLabelCells(PyTextualCommandArgumentsSubItem):
14417
+ class _NewLabelResolution(PyTextualCommandArgumentsSubItem):
14418
14418
  """
14419
- Argument NewLabelCells.
14419
+ Argument NewLabelResolution.
14420
14420
  """
14421
14421
 
14422
14422
  class _NewLabelMax(PyTextualCommandArgumentsSubItem):