ansys-fluent-core 0.33.0__py3-none-any.whl → 0.34.0__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 (78) hide show
  1. ansys/fluent/core/__init__.py +3 -3
  2. ansys/fluent/core/codegen/builtin_settingsgen.py +25 -19
  3. ansys/fluent/core/codegen/settingsgen.py +17 -5
  4. ansys/fluent/core/codegen/tuigen.py +2 -1
  5. ansys/fluent/core/docker/docker_compose.py +4 -1
  6. ansys/fluent/core/docker/utils.py +35 -0
  7. ansys/fluent/core/exceptions.py +13 -1
  8. ansys/fluent/core/field_data_interfaces.py +239 -38
  9. ansys/fluent/core/file_session.py +139 -59
  10. ansys/fluent/core/fluent_connection.py +23 -16
  11. ansys/fluent/core/generated/api_tree/api_objects.json +1 -1
  12. ansys/fluent/core/generated/datamodel_231/flicing.py +30 -30
  13. ansys/fluent/core/generated/datamodel_231/meshing.py +171 -171
  14. ansys/fluent/core/generated/datamodel_232/flicing.py +35 -35
  15. ansys/fluent/core/generated/datamodel_232/meshing.py +223 -223
  16. ansys/fluent/core/generated/datamodel_241/flicing.py +35 -35
  17. ansys/fluent/core/generated/datamodel_241/meshing.py +264 -264
  18. ansys/fluent/core/generated/datamodel_242/flicing.py +30 -30
  19. ansys/fluent/core/generated/datamodel_242/meshing.py +369 -369
  20. ansys/fluent/core/generated/datamodel_251/flicing.py +35 -35
  21. ansys/fluent/core/generated/datamodel_251/meshing.py +331 -331
  22. ansys/fluent/core/generated/datamodel_251/part_management.py +3 -3
  23. ansys/fluent/core/generated/datamodel_252/flicing.py +50 -50
  24. ansys/fluent/core/generated/datamodel_252/meshing.py +398 -398
  25. ansys/fluent/core/generated/datamodel_252/part_management.py +5 -5
  26. ansys/fluent/core/generated/datamodel_261/flicing.py +40 -40
  27. ansys/fluent/core/generated/datamodel_261/meshing.py +416 -397
  28. ansys/fluent/core/generated/datamodel_261/part_management.py +10 -10
  29. ansys/fluent/core/generated/datamodel_261/preferences.py +7 -0
  30. ansys/fluent/core/generated/fluent_version_261.py +3 -3
  31. ansys/fluent/core/generated/meshing/tui_261.py +1186 -1180
  32. ansys/fluent/core/generated/solver/settings_231.py +1 -0
  33. ansys/fluent/core/generated/solver/settings_231.pyi +3025 -1
  34. ansys/fluent/core/generated/solver/settings_232.py +1 -0
  35. ansys/fluent/core/generated/solver/settings_232.pyi +3425 -1
  36. ansys/fluent/core/generated/solver/settings_241.py +1 -0
  37. ansys/fluent/core/generated/solver/settings_241.pyi +4423 -1
  38. ansys/fluent/core/generated/solver/settings_242.py +1 -0
  39. ansys/fluent/core/generated/solver/settings_242.pyi +5474 -1
  40. ansys/fluent/core/generated/solver/settings_251.py +11 -0
  41. ansys/fluent/core/generated/solver/settings_251.pyi +6006 -1
  42. ansys/fluent/core/generated/solver/settings_252.py +11 -1
  43. ansys/fluent/core/generated/solver/settings_252.pyi +6782 -2
  44. ansys/fluent/core/generated/solver/settings_261.py +5592 -2740
  45. ansys/fluent/core/generated/solver/settings_261.pyi +10335 -1994
  46. ansys/fluent/core/generated/solver/settings_builtin.py +56 -22
  47. ansys/fluent/core/generated/solver/settings_builtin.pyi +22 -0
  48. ansys/fluent/core/generated/solver/tui_261.py +2445 -2281
  49. ansys/fluent/core/launcher/container_launcher.py +6 -2
  50. ansys/fluent/core/launcher/error_handler.py +1 -1
  51. ansys/fluent/core/launcher/fluent_container.py +53 -10
  52. ansys/fluent/core/launcher/launcher.py +3 -0
  53. ansys/fluent/core/launcher/watchdog.py +6 -6
  54. ansys/fluent/core/launcher/watchdog_exec +1 -1
  55. ansys/fluent/core/pyfluent_warnings.py +7 -1
  56. ansys/fluent/core/report.py +2 -0
  57. ansys/fluent/core/search.py +11 -3
  58. ansys/fluent/core/services/__init__.py +2 -2
  59. ansys/fluent/core/services/app_utilities.py +39 -0
  60. ansys/fluent/core/services/deprecated_field_data.py +4 -4
  61. ansys/fluent/core/services/field_data.py +158 -41
  62. ansys/fluent/core/services/reduction.py +16 -5
  63. ansys/fluent/core/services/settings.py +1 -0
  64. ansys/fluent/core/session.py +16 -1
  65. ansys/fluent/core/session_pure_meshing.py +5 -5
  66. ansys/fluent/core/session_pure_meshing.pyi +1 -0
  67. ansys/fluent/core/session_solver.py +33 -8
  68. ansys/fluent/core/session_solver.pyi +1 -0
  69. ansys/fluent/core/solver/error_message.py +2 -2
  70. ansys/fluent/core/solver/flobject.py +187 -120
  71. ansys/fluent/core/solver/function/reduction.py +37 -9
  72. ansys/fluent/core/solver/settings_builtin_data.py +5 -3
  73. ansys/fluent/core/utils/fluent_version.py +1 -3
  74. ansys/fluent/core/utils/networking.py +18 -8
  75. {ansys_fluent_core-0.33.0.dist-info → ansys_fluent_core-0.34.0.dist-info}/METADATA +10 -11
  76. {ansys_fluent_core-0.33.0.dist-info → ansys_fluent_core-0.34.0.dist-info}/RECORD +78 -77
  77. {ansys_fluent_core-0.33.0.dist-info → ansys_fluent_core-0.34.0.dist-info}/WHEEL +1 -1
  78. {ansys_fluent_core-0.33.0.dist-info/licenses → ansys_fluent_core-0.34.0.dist-info}/LICENSE +0 -0
@@ -1302,14 +1302,14 @@ class Root(PyMenu):
1302
1302
  self.ConnectLabelWildcard = self._ConnectLabelWildcard(self, "ConnectLabelWildcard", service, rules, path)
1303
1303
  self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
1304
1304
  self.RelativeShareTopologyTolerance = self._RelativeShareTopologyTolerance(self, "RelativeShareTopologyTolerance", service, rules, path)
1305
- self.ShareTopologyAngle = self._ShareTopologyAngle(self, "ShareTopologyAngle", service, rules, path)
1305
+ self.FluidLabelWildcard = self._FluidLabelWildcard(self, "FluidLabelWildcard", service, rules, path)
1306
1306
  self.ExecuteJoinIntersect = self._ExecuteJoinIntersect(self, "ExecuteJoinIntersect", service, rules, path)
1307
1307
  self.Operation = self._Operation(self, "Operation", service, rules, path)
1308
- self.FluidLabelWildcard = self._FluidLabelWildcard(self, "FluidLabelWildcard", service, rules, path)
1308
+ self.ShareTopologyAngle = self._ShareTopologyAngle(self, "ShareTopologyAngle", service, rules, path)
1309
1309
  self.STToleranceIncrement = self._STToleranceIncrement(self, "STToleranceIncrement", service, rules, path)
1310
- self.IntfLabelList = self._IntfLabelList(self, "IntfLabelList", service, rules, path)
1311
- self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
1312
1310
  self.ShowShareTopologyPreferences = self._ShowShareTopologyPreferences(self, "ShowShareTopologyPreferences", service, rules, path)
1311
+ self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
1312
+ self.IntfLabelList = self._IntfLabelList(self, "IntfLabelList", service, rules, path)
1313
1313
  self.AdvancedImprove = self._AdvancedImprove(self, "AdvancedImprove", service, rules, path)
1314
1314
  self.NumberOfJoinTries = self._NumberOfJoinTries(self, "NumberOfJoinTries", service, rules, path)
1315
1315
 
@@ -1338,9 +1338,9 @@ class Root(PyMenu):
1338
1338
  Specify the relative tolerance for joining or intersecting face pairs, or the relative tolerance for connecting edge and face pairs.
1339
1339
  """
1340
1340
 
1341
- class _ShareTopologyAngle(PyNumericalCommandArgumentsSubItem):
1341
+ class _FluidLabelWildcard(PyTextualCommandArgumentsSubItem):
1342
1342
  """
1343
- Specify the threshold angle for joining face pairs.
1343
+ Argument FluidLabelWildcard.
1344
1344
  """
1345
1345
 
1346
1346
  class _ExecuteJoinIntersect(PyTextualCommandArgumentsSubItem):
@@ -1353,9 +1353,9 @@ class Root(PyMenu):
1353
1353
  Choose whether to apply share topology using the Join-Intersect method where you join and/or intersect the problematic faces, or using the Interface Connect method where you connect edges of overlapping face pairs. Note that imprinting of overlapping faces in SCDM/Discovery is highly recommended for the Interface Connect method.
1354
1354
  """
1355
1355
 
1356
- class _FluidLabelWildcard(PyTextualCommandArgumentsSubItem):
1356
+ class _ShareTopologyAngle(PyNumericalCommandArgumentsSubItem):
1357
1357
  """
1358
- Argument FluidLabelWildcard.
1358
+ Specify the threshold angle for joining face pairs.
1359
1359
  """
1360
1360
 
1361
1361
  class _STToleranceIncrement(PyNumericalCommandArgumentsSubItem):
@@ -1363,9 +1363,9 @@ class Root(PyMenu):
1363
1363
  Specify the increment by which the tolerance changes for each attempt to join face pairs.
1364
1364
  """
1365
1365
 
1366
- class _IntfLabelList(PyTextualCommandArgumentsSubItem):
1366
+ class _ShowShareTopologyPreferences(PyParameterCommandArgumentsSubItem):
1367
1367
  """
1368
- Enter a text string to filter out the list of labels. Use the Filter Text drop-down to provide text and/or regular expressions in filtering the list (for example, using \\*, ?, and []). Choose Use Wildcard to provide wildcard expressions in filtering the list. When you use either ? or \\* in your expression, the matching list item(s) are automatically selected in the list. Use ^, |, and & in your expression to indicate boolean operations for NOT, OR, and AND, respectively. More...
1368
+ Display advanced options that you may want to apply to the task.
1369
1369
  """
1370
1370
 
1371
1371
  class _PerLabelList(PyTextualCommandArgumentsSubItem):
@@ -1373,9 +1373,9 @@ class Root(PyMenu):
1373
1373
  Argument PerLabelList.
1374
1374
  """
1375
1375
 
1376
- class _ShowShareTopologyPreferences(PyParameterCommandArgumentsSubItem):
1376
+ class _IntfLabelList(PyTextualCommandArgumentsSubItem):
1377
1377
  """
1378
- Display advanced options that you may want to apply to the task.
1378
+ Enter a text string to filter out the list of labels. Use the Filter Text drop-down to provide text and/or regular expressions in filtering the list (for example, using \\*, ?, and []). Choose Use Wildcard to provide wildcard expressions in filtering the list. When you use either ? or \\* in your expression, the matching list item(s) are automatically selected in the list. Use ^, |, and & in your expression to indicate boolean operations for NOT, OR, and AND, respectively. More...
1379
1379
  """
1380
1380
 
1381
1381
  class _AdvancedImprove(PyTextualCommandArgumentsSubItem):
@@ -1522,23 +1522,23 @@ 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.ExposeSide = self._ExposeSide(self, "ExposeSide", service, rules, path)
1526
1525
  self.ShowShellBLAdvancedOptions = self._ShowShellBLAdvancedOptions(self, "ShowShellBLAdvancedOptions", service, rules, path)
1526
+ self.ExposeSide = self._ExposeSide(self, "ExposeSide", service, rules, path)
1527
1527
  self.MaxAspectRatio = self._MaxAspectRatio(self, "MaxAspectRatio", service, rules, path)
1528
1528
  self.MinAspectRatio = self._MinAspectRatio(self, "MinAspectRatio", service, rules, path)
1529
- self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
1530
1529
  self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
1530
+ self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
1531
1531
  self.GapFactor = self._GapFactor(self, "GapFactor", service, rules, path)
1532
1532
  self.AdjacentAttachAngle = self._AdjacentAttachAngle(self, "AdjacentAttachAngle", service, rules, path)
1533
1533
 
1534
- class _ExposeSide(PyTextualCommandArgumentsSubItem):
1534
+ class _ShowShellBLAdvancedOptions(PyParameterCommandArgumentsSubItem):
1535
1535
  """
1536
- Argument ExposeSide.
1536
+ Argument ShowShellBLAdvancedOptions.
1537
1537
  """
1538
1538
 
1539
- class _ShowShellBLAdvancedOptions(PyParameterCommandArgumentsSubItem):
1539
+ class _ExposeSide(PyTextualCommandArgumentsSubItem):
1540
1540
  """
1541
- Argument ShowShellBLAdvancedOptions.
1541
+ Argument ExposeSide.
1542
1542
  """
1543
1543
 
1544
1544
  class _MaxAspectRatio(PyNumericalCommandArgumentsSubItem):
@@ -1551,14 +1551,14 @@ class Root(PyMenu):
1551
1551
  Argument MinAspectRatio.
1552
1552
  """
1553
1553
 
1554
- class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
1554
+ class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
1555
1555
  """
1556
- Argument LastRatioPercentage.
1556
+ Argument LastRatioNumLayers.
1557
1557
  """
1558
1558
 
1559
- class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
1559
+ class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
1560
1560
  """
1561
- Argument LastRatioNumLayers.
1561
+ Argument LastRatioPercentage.
1562
1562
  """
1563
1563
 
1564
1564
  class _GapFactor(PyNumericalCommandArgumentsSubItem):
@@ -1772,9 +1772,9 @@ class Root(PyMenu):
1772
1772
  self.SplitPrism = self._SplitPrism(self, "SplitPrism", service, rules, path)
1773
1773
  self.ModifyAtInvalidNormals = self._ModifyAtInvalidNormals(self, "ModifyAtInvalidNormals", service, rules, path)
1774
1774
  self.InvalidNormalMethod = self._InvalidNormalMethod(self, "InvalidNormalMethod", service, rules, path)
1775
- self.NumberOfSplitLayers = self._NumberOfSplitLayers(self, "NumberOfSplitLayers", service, rules, path)
1776
1775
  self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
1777
1776
  self.ShowLocalPrismPreferences = self._ShowLocalPrismPreferences(self, "ShowLocalPrismPreferences", service, rules, path)
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)
1780
1780
  self.IgnoreBoundaryLayers = self._IgnoreBoundaryLayers(self, "IgnoreBoundaryLayers", service, rules, path)
@@ -1819,11 +1819,6 @@ class Root(PyMenu):
1819
1819
  Argument InvalidNormalMethod.
1820
1820
  """
1821
1821
 
1822
- class _NumberOfSplitLayers(PyNumericalCommandArgumentsSubItem):
1823
- """
1824
- Indicate the number of split prism layers you wish to apply to each layer that you specified for the boundary layer definition.
1825
- """
1826
-
1827
1822
  class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
1828
1823
  """
1829
1824
  Argument LastRatioNumLayers.
@@ -1834,6 +1829,11 @@ class Root(PyMenu):
1834
1829
  Display advanced options that you may want to apply to this task.
1835
1830
  """
1836
1831
 
1832
+ class _NumberOfSplitLayers(PyNumericalCommandArgumentsSubItem):
1833
+ """
1834
+ Indicate the number of split prism layers you wish to apply to each layer that you specified for the boundary layer definition.
1835
+ """
1836
+
1837
1837
  class _AllowedTangencyAtInvalidNormals(PyNumericalCommandArgumentsSubItem):
1838
1838
  """
1839
1839
  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).
@@ -2093,9 +2093,9 @@ class Root(PyMenu):
2093
2093
  self.SplitPrism = self._SplitPrism(self, "SplitPrism", service, rules, path)
2094
2094
  self.ModifyAtInvalidNormals = self._ModifyAtInvalidNormals(self, "ModifyAtInvalidNormals", service, rules, path)
2095
2095
  self.InvalidNormalMethod = self._InvalidNormalMethod(self, "InvalidNormalMethod", service, rules, path)
2096
- self.ShowLocalPrismPreferences = self._ShowLocalPrismPreferences(self, "ShowLocalPrismPreferences", service, rules, path)
2097
2096
  self.NumberOfSplitLayers = self._NumberOfSplitLayers(self, "NumberOfSplitLayers", service, rules, path)
2098
2097
  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)
@@ -2140,11 +2140,6 @@ 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
-
2148
2143
  class _NumberOfSplitLayers(PyNumericalCommandArgumentsSubItem):
2149
2144
  """
2150
2145
  Indicate the number of split prism layers you wish to apply to each layer that you specified for the boundary layer definition.
@@ -2155,6 +2150,11 @@ class Root(PyMenu):
2155
2150
  Argument LastRatioNumLayers.
2156
2151
  """
2157
2152
 
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).
@@ -2396,8 +2396,8 @@ class Root(PyMenu):
2396
2396
  self.WrapMax = self._WrapMax(self, "WrapMax", service, rules, path)
2397
2397
  self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
2398
2398
  self.InitialSizeControl = self._InitialSizeControl(self, "InitialSizeControl", service, rules, path)
2399
- self.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", service, rules, path)
2400
2399
  self.SizingType = self._SizingType(self, "SizingType", service, rules, path)
2400
+ self.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", 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)
@@ -2453,14 +2453,14 @@ class Root(PyMenu):
2453
2453
  Enable this field to display the initial size control in the graphics window.
2454
2454
  """
2455
2455
 
2456
- class _WrapGrowthRate(PyNumericalCommandArgumentsSubItem):
2456
+ class _SizingType(PyTextualCommandArgumentsSubItem):
2457
2457
  """
2458
- Specify the increase in element edge length with each succeeding layer of elements.
2458
+ Choose the type of sizing control (curvature, proximity, soft, or boi).
2459
2459
  """
2460
2460
 
2461
- class _SizingType(PyTextualCommandArgumentsSubItem):
2461
+ class _WrapGrowthRate(PyNumericalCommandArgumentsSubItem):
2462
2462
  """
2463
- Choose the type of sizing control (curvature, proximity, soft, or boi).
2463
+ Specify the increase in element edge length with each succeeding layer of elements.
2464
2464
  """
2465
2465
 
2466
2466
  class _CellsPerGap(PyNumericalCommandArgumentsSubItem):
@@ -4162,7 +4162,7 @@ class Root(PyMenu):
4162
4162
 
4163
4163
  def __init__(self, parent, attr, service, rules, path):
4164
4164
  super().__init__(parent, attr, service, rules, path)
4165
- self.TargeSizeFieldFileName = self._TargeSizeFieldFileName(self, "TargeSizeFieldFileName", service, rules, path)
4165
+ self.WrapTargetRatio = self._WrapTargetRatio(self, "WrapTargetRatio", service, rules, path)
4166
4166
  self.WrapTargetSizeFieldRatio = self._WrapTargetSizeFieldRatio(self, "WrapTargetSizeFieldRatio", service, rules, path)
4167
4167
  self.WrapTargetBothOptions = self._WrapTargetBothOptions(self, "WrapTargetBothOptions", service, rules, path)
4168
4168
  self.SolidFluidRaio = self._SolidFluidRaio(self, "SolidFluidRaio", service, rules, path)
@@ -4173,12 +4173,12 @@ class Root(PyMenu):
4173
4173
  self.TargetSizeFieldFileName = self._TargetSizeFieldFileName(self, "TargetSizeFieldFileName", service, rules, path)
4174
4174
  self.ExistingSizeField = self._ExistingSizeField(self, "ExistingSizeField", service, rules, path)
4175
4175
  self.WrapSizeFieldFileName = self._WrapSizeFieldFileName(self, "WrapSizeFieldFileName", service, rules, path)
4176
- self.WrapTargetRatio = self._WrapTargetRatio(self, "WrapTargetRatio", service, rules, path)
4176
+ self.TargeSizeFieldFileName = self._TargeSizeFieldFileName(self, "TargeSizeFieldFileName", service, rules, path)
4177
4177
  self.WrapTargetRaio = self._WrapTargetRaio(self, "WrapTargetRaio", service, rules, path)
4178
4178
 
4179
- class _TargeSizeFieldFileName(PyTextualCommandArgumentsSubItem):
4179
+ class _WrapTargetRatio(PyNumericalCommandArgumentsSubItem):
4180
4180
  """
4181
- Indicate the name and location of the target size field file (\\*.sf).
4181
+ Argument WrapTargetRatio.
4182
4182
  """
4183
4183
 
4184
4184
  class _WrapTargetSizeFieldRatio(PyNumericalCommandArgumentsSubItem):
@@ -4231,9 +4231,9 @@ class Root(PyMenu):
4231
4231
  Indicate the name and location of the wrap size field file (\\*.sf).
4232
4232
  """
4233
4233
 
4234
- class _WrapTargetRatio(PyNumericalCommandArgumentsSubItem):
4234
+ class _TargeSizeFieldFileName(PyTextualCommandArgumentsSubItem):
4235
4235
  """
4236
- Argument WrapTargetRatio.
4236
+ Indicate the name and location of the target size field file (\\*.sf).
4237
4237
  """
4238
4238
 
4239
4239
  class _WrapTargetRaio(PyNumericalCommandArgumentsSubItem):
@@ -4508,7 +4508,7 @@ class Root(PyMenu):
4508
4508
  def __init__(self, parent, attr, service, rules, path):
4509
4509
  super().__init__(parent, attr, service, rules, path)
4510
4510
  self.SizeRelativeLength = self._SizeRelativeLength(self, "SizeRelativeLength", service, rules, path)
4511
- self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
4511
+ self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
4512
4512
  self.XminRatio = self._XminRatio(self, "XminRatio", service, rules, path)
4513
4513
  self.YminRatio = self._YminRatio(self, "YminRatio", service, rules, path)
4514
4514
  self.Zmin = self._Zmin(self, "Zmin", service, rules, path)
@@ -4519,16 +4519,16 @@ class Root(PyMenu):
4519
4519
  self.Xmin = self._Xmin(self, "Xmin", service, rules, path)
4520
4520
  self.YmaxRatio = self._YmaxRatio(self, "YmaxRatio", service, rules, path)
4521
4521
  self.ZmaxRatio = self._ZmaxRatio(self, "ZmaxRatio", service, rules, path)
4522
- self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
4522
+ self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
4523
4523
 
4524
4524
  class _SizeRelativeLength(PyTextualCommandArgumentsSubItem):
4525
4525
  """
4526
4526
  Argument SizeRelativeLength.
4527
4527
  """
4528
4528
 
4529
- class _Xmax(PyNumericalCommandArgumentsSubItem):
4529
+ class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
4530
4530
  """
4531
- Argument Xmax.
4531
+ Argument XmaxRatio.
4532
4532
  """
4533
4533
 
4534
4534
  class _XminRatio(PyNumericalCommandArgumentsSubItem):
@@ -4581,9 +4581,9 @@ class Root(PyMenu):
4581
4581
  Argument ZmaxRatio.
4582
4582
  """
4583
4583
 
4584
- class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
4584
+ class _Xmax(PyNumericalCommandArgumentsSubItem):
4585
4585
  """
4586
- Argument XmaxRatio.
4586
+ Argument Xmax.
4587
4587
  """
4588
4588
 
4589
4589
  class _OffsetObject(PySingletonCommandArgumentsSubItem):
@@ -4726,32 +4726,32 @@ class Root(PyMenu):
4726
4726
 
4727
4727
  def __init__(self, parent, attr, service, rules, path):
4728
4728
  super().__init__(parent, attr, service, rules, path)
4729
- self.X_Offset = self._X_Offset(self, "X-Offset", service, rules, path)
4730
4729
  self.HeightNode = self._HeightNode(self, "HeightNode", service, rules, path)
4730
+ self.X_Offset = self._X_Offset(self, "X-Offset", service, rules, path)
4731
4731
  self.HeightBackInc = self._HeightBackInc(self, "HeightBackInc", service, rules, path)
4732
4732
  self.X1 = self._X1(self, "X1", service, rules, path)
4733
4733
  self.Y1 = self._Y1(self, "Y1", service, rules, path)
4734
4734
  self.Z_Offset = self._Z_Offset(self, "Z-Offset", service, rules, path)
4735
- self.Z2 = self._Z2(self, "Z2", service, rules, path)
4736
- self.Node1 = self._Node1(self, "Node1", service, rules, path)
4737
4735
  self.Z1 = self._Z1(self, "Z1", service, rules, path)
4736
+ self.Node1 = self._Node1(self, "Node1", service, rules, path)
4737
+ self.Z2 = self._Z2(self, "Z2", service, rules, path)
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)
4741
4742
  self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
4742
4743
  self.X2 = self._X2(self, "X2", service, rules, path)
4743
- self.Node2 = self._Node2(self, "Node2", 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)
4746
4746
 
4747
- class _X_Offset(PyNumericalCommandArgumentsSubItem):
4747
+ class _HeightNode(PyTextualCommandArgumentsSubItem):
4748
4748
  """
4749
- Argument X-Offset.
4749
+ Argument HeightNode.
4750
4750
  """
4751
4751
 
4752
- class _HeightNode(PyTextualCommandArgumentsSubItem):
4752
+ class _X_Offset(PyNumericalCommandArgumentsSubItem):
4753
4753
  """
4754
- Argument HeightNode.
4754
+ Argument X-Offset.
4755
4755
  """
4756
4756
 
4757
4757
  class _HeightBackInc(PyNumericalCommandArgumentsSubItem):
@@ -4774,9 +4774,9 @@ class Root(PyMenu):
4774
4774
  Argument Z-Offset.
4775
4775
  """
4776
4776
 
4777
- class _Z2(PyNumericalCommandArgumentsSubItem):
4777
+ class _Z1(PyNumericalCommandArgumentsSubItem):
4778
4778
  """
4779
- Argument Z2.
4779
+ Argument Z1.
4780
4780
  """
4781
4781
 
4782
4782
  class _Node1(PyTextualCommandArgumentsSubItem):
@@ -4784,9 +4784,9 @@ class Root(PyMenu):
4784
4784
  Argument Node1.
4785
4785
  """
4786
4786
 
4787
- class _Z1(PyNumericalCommandArgumentsSubItem):
4787
+ class _Z2(PyNumericalCommandArgumentsSubItem):
4788
4788
  """
4789
- Argument Z1.
4789
+ Argument Z2.
4790
4790
  """
4791
4791
 
4792
4792
  class _Radius2(PyNumericalCommandArgumentsSubItem):
@@ -4804,6 +4804,11 @@ class Root(PyMenu):
4804
4804
  Argument Node3.
4805
4805
  """
4806
4806
 
4807
+ class _Node2(PyTextualCommandArgumentsSubItem):
4808
+ """
4809
+ Argument Node2.
4810
+ """
4811
+
4807
4812
  class _Y_Offset(PyNumericalCommandArgumentsSubItem):
4808
4813
  """
4809
4814
  Argument Y-Offset.
@@ -4814,11 +4819,6 @@ class Root(PyMenu):
4814
4819
  Argument X2.
4815
4820
  """
4816
4821
 
4817
- class _Node2(PyTextualCommandArgumentsSubItem):
4818
- """
4819
- Argument Node2.
4820
- """
4821
-
4822
4822
  class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
4823
4823
  """
4824
4824
  Argument HeightFrontInc.
@@ -4883,8 +4883,8 @@ class Root(PyMenu):
4883
4883
  self.CylinderZ1 = self._CylinderZ1(self, "CylinderZ1", service, rules, path)
4884
4884
  self.CylinderRadius1 = self._CylinderRadius1(self, "CylinderRadius1", service, rules, path)
4885
4885
  self.BoxCenterX = self._BoxCenterX(self, "BoxCenterX", service, rules, path)
4886
- self.CylinderRadius2 = self._CylinderRadius2(self, "CylinderRadius2", service, rules, path)
4887
4886
  self.BoxCenterZ = self._BoxCenterZ(self, "BoxCenterZ", service, rules, path)
4887
+ self.CylinderRadius2 = self._CylinderRadius2(self, "CylinderRadius2", service, rules, path)
4888
4888
  self.CylinderY2 = self._CylinderY2(self, "CylinderY2", service, rules, path)
4889
4889
 
4890
4890
  class _CylinderZ2(PyNumericalCommandArgumentsSubItem):
@@ -4942,14 +4942,14 @@ class Root(PyMenu):
4942
4942
  Argument BoxCenterX.
4943
4943
  """
4944
4944
 
4945
- class _CylinderRadius2(PyNumericalCommandArgumentsSubItem):
4945
+ class _BoxCenterZ(PyNumericalCommandArgumentsSubItem):
4946
4946
  """
4947
- Argument CylinderRadius2.
4947
+ Argument BoxCenterZ.
4948
4948
  """
4949
4949
 
4950
- class _BoxCenterZ(PyNumericalCommandArgumentsSubItem):
4950
+ class _CylinderRadius2(PyNumericalCommandArgumentsSubItem):
4951
4951
  """
4952
- Argument BoxCenterZ.
4952
+ Argument CylinderRadius2.
4953
4953
  """
4954
4954
 
4955
4955
  class _CylinderY2(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.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
5098
+ self.Xmax = self._Xmax(self, "Xmax", 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.Xmax = self._Xmax(self, "Xmax", service, rules, path)
5109
+ self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
5110
5110
 
5111
5111
  class _SizeRelativeLength(PyTextualCommandArgumentsSubItem):
5112
5112
  """
5113
5113
  Argument SizeRelativeLength.
5114
5114
  """
5115
5115
 
5116
- class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
5116
+ class _Xmax(PyNumericalCommandArgumentsSubItem):
5117
5117
  """
5118
- Argument XmaxRatio.
5118
+ Specify the x-coordinate of the offset collar mesh.
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 _Xmax(PyNumericalCommandArgumentsSubItem):
5171
+ class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
5172
5172
  """
5173
- Specify the x-coordinate of the offset collar mesh.
5173
+ Argument XmaxRatio.
5174
5174
  """
5175
5175
 
5176
5176
  class _OffsetObject(PySingletonCommandArgumentsSubItem):
@@ -5187,12 +5187,12 @@ class Root(PyMenu):
5187
5187
  self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
5188
5188
  self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
5189
5189
  self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
5190
- self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
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.Rate = self._Rate(self, "Rate", service, rules, path)
5195
+ self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", 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
5198
  self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
@@ -5236,9 +5236,9 @@ class Root(PyMenu):
5236
5236
  Argument WakeGrowthFactor.
5237
5237
  """
5238
5238
 
5239
- class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
5239
+ class _Rate(PyNumericalCommandArgumentsSubItem):
5240
5240
  """
5241
- Argument NumberOfLayers.
5241
+ Argument Rate.
5242
5242
  """
5243
5243
 
5244
5244
  class _AspectRatio(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 _Rate(PyNumericalCommandArgumentsSubItem):
5264
+ class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
5265
5265
  """
5266
- Argument Rate.
5266
+ Argument NumberOfLayers.
5267
5267
  """
5268
5268
 
5269
5269
  class _X(PyNumericalCommandArgumentsSubItem):
@@ -5319,15 +5319,15 @@ class Root(PyMenu):
5319
5319
  self.X1 = self._X1(self, "X1", service, rules, path)
5320
5320
  self.Y1 = self._Y1(self, "Y1", service, rules, path)
5321
5321
  self.Z_Offset = self._Z_Offset(self, "Z-Offset", service, rules, path)
5322
- self.Z2 = self._Z2(self, "Z2", service, rules, path)
5323
- self.Node1 = self._Node1(self, "Node1", service, rules, path)
5324
5322
  self.Z1 = self._Z1(self, "Z1", service, rules, path)
5323
+ self.Node1 = self._Node1(self, "Node1", service, rules, path)
5324
+ self.Z2 = self._Z2(self, "Z2", service, rules, path)
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)
5328
5329
  self.Node2 = self._Node2(self, "Node2", service, rules, path)
5329
5330
  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
 
@@ -5361,9 +5361,9 @@ class Root(PyMenu):
5361
5361
  Argument Z-Offset.
5362
5362
  """
5363
5363
 
5364
- class _Z2(PyNumericalCommandArgumentsSubItem):
5364
+ class _Z1(PyNumericalCommandArgumentsSubItem):
5365
5365
  """
5366
- Argument Z2.
5366
+ Argument Z1.
5367
5367
  """
5368
5368
 
5369
5369
  class _Node1(PyTextualCommandArgumentsSubItem):
@@ -5371,9 +5371,9 @@ class Root(PyMenu):
5371
5371
  Argument Node1.
5372
5372
  """
5373
5373
 
5374
- class _Z1(PyNumericalCommandArgumentsSubItem):
5374
+ class _Z2(PyNumericalCommandArgumentsSubItem):
5375
5375
  """
5376
- Argument Z1.
5376
+ Argument Z2.
5377
5377
  """
5378
5378
 
5379
5379
  class _Radius2(PyNumericalCommandArgumentsSubItem):
@@ -5391,6 +5391,11 @@ class Root(PyMenu):
5391
5391
  Argument Node3.
5392
5392
  """
5393
5393
 
5394
+ class _Y_Offset(PyNumericalCommandArgumentsSubItem):
5395
+ """
5396
+ Argument Y-Offset.
5397
+ """
5398
+
5394
5399
  class _Node2(PyTextualCommandArgumentsSubItem):
5395
5400
  """
5396
5401
  Argument Node2.
@@ -5401,11 +5406,6 @@ class Root(PyMenu):
5401
5406
  Argument X2.
5402
5407
  """
5403
5408
 
5404
- class _Y_Offset(PyNumericalCommandArgumentsSubItem):
5405
- """
5406
- Argument Y-Offset.
5407
- """
5408
-
5409
5409
  class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
5410
5410
  """
5411
5411
  Argument HeightFrontInc.
@@ -5460,8 +5460,8 @@ class Root(PyMenu):
5460
5460
  def __init__(self, parent, attr, service, rules, path):
5461
5461
  super().__init__(parent, attr, service, rules, path)
5462
5462
  self.CylinderZ2 = self._CylinderZ2(self, "CylinderZ2", service, rules, path)
5463
- self.BoxYLength = self._BoxYLength(self, "BoxYLength", service, rules, path)
5464
5463
  self.CylinderX2 = self._CylinderX2(self, "CylinderX2", service, rules, path)
5464
+ self.BoxYLength = self._BoxYLength(self, "BoxYLength", service, rules, path)
5465
5465
  self.CylinderX1 = self._CylinderX1(self, "CylinderX1", service, rules, path)
5466
5466
  self.BoxXLength = self._BoxXLength(self, "BoxXLength", service, rules, path)
5467
5467
  self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
@@ -5479,14 +5479,14 @@ class Root(PyMenu):
5479
5479
  Argument CylinderZ2.
5480
5480
  """
5481
5481
 
5482
- class _BoxYLength(PyNumericalCommandArgumentsSubItem):
5482
+ class _CylinderX2(PyNumericalCommandArgumentsSubItem):
5483
5483
  """
5484
- Argument BoxYLength.
5484
+ Argument CylinderX2.
5485
5485
  """
5486
5486
 
5487
- class _CylinderX2(PyNumericalCommandArgumentsSubItem):
5487
+ class _BoxYLength(PyNumericalCommandArgumentsSubItem):
5488
5488
  """
5489
- Argument CylinderX2.
5489
+ Argument BoxYLength.
5490
5490
  """
5491
5491
 
5492
5492
  class _CylinderX1(PyNumericalCommandArgumentsSubItem):
@@ -5773,14 +5773,14 @@ class Root(PyMenu):
5773
5773
  self.ShowCoordinates = self._ShowCoordinates(self, "ShowCoordinates", service, rules, path)
5774
5774
  self.Y = self._Y(self, "Y", service, rules, path)
5775
5775
  self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
5776
- self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
5776
+ self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
5777
5777
  self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
5778
5778
  self.Rate = self._Rate(self, "Rate", service, rules, path)
5779
5779
  self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", 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.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
5783
+ self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", 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)
@@ -5814,9 +5814,9 @@ class Root(PyMenu):
5814
5814
  Argument DefeaturingSize.
5815
5815
  """
5816
5816
 
5817
- class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
5817
+ class _AspectRatio(PyNumericalCommandArgumentsSubItem):
5818
5818
  """
5819
- Argument BoundaryLayerLevels.
5819
+ Specify the ratio of the prism base length to the prism layer height.
5820
5820
  """
5821
5821
 
5822
5822
  class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
@@ -5849,9 +5849,9 @@ class Root(PyMenu):
5849
5849
  Argument EdgeSelectionList.
5850
5850
  """
5851
5851
 
5852
- class _AspectRatio(PyNumericalCommandArgumentsSubItem):
5852
+ class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
5853
5853
  """
5854
- Specify the ratio of the prism base length to the prism layer height.
5854
+ Argument BoundaryLayerLevels.
5855
5855
  """
5856
5856
 
5857
5857
  class _X(PyNumericalCommandArgumentsSubItem):
@@ -5901,8 +5901,8 @@ class Root(PyMenu):
5901
5901
 
5902
5902
  def __init__(self, parent, attr, service, rules, path):
5903
5903
  super().__init__(parent, attr, service, rules, path)
5904
- self.X_Offset = self._X_Offset(self, "X-Offset", service, rules, path)
5905
5904
  self.HeightNode = self._HeightNode(self, "HeightNode", service, rules, path)
5905
+ self.X_Offset = self._X_Offset(self, "X-Offset", service, rules, path)
5906
5906
  self.HeightBackInc = self._HeightBackInc(self, "HeightBackInc", service, rules, path)
5907
5907
  self.X1 = self._X1(self, "X1", service, rules, path)
5908
5908
  self.Y1 = self._Y1(self, "Y1", service, rules, path)
@@ -5913,20 +5913,20 @@ class Root(PyMenu):
5913
5913
  self.Radius2 = self._Radius2(self, "Radius2", service, rules, path)
5914
5914
  self.Y2 = self._Y2(self, "Y2", service, rules, path)
5915
5915
  self.Node3 = self._Node3(self, "Node3", service, rules, path)
5916
- self.Node2 = self._Node2(self, "Node2", service, rules, path)
5917
- self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
5918
5916
  self.X2 = self._X2(self, "X2", service, rules, path)
5917
+ self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
5918
+ self.Node2 = self._Node2(self, "Node2", service, rules, path)
5919
5919
  self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
5920
5920
  self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
5921
5921
 
5922
- class _X_Offset(PyNumericalCommandArgumentsSubItem):
5922
+ class _HeightNode(PyTextualCommandArgumentsSubItem):
5923
5923
  """
5924
- Argument X-Offset.
5924
+ Argument HeightNode.
5925
5925
  """
5926
5926
 
5927
- class _HeightNode(PyTextualCommandArgumentsSubItem):
5927
+ class _X_Offset(PyNumericalCommandArgumentsSubItem):
5928
5928
  """
5929
- Argument HeightNode.
5929
+ Argument X-Offset.
5930
5930
  """
5931
5931
 
5932
5932
  class _HeightBackInc(PyNumericalCommandArgumentsSubItem):
@@ -5979,9 +5979,9 @@ class Root(PyMenu):
5979
5979
  Argument Node3.
5980
5980
  """
5981
5981
 
5982
- class _Node2(PyTextualCommandArgumentsSubItem):
5982
+ class _X2(PyNumericalCommandArgumentsSubItem):
5983
5983
  """
5984
- Argument Node2.
5984
+ Argument X2.
5985
5985
  """
5986
5986
 
5987
5987
  class _Y_Offset(PyNumericalCommandArgumentsSubItem):
@@ -5989,9 +5989,9 @@ class Root(PyMenu):
5989
5989
  Argument Y-Offset.
5990
5990
  """
5991
5991
 
5992
- class _X2(PyNumericalCommandArgumentsSubItem):
5992
+ class _Node2(PyTextualCommandArgumentsSubItem):
5993
5993
  """
5994
- Argument X2.
5994
+ Argument Node2.
5995
5995
  """
5996
5996
 
5997
5997
  class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
@@ -6048,12 +6048,12 @@ class Root(PyMenu):
6048
6048
  def __init__(self, parent, attr, service, rules, path):
6049
6049
  super().__init__(parent, attr, service, rules, path)
6050
6050
  self.CylinderZ2 = self._CylinderZ2(self, "CylinderZ2", service, rules, path)
6051
- self.BoxYLength = self._BoxYLength(self, "BoxYLength", service, rules, path)
6052
6051
  self.CylinderX2 = self._CylinderX2(self, "CylinderX2", service, rules, path)
6052
+ self.BoxYLength = self._BoxYLength(self, "BoxYLength", service, rules, path)
6053
6053
  self.CylinderX1 = self._CylinderX1(self, "CylinderX1", service, rules, path)
6054
- self.BoxZLength = self._BoxZLength(self, "BoxZLength", service, rules, path)
6055
- self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
6056
6054
  self.BoxXLength = self._BoxXLength(self, "BoxXLength", service, rules, path)
6055
+ self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
6056
+ self.BoxZLength = self._BoxZLength(self, "BoxZLength", service, rules, path)
6057
6057
  self.BoxCenterY = self._BoxCenterY(self, "BoxCenterY", service, rules, path)
6058
6058
  self.CylinderZ1 = self._CylinderZ1(self, "CylinderZ1", service, rules, path)
6059
6059
  self.CylinderRadius1 = self._CylinderRadius1(self, "CylinderRadius1", service, rules, path)
@@ -6067,14 +6067,14 @@ class Root(PyMenu):
6067
6067
  Argument CylinderZ2.
6068
6068
  """
6069
6069
 
6070
- class _BoxYLength(PyNumericalCommandArgumentsSubItem):
6070
+ class _CylinderX2(PyNumericalCommandArgumentsSubItem):
6071
6071
  """
6072
- Argument BoxYLength.
6072
+ Argument CylinderX2.
6073
6073
  """
6074
6074
 
6075
- class _CylinderX2(PyNumericalCommandArgumentsSubItem):
6075
+ class _BoxYLength(PyNumericalCommandArgumentsSubItem):
6076
6076
  """
6077
- Argument CylinderX2.
6077
+ Argument BoxYLength.
6078
6078
  """
6079
6079
 
6080
6080
  class _CylinderX1(PyNumericalCommandArgumentsSubItem):
@@ -6082,9 +6082,9 @@ class Root(PyMenu):
6082
6082
  Argument CylinderX1.
6083
6083
  """
6084
6084
 
6085
- class _BoxZLength(PyNumericalCommandArgumentsSubItem):
6085
+ class _BoxXLength(PyNumericalCommandArgumentsSubItem):
6086
6086
  """
6087
- Argument BoxZLength.
6087
+ Argument BoxXLength.
6088
6088
  """
6089
6089
 
6090
6090
  class _CylinderY1(PyNumericalCommandArgumentsSubItem):
@@ -6092,9 +6092,9 @@ class Root(PyMenu):
6092
6092
  Argument CylinderY1.
6093
6093
  """
6094
6094
 
6095
- class _BoxXLength(PyNumericalCommandArgumentsSubItem):
6095
+ class _BoxZLength(PyNumericalCommandArgumentsSubItem):
6096
6096
  """
6097
- Argument BoxXLength.
6097
+ Argument BoxZLength.
6098
6098
  """
6099
6099
 
6100
6100
  class _BoxCenterY(PyNumericalCommandArgumentsSubItem):
@@ -6370,7 +6370,7 @@ class Root(PyMenu):
6370
6370
  def __init__(self, parent, attr, service, rules, path):
6371
6371
  super().__init__(parent, attr, service, rules, path)
6372
6372
  self.SizeRelativeLength = self._SizeRelativeLength(self, "SizeRelativeLength", service, rules, path)
6373
- self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
6373
+ self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
6374
6374
  self.XminRatio = self._XminRatio(self, "XminRatio", service, rules, path)
6375
6375
  self.YminRatio = self._YminRatio(self, "YminRatio", service, rules, path)
6376
6376
  self.Zmin = self._Zmin(self, "Zmin", service, rules, path)
@@ -6381,16 +6381,16 @@ class Root(PyMenu):
6381
6381
  self.Xmin = self._Xmin(self, "Xmin", service, rules, path)
6382
6382
  self.YmaxRatio = self._YmaxRatio(self, "YmaxRatio", service, rules, path)
6383
6383
  self.ZmaxRatio = self._ZmaxRatio(self, "ZmaxRatio", service, rules, path)
6384
- self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
6384
+ self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
6385
6385
 
6386
6386
  class _SizeRelativeLength(PyTextualCommandArgumentsSubItem):
6387
6387
  """
6388
6388
  Determine if you would like to specify the bounding box as a ratio of the geometry length, or by specifying a specific location for the minimum and maximum coordinates.
6389
6389
  """
6390
6390
 
6391
- class _Xmax(PyNumericalCommandArgumentsSubItem):
6391
+ class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
6392
6392
  """
6393
- Extends the maximum size of the bounding box in the X direction by the specified value.
6393
+ 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.
6394
6394
  """
6395
6395
 
6396
6396
  class _XminRatio(PyNumericalCommandArgumentsSubItem):
@@ -6443,9 +6443,9 @@ class Root(PyMenu):
6443
6443
  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.
6444
6444
  """
6445
6445
 
6446
- class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
6446
+ class _Xmax(PyNumericalCommandArgumentsSubItem):
6447
6447
  """
6448
- 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.
6448
+ Extends the maximum size of the bounding box in the X direction by the specified value.
6449
6449
  """
6450
6450
 
6451
6451
  def create_instance(self) -> _CreateExternalFlowBoundariesCommandArguments:
@@ -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.Xmax = self._Xmax(self, "Xmax", service, rules, path)
6894
+ self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", 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.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
6905
+ self.Xmax = self._Xmax(self, "Xmax", 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 _Xmax(PyNumericalCommandArgumentsSubItem):
6912
+ class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
6913
6913
  """
6914
- Specify the X-coordinate for the initial position of the cylindrical refinement region.
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.
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 _XmaxRatio(PyNumericalCommandArgumentsSubItem):
6967
+ class _Xmax(PyNumericalCommandArgumentsSubItem):
6968
6968
  """
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.
6969
+ Specify the X-coordinate for the initial position of the cylindrical refinement region.
6970
6970
  """
6971
6971
 
6972
6972
  class _OffsetObject(PySingletonCommandArgumentsSubItem):
@@ -6981,14 +6981,14 @@ class Root(PyMenu):
6981
6981
  self.ShowCoordinates = self._ShowCoordinates(self, "ShowCoordinates", service, rules, path)
6982
6982
  self.Y = self._Y(self, "Y", service, rules, path)
6983
6983
  self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
6984
- self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
6985
- self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
6986
- self.Rate = self._Rate(self, "Rate", service, rules, path)
6987
6984
  self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
6985
+ self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
6986
+ self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
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)
6990
6990
  self.EdgeSelectionList = self._EdgeSelectionList(self, "EdgeSelectionList", service, rules, path)
6991
- self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
6991
+ self.Rate = self._Rate(self, "Rate", service, rules, path)
6992
6992
  self.X = self._X(self, "X", service, rules, path)
6993
6993
  self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
6994
6994
  self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", 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 _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
7025
+ class _AspectRatio(PyNumericalCommandArgumentsSubItem):
7026
7026
  """
7027
- Specify the number of boundary layers that are to be captured in the refinement region.
7027
+ Argument AspectRatio.
7028
7028
  """
7029
7029
 
7030
7030
  class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
@@ -7032,14 +7032,14 @@ class Root(PyMenu):
7032
7032
  Argument NumberOfLayers.
7033
7033
  """
7034
7034
 
7035
- class _Rate(PyNumericalCommandArgumentsSubItem):
7035
+ class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
7036
7036
  """
7037
- Argument Rate.
7037
+ Specify the number of boundary layers that are to be captured in the refinement region.
7038
7038
  """
7039
7039
 
7040
- class _AspectRatio(PyNumericalCommandArgumentsSubItem):
7040
+ class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
7041
7041
  """
7042
- Argument AspectRatio.
7042
+ Specify the factor by which the refinement region expands in the wake of the flow direction.
7043
7043
  """
7044
7044
 
7045
7045
  class _FlowDirection(PyTextualCommandArgumentsSubItem):
@@ -7057,9 +7057,9 @@ class Root(PyMenu):
7057
7057
  Argument EdgeSelectionList.
7058
7058
  """
7059
7059
 
7060
- class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
7060
+ class _Rate(PyNumericalCommandArgumentsSubItem):
7061
7061
  """
7062
- Specify the factor by which the refinement region expands in the wake of the flow direction.
7062
+ Argument Rate.
7063
7063
  """
7064
7064
 
7065
7065
  class _X(PyNumericalCommandArgumentsSubItem):
@@ -7122,8 +7122,8 @@ class Root(PyMenu):
7122
7122
  self.Y2 = self._Y2(self, "Y2", service, rules, path)
7123
7123
  self.Node3 = self._Node3(self, "Node3", service, rules, path)
7124
7124
  self.Node2 = self._Node2(self, "Node2", service, rules, path)
7125
- self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
7126
7125
  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
 
@@ -7192,14 +7192,14 @@ class Root(PyMenu):
7192
7192
  Argument Node2.
7193
7193
  """
7194
7194
 
7195
- class _Y_Offset(PyNumericalCommandArgumentsSubItem):
7195
+ class _X2(PyNumericalCommandArgumentsSubItem):
7196
7196
  """
7197
- Specify the Y-coordinate for the offset of the initial position of the cylinder.
7197
+ Specify the X-coordinate of the second position of the cylinder.
7198
7198
  """
7199
7199
 
7200
- class _X2(PyNumericalCommandArgumentsSubItem):
7200
+ class _Y_Offset(PyNumericalCommandArgumentsSubItem):
7201
7201
  """
7202
- Specify the X-coordinate of the second position of the cylinder.
7202
+ Specify the Y-coordinate for the offset of the initial position of the cylinder.
7203
7203
  """
7204
7204
 
7205
7205
  class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
@@ -7256,8 +7256,8 @@ class Root(PyMenu):
7256
7256
  def __init__(self, parent, attr, service, rules, path):
7257
7257
  super().__init__(parent, attr, service, rules, path)
7258
7258
  self.CylinderZ2 = self._CylinderZ2(self, "CylinderZ2", service, rules, path)
7259
- self.BoxYLength = self._BoxYLength(self, "BoxYLength", service, rules, path)
7260
7259
  self.CylinderX2 = self._CylinderX2(self, "CylinderX2", service, rules, path)
7260
+ self.BoxYLength = self._BoxYLength(self, "BoxYLength", service, rules, path)
7261
7261
  self.CylinderX1 = self._CylinderX1(self, "CylinderX1", service, rules, path)
7262
7262
  self.BoxXLength = self._BoxXLength(self, "BoxXLength", service, rules, path)
7263
7263
  self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
@@ -7275,14 +7275,14 @@ class Root(PyMenu):
7275
7275
  Specify the Z-coordinate of the second position of the cylinder.
7276
7276
  """
7277
7277
 
7278
- class _BoxYLength(PyNumericalCommandArgumentsSubItem):
7278
+ class _CylinderX2(PyNumericalCommandArgumentsSubItem):
7279
7279
  """
7280
- Argument BoxYLength.
7280
+ Specify the X-coordinate of the second position of the cylinder.
7281
7281
  """
7282
7282
 
7283
- class _CylinderX2(PyNumericalCommandArgumentsSubItem):
7283
+ class _BoxYLength(PyNumericalCommandArgumentsSubItem):
7284
7284
  """
7285
- Specify the X-coordinate of the second position of the cylinder.
7285
+ Argument BoxYLength.
7286
7286
  """
7287
7287
 
7288
7288
  class _CylinderX1(PyNumericalCommandArgumentsSubItem):
@@ -7539,8 +7539,8 @@ class Root(PyMenu):
7539
7539
  self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
7540
7540
  self.Thickness = self._Thickness(self, "Thickness", service, rules, path)
7541
7541
  self.ZoneSelectionList = self._ZoneSelectionList(self, "ZoneSelectionList", service, rules, path)
7542
- self.SelectionType = self._SelectionType(self, "SelectionType", service, rules, path)
7543
7542
  self.LabelSelectionList = self._LabelSelectionList(self, "LabelSelectionList", service, rules, path)
7543
+ self.SelectionType = self._SelectionType(self, "SelectionType", 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)
@@ -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 _SelectionType(PyTextualCommandArgumentsSubItem):
7566
+ class _LabelSelectionList(PyTextualCommandArgumentsSubItem):
7567
7567
  """
7568
- Choose how you want to make your selection (by object, zone, or label).
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...
7569
7569
  """
7570
7570
 
7571
- class _LabelSelectionList(PyTextualCommandArgumentsSubItem):
7571
+ class _SelectionType(PyTextualCommandArgumentsSubItem):
7572
7572
  """
7573
- 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...
7573
+ Choose how you want to make your selection (by object, zone, or label).
7574
7574
  """
7575
7575
 
7576
7576
  class _FeatureAngle(PyNumericalCommandArgumentsSubItem):
@@ -7912,9 +7912,9 @@ class Root(PyMenu):
7912
7912
  super().__init__(parent, attr, service, rules, path)
7913
7913
  self.PorousRegions = self._PorousRegions(self, "PorousRegions", service, rules, path)
7914
7914
  self.ZeroThickness = self._ZeroThickness(self, "ZeroThickness", service, rules, path)
7915
- self.CloseLeakges = self._CloseLeakges(self, "CloseLeakges", service, rules, path)
7916
- self.CloseLeakages = self._CloseLeakages(self, "CloseLeakages", service, rules, path)
7917
7915
  self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
7916
+ self.CloseLeakages = self._CloseLeakages(self, "CloseLeakages", service, rules, path)
7917
+ self.CloseLeakges = self._CloseLeakges(self, "CloseLeakges", service, rules, path)
7918
7918
  self.ExtractEdgeFeatures = self._ExtractEdgeFeatures(self, "ExtractEdgeFeatures", service, rules, path)
7919
7919
  self.MovingObjects = self._MovingObjects(self, "MovingObjects", service, rules, path)
7920
7920
  self.EnablePrimeWrapper = self._EnablePrimeWrapper(self, "EnablePrimeWrapper", service, rules, path)
@@ -7931,9 +7931,9 @@ class Root(PyMenu):
7931
7931
  Specify whether or not you will need to account for any portions of your geometry with zero-thickness, and apply thickness to them for a more refined surface mesh. If so, then an Add Thickness task will be added to the workflow.
7932
7932
  """
7933
7933
 
7934
- class _CloseLeakges(PyTextualCommandArgumentsSubItem):
7934
+ class _AdvancedOptions(PyParameterCommandArgumentsSubItem):
7935
7935
  """
7936
- Specify whether or not your geometry contains any problems (such as gaps or overlapping/intersecting surfaces) that may create leakages that need to be closed. If so, then a Define Leakage Threshold task is added to the workflow.
7936
+ Display advanced options that you may want to apply to the workflow.
7937
7937
  """
7938
7938
 
7939
7939
  class _CloseLeakages(PyTextualCommandArgumentsSubItem):
@@ -7941,9 +7941,9 @@ class Root(PyMenu):
7941
7941
  Argument CloseLeakages.
7942
7942
  """
7943
7943
 
7944
- class _AdvancedOptions(PyParameterCommandArgumentsSubItem):
7944
+ class _CloseLeakges(PyTextualCommandArgumentsSubItem):
7945
7945
  """
7946
- Display advanced options that you may want to apply to the workflow.
7946
+ Specify whether or not your geometry contains any problems (such as gaps or overlapping/intersecting surfaces) that may create leakages that need to be closed. If so, then a Define Leakage Threshold task is added to the workflow.
7947
7947
  """
7948
7948
 
7949
7949
  class _ExtractEdgeFeatures(PyTextualCommandArgumentsSubItem):
@@ -8179,6 +8179,7 @@ class Root(PyMenu):
8179
8179
  Choose whether you want the extrusion to be based on a specified Total Height value, or one based on a specified First Height value. The relationship between the two is illustrated by:
8180
8180
  SelectionType : str
8181
8181
  ExtendToPeriodicPair : bool
8182
+ PreservePeriodicInfo : bool
8182
8183
  ExtrudeNormalBased : bool
8183
8184
  Specify whether the volume extrusion is derived from normal-based faceting or direction-based faceting. When enabled (the default), the volume extrusion is derived on normal-based faceting, such that for each layer, the normal is calculated and smoothing occurs, and is suitable for non-planar surfaces. For planar surfaces, disable this option to use a direction-based approach where the direction is chosen based on the average normal of the entire surface, and is used to extrude all layers.
8184
8185
  ExternalBoundaryZoneList : list[str]
@@ -8208,6 +8209,7 @@ class Root(PyMenu):
8208
8209
  self.Method = self._Method(self, "Method", service, rules, path)
8209
8210
  self.SelectionType = self._SelectionType(self, "SelectionType", service, rules, path)
8210
8211
  self.ExtendToPeriodicPair = self._ExtendToPeriodicPair(self, "ExtendToPeriodicPair", service, rules, path)
8212
+ self.PreservePeriodicInfo = self._PreservePeriodicInfo(self, "PreservePeriodicInfo", service, rules, path)
8211
8213
  self.ExtrudeNormalBased = self._ExtrudeNormalBased(self, "ExtrudeNormalBased", service, rules, path)
8212
8214
  self.ExternalBoundaryZoneList = self._ExternalBoundaryZoneList(self, "ExternalBoundaryZoneList", service, rules, path)
8213
8215
  self.TopologyList = self._TopologyList(self, "TopologyList", service, rules, path)
@@ -8239,6 +8241,11 @@ class Root(PyMenu):
8239
8241
  Argument ExtendToPeriodicPair.
8240
8242
  """
8241
8243
 
8244
+ class _PreservePeriodicInfo(PyParameterCommandArgumentsSubItem):
8245
+ """
8246
+ Argument PreservePeriodicInfo.
8247
+ """
8248
+
8242
8249
  class _ExtrudeNormalBased(PyParameterCommandArgumentsSubItem):
8243
8250
  """
8244
8251
  Specify whether the volume extrusion is derived from normal-based faceting or direction-based faceting. When enabled (the default), the volume extrusion is derived on normal-based faceting, such that for each layer, the normal is calculated and smoothing occurs, and is suitable for non-planar surfaces. For planar surfaces, disable this option to use a direction-based approach where the direction is chosen based on the average normal of the entire surface, and is used to extrude all layers.
@@ -8288,10 +8295,8 @@ class Root(PyMenu):
8288
8295
  def __init__(self, parent, attr, service, rules, path):
8289
8296
  super().__init__(parent, attr, service, rules, path)
8290
8297
  self.BiasMethod = self._BiasMethod(self, "BiasMethod", service, rules, path)
8291
- self.MidSpanLength = self._MidSpanLength(self, "MidSpanLength", service, rules, path)
8292
8298
  self.MaxLayerHeight = self._MaxLayerHeight(self, "MaxLayerHeight", service, rules, path)
8293
8299
  self.MergeCellZones = self._MergeCellZones(self, "MergeCellZones", service, rules, path)
8294
- self.BiasMethodControl = self._BiasMethodControl(self, "BiasMethodControl", service, rules, path)
8295
8300
  self.ShowVMExtrudePreferences = self._ShowVMExtrudePreferences(self, "ShowVMExtrudePreferences", service, rules, path)
8296
8301
 
8297
8302
  class _BiasMethod(PyTextualCommandArgumentsSubItem):
@@ -8299,11 +8304,6 @@ class Root(PyMenu):
8299
8304
  Select from a choice of patterns that you want to apply to your volume mesh extrusion.
8300
8305
  """
8301
8306
 
8302
- class _MidSpanLength(PyNumericalCommandArgumentsSubItem):
8303
- """
8304
- Argument MidSpanLength.
8305
- """
8306
-
8307
8307
  class _MaxLayerHeight(PyNumericalCommandArgumentsSubItem):
8308
8308
  """
8309
8309
  Argument MaxLayerHeight.
@@ -8314,11 +8314,6 @@ class Root(PyMenu):
8314
8314
  Indicate whether or not you want to merge the extruded layers with any adjacent regions.
8315
8315
  """
8316
8316
 
8317
- class _BiasMethodControl(PyTextualCommandArgumentsSubItem):
8318
- """
8319
- Argument BiasMethodControl.
8320
- """
8321
-
8322
8317
  class _ShowVMExtrudePreferences(PyParameterCommandArgumentsSubItem):
8323
8318
  """
8324
8319
  Display advanced options that you may want to apply to the task.
@@ -8391,12 +8386,12 @@ class Root(PyMenu):
8391
8386
  self.SplitQuads = self._SplitQuads(self, "SplitQuads", service, rules, path)
8392
8387
  self.MaxAspectRatio = self._MaxAspectRatio(self, "MaxAspectRatio", service, rules, path)
8393
8388
  self.MinAspectRatio = self._MinAspectRatio(self, "MinAspectRatio", service, rules, path)
8394
- self.LocalRemesh = self._LocalRemesh(self, "LocalRemesh", service, rules, path)
8395
8389
  self.RemeshGrowthRate = self._RemeshGrowthRate(self, "RemeshGrowthRate", service, rules, path)
8390
+ self.LocalRemesh = self._LocalRemesh(self, "LocalRemesh", service, rules, path)
8396
8391
  self.GapFactor = self._GapFactor(self, "GapFactor", service, rules, path)
8397
8392
  self.ShowPrism2DPreferences = self._ShowPrism2DPreferences(self, "ShowPrism2DPreferences", service, rules, path)
8398
- self.RefineStretchedQuads = self._RefineStretchedQuads(self, "RefineStretchedQuads", service, rules, path)
8399
8393
  self.MaxFaceSkew = self._MaxFaceSkew(self, "MaxFaceSkew", service, rules, path)
8394
+ self.RefineStretchedQuads = self._RefineStretchedQuads(self, "RefineStretchedQuads", service, rules, path)
8400
8395
  self.nOrthogonalLayers = self._nOrthogonalLayers(self, "nOrthogonalLayers", service, rules, path)
8401
8396
 
8402
8397
  class _SplitQuads(PyTextualCommandArgumentsSubItem):
@@ -8414,14 +8409,14 @@ class Root(PyMenu):
8414
8409
  Argument MinAspectRatio.
8415
8410
  """
8416
8411
 
8417
- class _LocalRemesh(PyTextualCommandArgumentsSubItem):
8412
+ class _RemeshGrowthRate(PyNumericalCommandArgumentsSubItem):
8418
8413
  """
8419
- Argument LocalRemesh.
8414
+ Argument RemeshGrowthRate.
8420
8415
  """
8421
8416
 
8422
- class _RemeshGrowthRate(PyNumericalCommandArgumentsSubItem):
8417
+ class _LocalRemesh(PyTextualCommandArgumentsSubItem):
8423
8418
  """
8424
- Argument RemeshGrowthRate.
8419
+ Argument LocalRemesh.
8425
8420
  """
8426
8421
 
8427
8422
  class _GapFactor(PyNumericalCommandArgumentsSubItem):
@@ -8434,14 +8429,14 @@ class Root(PyMenu):
8434
8429
  Argument ShowPrism2DPreferences.
8435
8430
  """
8436
8431
 
8437
- class _RefineStretchedQuads(PyTextualCommandArgumentsSubItem):
8432
+ class _MaxFaceSkew(PyNumericalCommandArgumentsSubItem):
8438
8433
  """
8439
- Argument RefineStretchedQuads.
8434
+ Argument MaxFaceSkew.
8440
8435
  """
8441
8436
 
8442
- class _MaxFaceSkew(PyNumericalCommandArgumentsSubItem):
8437
+ class _RefineStretchedQuads(PyTextualCommandArgumentsSubItem):
8443
8438
  """
8444
- Argument MaxFaceSkew.
8439
+ Argument RefineStretchedQuads.
8445
8440
  """
8446
8441
 
8447
8442
  class _nOrthogonalLayers(PyNumericalCommandArgumentsSubItem):
@@ -8456,18 +8451,18 @@ class Root(PyMenu):
8456
8451
 
8457
8452
  def __init__(self, parent, attr, service, rules, path):
8458
8453
  super().__init__(parent, attr, service, rules, path)
8459
- self.MergeFaceZonesBasedOnLabels = self._MergeFaceZonesBasedOnLabels(self, "MergeFaceZonesBasedOnLabels", service, rules, path)
8460
8454
  self.MergeEdgeZonesBasedOnLabels = self._MergeEdgeZonesBasedOnLabels(self, "MergeEdgeZonesBasedOnLabels", service, rules, path)
8455
+ self.MergeFaceZonesBasedOnLabels = self._MergeFaceZonesBasedOnLabels(self, "MergeFaceZonesBasedOnLabels", service, rules, path)
8461
8456
  self.ShowAdvancedOptions = self._ShowAdvancedOptions(self, "ShowAdvancedOptions", service, rules, path)
8462
8457
 
8463
- class _MergeFaceZonesBasedOnLabels(PyTextualCommandArgumentsSubItem):
8458
+ class _MergeEdgeZonesBasedOnLabels(PyTextualCommandArgumentsSubItem):
8464
8459
  """
8465
- Argument MergeFaceZonesBasedOnLabels.
8460
+ Argument MergeEdgeZonesBasedOnLabels.
8466
8461
  """
8467
8462
 
8468
- class _MergeEdgeZonesBasedOnLabels(PyTextualCommandArgumentsSubItem):
8463
+ class _MergeFaceZonesBasedOnLabels(PyTextualCommandArgumentsSubItem):
8469
8464
  """
8470
- Argument MergeEdgeZonesBasedOnLabels.
8465
+ Argument MergeFaceZonesBasedOnLabels.
8471
8466
  """
8472
8467
 
8473
8468
  class _ShowAdvancedOptions(PyParameterCommandArgumentsSubItem):
@@ -8780,8 +8775,8 @@ class Root(PyMenu):
8780
8775
  self.SaveSizeFieldFile = self._SaveSizeFieldFile(self, "SaveSizeFieldFile", service, rules, path)
8781
8776
  self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
8782
8777
  self.ScopeProximityTo = self._ScopeProximityTo(self, "ScopeProximityTo", service, rules, path)
8783
- self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
8784
8778
  self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
8779
+ self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
8785
8780
  self.SaveSizeField = self._SaveSizeField(self, "SaveSizeField", service, rules, path)
8786
8781
  self.UseSizeFiles = self._UseSizeFiles(self, "UseSizeFiles", service, rules, path)
8787
8782
  self.AutoCreateScopedSizing = self._AutoCreateScopedSizing(self, "AutoCreateScopedSizing", service, rules, path)
@@ -8811,14 +8806,14 @@ class Root(PyMenu):
8811
8806
  Argument ScopeProximityTo.
8812
8807
  """
8813
8808
 
8814
- class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
8809
+ class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
8815
8810
  """
8816
- Argument PreviewSizefield.
8811
+ Argument CurvatureNormalAngle.
8817
8812
  """
8818
8813
 
8819
- class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
8814
+ class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
8820
8815
  """
8821
- Argument CurvatureNormalAngle.
8816
+ Argument PreviewSizefield.
8822
8817
  """
8823
8818
 
8824
8819
  class _SaveSizeField(PyParameterCommandArgumentsSubItem):
@@ -9308,14 +9303,15 @@ class Root(PyMenu):
9308
9303
  super().__init__(parent, attr, service, rules, path)
9309
9304
  self.SMQualityCollapseLimit = self._SMQualityCollapseLimit(self, "SMQualityCollapseLimit", service, rules, path)
9310
9305
  self.FoldFaceLimit = self._FoldFaceLimit(self, "FoldFaceLimit", service, rules, path)
9311
- self.SMSeparation = self._SMSeparation(self, "SMSeparation", service, rules, path)
9312
- self.SMSeparationAngle = self._SMSeparationAngle(self, "SMSeparationAngle", service, rules, path)
9313
9306
  self.SMQualityImprove = self._SMQualityImprove(self, "SMQualityImprove", service, rules, path)
9307
+ self.SMSeparationAngle = self._SMSeparationAngle(self, "SMSeparationAngle", service, rules, path)
9308
+ self.ShowSurfaceMeshPreferences = self._ShowSurfaceMeshPreferences(self, "ShowSurfaceMeshPreferences", service, rules, path)
9314
9309
  self.AutoMerge = self._AutoMerge(self, "AutoMerge", service, rules, path)
9315
9310
  self.TVMAutoControlCreation = self._TVMAutoControlCreation(self, "TVMAutoControlCreation", service, rules, path)
9316
- self.ShowSurfaceMeshPreferences = self._ShowSurfaceMeshPreferences(self, "ShowSurfaceMeshPreferences", service, rules, path)
9311
+ self.SMSeparation = self._SMSeparation(self, "SMSeparation", service, rules, path)
9317
9312
  self.SMRemoveStep = self._SMRemoveStep(self, "SMRemoveStep", service, rules, path)
9318
9313
  self.SMStepWidth = self._SMStepWidth(self, "SMStepWidth", service, rules, path)
9314
+ self.ParallelRegionCompute = self._ParallelRegionCompute(self, "ParallelRegionCompute", service, rules, path)
9319
9315
  self.VolumeMeshMaxSize = self._VolumeMeshMaxSize(self, "VolumeMeshMaxSize", service, rules, path)
9320
9316
  self.AutoAssignZoneTypes = self._AutoAssignZoneTypes(self, "AutoAssignZoneTypes", service, rules, path)
9321
9317
  self.SMQualityMaxAngle = self._SMQualityMaxAngle(self, "SMQualityMaxAngle", service, rules, path)
@@ -9334,9 +9330,9 @@ class Root(PyMenu):
9334
9330
  Specify the value limiting when folded faces are smoothed or resolved. Folded faces are resolved while under this limit. Set this value to 0 if the number of free nodes (due to a zero-thickness wall such as a baffle for instance) falls below 10.
9335
9331
  """
9336
9332
 
9337
- class _SMSeparation(PyTextualCommandArgumentsSubItem):
9333
+ class _SMQualityImprove(PyTextualCommandArgumentsSubItem):
9338
9334
  """
9339
- Choose whether or not to separate zones. This is required to select faces for capping. If Named Selections have already been defined at these locations, then separation is not needed. Performance may be improved if this is disabled.
9335
+ Choose whether or not to apply quality measures during surface mesh generation. You should disable this option when using Multizone meshing of very thin structures, relative to the minimum size.
9340
9336
  """
9341
9337
 
9342
9338
  class _SMSeparationAngle(PyNumericalCommandArgumentsSubItem):
@@ -9344,9 +9340,9 @@ class Root(PyMenu):
9344
9340
  Specify a desired angle for determining separation. Assigning a smaller separation angle will produce more zones.
9345
9341
  """
9346
9342
 
9347
- class _SMQualityImprove(PyTextualCommandArgumentsSubItem):
9343
+ class _ShowSurfaceMeshPreferences(PyParameterCommandArgumentsSubItem):
9348
9344
  """
9349
- Choose whether or not to apply quality measures during surface mesh generation. You should disable this option when using Multizone meshing of very thin structures, relative to the minimum size.
9345
+ Display advanced options that you may want to apply to the task.
9350
9346
  """
9351
9347
 
9352
9348
  class _AutoMerge(PyParameterCommandArgumentsSubItem):
@@ -9359,9 +9355,9 @@ class Root(PyMenu):
9359
9355
  If your geometry contains small edges, you can choose to extract these edge features when generating the surface mesh by selecting yes. Note that selecting yes , will always extract small edge features regardless of your selection for the Auto Remesh to Remove Clustering? option.
9360
9356
  """
9361
9357
 
9362
- class _ShowSurfaceMeshPreferences(PyParameterCommandArgumentsSubItem):
9358
+ class _SMSeparation(PyTextualCommandArgumentsSubItem):
9363
9359
  """
9364
- Display advanced options that you may want to apply to the task.
9360
+ Choose whether or not to separate zones. This is required to select faces for capping. If Named Selections have already been defined at these locations, then separation is not needed. Performance may be improved if this is disabled.
9365
9361
  """
9366
9362
 
9367
9363
  class _SMRemoveStep(PyTextualCommandArgumentsSubItem):
@@ -9374,6 +9370,11 @@ class Root(PyMenu):
9374
9370
  Specify the width of the step that you wish to remove.
9375
9371
  """
9376
9372
 
9373
+ class _ParallelRegionCompute(PyTextualCommandArgumentsSubItem):
9374
+ """
9375
+ Argument ParallelRegionCompute.
9376
+ """
9377
+
9377
9378
  class _VolumeMeshMaxSize(PyNumericalCommandArgumentsSubItem):
9378
9379
  """
9379
9380
  Specify the maximum size of the elements for the surface mesh.
@@ -9493,11 +9494,11 @@ class Root(PyMenu):
9493
9494
  self.CreateCADAssemblies = self._CreateCADAssemblies(self, "CreateCADAssemblies", service, rules, path)
9494
9495
  self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
9495
9496
  self.OneZonePer = self._OneZonePer(self, "OneZonePer", service, rules, path)
9496
- self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
9497
+ self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
9497
9498
  self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
9498
9499
  self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
9499
9500
  self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
9500
- self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
9501
+ self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
9501
9502
 
9502
9503
  class _SavePMDBIntermediateFile(PyParameterCommandArgumentsSubItem):
9503
9504
  """
@@ -9529,9 +9530,9 @@ class Root(PyMenu):
9529
9530
  Argument OneZonePer.
9530
9531
  """
9531
9532
 
9532
- class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
9533
+ class _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
9533
9534
  """
9534
- Argument ImportCurvatureDataFromCAD.
9535
+ Argument UsePartOrBodyAsSuffix.
9535
9536
  """
9536
9537
 
9537
9538
  class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
@@ -9549,9 +9550,9 @@ class Root(PyMenu):
9549
9550
  Argument ImportPartNames.
9550
9551
  """
9551
9552
 
9552
- class _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
9553
+ class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
9553
9554
  """
9554
- Argument UsePartOrBodyAsSuffix.
9555
+ Argument ImportCurvatureDataFromCAD.
9555
9556
  """
9556
9557
 
9557
9558
  class _ShareTopologyPreferences(PySingletonCommandArgumentsSubItem):
@@ -9566,14 +9567,14 @@ class Root(PyMenu):
9566
9567
  self.ConnectLabelWildcard = self._ConnectLabelWildcard(self, "ConnectLabelWildcard", service, rules, path)
9567
9568
  self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
9568
9569
  self.RelativeShareTopologyTolerance = self._RelativeShareTopologyTolerance(self, "RelativeShareTopologyTolerance", service, rules, path)
9569
- self.FluidLabelWildcard = self._FluidLabelWildcard(self, "FluidLabelWildcard", service, rules, path)
9570
+ self.ShareTopologyAngle = self._ShareTopologyAngle(self, "ShareTopologyAngle", service, rules, path)
9570
9571
  self.ExecuteJoinIntersect = self._ExecuteJoinIntersect(self, "ExecuteJoinIntersect", service, rules, path)
9571
9572
  self.Operation = self._Operation(self, "Operation", service, rules, path)
9572
- self.ShareTopologyAngle = self._ShareTopologyAngle(self, "ShareTopologyAngle", service, rules, path)
9573
+ self.FluidLabelWildcard = self._FluidLabelWildcard(self, "FluidLabelWildcard", service, rules, path)
9573
9574
  self.STToleranceIncrement = self._STToleranceIncrement(self, "STToleranceIncrement", service, rules, path)
9574
- self.ShowShareTopologyPreferences = self._ShowShareTopologyPreferences(self, "ShowShareTopologyPreferences", service, rules, path)
9575
- self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
9576
9575
  self.IntfLabelList = self._IntfLabelList(self, "IntfLabelList", service, rules, path)
9576
+ self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
9577
+ self.ShowShareTopologyPreferences = self._ShowShareTopologyPreferences(self, "ShowShareTopologyPreferences", service, rules, path)
9577
9578
  self.AdvancedImprove = self._AdvancedImprove(self, "AdvancedImprove", service, rules, path)
9578
9579
  self.NumberOfJoinTries = self._NumberOfJoinTries(self, "NumberOfJoinTries", service, rules, path)
9579
9580
 
@@ -9602,9 +9603,9 @@ class Root(PyMenu):
9602
9603
  Specify the relative tolerance for joining or intersecting face pairs, or the relative tolerance for connecting edge and face pairs.
9603
9604
  """
9604
9605
 
9605
- class _FluidLabelWildcard(PyTextualCommandArgumentsSubItem):
9606
+ class _ShareTopologyAngle(PyNumericalCommandArgumentsSubItem):
9606
9607
  """
9607
- Argument FluidLabelWildcard.
9608
+ Specify the threshold angle for joining face pairs.
9608
9609
  """
9609
9610
 
9610
9611
  class _ExecuteJoinIntersect(PyTextualCommandArgumentsSubItem):
@@ -9617,9 +9618,9 @@ class Root(PyMenu):
9617
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.
9618
9619
  """
9619
9620
 
9620
- class _ShareTopologyAngle(PyNumericalCommandArgumentsSubItem):
9621
+ class _FluidLabelWildcard(PyTextualCommandArgumentsSubItem):
9621
9622
  """
9622
- Specify the threshold angle for joining face pairs.
9623
+ Argument FluidLabelWildcard.
9623
9624
  """
9624
9625
 
9625
9626
  class _STToleranceIncrement(PyNumericalCommandArgumentsSubItem):
@@ -9627,9 +9628,9 @@ class Root(PyMenu):
9627
9628
  Specify the increment by which the tolerance changes for each attempt to join face pairs.
9628
9629
  """
9629
9630
 
9630
- class _ShowShareTopologyPreferences(PyParameterCommandArgumentsSubItem):
9631
+ class _IntfLabelList(PyTextualCommandArgumentsSubItem):
9631
9632
  """
9632
- Display advanced options that you may want to apply to the task.
9633
+ 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...
9633
9634
  """
9634
9635
 
9635
9636
  class _PerLabelList(PyTextualCommandArgumentsSubItem):
@@ -9637,9 +9638,9 @@ class Root(PyMenu):
9637
9638
  Argument PerLabelList.
9638
9639
  """
9639
9640
 
9640
- class _IntfLabelList(PyTextualCommandArgumentsSubItem):
9641
+ class _ShowShareTopologyPreferences(PyParameterCommandArgumentsSubItem):
9641
9642
  """
9642
- 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...
9643
+ Display advanced options that you may want to apply to the task.
9643
9644
  """
9644
9645
 
9645
9646
  class _AdvancedImprove(PyTextualCommandArgumentsSubItem):
@@ -10032,9 +10033,9 @@ class Root(PyMenu):
10032
10033
  def __init__(self, parent, attr, service, rules, path):
10033
10034
  super().__init__(parent, attr, service, rules, path)
10034
10035
  self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
10035
- self.PeelLayers = self._PeelLayers(self, "PeelLayers", service, rules, path)
10036
- self.TetPolyMaxCellLength = self._TetPolyMaxCellLength(self, "TetPolyMaxCellLength", service, rules, path)
10037
10036
  self.HexMinCellLength = self._HexMinCellLength(self, "HexMinCellLength", service, rules, path)
10037
+ self.TetPolyMaxCellLength = self._TetPolyMaxCellLength(self, "TetPolyMaxCellLength", service, rules, path)
10038
+ self.PeelLayers = self._PeelLayers(self, "PeelLayers", service, rules, path)
10038
10039
  self.Type = self._Type(self, "Type", service, rules, path)
10039
10040
  self.CellSizing = self._CellSizing(self, "CellSizing", service, rules, path)
10040
10041
  self.HexMaxSize = self._HexMaxSize(self, "HexMaxSize", service, rules, path)
@@ -10047,9 +10048,9 @@ class Root(PyMenu):
10047
10048
  Argument MaxSize.
10048
10049
  """
10049
10050
 
10050
- class _PeelLayers(PyNumericalCommandArgumentsSubItem):
10051
+ class _HexMinCellLength(PyNumericalCommandArgumentsSubItem):
10051
10052
  """
10052
- Specify the number of layers that control the gap between the hexahedra core and the geometry. This distance is assumed to be the height of an ideal tetrahedral cell on the boundary face.
10053
+ The minimum cell length for the hexcore or poly-hexcore volume fill types.
10053
10054
  """
10054
10055
 
10055
10056
  class _TetPolyMaxCellLength(PyNumericalCommandArgumentsSubItem):
@@ -10057,9 +10058,9 @@ class Root(PyMenu):
10057
10058
  The maximum cell length for either the tetrahedron, polyhedron, or poly-hexcore volume fill types.
10058
10059
  """
10059
10060
 
10060
- class _HexMinCellLength(PyNumericalCommandArgumentsSubItem):
10061
+ class _PeelLayers(PyNumericalCommandArgumentsSubItem):
10061
10062
  """
10062
- The minimum cell length for the hexcore or poly-hexcore volume fill types.
10063
+ Specify the number of layers that control the gap between the hexahedra core and the geometry. This distance is assumed to be the height of an ideal tetrahedral cell on the boundary face.
10063
10064
  """
10064
10065
 
10065
10066
  class _Type(PyTextualCommandArgumentsSubItem):
@@ -10117,22 +10118,22 @@ class Root(PyMenu):
10117
10118
  self.MergeBodyLabels = self._MergeBodyLabels(self, "MergeBodyLabels", service, rules, path)
10118
10119
  self.QualityMethod = self._QualityMethod(self, "QualityMethod", service, rules, path)
10119
10120
  self.MinPolySize = self._MinPolySize(self, "MinPolySize", service, rules, path)
10120
- self.PolyFeatureAngle = self._PolyFeatureAngle(self, "PolyFeatureAngle", service, rules, path)
10121
+ self.UseSizeField = self._UseSizeField(self, "UseSizeField", service, rules, path)
10121
10122
  self.SizeFieldPeriodicity = self._SizeFieldPeriodicity(self, "SizeFieldPeriodicity", service, rules, path)
10123
+ self.PolyFeatureAngle = self._PolyFeatureAngle(self, "PolyFeatureAngle", service, rules, path)
10122
10124
  self.UseSizeFieldInSolids = self._UseSizeFieldInSolids(self, "UseSizeFieldInSolids", service, rules, path)
10123
- self.UseSizeField = self._UseSizeField(self, "UseSizeField", service, rules, path)
10124
- self.ShowVolumeMeshPreferences = self._ShowVolumeMeshPreferences(self, "ShowVolumeMeshPreferences", service, rules, path)
10125
- self.TetInSolids = self._TetInSolids(self, "TetInSolids", service, rules, path)
10125
+ self.PolyInSolids = self._PolyInSolids(self, "PolyInSolids", service, rules, path)
10126
+ self.MinEdgeLength = self._MinEdgeLength(self, "MinEdgeLength", service, rules, path)
10126
10127
  self.AddMultipleQualityMethods = self._AddMultipleQualityMethods(self, "AddMultipleQualityMethods", service, rules, path)
10127
10128
  self.MaxCellSizeChange = self._MaxCellSizeChange(self, "MaxCellSizeChange", service, rules, path)
10128
10129
  self.WritePrismControlFile = self._WritePrismControlFile(self, "WritePrismControlFile", service, rules, path)
10129
10130
  self.MinFaceArea = self._MinFaceArea(self, "MinFaceArea", service, rules, path)
10130
10131
  self.CheckSelfProximity = self._CheckSelfProximity(self, "CheckSelfProximity", service, rules, path)
10131
10132
  self.Avoid1_8Transition = self._Avoid1_8Transition(self, "Avoid1_8Transition", service, rules, path)
10133
+ self.ShowVolumeMeshPreferences = self._ShowVolumeMeshPreferences(self, "ShowVolumeMeshPreferences", service, rules, path)
10132
10134
  self.PrepareZoneNames = self._PrepareZoneNames(self, "PrepareZoneNames", service, rules, path)
10133
- self.MinEdgeLength = self._MinEdgeLength(self, "MinEdgeLength", service, rules, path)
10134
10135
  self.SolidGrowthRate = self._SolidGrowthRate(self, "SolidGrowthRate", service, rules, path)
10135
- self.PolyInSolids = self._PolyInSolids(self, "PolyInSolids", service, rules, path)
10136
+ self.TetInSolids = self._TetInSolids(self, "TetInSolids", service, rules, path)
10136
10137
  self.QualityWarningLimit = self._QualityWarningLimit(self, "QualityWarningLimit", service, rules, path)
10137
10138
 
10138
10139
  class _MergeBodyLabels(PyTextualCommandArgumentsSubItem):
@@ -10150,9 +10151,9 @@ class Root(PyMenu):
10150
10151
  Argument MinPolySize.
10151
10152
  """
10152
10153
 
10153
- class _PolyFeatureAngle(PyNumericalCommandArgumentsSubItem):
10154
+ class _UseSizeField(PyTextualCommandArgumentsSubItem):
10154
10155
  """
10155
- Specify the angle to preserve features when using a polyhedral-based mesh.
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
10157
  """
10157
10158
 
10158
10159
  class _SizeFieldPeriodicity(PyTextualCommandArgumentsSubItem):
@@ -10160,24 +10161,24 @@ class Root(PyMenu):
10160
10161
  Argument SizeFieldPeriodicity.
10161
10162
  """
10162
10163
 
10163
- class _UseSizeFieldInSolids(PyTextualCommandArgumentsSubItem):
10164
+ class _PolyFeatureAngle(PyNumericalCommandArgumentsSubItem):
10164
10165
  """
10165
- 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.
10166
+ Specify the angle to preserve features when using a polyhedral-based mesh.
10166
10167
  """
10167
10168
 
10168
- class _UseSizeField(PyTextualCommandArgumentsSubItem):
10169
+ class _UseSizeFieldInSolids(PyTextualCommandArgumentsSubItem):
10169
10170
  """
10170
- 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.
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
10172
  """
10172
10173
 
10173
- class _ShowVolumeMeshPreferences(PyParameterCommandArgumentsSubItem):
10174
+ class _PolyInSolids(PyTextualCommandArgumentsSubItem):
10174
10175
  """
10175
- Display advanced options that you may want to apply to the task.
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.
10176
10177
  """
10177
10178
 
10178
- class _TetInSolids(PyTextualCommandArgumentsSubItem):
10179
+ class _MinEdgeLength(PyNumericalCommandArgumentsSubItem):
10179
10180
  """
10180
- Argument TetInSolids.
10181
+ Argument MinEdgeLength.
10181
10182
  """
10182
10183
 
10183
10184
  class _AddMultipleQualityMethods(PyTextualCommandArgumentsSubItem):
@@ -10210,14 +10211,14 @@ class Root(PyMenu):
10210
10211
  Indicate whether or not you want to avoid any potential 1:8 cell transition in the hexcore region of the volume mesh, replacing any abrupt change in the cell size with polyhedral cells to improve solver performance in such transitional areas.
10211
10212
  """
10212
10213
 
10213
- class _PrepareZoneNames(PyTextualCommandArgumentsSubItem):
10214
+ class _ShowVolumeMeshPreferences(PyParameterCommandArgumentsSubItem):
10214
10215
  """
10215
- 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.
10216
+ Display advanced options that you may want to apply to the task.
10216
10217
  """
10217
10218
 
10218
- class _MinEdgeLength(PyNumericalCommandArgumentsSubItem):
10219
+ class _PrepareZoneNames(PyTextualCommandArgumentsSubItem):
10219
10220
  """
10220
- Argument MinEdgeLength.
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
10222
  """
10222
10223
 
10223
10224
  class _SolidGrowthRate(PyNumericalCommandArgumentsSubItem):
@@ -10225,9 +10226,9 @@ class Root(PyMenu):
10225
10226
  Specify the rate of growth for a tetrahedron or polyhedron mesh.
10226
10227
  """
10227
10228
 
10228
- class _PolyInSolids(PyTextualCommandArgumentsSubItem):
10229
+ class _TetInSolids(PyTextualCommandArgumentsSubItem):
10229
10230
  """
10230
- 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.
10231
+ Argument TetInSolids.
10231
10232
  """
10232
10233
 
10233
10234
  class _QualityWarningLimit(PyNumericalCommandArgumentsSubItem):
@@ -10322,19 +10323,19 @@ class Root(PyMenu):
10322
10323
 
10323
10324
  def __init__(self, parent, attr, service, rules, path):
10324
10325
  super().__init__(parent, attr, service, rules, path)
10326
+ self.ShowGlobalThinVolumePreferences = self._ShowGlobalThinVolumePreferences(self, "ShowGlobalThinVolumePreferences", service, rules, path)
10325
10327
  self.MinAspectRatio = self._MinAspectRatio(self, "MinAspectRatio", service, rules, path)
10326
- self.AutoOrderControls = self._AutoOrderControls(self, "AutoOrderControls", service, rules, path)
10327
10328
  self.StairStep = self._StairStep(self, "StairStep", service, rules, path)
10328
- self.ShowGlobalThinVolumePreferences = self._ShowGlobalThinVolumePreferences(self, "ShowGlobalThinVolumePreferences", service, rules, path)
10329
+ self.AutoOrderControls = self._AutoOrderControls(self, "AutoOrderControls", service, rules, path)
10329
10330
 
10330
- class _MinAspectRatio(PyNumericalCommandArgumentsSubItem):
10331
+ class _ShowGlobalThinVolumePreferences(PyParameterCommandArgumentsSubItem):
10331
10332
  """
10332
- 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.
10333
+ Display global settings for thin volume meshing.
10333
10334
  """
10334
10335
 
10335
- class _AutoOrderControls(PyTextualCommandArgumentsSubItem):
10336
+ class _MinAspectRatio(PyNumericalCommandArgumentsSubItem):
10336
10337
  """
10337
- 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.
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
10339
  """
10339
10340
 
10340
10341
  class _StairStep(PyTextualCommandArgumentsSubItem):
@@ -10342,9 +10343,9 @@ class Root(PyMenu):
10342
10343
  Use this option to invoke stair-stepping at thin volume mesh regions.
10343
10344
  """
10344
10345
 
10345
- class _ShowGlobalThinVolumePreferences(PyParameterCommandArgumentsSubItem):
10346
+ class _AutoOrderControls(PyTextualCommandArgumentsSubItem):
10346
10347
  """
10347
- Display global settings for thin volume meshing.
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
10349
  """
10349
10350
 
10350
10351
  class _InvokePrimsControl(PyTextualCommandArgumentsSubItem):
@@ -11011,15 +11012,15 @@ class Root(PyMenu):
11011
11012
  self.X1 = self._X1(self, "X1", service, rules, path)
11012
11013
  self.Y1 = self._Y1(self, "Y1", service, rules, path)
11013
11014
  self.Z_Offset = self._Z_Offset(self, "Z-Offset", service, rules, path)
11014
- self.Z1 = self._Z1(self, "Z1", service, rules, path)
11015
- self.Node1 = self._Node1(self, "Node1", service, rules, path)
11016
11015
  self.Z2 = self._Z2(self, "Z2", service, rules, path)
11016
+ self.Node1 = self._Node1(self, "Node1", service, rules, path)
11017
+ self.Z1 = self._Z1(self, "Z1", service, rules, path)
11017
11018
  self.Radius2 = self._Radius2(self, "Radius2", service, rules, path)
11018
11019
  self.Y2 = self._Y2(self, "Y2", service, rules, path)
11019
11020
  self.Node3 = self._Node3(self, "Node3", service, rules, path)
11020
11021
  self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
11021
- self.Node2 = self._Node2(self, "Node2", service, rules, path)
11022
11022
  self.X2 = self._X2(self, "X2", service, rules, path)
11023
+ self.Node2 = self._Node2(self, "Node2", service, rules, path)
11023
11024
  self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
11024
11025
  self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
11025
11026
 
@@ -11053,9 +11054,9 @@ class Root(PyMenu):
11053
11054
  Argument Z-Offset.
11054
11055
  """
11055
11056
 
11056
- class _Z1(PyNumericalCommandArgumentsSubItem):
11057
+ class _Z2(PyNumericalCommandArgumentsSubItem):
11057
11058
  """
11058
- Argument Z1.
11059
+ Argument Z2.
11059
11060
  """
11060
11061
 
11061
11062
  class _Node1(PyTextualCommandArgumentsSubItem):
@@ -11063,9 +11064,9 @@ class Root(PyMenu):
11063
11064
  Argument Node1.
11064
11065
  """
11065
11066
 
11066
- class _Z2(PyNumericalCommandArgumentsSubItem):
11067
+ class _Z1(PyNumericalCommandArgumentsSubItem):
11067
11068
  """
11068
- Argument Z2.
11069
+ Argument Z1.
11069
11070
  """
11070
11071
 
11071
11072
  class _Radius2(PyNumericalCommandArgumentsSubItem):
@@ -11088,14 +11089,14 @@ class Root(PyMenu):
11088
11089
  Argument Y-Offset.
11089
11090
  """
11090
11091
 
11091
- class _Node2(PyTextualCommandArgumentsSubItem):
11092
+ class _X2(PyNumericalCommandArgumentsSubItem):
11092
11093
  """
11093
- Argument Node2.
11094
+ Argument X2.
11094
11095
  """
11095
11096
 
11096
- class _X2(PyNumericalCommandArgumentsSubItem):
11097
+ class _Node2(PyTextualCommandArgumentsSubItem):
11097
11098
  """
11098
- Argument X2.
11099
+ Argument Node2.
11099
11100
  """
11100
11101
 
11101
11102
  class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
@@ -11627,11 +11628,11 @@ class Root(PyMenu):
11627
11628
  self.CreateCADAssemblies = self._CreateCADAssemblies(self, "CreateCADAssemblies", service, rules, path)
11628
11629
  self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
11629
11630
  self.OneZonePer = self._OneZonePer(self, "OneZonePer", service, rules, path)
11630
- self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
11631
- self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
11632
11631
  self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
11633
- self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
11634
11632
  self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
11633
+ self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
11634
+ self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
11635
+ self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
11635
11636
 
11636
11637
  class _SavePMDBIntermediateFile(PyParameterCommandArgumentsSubItem):
11637
11638
  """
@@ -11663,19 +11664,19 @@ class Root(PyMenu):
11663
11664
  Argument OneZonePer.
11664
11665
  """
11665
11666
 
11666
- class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
11667
+ class _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
11667
11668
  """
11668
- Argument ImportCurvatureDataFromCAD.
11669
+ Argument UsePartOrBodyAsSuffix.
11669
11670
  """
11670
11671
 
11671
- class _ImportNamedSelections(PyParameterCommandArgumentsSubItem):
11672
+ class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
11672
11673
  """
11673
- Argument ImportNamedSelections.
11674
+ Argument ExtractFeatures.
11674
11675
  """
11675
11676
 
11676
- class _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
11677
+ class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
11677
11678
  """
11678
- Argument UsePartOrBodyAsSuffix.
11679
+ Argument ImportCurvatureDataFromCAD.
11679
11680
  """
11680
11681
 
11681
11682
  class _ImportPartNames(PyParameterCommandArgumentsSubItem):
@@ -11683,9 +11684,9 @@ class Root(PyMenu):
11683
11684
  Argument ImportPartNames.
11684
11685
  """
11685
11686
 
11686
- class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
11687
+ class _ImportNamedSelections(PyParameterCommandArgumentsSubItem):
11687
11688
  """
11688
- Argument ExtractFeatures.
11689
+ Argument ImportNamedSelections.
11689
11690
  """
11690
11691
 
11691
11692
  def create_instance(self) -> _ImportBodyOfInfluenceGeometryCommandArguments:
@@ -11775,21 +11776,23 @@ class Root(PyMenu):
11775
11776
 
11776
11777
  def __init__(self, parent, attr, service, rules, path):
11777
11778
  super().__init__(parent, attr, service, rules, path)
11778
- self.MergeNodes = self._MergeNodes(self, "MergeNodes", service, rules, path)
11779
+ self.EdgeLabel = self._EdgeLabel(self, "EdgeLabel", service, rules, path)
11779
11780
  self.FacetedBodies = self._FacetedBodies(self, "FacetedBodies", service, rules, path)
11780
11781
  self.CISeparation = self._CISeparation(self, "CISeparation", service, rules, path)
11781
- self.CITolerence = self._CITolerence(self, "CITolerence", service, rules, path)
11782
+ self.MergeNodes = self._MergeNodes(self, "MergeNodes", service, rules, path)
11782
11783
  self.CIRefaceting = self._CIRefaceting(self, "CIRefaceting", service, rules, path)
11784
+ self.MaxFacetLengthOption = self._MaxFacetLengthOption(self, "MaxFacetLengthOption", service, rules, path)
11783
11785
  self.AutomaticObjectCreation = self._AutomaticObjectCreation(self, "AutomaticObjectCreation", service, rules, path)
11784
- self.MaxFacetLength = self._MaxFacetLength(self, "MaxFacetLength", service, rules, path)
11785
11786
  self.ShowImportCadPreferences = self._ShowImportCadPreferences(self, "ShowImportCadPreferences", service, rules, path)
11787
+ self.MaxFacetLength = self._MaxFacetLength(self, "MaxFacetLength", service, rules, path)
11788
+ self.MaxFacetLengthRatio = self._MaxFacetLengthRatio(self, "MaxFacetLengthRatio", service, rules, path)
11786
11789
  self.ExtractAngle = self._ExtractAngle(self, "ExtractAngle", service, rules, path)
11787
11790
  self.CISeparationAngle = self._CISeparationAngle(self, "CISeparationAngle", service, rules, path)
11788
- self.EdgeLabel = self._EdgeLabel(self, "EdgeLabel", service, rules, path)
11791
+ self.CITolerence = self._CITolerence(self, "CITolerence", service, rules, path)
11789
11792
 
11790
- class _MergeNodes(PyTextualCommandArgumentsSubItem):
11793
+ class _EdgeLabel(PyTextualCommandArgumentsSubItem):
11791
11794
  """
11792
- Argument MergeNodes.
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.
11793
11796
  """
11794
11797
 
11795
11798
  class _FacetedBodies(PyTextualCommandArgumentsSubItem):
@@ -11802,9 +11805,9 @@ class Root(PyMenu):
11802
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.
11803
11806
  """
11804
11807
 
11805
- class _CITolerence(PyNumericalCommandArgumentsSubItem):
11808
+ class _MergeNodes(PyTextualCommandArgumentsSubItem):
11806
11809
  """
11807
- Specify the level of facet refinement during import. A value approximately 1/10 of the intended minimum size is recommended. Using a value of 0 results in the coarsest possible faceting.
11810
+ Argument MergeNodes.
11808
11811
  """
11809
11812
 
11810
11813
  class _CIRefaceting(PyParameterCommandArgumentsSubItem):
@@ -11812,19 +11815,29 @@ class Root(PyMenu):
11812
11815
  Enable this option to be able to set the Tolerance and the Max Facet Length custom faceting options for the imported geometry.
11813
11816
  """
11814
11817
 
11818
+ class _MaxFacetLengthOption(PyTextualCommandArgumentsSubItem):
11819
+ """
11820
+ Argument MaxFacetLengthOption.
11821
+ """
11822
+
11815
11823
  class _AutomaticObjectCreation(PyTextualCommandArgumentsSubItem):
11816
11824
  """
11817
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.
11818
11826
  """
11819
11827
 
11828
+ class _ShowImportCadPreferences(PyParameterCommandArgumentsSubItem):
11829
+ """
11830
+ Display advanced options that you may want to apply to the task.
11831
+ """
11832
+
11820
11833
  class _MaxFacetLength(PyNumericalCommandArgumentsSubItem):
11821
11834
  """
11822
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.
11823
11836
  """
11824
11837
 
11825
- class _ShowImportCadPreferences(PyParameterCommandArgumentsSubItem):
11838
+ class _MaxFacetLengthRatio(PyNumericalCommandArgumentsSubItem):
11826
11839
  """
11827
- Display advanced options that you may want to apply to the task.
11840
+ Argument MaxFacetLengthRatio.
11828
11841
  """
11829
11842
 
11830
11843
  class _ExtractAngle(PyNumericalCommandArgumentsSubItem):
@@ -11837,9 +11850,9 @@ class Root(PyMenu):
11837
11850
  Specify the angle at which features will be extracted from the CAD model on import. Assigning a smaller separation angle will produce more zones.
11838
11851
  """
11839
11852
 
11840
- class _EdgeLabel(PyTextualCommandArgumentsSubItem):
11853
+ class _CITolerence(PyNumericalCommandArgumentsSubItem):
11841
11854
  """
11842
- 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.
11855
+ Specify the level of facet refinement during import. A value approximately 1/10 of the intended minimum size is recommended. Using a value of 0 results in the coarsest possible faceting.
11843
11856
  """
11844
11857
 
11845
11858
  class _FileName(PyTextualCommandArgumentsSubItem):
@@ -11891,10 +11904,10 @@ class Root(PyMenu):
11891
11904
  self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
11892
11905
  self.OneZonePer = self._OneZonePer(self, "OneZonePer", service, rules, path)
11893
11906
  self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
11894
- self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
11907
+ self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
11895
11908
  self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
11896
11909
  self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
11897
- self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
11910
+ self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
11898
11911
 
11899
11912
  class _SavePMDBIntermediateFile(PyParameterCommandArgumentsSubItem):
11900
11913
  """
@@ -11931,9 +11944,9 @@ class Root(PyMenu):
11931
11944
  Argument UsePartOrBodyAsSuffix.
11932
11945
  """
11933
11946
 
11934
- class _ImportNamedSelections(PyParameterCommandArgumentsSubItem):
11947
+ class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
11935
11948
  """
11936
- Argument ImportNamedSelections.
11949
+ Argument ExtractFeatures.
11937
11950
  """
11938
11951
 
11939
11952
  class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
@@ -11946,9 +11959,9 @@ class Root(PyMenu):
11946
11959
  Argument ImportPartNames.
11947
11960
  """
11948
11961
 
11949
- class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
11962
+ class _ImportNamedSelections(PyParameterCommandArgumentsSubItem):
11950
11963
  """
11951
- Argument ExtractFeatures.
11964
+ Argument ImportNamedSelections.
11952
11965
  """
11953
11966
 
11954
11967
  def create_instance(self) -> _ImportGeometryCommandArguments:
@@ -12013,10 +12026,10 @@ class Root(PyMenu):
12013
12026
  self.SIQualityIterations = self._SIQualityIterations(self, "SIQualityIterations", service, rules, path)
12014
12027
  self.SIQualityMaxAngle = self._SIQualityMaxAngle(self, "SIQualityMaxAngle", service, rules, path)
12015
12028
  self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
12016
- self.ShowSMImprovePreferences = self._ShowSMImprovePreferences(self, "ShowSMImprovePreferences", service, rules, path)
12029
+ self.SIRemoveStep = self._SIRemoveStep(self, "SIRemoveStep", service, rules, path)
12017
12030
  self.AdvancedImprove = self._AdvancedImprove(self, "AdvancedImprove", service, rules, path)
12018
12031
  self.SIStepWidth = self._SIStepWidth(self, "SIStepWidth", service, rules, path)
12019
- self.SIRemoveStep = self._SIRemoveStep(self, "SIRemoveStep", service, rules, path)
12032
+ self.ShowSMImprovePreferences = self._ShowSMImprovePreferences(self, "ShowSMImprovePreferences", service, rules, path)
12020
12033
 
12021
12034
  class _SIStepQualityLimit(PyNumericalCommandArgumentsSubItem):
12022
12035
  """
@@ -12043,9 +12056,9 @@ class Root(PyMenu):
12043
12056
  Argument AllowDefeaturing.
12044
12057
  """
12045
12058
 
12046
- class _ShowSMImprovePreferences(PyParameterCommandArgumentsSubItem):
12059
+ class _SIRemoveStep(PyTextualCommandArgumentsSubItem):
12047
12060
  """
12048
- Display advanced options that you may want to apply to the task.
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.
12049
12062
  """
12050
12063
 
12051
12064
  class _AdvancedImprove(PyTextualCommandArgumentsSubItem):
@@ -12058,9 +12071,9 @@ class Root(PyMenu):
12058
12071
  Specify the width of the step that you wish to remove.
12059
12072
  """
12060
12073
 
12061
- class _SIRemoveStep(PyTextualCommandArgumentsSubItem):
12074
+ class _ShowSMImprovePreferences(PyParameterCommandArgumentsSubItem):
12062
12075
  """
12063
- 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.
12076
+ Display advanced options that you may want to apply to the task.
12064
12077
  """
12065
12078
 
12066
12079
  def create_instance(self) -> _ImproveSurfaceMeshCommandArguments:
@@ -12384,9 +12397,9 @@ class Root(PyMenu):
12384
12397
  super().__init__(parent, attr, service, rules, path)
12385
12398
  self.FacetMaxEdgeLength = self._FacetMaxEdgeLength(self, "FacetMaxEdgeLength", service, rules, path)
12386
12399
  self.FacetResolution = self._FacetResolution(self, "FacetResolution", service, rules, path)
12387
- self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
12388
- self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
12389
12400
  self.MaxEdgeLengthFactor = self._MaxEdgeLengthFactor(self, "MaxEdgeLengthFactor", service, rules, path)
12401
+ self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
12402
+ self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
12390
12403
  self.MaxEdgeLength = self._MaxEdgeLength(self, "MaxEdgeLength", service, rules, path)
12391
12404
  self.CustomNormalAngle = self._CustomNormalAngle(self, "CustomNormalAngle", service, rules, path)
12392
12405
  self.CustomDeviation = self._CustomDeviation(self, "CustomDeviation", service, rules, path)
@@ -12402,9 +12415,9 @@ class Root(PyMenu):
12402
12415
  Argument FacetResolution.
12403
12416
  """
12404
12417
 
12405
- class _NormalAngle(PyNumericalCommandArgumentsSubItem):
12418
+ class _MaxEdgeLengthFactor(PyNumericalCommandArgumentsSubItem):
12406
12419
  """
12407
- Argument NormalAngle.
12420
+ Argument MaxEdgeLengthFactor.
12408
12421
  """
12409
12422
 
12410
12423
  class _Deviation(PyNumericalCommandArgumentsSubItem):
@@ -12412,9 +12425,9 @@ class Root(PyMenu):
12412
12425
  Argument Deviation.
12413
12426
  """
12414
12427
 
12415
- class _MaxEdgeLengthFactor(PyNumericalCommandArgumentsSubItem):
12428
+ class _NormalAngle(PyNumericalCommandArgumentsSubItem):
12416
12429
  """
12417
- Argument MaxEdgeLengthFactor.
12430
+ Argument NormalAngle.
12418
12431
  """
12419
12432
 
12420
12433
  class _MaxEdgeLength(PyNumericalCommandArgumentsSubItem):
@@ -12541,11 +12554,11 @@ class Root(PyMenu):
12541
12554
  self.MinSize = self._MinSize(self, "MinSize", service, rules, path)
12542
12555
  self.WrapMax = self._WrapMax(self, "WrapMax", service, rules, path)
12543
12556
  self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
12557
+ self.InitialSizeControl = self._InitialSizeControl(self, "InitialSizeControl", service, rules, path)
12544
12558
  self.SizingType = self._SizingType(self, "SizingType", service, rules, path)
12545
12559
  self.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", service, rules, path)
12546
- self.InitialSizeControl = self._InitialSizeControl(self, "InitialSizeControl", service, rules, path)
12547
- self.CellsPerGap = self._CellsPerGap(self, "CellsPerGap", service, rules, path)
12548
12560
  self.WrapCurvatureNormalAngle = self._WrapCurvatureNormalAngle(self, "WrapCurvatureNormalAngle", service, rules, path)
12561
+ self.CellsPerGap = self._CellsPerGap(self, "CellsPerGap", service, rules, path)
12549
12562
  self.TargetSizeControl = self._TargetSizeControl(self, "TargetSizeControl", service, rules, path)
12550
12563
  self.GrowthRate = self._GrowthRate(self, "GrowthRate", service, rules, path)
12551
12564
 
@@ -12594,6 +12607,11 @@ class Root(PyMenu):
12594
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.
12595
12608
  """
12596
12609
 
12610
+ class _InitialSizeControl(PyParameterCommandArgumentsSubItem):
12611
+ """
12612
+ Enable this field to display the initial size control in the graphics window.
12613
+ """
12614
+
12597
12615
  class _SizingType(PyTextualCommandArgumentsSubItem):
12598
12616
  """
12599
12617
  Choose the type of sizing control (curvature, proximity, soft, or boi).
@@ -12604,9 +12622,9 @@ class Root(PyMenu):
12604
12622
  Specify the increase in element edge length with each succeeding layer of elements.
12605
12623
  """
12606
12624
 
12607
- class _InitialSizeControl(PyParameterCommandArgumentsSubItem):
12625
+ class _WrapCurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
12608
12626
  """
12609
- Enable this field to display the initial size control in the graphics window.
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.
12610
12628
  """
12611
12629
 
12612
12630
  class _CellsPerGap(PyNumericalCommandArgumentsSubItem):
@@ -12614,11 +12632,6 @@ class Root(PyMenu):
12614
12632
  Specify the minimum number of layers of elements to be generated in the gaps. The number of cells per gap can be a real value, with a minimum value of 0.01.
12615
12633
  """
12616
12634
 
12617
- class _WrapCurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
12618
- """
12619
- 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.
12620
- """
12621
-
12622
12635
  class _TargetSizeControl(PyParameterCommandArgumentsSubItem):
12623
12636
  """
12624
12637
  Enable this field to display the target size control in the graphics window.
@@ -13000,8 +13013,8 @@ class Root(PyMenu):
13000
13013
  self.SaveSizeFieldFile = self._SaveSizeFieldFile(self, "SaveSizeFieldFile", service, rules, path)
13001
13014
  self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
13002
13015
  self.ScopeProximityTo = self._ScopeProximityTo(self, "ScopeProximityTo", service, rules, path)
13003
- self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
13004
13016
  self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
13017
+ self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
13005
13018
  self.SaveSizeField = self._SaveSizeField(self, "SaveSizeField", service, rules, path)
13006
13019
  self.UseSizeFiles = self._UseSizeFiles(self, "UseSizeFiles", service, rules, path)
13007
13020
  self.AutoCreateScopedSizing = self._AutoCreateScopedSizing(self, "AutoCreateScopedSizing", service, rules, path)
@@ -13031,14 +13044,14 @@ class Root(PyMenu):
13031
13044
  Argument ScopeProximityTo.
13032
13045
  """
13033
13046
 
13034
- class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
13047
+ class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
13035
13048
  """
13036
- Argument PreviewSizefield.
13049
+ Argument CurvatureNormalAngle.
13037
13050
  """
13038
13051
 
13039
- class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
13052
+ class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
13040
13053
  """
13041
- Argument CurvatureNormalAngle.
13054
+ Argument PreviewSizefield.
13042
13055
  """
13043
13056
 
13044
13057
  class _SaveSizeField(PyParameterCommandArgumentsSubItem):
@@ -13320,8 +13333,8 @@ class Root(PyMenu):
13320
13333
  super().__init__(parent, attr, service, rules, path)
13321
13334
  self.FacetMaxEdgeLength = self._FacetMaxEdgeLength(self, "FacetMaxEdgeLength", service, rules, path)
13322
13335
  self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
13323
- self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
13324
13336
  self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
13337
+ self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
13325
13338
  self.Refacet = self._Refacet(self, "Refacet", service, rules, path)
13326
13339
  self.MaxEdgeLengthFactor = self._MaxEdgeLengthFactor(self, "MaxEdgeLengthFactor", service, rules, path)
13327
13340
 
@@ -13335,14 +13348,14 @@ class Root(PyMenu):
13335
13348
  Specify a maximum element size for the imported model to avoid very large facets during the file import.
13336
13349
  """
13337
13350
 
13338
- class _Deviation(PyNumericalCommandArgumentsSubItem):
13351
+ class _NormalAngle(PyNumericalCommandArgumentsSubItem):
13339
13352
  """
13340
- Specify the distance between facet edges and the geometry edges. Decreasing this value will result in more facets along curved edges.
13353
+ Specify a rotational angle (in degrees) of transformation.
13341
13354
  """
13342
13355
 
13343
- class _NormalAngle(PyNumericalCommandArgumentsSubItem):
13356
+ class _Deviation(PyNumericalCommandArgumentsSubItem):
13344
13357
  """
13345
- Specify a rotational angle (in degrees) of transformation.
13358
+ Specify the distance between facet edges and the geometry edges. Decreasing this value will result in more facets along curved edges.
13346
13359
  """
13347
13360
 
13348
13361
  class _Refacet(PyParameterCommandArgumentsSubItem):
@@ -13415,8 +13428,8 @@ class Root(PyMenu):
13415
13428
  super().__init__(parent, attr, service, rules, path)
13416
13429
  self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
13417
13430
  self.RefacetDuringLoad = self._RefacetDuringLoad(self, "RefacetDuringLoad", service, rules, path)
13418
- self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
13419
13431
  self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
13432
+ self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
13420
13433
 
13421
13434
  class _MaxSize(PyNumericalCommandArgumentsSubItem):
13422
13435
  """
@@ -13428,14 +13441,14 @@ class Root(PyMenu):
13428
13441
  This option is available when DSCO is selected for the Import Route. When enabled, this option will refacet the geometry as it is converted to a .fmd file. This option eliminates the need for any refaceting operation after the geometry is loaded, which can be expensive.
13429
13442
  """
13430
13443
 
13431
- class _NormalAngle(PyNumericalCommandArgumentsSubItem):
13444
+ class _Deviation(PyNumericalCommandArgumentsSubItem):
13432
13445
  """
13433
- Specify a rotational angle (in degrees) of transformation.
13446
+ Specify the distance between facet edges and the geometry edges. Decreasing this value will result in more facets along curved edges.
13434
13447
  """
13435
13448
 
13436
- class _Deviation(PyNumericalCommandArgumentsSubItem):
13449
+ class _NormalAngle(PyNumericalCommandArgumentsSubItem):
13437
13450
  """
13438
- Specify the distance between facet edges and the geometry edges. Decreasing this value will result in more facets along curved edges.
13451
+ Specify a rotational angle (in degrees) of transformation.
13439
13452
  """
13440
13453
 
13441
13454
  def create_instance(self) -> _PartManagementCommandArguments:
@@ -14026,14 +14039,14 @@ class Root(PyMenu):
14026
14039
  self.ConnectLabelWildcard = self._ConnectLabelWildcard(self, "ConnectLabelWildcard", service, rules, path)
14027
14040
  self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
14028
14041
  self.RelativeShareTopologyTolerance = self._RelativeShareTopologyTolerance(self, "RelativeShareTopologyTolerance", service, rules, path)
14029
- self.FluidLabelWildcard = self._FluidLabelWildcard(self, "FluidLabelWildcard", service, rules, path)
14042
+ self.ShareTopologyAngle = self._ShareTopologyAngle(self, "ShareTopologyAngle", service, rules, path)
14030
14043
  self.ExecuteJoinIntersect = self._ExecuteJoinIntersect(self, "ExecuteJoinIntersect", service, rules, path)
14031
14044
  self.Operation = self._Operation(self, "Operation", service, rules, path)
14032
- self.ShareTopologyAngle = self._ShareTopologyAngle(self, "ShareTopologyAngle", service, rules, path)
14045
+ self.FluidLabelWildcard = self._FluidLabelWildcard(self, "FluidLabelWildcard", service, rules, path)
14033
14046
  self.STToleranceIncrement = self._STToleranceIncrement(self, "STToleranceIncrement", service, rules, path)
14034
- self.IntfLabelList = self._IntfLabelList(self, "IntfLabelList", service, rules, path)
14035
- self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
14036
14047
  self.ShowShareTopologyPreferences = self._ShowShareTopologyPreferences(self, "ShowShareTopologyPreferences", service, rules, path)
14048
+ self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
14049
+ self.IntfLabelList = self._IntfLabelList(self, "IntfLabelList", service, rules, path)
14037
14050
  self.AdvancedImprove = self._AdvancedImprove(self, "AdvancedImprove", service, rules, path)
14038
14051
  self.NumberOfJoinTries = self._NumberOfJoinTries(self, "NumberOfJoinTries", service, rules, path)
14039
14052
 
@@ -14062,9 +14075,9 @@ class Root(PyMenu):
14062
14075
  Specify the relative tolerance for joining or intersecting face pairs, or the relative tolerance for connecting edge and face pairs.
14063
14076
  """
14064
14077
 
14065
- class _FluidLabelWildcard(PyTextualCommandArgumentsSubItem):
14078
+ class _ShareTopologyAngle(PyNumericalCommandArgumentsSubItem):
14066
14079
  """
14067
- Argument FluidLabelWildcard.
14080
+ Specify the threshold angle for joining face pairs.
14068
14081
  """
14069
14082
 
14070
14083
  class _ExecuteJoinIntersect(PyTextualCommandArgumentsSubItem):
@@ -14077,9 +14090,9 @@ class Root(PyMenu):
14077
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.
14078
14091
  """
14079
14092
 
14080
- class _ShareTopologyAngle(PyNumericalCommandArgumentsSubItem):
14093
+ class _FluidLabelWildcard(PyTextualCommandArgumentsSubItem):
14081
14094
  """
14082
- Specify the threshold angle for joining face pairs.
14095
+ Argument FluidLabelWildcard.
14083
14096
  """
14084
14097
 
14085
14098
  class _STToleranceIncrement(PyNumericalCommandArgumentsSubItem):
@@ -14087,9 +14100,9 @@ class Root(PyMenu):
14087
14100
  Specify the increment by which the tolerance changes for each attempt to join face pairs.
14088
14101
  """
14089
14102
 
14090
- class _IntfLabelList(PyTextualCommandArgumentsSubItem):
14103
+ class _ShowShareTopologyPreferences(PyParameterCommandArgumentsSubItem):
14091
14104
  """
14092
- 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...
14105
+ Display advanced options that you may want to apply to the task.
14093
14106
  """
14094
14107
 
14095
14108
  class _PerLabelList(PyTextualCommandArgumentsSubItem):
@@ -14097,9 +14110,9 @@ class Root(PyMenu):
14097
14110
  Argument PerLabelList.
14098
14111
  """
14099
14112
 
14100
- class _ShowShareTopologyPreferences(PyParameterCommandArgumentsSubItem):
14113
+ class _IntfLabelList(PyTextualCommandArgumentsSubItem):
14101
14114
  """
14102
- Display advanced options that you may want to apply to the task.
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...
14103
14116
  """
14104
14117
 
14105
14118
  class _AdvancedImprove(PyTextualCommandArgumentsSubItem):
@@ -14124,10 +14137,10 @@ class Root(PyMenu):
14124
14137
  self.SIQualityIterations = self._SIQualityIterations(self, "SIQualityIterations", service, rules, path)
14125
14138
  self.SIQualityMaxAngle = self._SIQualityMaxAngle(self, "SIQualityMaxAngle", service, rules, path)
14126
14139
  self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
14127
- self.ShowSMImprovePreferences = self._ShowSMImprovePreferences(self, "ShowSMImprovePreferences", service, rules, path)
14140
+ self.SIRemoveStep = self._SIRemoveStep(self, "SIRemoveStep", service, rules, path)
14128
14141
  self.AdvancedImprove = self._AdvancedImprove(self, "AdvancedImprove", service, rules, path)
14129
14142
  self.SIStepWidth = self._SIStepWidth(self, "SIStepWidth", service, rules, path)
14130
- self.SIRemoveStep = self._SIRemoveStep(self, "SIRemoveStep", service, rules, path)
14143
+ self.ShowSMImprovePreferences = self._ShowSMImprovePreferences(self, "ShowSMImprovePreferences", service, rules, path)
14131
14144
 
14132
14145
  class _SIStepQualityLimit(PyNumericalCommandArgumentsSubItem):
14133
14146
  """
@@ -14154,9 +14167,9 @@ class Root(PyMenu):
14154
14167
  Argument AllowDefeaturing.
14155
14168
  """
14156
14169
 
14157
- class _ShowSMImprovePreferences(PyParameterCommandArgumentsSubItem):
14170
+ class _SIRemoveStep(PyTextualCommandArgumentsSubItem):
14158
14171
  """
14159
- Argument ShowSMImprovePreferences.
14172
+ Argument SIRemoveStep.
14160
14173
  """
14161
14174
 
14162
14175
  class _AdvancedImprove(PyTextualCommandArgumentsSubItem):
@@ -14169,9 +14182,9 @@ class Root(PyMenu):
14169
14182
  Argument SIStepWidth.
14170
14183
  """
14171
14184
 
14172
- class _SIRemoveStep(PyTextualCommandArgumentsSubItem):
14185
+ class _ShowSMImprovePreferences(PyParameterCommandArgumentsSubItem):
14173
14186
  """
14174
- Argument SIRemoveStep.
14187
+ Argument ShowSMImprovePreferences.
14175
14188
  """
14176
14189
 
14177
14190
  class _SurfaceMeshPreferences(PySingletonCommandArgumentsSubItem):
@@ -14182,21 +14195,22 @@ class Root(PyMenu):
14182
14195
  def __init__(self, parent, attr, service, rules, path):
14183
14196
  super().__init__(parent, attr, service, rules, path)
14184
14197
  self.SMQualityCollapseLimit = self._SMQualityCollapseLimit(self, "SMQualityCollapseLimit", service, rules, path)
14185
- self.AutoMerge = self._AutoMerge(self, "AutoMerge", service, rules, path)
14186
- self.SMQualityImprove = self._SMQualityImprove(self, "SMQualityImprove", service, rules, path)
14187
- self.ShowSurfaceMeshPreferences = self._ShowSurfaceMeshPreferences(self, "ShowSurfaceMeshPreferences", service, rules, path)
14188
14198
  self.FoldFaceLimit = self._FoldFaceLimit(self, "FoldFaceLimit", service, rules, path)
14189
14199
  self.SMSeparation = self._SMSeparation(self, "SMSeparation", service, rules, path)
14190
- self.TVMAutoControlCreation = self._TVMAutoControlCreation(self, "TVMAutoControlCreation", service, rules, path)
14191
14200
  self.SMSeparationAngle = self._SMSeparationAngle(self, "SMSeparationAngle", service, rules, path)
14201
+ 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)
14204
+ self.ShowSurfaceMeshPreferences = self._ShowSurfaceMeshPreferences(self, "ShowSurfaceMeshPreferences", service, rules, path)
14192
14205
  self.SMRemoveStep = self._SMRemoveStep(self, "SMRemoveStep", service, rules, path)
14193
14206
  self.SMStepWidth = self._SMStepWidth(self, "SMStepWidth", service, rules, path)
14194
- self.SMQualityMaxAngle = self._SMQualityMaxAngle(self, "SMQualityMaxAngle", service, rules, path)
14195
- self.AutoAssignZoneTypes = self._AutoAssignZoneTypes(self, "AutoAssignZoneTypes", service, rules, path)
14207
+ self.ParallelRegionCompute = self._ParallelRegionCompute(self, "ParallelRegionCompute", service, rules, path)
14196
14208
  self.VolumeMeshMaxSize = self._VolumeMeshMaxSize(self, "VolumeMeshMaxSize", service, rules, path)
14197
- self.SMQualityImproveLimit = self._SMQualityImproveLimit(self, "SMQualityImproveLimit", service, rules, path)
14198
- self.AutoSurfaceRemesh = self._AutoSurfaceRemesh(self, "AutoSurfaceRemesh", service, rules, path)
14209
+ self.AutoAssignZoneTypes = self._AutoAssignZoneTypes(self, "AutoAssignZoneTypes", service, rules, path)
14210
+ self.SMQualityMaxAngle = self._SMQualityMaxAngle(self, "SMQualityMaxAngle", service, rules, path)
14199
14211
  self.SelfIntersectCheck = self._SelfIntersectCheck(self, "SelfIntersectCheck", service, rules, path)
14212
+ self.AutoSurfaceRemesh = self._AutoSurfaceRemesh(self, "AutoSurfaceRemesh", service, rules, path)
14213
+ self.SMQualityImproveLimit = self._SMQualityImproveLimit(self, "SMQualityImproveLimit", service, rules, path)
14200
14214
  self.SetVolumeMeshMaxSize = self._SetVolumeMeshMaxSize(self, "SetVolumeMeshMaxSize", service, rules, path)
14201
14215
 
14202
14216
  class _SMQualityCollapseLimit(PyNumericalCommandArgumentsSubItem):
@@ -14204,29 +14218,29 @@ class Root(PyMenu):
14204
14218
  Argument SMQualityCollapseLimit.
14205
14219
  """
14206
14220
 
14207
- class _AutoMerge(PyParameterCommandArgumentsSubItem):
14221
+ class _FoldFaceLimit(PyNumericalCommandArgumentsSubItem):
14208
14222
  """
14209
- Argument AutoMerge.
14223
+ Argument FoldFaceLimit.
14210
14224
  """
14211
14225
 
14212
- class _SMQualityImprove(PyTextualCommandArgumentsSubItem):
14226
+ class _SMSeparation(PyTextualCommandArgumentsSubItem):
14213
14227
  """
14214
- Argument SMQualityImprove.
14228
+ Argument SMSeparation.
14215
14229
  """
14216
14230
 
14217
- class _ShowSurfaceMeshPreferences(PyParameterCommandArgumentsSubItem):
14231
+ class _SMSeparationAngle(PyNumericalCommandArgumentsSubItem):
14218
14232
  """
14219
- Argument ShowSurfaceMeshPreferences.
14233
+ Argument SMSeparationAngle.
14220
14234
  """
14221
14235
 
14222
- class _FoldFaceLimit(PyNumericalCommandArgumentsSubItem):
14236
+ class _SMQualityImprove(PyTextualCommandArgumentsSubItem):
14223
14237
  """
14224
- Argument FoldFaceLimit.
14238
+ Argument SMQualityImprove.
14225
14239
  """
14226
14240
 
14227
- class _SMSeparation(PyTextualCommandArgumentsSubItem):
14241
+ class _AutoMerge(PyParameterCommandArgumentsSubItem):
14228
14242
  """
14229
- Argument SMSeparation.
14243
+ Argument AutoMerge.
14230
14244
  """
14231
14245
 
14232
14246
  class _TVMAutoControlCreation(PyTextualCommandArgumentsSubItem):
@@ -14234,9 +14248,9 @@ class Root(PyMenu):
14234
14248
  Argument TVMAutoControlCreation.
14235
14249
  """
14236
14250
 
14237
- class _SMSeparationAngle(PyNumericalCommandArgumentsSubItem):
14251
+ class _ShowSurfaceMeshPreferences(PyParameterCommandArgumentsSubItem):
14238
14252
  """
14239
- Argument SMSeparationAngle.
14253
+ Argument ShowSurfaceMeshPreferences.
14240
14254
  """
14241
14255
 
14242
14256
  class _SMRemoveStep(PyTextualCommandArgumentsSubItem):
@@ -14249,9 +14263,14 @@ class Root(PyMenu):
14249
14263
  Argument SMStepWidth.
14250
14264
  """
14251
14265
 
14252
- class _SMQualityMaxAngle(PyNumericalCommandArgumentsSubItem):
14266
+ class _ParallelRegionCompute(PyTextualCommandArgumentsSubItem):
14253
14267
  """
14254
- Argument SMQualityMaxAngle.
14268
+ Argument ParallelRegionCompute.
14269
+ """
14270
+
14271
+ class _VolumeMeshMaxSize(PyNumericalCommandArgumentsSubItem):
14272
+ """
14273
+ Argument VolumeMeshMaxSize.
14255
14274
  """
14256
14275
 
14257
14276
  class _AutoAssignZoneTypes(PyTextualCommandArgumentsSubItem):
@@ -14259,14 +14278,14 @@ class Root(PyMenu):
14259
14278
  Argument AutoAssignZoneTypes.
14260
14279
  """
14261
14280
 
14262
- class _VolumeMeshMaxSize(PyNumericalCommandArgumentsSubItem):
14281
+ class _SMQualityMaxAngle(PyNumericalCommandArgumentsSubItem):
14263
14282
  """
14264
- Argument VolumeMeshMaxSize.
14283
+ Argument SMQualityMaxAngle.
14265
14284
  """
14266
14285
 
14267
- class _SMQualityImproveLimit(PyNumericalCommandArgumentsSubItem):
14286
+ class _SelfIntersectCheck(PyTextualCommandArgumentsSubItem):
14268
14287
  """
14269
- Argument SMQualityImproveLimit.
14288
+ Argument SelfIntersectCheck.
14270
14289
  """
14271
14290
 
14272
14291
  class _AutoSurfaceRemesh(PyTextualCommandArgumentsSubItem):
@@ -14274,9 +14293,9 @@ class Root(PyMenu):
14274
14293
  Argument AutoSurfaceRemesh.
14275
14294
  """
14276
14295
 
14277
- class _SelfIntersectCheck(PyTextualCommandArgumentsSubItem):
14296
+ class _SMQualityImproveLimit(PyNumericalCommandArgumentsSubItem):
14278
14297
  """
14279
- Argument SelfIntersectCheck.
14298
+ Argument SMQualityImproveLimit.
14280
14299
  """
14281
14300
 
14282
14301
  class _SetVolumeMeshMaxSize(PyTextualCommandArgumentsSubItem):
@@ -14368,8 +14387,8 @@ class Root(PyMenu):
14368
14387
  self.NewLabelObjects = self._NewLabelObjects(self, "NewLabelObjects", service, rules, path)
14369
14388
  self.NewLabels = self._NewLabels(self, "NewLabels", service, rules, path)
14370
14389
  self.NewLabelType = self._NewLabelType(self, "NewLabelType", service, rules, path)
14371
- self.NewLabelCells = self._NewLabelCells(self, "NewLabelCells", service, rules, path)
14372
14390
  self.NewLabelResolution = self._NewLabelResolution(self, "NewLabelResolution", service, rules, path)
14391
+ self.NewLabelCells = self._NewLabelCells(self, "NewLabelCells", service, rules, path)
14373
14392
  self.NewLabelMax = self._NewLabelMax(self, "NewLabelMax", service, rules, path)
14374
14393
  self.NewZoneType = self._NewZoneType(self, "NewZoneType", service, rules, path)
14375
14394
  self.NewLabelCurvature = self._NewLabelCurvature(self, "NewLabelCurvature", service, rules, path)
@@ -14390,14 +14409,14 @@ class Root(PyMenu):
14390
14409
  Argument NewLabelType.
14391
14410
  """
14392
14411
 
14393
- class _NewLabelCells(PyTextualCommandArgumentsSubItem):
14412
+ class _NewLabelResolution(PyTextualCommandArgumentsSubItem):
14394
14413
  """
14395
- Argument NewLabelCells.
14414
+ Argument NewLabelResolution.
14396
14415
  """
14397
14416
 
14398
- class _NewLabelResolution(PyTextualCommandArgumentsSubItem):
14417
+ class _NewLabelCells(PyTextualCommandArgumentsSubItem):
14399
14418
  """
14400
- Argument NewLabelResolution.
14419
+ Argument NewLabelCells.
14401
14420
  """
14402
14421
 
14403
14422
  class _NewLabelMax(PyTextualCommandArgumentsSubItem):