ansys-fluent-core 0.34.dev0__py3-none-any.whl → 0.35.dev0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of ansys-fluent-core might be problematic. Click here for more details.

Files changed (108) hide show
  1. ansys/fluent/core/__init__.py +48 -84
  2. ansys/fluent/core/codegen/allapigen.py +2 -2
  3. ansys/fluent/core/codegen/builtin_settingsgen.py +41 -13
  4. ansys/fluent/core/codegen/datamodelgen.py +3 -1
  5. ansys/fluent/core/codegen/print_fluent_version.py +2 -2
  6. ansys/fluent/core/codegen/settingsgen.py +18 -6
  7. ansys/fluent/core/codegen/tuigen.py +6 -5
  8. ansys/fluent/core/data_model_cache.py +2 -2
  9. ansys/fluent/core/docker/docker_compose.py +11 -9
  10. ansys/fluent/core/docker/utils.py +35 -0
  11. ansys/fluent/core/examples/downloads.py +8 -11
  12. ansys/fluent/core/exceptions.py +13 -1
  13. ansys/fluent/core/field_data_interfaces.py +239 -38
  14. ansys/fluent/core/file_session.py +167 -61
  15. ansys/fluent/core/fluent_connection.py +41 -26
  16. ansys/fluent/core/generated/api_tree/api_objects.json +1 -1
  17. ansys/fluent/core/generated/datamodel_231/flicing.py +40 -40
  18. ansys/fluent/core/generated/datamodel_231/meshing.py +231 -231
  19. ansys/fluent/core/generated/datamodel_232/flicing.py +50 -50
  20. ansys/fluent/core/generated/datamodel_232/meshing.py +189 -189
  21. ansys/fluent/core/generated/datamodel_241/flicing.py +30 -30
  22. ansys/fluent/core/generated/datamodel_241/meshing.py +290 -290
  23. ansys/fluent/core/generated/datamodel_242/flicing.py +50 -50
  24. ansys/fluent/core/generated/datamodel_242/meshing.py +331 -331
  25. ansys/fluent/core/generated/datamodel_242/part_management.py +6 -6
  26. ansys/fluent/core/generated/datamodel_251/flicing.py +65 -65
  27. ansys/fluent/core/generated/datamodel_251/meshing.py +300 -300
  28. ansys/fluent/core/generated/datamodel_251/part_management.py +6 -6
  29. ansys/fluent/core/generated/datamodel_252/flicing.py +25 -25
  30. ansys/fluent/core/generated/datamodel_252/meshing.py +382 -382
  31. ansys/fluent/core/generated/datamodel_252/part_management.py +10 -10
  32. ansys/fluent/core/generated/datamodel_261/flicing.py +45 -45
  33. ansys/fluent/core/generated/datamodel_261/meshing.py +454 -435
  34. ansys/fluent/core/generated/datamodel_261/part_management.py +5 -5
  35. ansys/fluent/core/generated/datamodel_261/preferences.py +7 -0
  36. ansys/fluent/core/generated/fluent_version_252.py +1 -1
  37. ansys/fluent/core/generated/fluent_version_261.py +3 -3
  38. ansys/fluent/core/generated/meshing/tui_261.py +54 -3
  39. ansys/fluent/core/generated/solver/settings_231.py +1 -0
  40. ansys/fluent/core/generated/solver/settings_231.pyi +3025 -1
  41. ansys/fluent/core/generated/solver/settings_232.py +1 -0
  42. ansys/fluent/core/generated/solver/settings_232.pyi +3425 -1
  43. ansys/fluent/core/generated/solver/settings_241.py +1 -0
  44. ansys/fluent/core/generated/solver/settings_241.pyi +4423 -1
  45. ansys/fluent/core/generated/solver/settings_242.py +1 -0
  46. ansys/fluent/core/generated/solver/settings_242.pyi +5474 -1
  47. ansys/fluent/core/generated/solver/settings_251.py +11 -0
  48. ansys/fluent/core/generated/solver/settings_251.pyi +6006 -1
  49. ansys/fluent/core/generated/solver/settings_252.py +11 -1
  50. ansys/fluent/core/generated/solver/settings_252.pyi +6782 -2
  51. ansys/fluent/core/generated/solver/settings_261.py +5592 -2740
  52. ansys/fluent/core/generated/solver/settings_261.pyi +10335 -1994
  53. ansys/fluent/core/generated/solver/settings_builtin.py +560 -38
  54. ansys/fluent/core/generated/solver/settings_builtin.pyi +24 -18
  55. ansys/fluent/core/generated/solver/tui_261.py +409 -285
  56. ansys/fluent/core/launcher/container_launcher.py +25 -6
  57. ansys/fluent/core/launcher/error_handler.py +1 -1
  58. ansys/fluent/core/launcher/fluent_container.py +97 -45
  59. ansys/fluent/core/launcher/launch_options.py +5 -4
  60. ansys/fluent/core/launcher/launcher.py +18 -2
  61. ansys/fluent/core/launcher/launcher_utils.py +63 -15
  62. ansys/fluent/core/launcher/pim_launcher.py +17 -3
  63. ansys/fluent/core/launcher/process_launch_string.py +3 -2
  64. ansys/fluent/core/launcher/server_info.py +7 -3
  65. ansys/fluent/core/launcher/slurm_launcher.py +4 -2
  66. ansys/fluent/core/launcher/standalone_launcher.py +6 -3
  67. ansys/fluent/core/launcher/watchdog.py +6 -6
  68. ansys/fluent/core/launcher/watchdog_exec +1 -1
  69. ansys/fluent/core/logger.py +3 -1
  70. ansys/fluent/core/module_config.py +358 -0
  71. ansys/fluent/core/pyfluent_warnings.py +9 -3
  72. ansys/fluent/core/report.py +2 -2
  73. ansys/fluent/core/search.py +34 -13
  74. ansys/fluent/core/services/__init__.py +2 -2
  75. ansys/fluent/core/services/api_upgrade.py +3 -2
  76. ansys/fluent/core/services/app_utilities.py +39 -0
  77. ansys/fluent/core/services/datamodel_se.py +4 -2
  78. ansys/fluent/core/services/deprecated_field_data.py +4 -4
  79. ansys/fluent/core/services/field_data.py +185 -49
  80. ansys/fluent/core/services/health_check.py +3 -1
  81. ansys/fluent/core/services/interceptors.py +8 -6
  82. ansys/fluent/core/services/reduction.py +16 -5
  83. ansys/fluent/core/services/settings.py +1 -0
  84. ansys/fluent/core/session.py +47 -4
  85. ansys/fluent/core/session_pure_meshing.py +6 -6
  86. ansys/fluent/core/session_pure_meshing.pyi +1 -0
  87. ansys/fluent/core/session_shared.py +4 -4
  88. ansys/fluent/core/session_solver.py +41 -10
  89. ansys/fluent/core/session_solver.pyi +1 -0
  90. ansys/fluent/core/session_utilities.py +7 -0
  91. ansys/fluent/core/solver/error_message.py +2 -2
  92. ansys/fluent/core/solver/flobject.py +192 -123
  93. ansys/fluent/core/solver/function/reduction.py +37 -9
  94. ansys/fluent/core/solver/settings_builtin_bases.py +3 -3
  95. ansys/fluent/core/solver/settings_builtin_data.py +7 -17
  96. ansys/fluent/core/streaming_services/datamodel_event_streaming.py +3 -2
  97. ansys/fluent/core/streaming_services/datamodel_streaming.py +3 -1
  98. ansys/fluent/core/streaming_services/events_streaming.py +2 -18
  99. ansys/fluent/core/system_coupling.py +3 -1
  100. ansys/fluent/core/utils/__init__.py +0 -7
  101. ansys/fluent/core/utils/data_transfer.py +3 -3
  102. ansys/fluent/core/utils/file_transfer_service.py +24 -15
  103. ansys/fluent/core/utils/fluent_version.py +4 -6
  104. ansys/fluent/core/utils/networking.py +21 -11
  105. {ansys_fluent_core-0.34.dev0.dist-info → ansys_fluent_core-0.35.dev0.dist-info}/METADATA +10 -11
  106. {ansys_fluent_core-0.34.dev0.dist-info → ansys_fluent_core-0.35.dev0.dist-info}/RECORD +108 -106
  107. {ansys_fluent_core-0.34.dev0.dist-info → ansys_fluent_core-0.35.dev0.dist-info}/WHEEL +1 -1
  108. {ansys_fluent_core-0.34.dev0.dist-info/licenses → ansys_fluent_core-0.35.dev0.dist-info}/LICENSE +0 -0
@@ -1307,9 +1307,9 @@ class Root(PyMenu):
1307
1307
  self.Operation = self._Operation(self, "Operation", service, rules, path)
1308
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
 
@@ -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.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
1530
1529
  self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
1530
+ self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
1531
1531
  self.GapFactor = self._GapFactor(self, "GapFactor", service, rules, path)
1532
1532
  self.AdjacentAttachAngle = self._AdjacentAttachAngle(self, "AdjacentAttachAngle", service, rules, path)
1533
1533
 
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 _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
1554
+ class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
1555
1555
  """
1556
- Argument LastRatioNumLayers.
1556
+ Argument LastRatioPercentage.
1557
1557
  """
1558
1558
 
1559
- class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
1559
+ class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
1560
1560
  """
1561
- Argument LastRatioPercentage.
1561
+ Argument LastRatioNumLayers.
1562
1562
  """
1563
1563
 
1564
1564
  class _GapFactor(PyNumericalCommandArgumentsSubItem):
@@ -1769,11 +1769,11 @@ class Root(PyMenu):
1769
1769
  self.SphereRadiusFactorAtInvalidNormals = self._SphereRadiusFactorAtInvalidNormals(self, "SphereRadiusFactorAtInvalidNormals", service, rules, path)
1770
1770
  self.SmoothRingsAtInvalidNormals = self._SmoothRingsAtInvalidNormals(self, "SmoothRingsAtInvalidNormals", service, rules, path)
1771
1771
  self.Continuous = self._Continuous(self, "Continuous", service, rules, path)
1772
- self.SplitPrism = self._SplitPrism(self, "SplitPrism", service, rules, path)
1773
1772
  self.ModifyAtInvalidNormals = self._ModifyAtInvalidNormals(self, "ModifyAtInvalidNormals", service, rules, path)
1773
+ self.SplitPrism = self._SplitPrism(self, "SplitPrism", service, rules, path)
1774
1774
  self.InvalidNormalMethod = self._InvalidNormalMethod(self, "InvalidNormalMethod", service, rules, path)
1775
- self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
1776
1775
  self.NumberOfSplitLayers = self._NumberOfSplitLayers(self, "NumberOfSplitLayers", service, rules, path)
1776
+ self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
1777
1777
  self.ShowLocalPrismPreferences = self._ShowLocalPrismPreferences(self, "ShowLocalPrismPreferences", service, rules, path)
1778
1778
  self.AllowedTangencyAtInvalidNormals = self._AllowedTangencyAtInvalidNormals(self, "AllowedTangencyAtInvalidNormals", service, rules, path)
1779
1779
  self.RemeshAtInvalidNormals = self._RemeshAtInvalidNormals(self, "RemeshAtInvalidNormals", service, rules, path)
@@ -1804,14 +1804,14 @@ class Root(PyMenu):
1804
1804
  Specify how you would like to improve the generated boundary layer: as a continuous or stair-stepped boundary layer in the specified area(s).
1805
1805
  """
1806
1806
 
1807
- class _SplitPrism(PyTextualCommandArgumentsSubItem):
1807
+ class _ModifyAtInvalidNormals(PyTextualCommandArgumentsSubItem):
1808
1808
  """
1809
- Choose whether or not to add split prisms to each layer along the boundary. Not available when the Offset Method Type is set to last-ratio.
1809
+ Specify whether to automatically change the surface mesh where invalid normal faces are detected. To grow the boundary layer mesh in the proper direction (away from the boundary), normal vectors (valid) are required at the boundary face nodes of the surface mesh. More...
1810
1810
  """
1811
1811
 
1812
- class _ModifyAtInvalidNormals(PyTextualCommandArgumentsSubItem):
1812
+ class _SplitPrism(PyTextualCommandArgumentsSubItem):
1813
1813
  """
1814
- Specify whether to automatically change the surface mesh where invalid normal faces are detected. To grow the boundary layer mesh in the proper direction (away from the boundary), normal vectors (valid) are required at the boundary face nodes of the surface mesh. More...
1814
+ Choose whether or not to add split prisms to each layer along the boundary. Not available when the Offset Method Type is set to last-ratio.
1815
1815
  """
1816
1816
 
1817
1817
  class _InvalidNormalMethod(PyTextualCommandArgumentsSubItem):
@@ -1819,14 +1819,14 @@ class Root(PyMenu):
1819
1819
  Argument InvalidNormalMethod.
1820
1820
  """
1821
1821
 
1822
- class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
1822
+ class _NumberOfSplitLayers(PyNumericalCommandArgumentsSubItem):
1823
1823
  """
1824
- Argument LastRatioNumLayers.
1824
+ Indicate the number of split prism layers you wish to apply to each layer that you specified for the boundary layer definition.
1825
1825
  """
1826
1826
 
1827
- class _NumberOfSplitLayers(PyNumericalCommandArgumentsSubItem):
1827
+ class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
1828
1828
  """
1829
- Indicate the number of split prism layers you wish to apply to each layer that you specified for the boundary layer definition.
1829
+ Argument LastRatioNumLayers.
1830
1830
  """
1831
1831
 
1832
1832
  class _ShowLocalPrismPreferences(PyParameterCommandArgumentsSubItem):
@@ -2093,9 +2093,9 @@ class Root(PyMenu):
2093
2093
  self.ModifyAtInvalidNormals = self._ModifyAtInvalidNormals(self, "ModifyAtInvalidNormals", service, rules, path)
2094
2094
  self.SplitPrism = self._SplitPrism(self, "SplitPrism", service, rules, path)
2095
2095
  self.InvalidNormalMethod = self._InvalidNormalMethod(self, "InvalidNormalMethod", service, rules, path)
2096
- self.ShowLocalPrismPreferences = self._ShowLocalPrismPreferences(self, "ShowLocalPrismPreferences", service, rules, path)
2097
2096
  self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
2098
2097
  self.NumberOfSplitLayers = self._NumberOfSplitLayers(self, "NumberOfSplitLayers", service, rules, path)
2098
+ self.ShowLocalPrismPreferences = self._ShowLocalPrismPreferences(self, "ShowLocalPrismPreferences", service, rules, path)
2099
2099
  self.AllowedTangencyAtInvalidNormals = self._AllowedTangencyAtInvalidNormals(self, "AllowedTangencyAtInvalidNormals", service, rules, path)
2100
2100
  self.RemeshAtInvalidNormals = self._RemeshAtInvalidNormals(self, "RemeshAtInvalidNormals", service, rules, path)
2101
2101
  self.IgnoreBoundaryLayers = self._IgnoreBoundaryLayers(self, "IgnoreBoundaryLayers", service, rules, path)
@@ -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 _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
2149
2144
  """
2150
2145
  Argument LastRatioNumLayers.
@@ -2155,6 +2150,11 @@ class Root(PyMenu):
2155
2150
  Indicate the number of split prism layers you wish to apply to each layer that you specified for the boundary layer definition.
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).
@@ -2395,9 +2395,9 @@ class Root(PyMenu):
2395
2395
  self.MinSize = self._MinSize(self, "MinSize", service, rules, path)
2396
2396
  self.WrapMax = self._WrapMax(self, "WrapMax", service, rules, path)
2397
2397
  self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
2398
+ self.SizingType = self._SizingType(self, "SizingType", service, rules, path)
2398
2399
  self.InitialSizeControl = self._InitialSizeControl(self, "InitialSizeControl", service, rules, path)
2399
2400
  self.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", service, rules, path)
2400
- self.SizingType = self._SizingType(self, "SizingType", service, rules, path)
2401
2401
  self.WrapCurvatureNormalAngle = self._WrapCurvatureNormalAngle(self, "WrapCurvatureNormalAngle", service, rules, path)
2402
2402
  self.CellsPerGap = self._CellsPerGap(self, "CellsPerGap", service, rules, path)
2403
2403
  self.TargetSizeControl = self._TargetSizeControl(self, "TargetSizeControl", service, rules, path)
@@ -2448,6 +2448,11 @@ class Root(PyMenu):
2448
2448
  Display advanced wrap-specific options that are also applied to the task. See this description for more information about wrap (and target) mesh size controls.
2449
2449
  """
2450
2450
 
2451
+ class _SizingType(PyTextualCommandArgumentsSubItem):
2452
+ """
2453
+ Choose the type of sizing control (curvature, proximity, soft, or boi).
2454
+ """
2455
+
2451
2456
  class _InitialSizeControl(PyParameterCommandArgumentsSubItem):
2452
2457
  """
2453
2458
  Enable this field to display the initial size control in the graphics window.
@@ -2458,11 +2463,6 @@ class Root(PyMenu):
2458
2463
  Specify the increase in element edge length with each succeeding layer of elements.
2459
2464
  """
2460
2465
 
2461
- class _SizingType(PyTextualCommandArgumentsSubItem):
2462
- """
2463
- Choose the type of sizing control (curvature, proximity, soft, or boi).
2464
- """
2465
-
2466
2466
  class _WrapCurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
2467
2467
  """
2468
2468
  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.
@@ -2999,8 +2999,8 @@ class Root(PyMenu):
2999
2999
  self.SaveSizeFieldFile = self._SaveSizeFieldFile(self, "SaveSizeFieldFile", service, rules, path)
3000
3000
  self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
3001
3001
  self.ScopeProximityTo = self._ScopeProximityTo(self, "ScopeProximityTo", service, rules, path)
3002
- self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
3003
3002
  self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
3003
+ self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
3004
3004
  self.SaveSizeField = self._SaveSizeField(self, "SaveSizeField", service, rules, path)
3005
3005
  self.UseSizeFiles = self._UseSizeFiles(self, "UseSizeFiles", service, rules, path)
3006
3006
  self.AutoCreateScopedSizing = self._AutoCreateScopedSizing(self, "AutoCreateScopedSizing", service, rules, path)
@@ -3030,14 +3030,14 @@ class Root(PyMenu):
3030
3030
  Argument ScopeProximityTo.
3031
3031
  """
3032
3032
 
3033
- class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
3033
+ class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
3034
3034
  """
3035
- Argument PreviewSizefield.
3035
+ Argument CurvatureNormalAngle.
3036
3036
  """
3037
3037
 
3038
- class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
3038
+ class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
3039
3039
  """
3040
- Argument CurvatureNormalAngle.
3040
+ Argument PreviewSizefield.
3041
3041
  """
3042
3042
 
3043
3043
  class _SaveSizeField(PyParameterCommandArgumentsSubItem):
@@ -3249,23 +3249,23 @@ class Root(PyMenu):
3249
3249
 
3250
3250
  def __init__(self, parent, attr, service, rules, path):
3251
3251
  super().__init__(parent, attr, service, rules, path)
3252
- self.ExposeSide = self._ExposeSide(self, "ExposeSide", service, rules, path)
3253
3252
  self.ShowShellBLAdvancedOptions = self._ShowShellBLAdvancedOptions(self, "ShowShellBLAdvancedOptions", service, rules, path)
3253
+ self.ExposeSide = self._ExposeSide(self, "ExposeSide", service, rules, path)
3254
3254
  self.MaxAspectRatio = self._MaxAspectRatio(self, "MaxAspectRatio", service, rules, path)
3255
3255
  self.MinAspectRatio = self._MinAspectRatio(self, "MinAspectRatio", service, rules, path)
3256
- self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
3257
3256
  self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
3257
+ self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
3258
3258
  self.GapFactor = self._GapFactor(self, "GapFactor", service, rules, path)
3259
3259
  self.AdjacentAttachAngle = self._AdjacentAttachAngle(self, "AdjacentAttachAngle", service, rules, path)
3260
3260
 
3261
- class _ExposeSide(PyTextualCommandArgumentsSubItem):
3261
+ class _ShowShellBLAdvancedOptions(PyParameterCommandArgumentsSubItem):
3262
3262
  """
3263
- Argument ExposeSide.
3263
+ Argument ShowShellBLAdvancedOptions.
3264
3264
  """
3265
3265
 
3266
- class _ShowShellBLAdvancedOptions(PyParameterCommandArgumentsSubItem):
3266
+ class _ExposeSide(PyTextualCommandArgumentsSubItem):
3267
3267
  """
3268
- Argument ShowShellBLAdvancedOptions.
3268
+ Argument ExposeSide.
3269
3269
  """
3270
3270
 
3271
3271
  class _MaxAspectRatio(PyNumericalCommandArgumentsSubItem):
@@ -3278,14 +3278,14 @@ class Root(PyMenu):
3278
3278
  Argument MinAspectRatio.
3279
3279
  """
3280
3280
 
3281
- class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
3281
+ class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
3282
3282
  """
3283
- Argument LastRatioPercentage.
3283
+ Argument LastRatioNumLayers.
3284
3284
  """
3285
3285
 
3286
- class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
3286
+ class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
3287
3287
  """
3288
- Argument LastRatioNumLayers.
3288
+ Argument LastRatioPercentage.
3289
3289
  """
3290
3290
 
3291
3291
  class _GapFactor(PyNumericalCommandArgumentsSubItem):
@@ -4169,9 +4169,9 @@ class Root(PyMenu):
4169
4169
  self.BoundaryLayers = self._BoundaryLayers(self, "BoundaryLayers", service, rules, path)
4170
4170
  self.EdgeProximityComputation = self._EdgeProximityComputation(self, "EdgeProximityComputation", service, rules, path)
4171
4171
  self.WrapTargetBothOptions = self._WrapTargetBothOptions(self, "WrapTargetBothOptions", service, rules, path)
4172
- self.ExistingSizeField = self._ExistingSizeField(self, "ExistingSizeField", service, rules, path)
4173
- self.TargetSizeFieldFileName = self._TargetSizeFieldFileName(self, "TargetSizeFieldFileName", service, rules, path)
4174
4172
  self.SolidFluidRatio = self._SolidFluidRatio(self, "SolidFluidRatio", service, rules, path)
4173
+ self.TargetSizeFieldFileName = self._TargetSizeFieldFileName(self, "TargetSizeFieldFileName", service, rules, path)
4174
+ self.ExistingSizeField = self._ExistingSizeField(self, "ExistingSizeField", service, rules, path)
4175
4175
  self.WrapSizeFieldFileName = self._WrapSizeFieldFileName(self, "WrapSizeFieldFileName", service, rules, path)
4176
4176
  self.WrapTargetRatio = self._WrapTargetRatio(self, "WrapTargetRatio", service, rules, path)
4177
4177
  self.WrapTargetRaio = self._WrapTargetRaio(self, "WrapTargetRaio", service, rules, path)
@@ -4211,9 +4211,9 @@ class Root(PyMenu):
4211
4211
  Determine how the size controls are calculated in the Add Local Sizing task: using Both Wrap and Target values, by Target Only (the default), or by Wrap Only. For complex models, computational expense can be lowered by choosing one of the other options. If either Wrap Only or Target Only is selected, then the other values are determined using the Wrap/Target Size Ratio value.
4212
4212
  """
4213
4213
 
4214
- class _ExistingSizeField(PyTextualCommandArgumentsSubItem):
4214
+ class _SolidFluidRatio(PyNumericalCommandArgumentsSubItem):
4215
4215
  """
4216
- Determine which existing size field files will be used: Both Wrap and Target (the default), Target Only, or Wrap Only. For complex models, computational expense can be lowered by choosing one of the other options. If either Wrap Only or Target Only is selected, then the other values are determined using the Wrap/Target Size Ratio value.
4216
+ Argument SolidFluidRatio.
4217
4217
  """
4218
4218
 
4219
4219
  class _TargetSizeFieldFileName(PyTextualCommandArgumentsSubItem):
@@ -4221,9 +4221,9 @@ class Root(PyMenu):
4221
4221
  Argument TargetSizeFieldFileName.
4222
4222
  """
4223
4223
 
4224
- class _SolidFluidRatio(PyNumericalCommandArgumentsSubItem):
4224
+ class _ExistingSizeField(PyTextualCommandArgumentsSubItem):
4225
4225
  """
4226
- Argument SolidFluidRatio.
4226
+ Determine which existing size field files will be used: Both Wrap and Target (the default), Target Only, or Wrap Only. For complex models, computational expense can be lowered by choosing one of the other options. If either Wrap Only or Target Only is selected, then the other values are determined using the Wrap/Target Size Ratio value.
4227
4227
  """
4228
4228
 
4229
4229
  class _WrapSizeFieldFileName(PyTextualCommandArgumentsSubItem):
@@ -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):
@@ -4598,14 +4598,14 @@ class Root(PyMenu):
4598
4598
  self.ShowCoordinates = self._ShowCoordinates(self, "ShowCoordinates", service, rules, path)
4599
4599
  self.Y = self._Y(self, "Y", service, rules, path)
4600
4600
  self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
4601
- self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
4602
- self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
4603
4601
  self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
4604
4602
  self.Rate = self._Rate(self, "Rate", service, rules, path)
4603
+ self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
4604
+ self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
4605
4605
  self.FlowDirection = self._FlowDirection(self, "FlowDirection", service, rules, path)
4606
4606
  self.MptMethodType = self._MptMethodType(self, "MptMethodType", service, rules, path)
4607
4607
  self.EdgeSelectionList = self._EdgeSelectionList(self, "EdgeSelectionList", service, rules, path)
4608
- self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
4608
+ self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
4609
4609
  self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
4610
4610
  self.X = self._X(self, "X", service, rules, path)
4611
4611
  self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
@@ -4639,24 +4639,24 @@ class Root(PyMenu):
4639
4639
  Argument DefeaturingSize.
4640
4640
  """
4641
4641
 
4642
- class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
4642
+ class _AspectRatio(PyNumericalCommandArgumentsSubItem):
4643
4643
  """
4644
- Argument BoundaryLayerLevels.
4644
+ Argument AspectRatio.
4645
4645
  """
4646
4646
 
4647
- class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
4647
+ class _Rate(PyNumericalCommandArgumentsSubItem):
4648
4648
  """
4649
- Argument NumberOfLayers.
4649
+ Argument Rate.
4650
4650
  """
4651
4651
 
4652
- class _AspectRatio(PyNumericalCommandArgumentsSubItem):
4652
+ class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
4653
4653
  """
4654
- Argument AspectRatio.
4654
+ Argument WakeGrowthFactor.
4655
4655
  """
4656
4656
 
4657
- class _Rate(PyNumericalCommandArgumentsSubItem):
4657
+ class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
4658
4658
  """
4659
- Argument Rate.
4659
+ Argument BoundaryLayerLevels.
4660
4660
  """
4661
4661
 
4662
4662
  class _FlowDirection(PyTextualCommandArgumentsSubItem):
@@ -4674,9 +4674,9 @@ class Root(PyMenu):
4674
4674
  Argument EdgeSelectionList.
4675
4675
  """
4676
4676
 
4677
- class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
4677
+ class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
4678
4678
  """
4679
- Argument WakeGrowthFactor.
4679
+ Argument NumberOfLayers.
4680
4680
  """
4681
4681
 
4682
4682
  class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
@@ -4726,8 +4726,8 @@ 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)
@@ -4744,14 +4744,14 @@ class Root(PyMenu):
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):
@@ -4873,18 +4873,18 @@ class Root(PyMenu):
4873
4873
  def __init__(self, parent, attr, service, rules, path):
4874
4874
  super().__init__(parent, attr, service, rules, path)
4875
4875
  self.CylinderZ2 = self._CylinderZ2(self, "CylinderZ2", service, rules, path)
4876
- self.BoxYLength = self._BoxYLength(self, "BoxYLength", service, rules, path)
4877
4876
  self.CylinderX2 = self._CylinderX2(self, "CylinderX2", service, rules, path)
4877
+ self.BoxYLength = self._BoxYLength(self, "BoxYLength", service, rules, path)
4878
4878
  self.CylinderX1 = self._CylinderX1(self, "CylinderX1", service, rules, path)
4879
- self.BoxZLength = self._BoxZLength(self, "BoxZLength", service, rules, path)
4880
- self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
4881
4879
  self.BoxXLength = self._BoxXLength(self, "BoxXLength", service, rules, path)
4880
+ self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
4881
+ self.BoxZLength = self._BoxZLength(self, "BoxZLength", service, rules, path)
4882
4882
  self.BoxCenterY = self._BoxCenterY(self, "BoxCenterY", service, rules, path)
4883
4883
  self.CylinderZ1 = self._CylinderZ1(self, "CylinderZ1", service, rules, path)
4884
4884
  self.CylinderRadius1 = self._CylinderRadius1(self, "CylinderRadius1", service, rules, path)
4885
4885
  self.BoxCenterX = self._BoxCenterX(self, "BoxCenterX", service, rules, path)
4886
- self.BoxCenterZ = self._BoxCenterZ(self, "BoxCenterZ", service, rules, path)
4887
4886
  self.CylinderRadius2 = self._CylinderRadius2(self, "CylinderRadius2", service, rules, path)
4887
+ self.BoxCenterZ = self._BoxCenterZ(self, "BoxCenterZ", service, rules, path)
4888
4888
  self.CylinderY2 = self._CylinderY2(self, "CylinderY2", service, rules, path)
4889
4889
 
4890
4890
  class _CylinderZ2(PyNumericalCommandArgumentsSubItem):
@@ -4892,14 +4892,14 @@ class Root(PyMenu):
4892
4892
  Argument CylinderZ2.
4893
4893
  """
4894
4894
 
4895
- class _BoxYLength(PyNumericalCommandArgumentsSubItem):
4895
+ class _CylinderX2(PyNumericalCommandArgumentsSubItem):
4896
4896
  """
4897
- Argument BoxYLength.
4897
+ Argument CylinderX2.
4898
4898
  """
4899
4899
 
4900
- class _CylinderX2(PyNumericalCommandArgumentsSubItem):
4900
+ class _BoxYLength(PyNumericalCommandArgumentsSubItem):
4901
4901
  """
4902
- Argument CylinderX2.
4902
+ Argument BoxYLength.
4903
4903
  """
4904
4904
 
4905
4905
  class _CylinderX1(PyNumericalCommandArgumentsSubItem):
@@ -4907,9 +4907,9 @@ class Root(PyMenu):
4907
4907
  Argument CylinderX1.
4908
4908
  """
4909
4909
 
4910
- class _BoxZLength(PyNumericalCommandArgumentsSubItem):
4910
+ class _BoxXLength(PyNumericalCommandArgumentsSubItem):
4911
4911
  """
4912
- Argument BoxZLength.
4912
+ Argument BoxXLength.
4913
4913
  """
4914
4914
 
4915
4915
  class _CylinderY1(PyNumericalCommandArgumentsSubItem):
@@ -4917,9 +4917,9 @@ class Root(PyMenu):
4917
4917
  Argument CylinderY1.
4918
4918
  """
4919
4919
 
4920
- class _BoxXLength(PyNumericalCommandArgumentsSubItem):
4920
+ class _BoxZLength(PyNumericalCommandArgumentsSubItem):
4921
4921
  """
4922
- Argument BoxXLength.
4922
+ Argument BoxZLength.
4923
4923
  """
4924
4924
 
4925
4925
  class _BoxCenterY(PyNumericalCommandArgumentsSubItem):
@@ -4942,14 +4942,14 @@ class Root(PyMenu):
4942
4942
  Argument BoxCenterX.
4943
4943
  """
4944
4944
 
4945
- class _BoxCenterZ(PyNumericalCommandArgumentsSubItem):
4945
+ class _CylinderRadius2(PyNumericalCommandArgumentsSubItem):
4946
4946
  """
4947
- Argument BoxCenterZ.
4947
+ Argument CylinderRadius2.
4948
4948
  """
4949
4949
 
4950
- class _CylinderRadius2(PyNumericalCommandArgumentsSubItem):
4950
+ class _BoxCenterZ(PyNumericalCommandArgumentsSubItem):
4951
4951
  """
4952
- Argument CylinderRadius2.
4952
+ Argument BoxCenterZ.
4953
4953
  """
4954
4954
 
4955
4955
  class _CylinderY2(PyNumericalCommandArgumentsSubItem):
@@ -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):
@@ -5186,15 +5186,15 @@ class Root(PyMenu):
5186
5186
  self.Y = self._Y(self, "Y", service, rules, path)
5187
5187
  self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
5188
5188
  self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
5189
- self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
5190
5189
  self.Rate = self._Rate(self, "Rate", service, rules, path)
5191
5190
  self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
5191
+ self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", 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.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
5196
- self.X = self._X(self, "X", service, rules, path)
5195
+ self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
5197
5196
  self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
5197
+ self.X = self._X(self, "X", service, rules, path)
5198
5198
  self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
5199
5199
  self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
5200
5200
  self.FirstHeight = self._FirstHeight(self, "FirstHeight", service, rules, path)
@@ -5231,11 +5231,6 @@ class Root(PyMenu):
5231
5231
  Argument BoundaryLayerLevels.
5232
5232
  """
5233
5233
 
5234
- class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
5235
- """
5236
- Argument NumberOfLayers.
5237
- """
5238
-
5239
5234
  class _Rate(PyNumericalCommandArgumentsSubItem):
5240
5235
  """
5241
5236
  Argument Rate.
@@ -5246,6 +5241,11 @@ class Root(PyMenu):
5246
5241
  Argument AspectRatio.
5247
5242
  """
5248
5243
 
5244
+ class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
5245
+ """
5246
+ Argument WakeGrowthFactor.
5247
+ """
5248
+
5249
5249
  class _FlowDirection(PyTextualCommandArgumentsSubItem):
5250
5250
  """
5251
5251
  Argument FlowDirection.
@@ -5261,19 +5261,19 @@ 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 _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
5264
+ class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
5265
5265
  """
5266
- Argument WakeGrowthFactor.
5266
+ Argument NumberOfLayers.
5267
5267
  """
5268
5268
 
5269
- class _X(PyNumericalCommandArgumentsSubItem):
5269
+ class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
5270
5270
  """
5271
- Specify the x-coordinate of the offset collar mesh.
5271
+ Argument LastRatioPercentage.
5272
5272
  """
5273
5273
 
5274
- class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
5274
+ class _X(PyNumericalCommandArgumentsSubItem):
5275
5275
  """
5276
- Argument LastRatioPercentage.
5276
+ Specify the x-coordinate of the offset collar mesh.
5277
5277
  """
5278
5278
 
5279
5279
  class _FlipDirection(PyParameterCommandArgumentsSubItem):
@@ -5313,8 +5313,8 @@ class Root(PyMenu):
5313
5313
 
5314
5314
  def __init__(self, parent, attr, service, rules, path):
5315
5315
  super().__init__(parent, attr, service, rules, path)
5316
- self.HeightNode = self._HeightNode(self, "HeightNode", service, rules, path)
5317
5316
  self.X_Offset = self._X_Offset(self, "X-Offset", service, rules, path)
5317
+ self.HeightNode = self._HeightNode(self, "HeightNode", service, rules, path)
5318
5318
  self.HeightBackInc = self._HeightBackInc(self, "HeightBackInc", service, rules, path)
5319
5319
  self.X1 = self._X1(self, "X1", service, rules, path)
5320
5320
  self.Y1 = self._Y1(self, "Y1", service, rules, path)
@@ -5325,20 +5325,20 @@ class Root(PyMenu):
5325
5325
  self.Radius2 = self._Radius2(self, "Radius2", service, rules, path)
5326
5326
  self.Y2 = self._Y2(self, "Y2", service, rules, path)
5327
5327
  self.Node3 = self._Node3(self, "Node3", service, rules, path)
5328
- self.Node2 = self._Node2(self, "Node2", service, rules, path)
5329
5328
  self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
5330
5329
  self.X2 = self._X2(self, "X2", service, rules, path)
5330
+ self.Node2 = self._Node2(self, "Node2", 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
 
5334
- class _HeightNode(PyTextualCommandArgumentsSubItem):
5334
+ class _X_Offset(PyNumericalCommandArgumentsSubItem):
5335
5335
  """
5336
- Argument HeightNode.
5336
+ Argument X-Offset.
5337
5337
  """
5338
5338
 
5339
- class _X_Offset(PyNumericalCommandArgumentsSubItem):
5339
+ class _HeightNode(PyTextualCommandArgumentsSubItem):
5340
5340
  """
5341
- Argument X-Offset.
5341
+ Argument HeightNode.
5342
5342
  """
5343
5343
 
5344
5344
  class _HeightBackInc(PyNumericalCommandArgumentsSubItem):
@@ -5391,11 +5391,6 @@ class Root(PyMenu):
5391
5391
  Argument Node3.
5392
5392
  """
5393
5393
 
5394
- class _Node2(PyTextualCommandArgumentsSubItem):
5395
- """
5396
- Argument Node2.
5397
- """
5398
-
5399
5394
  class _Y_Offset(PyNumericalCommandArgumentsSubItem):
5400
5395
  """
5401
5396
  Argument Y-Offset.
@@ -5406,7 +5401,12 @@ class Root(PyMenu):
5406
5401
  Argument X2.
5407
5402
  """
5408
5403
 
5409
- class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
5404
+ class _Node2(PyTextualCommandArgumentsSubItem):
5405
+ """
5406
+ Argument Node2.
5407
+ """
5408
+
5409
+ class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
5410
5410
  """
5411
5411
  Argument HeightFrontInc.
5412
5412
  """
@@ -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.CylinderX2 = self._CylinderX2(self, "CylinderX2", service, rules, path)
5464
5463
  self.BoxYLength = self._BoxYLength(self, "BoxYLength", service, rules, path)
5464
+ self.CylinderX2 = self._CylinderX2(self, "CylinderX2", 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)
@@ -5470,8 +5470,8 @@ class Root(PyMenu):
5470
5470
  self.CylinderZ1 = self._CylinderZ1(self, "CylinderZ1", service, rules, path)
5471
5471
  self.CylinderRadius1 = self._CylinderRadius1(self, "CylinderRadius1", service, rules, path)
5472
5472
  self.BoxCenterX = self._BoxCenterX(self, "BoxCenterX", service, rules, path)
5473
- self.CylinderRadius2 = self._CylinderRadius2(self, "CylinderRadius2", service, rules, path)
5474
5473
  self.BoxCenterZ = self._BoxCenterZ(self, "BoxCenterZ", service, rules, path)
5474
+ self.CylinderRadius2 = self._CylinderRadius2(self, "CylinderRadius2", service, rules, path)
5475
5475
  self.CylinderY2 = self._CylinderY2(self, "CylinderY2", service, rules, path)
5476
5476
 
5477
5477
  class _CylinderZ2(PyNumericalCommandArgumentsSubItem):
@@ -5479,14 +5479,14 @@ class Root(PyMenu):
5479
5479
  Argument CylinderZ2.
5480
5480
  """
5481
5481
 
5482
- class _CylinderX2(PyNumericalCommandArgumentsSubItem):
5482
+ class _BoxYLength(PyNumericalCommandArgumentsSubItem):
5483
5483
  """
5484
- Argument CylinderX2.
5484
+ Argument BoxYLength.
5485
5485
  """
5486
5486
 
5487
- class _BoxYLength(PyNumericalCommandArgumentsSubItem):
5487
+ class _CylinderX2(PyNumericalCommandArgumentsSubItem):
5488
5488
  """
5489
- Argument BoxYLength.
5489
+ Argument CylinderX2.
5490
5490
  """
5491
5491
 
5492
5492
  class _CylinderX1(PyNumericalCommandArgumentsSubItem):
@@ -5529,14 +5529,14 @@ class Root(PyMenu):
5529
5529
  Specify the x-coordinate of the offset collar mesh.
5530
5530
  """
5531
5531
 
5532
- class _CylinderRadius2(PyNumericalCommandArgumentsSubItem):
5532
+ class _BoxCenterZ(PyNumericalCommandArgumentsSubItem):
5533
5533
  """
5534
- Argument CylinderRadius2.
5534
+ Specify the z-coordinate of the offset collar mesh.
5535
5535
  """
5536
5536
 
5537
- class _BoxCenterZ(PyNumericalCommandArgumentsSubItem):
5537
+ class _CylinderRadius2(PyNumericalCommandArgumentsSubItem):
5538
5538
  """
5539
- Specify the z-coordinate of the offset collar mesh.
5539
+ Argument CylinderRadius2.
5540
5540
  """
5541
5541
 
5542
5542
  class _CylinderY2(PyNumericalCommandArgumentsSubItem):
@@ -5683,7 +5683,7 @@ class Root(PyMenu):
5683
5683
  def __init__(self, parent, attr, service, rules, path):
5684
5684
  super().__init__(parent, attr, service, rules, path)
5685
5685
  self.SizeRelativeLength = self._SizeRelativeLength(self, "SizeRelativeLength", service, rules, path)
5686
- self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
5686
+ self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
5687
5687
  self.XminRatio = self._XminRatio(self, "XminRatio", service, rules, path)
5688
5688
  self.YminRatio = self._YminRatio(self, "YminRatio", service, rules, path)
5689
5689
  self.Zmin = self._Zmin(self, "Zmin", service, rules, path)
@@ -5694,16 +5694,16 @@ class Root(PyMenu):
5694
5694
  self.Xmin = self._Xmin(self, "Xmin", service, rules, path)
5695
5695
  self.YmaxRatio = self._YmaxRatio(self, "YmaxRatio", service, rules, path)
5696
5696
  self.ZmaxRatio = self._ZmaxRatio(self, "ZmaxRatio", service, rules, path)
5697
- self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
5697
+ self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
5698
5698
 
5699
5699
  class _SizeRelativeLength(PyTextualCommandArgumentsSubItem):
5700
5700
  """
5701
5701
  Determine if you would like to specify the bounding box for the component mesh as a ratio of the geometry length, or by specifying a specific location for the minimum and maximum coordinates.
5702
5702
  """
5703
5703
 
5704
- class _Xmax(PyNumericalCommandArgumentsSubItem):
5704
+ class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
5705
5705
  """
5706
- Extends the maximum size of the bounding box in the X direction by the specified value.
5706
+ Extends the maximum size of the bounding box in the X direction by the specified value. The value is the ratio relative to the geometry size in the X direction.
5707
5707
  """
5708
5708
 
5709
5709
  class _XminRatio(PyNumericalCommandArgumentsSubItem):
@@ -5756,9 +5756,9 @@ class Root(PyMenu):
5756
5756
  Extends the maximum size of the bounding box in the Z direction by the specified value. The value is the ratio relative to the geometry size in the Z direction.
5757
5757
  """
5758
5758
 
5759
- class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
5759
+ class _Xmax(PyNumericalCommandArgumentsSubItem):
5760
5760
  """
5761
- Extends the maximum size of the bounding box in the X direction by the specified value. The value is the ratio relative to the geometry size in the X direction.
5761
+ Extends the maximum size of the bounding box in the X direction by the specified value.
5762
5762
  """
5763
5763
 
5764
5764
  class _OffsetObject(PySingletonCommandArgumentsSubItem):
@@ -5774,15 +5774,15 @@ class Root(PyMenu):
5774
5774
  self.Y = self._Y(self, "Y", service, rules, path)
5775
5775
  self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
5776
5776
  self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
5777
- self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
5778
5777
  self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
5779
- self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
5778
+ self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
5779
+ self.Rate = self._Rate(self, "Rate", 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.Rate = self._Rate(self, "Rate", service, rules, path)
5784
- self.X = self._X(self, "X", service, rules, path)
5783
+ self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
5785
5784
  self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
5785
+ self.X = self._X(self, "X", service, rules, path)
5786
5786
  self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
5787
5787
  self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
5788
5788
  self.FirstHeight = self._FirstHeight(self, "FirstHeight", service, rules, path)
@@ -5819,19 +5819,19 @@ class Root(PyMenu):
5819
5819
  Specify the ratio of the prism base length to the prism layer height.
5820
5820
  """
5821
5821
 
5822
- class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
5822
+ class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
5823
5823
  """
5824
- Argument WakeGrowthFactor.
5824
+ Select the number of boundary layers to be generated.
5825
5825
  """
5826
5826
 
5827
- class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
5827
+ class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
5828
5828
  """
5829
- Select the number of boundary layers to be generated.
5829
+ Argument WakeGrowthFactor.
5830
5830
  """
5831
5831
 
5832
- class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
5832
+ class _Rate(PyNumericalCommandArgumentsSubItem):
5833
5833
  """
5834
- Argument BoundaryLayerLevels.
5834
+ Specify the rate of growth of the boundary layer.
5835
5835
  """
5836
5836
 
5837
5837
  class _FlowDirection(PyTextualCommandArgumentsSubItem):
@@ -5849,19 +5849,19 @@ class Root(PyMenu):
5849
5849
  Argument EdgeSelectionList.
5850
5850
  """
5851
5851
 
5852
- class _Rate(PyNumericalCommandArgumentsSubItem):
5852
+ class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
5853
5853
  """
5854
- Specify the rate of growth of the boundary layer.
5854
+ Argument BoundaryLayerLevels.
5855
5855
  """
5856
5856
 
5857
- class _X(PyNumericalCommandArgumentsSubItem):
5857
+ class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
5858
5858
  """
5859
- Argument X.
5859
+ Specify the offset height of the last layer as a percentage of the local base mesh size.
5860
5860
  """
5861
5861
 
5862
- class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
5862
+ class _X(PyNumericalCommandArgumentsSubItem):
5863
5863
  """
5864
- Specify the offset height of the last layer as a percentage of the local base mesh size.
5864
+ Argument X.
5865
5865
  """
5866
5866
 
5867
5867
  class _OffsetMethodType(PyTextualCommandArgumentsSubItem):
@@ -5913,9 +5913,9 @@ 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)
5916
5917
  self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
5917
5918
  self.X2 = self._X2(self, "X2", 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
 
@@ -5979,6 +5979,11 @@ class Root(PyMenu):
5979
5979
  Argument Node3.
5980
5980
  """
5981
5981
 
5982
+ class _Node2(PyTextualCommandArgumentsSubItem):
5983
+ """
5984
+ Argument Node2.
5985
+ """
5986
+
5982
5987
  class _Y_Offset(PyNumericalCommandArgumentsSubItem):
5983
5988
  """
5984
5989
  Argument Y-Offset.
@@ -5989,11 +5994,6 @@ class Root(PyMenu):
5989
5994
  Argument X2.
5990
5995
  """
5991
5996
 
5992
- class _Node2(PyTextualCommandArgumentsSubItem):
5993
- """
5994
- Argument Node2.
5995
- """
5996
-
5997
5997
  class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
5998
5998
  """
5999
5999
  Argument HeightFrontInc.
@@ -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.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
6894
+ self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
6895
6895
  self.XminRatio = self._XminRatio(self, "XminRatio", service, rules, path)
6896
6896
  self.YminRatio = self._YminRatio(self, "YminRatio", service, rules, path)
6897
6897
  self.Zmin = self._Zmin(self, "Zmin", service, rules, path)
@@ -6902,16 +6902,16 @@ class Root(PyMenu):
6902
6902
  self.Xmin = self._Xmin(self, "Xmin", service, rules, path)
6903
6903
  self.YmaxRatio = self._YmaxRatio(self, "YmaxRatio", service, rules, path)
6904
6904
  self.ZmaxRatio = self._ZmaxRatio(self, "ZmaxRatio", service, rules, path)
6905
- self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
6905
+ self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
6906
6906
 
6907
6907
  class _SizeRelativeLength(PyTextualCommandArgumentsSubItem):
6908
6908
  """
6909
6909
  Determine if you would like to specify the bounding box for the refinement region as a ratio of the geometry length, or by specifying a specific location for the minimum and maximum coordinates.
6910
6910
  """
6911
6911
 
6912
- class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
6912
+ class _Xmax(PyNumericalCommandArgumentsSubItem):
6913
6913
  """
6914
- Extends the maximum size of the bounding box in the X direction by the specified value. The value is the ratio relative to the geometry size in the X direction.
6914
+ Specify the X-coordinate for the initial position of the cylindrical refinement region.
6915
6915
  """
6916
6916
 
6917
6917
  class _XminRatio(PyNumericalCommandArgumentsSubItem):
@@ -6964,9 +6964,9 @@ class Root(PyMenu):
6964
6964
  Extends the maximum size of the bounding box in the Z direction by the specified value. The value is the ratio relative to the geometry size in the Z direction.
6965
6965
  """
6966
6966
 
6967
- class _Xmax(PyNumericalCommandArgumentsSubItem):
6967
+ class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
6968
6968
  """
6969
- Specify the X-coordinate for the initial position of the cylindrical refinement region.
6969
+ Extends the maximum size of the bounding box in the X direction by the specified value. The value is the ratio relative to the geometry size in the X direction.
6970
6970
  """
6971
6971
 
6972
6972
  class _OffsetObject(PySingletonCommandArgumentsSubItem):
@@ -6981,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.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
6985
- self.Rate = self._Rate(self, "Rate", service, rules, path)
6986
6984
  self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
6985
+ self.Rate = self._Rate(self, "Rate", service, rules, path)
6986
+ self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
6987
6987
  self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
6988
6988
  self.FlowDirection = self._FlowDirection(self, "FlowDirection", service, rules, path)
6989
6989
  self.MptMethodType = self._MptMethodType(self, "MptMethodType", service, rules, path)
6990
6990
  self.EdgeSelectionList = self._EdgeSelectionList(self, "EdgeSelectionList", service, rules, path)
6991
- self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
6991
+ self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
6992
6992
  self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
6993
6993
  self.X = self._X(self, "X", service, rules, path)
6994
6994
  self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
@@ -7022,9 +7022,9 @@ class Root(PyMenu):
7022
7022
  Specify a value that is used to obtain a rough shape of the selected object(s). The larger the value, the more approximate the shape.
7023
7023
  """
7024
7024
 
7025
- class _AspectRatio(PyNumericalCommandArgumentsSubItem):
7025
+ class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
7026
7026
  """
7027
- Argument AspectRatio.
7027
+ Specify the number of boundary layers that are to be captured in the refinement region.
7028
7028
  """
7029
7029
 
7030
7030
  class _Rate(PyNumericalCommandArgumentsSubItem):
@@ -7032,9 +7032,9 @@ class Root(PyMenu):
7032
7032
  Argument Rate.
7033
7033
  """
7034
7034
 
7035
- class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
7035
+ class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
7036
7036
  """
7037
- Specify the number of boundary layers that are to be captured in the refinement region.
7037
+ Argument NumberOfLayers.
7038
7038
  """
7039
7039
 
7040
7040
  class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
@@ -7057,9 +7057,9 @@ class Root(PyMenu):
7057
7057
  Argument EdgeSelectionList.
7058
7058
  """
7059
7059
 
7060
- class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
7060
+ class _AspectRatio(PyNumericalCommandArgumentsSubItem):
7061
7061
  """
7062
- Argument NumberOfLayers.
7062
+ Argument AspectRatio.
7063
7063
  """
7064
7064
 
7065
7065
  class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
@@ -7109,32 +7109,32 @@ class Root(PyMenu):
7109
7109
 
7110
7110
  def __init__(self, parent, attr, service, rules, path):
7111
7111
  super().__init__(parent, attr, service, rules, path)
7112
- self.X_Offset = self._X_Offset(self, "X-Offset", service, rules, path)
7113
7112
  self.HeightNode = self._HeightNode(self, "HeightNode", service, rules, path)
7113
+ self.X_Offset = self._X_Offset(self, "X-Offset", service, rules, path)
7114
7114
  self.HeightBackInc = self._HeightBackInc(self, "HeightBackInc", service, rules, path)
7115
7115
  self.X1 = self._X1(self, "X1", service, rules, path)
7116
7116
  self.Y1 = self._Y1(self, "Y1", service, rules, path)
7117
7117
  self.Z_Offset = self._Z_Offset(self, "Z-Offset", service, rules, path)
7118
- self.Z2 = self._Z2(self, "Z2", service, rules, path)
7119
- self.Node1 = self._Node1(self, "Node1", service, rules, path)
7120
7118
  self.Z1 = self._Z1(self, "Z1", service, rules, path)
7119
+ self.Node1 = self._Node1(self, "Node1", service, rules, path)
7120
+ self.Z2 = self._Z2(self, "Z2", service, rules, path)
7121
7121
  self.Radius2 = self._Radius2(self, "Radius2", service, rules, path)
7122
7122
  self.Y2 = self._Y2(self, "Y2", service, rules, path)
7123
7123
  self.Node3 = self._Node3(self, "Node3", service, rules, path)
7124
7124
  self.X2 = self._X2(self, "X2", service, rules, path)
7125
- self.Node2 = self._Node2(self, "Node2", service, rules, path)
7126
7125
  self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
7126
+ self.Node2 = self._Node2(self, "Node2", service, rules, path)
7127
7127
  self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
7128
7128
  self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
7129
7129
 
7130
- class _X_Offset(PyNumericalCommandArgumentsSubItem):
7130
+ class _HeightNode(PyTextualCommandArgumentsSubItem):
7131
7131
  """
7132
- Specify the X-coordinate for the offset of the initial position of the cylinder.
7132
+ Argument HeightNode.
7133
7133
  """
7134
7134
 
7135
- class _HeightNode(PyTextualCommandArgumentsSubItem):
7135
+ class _X_Offset(PyNumericalCommandArgumentsSubItem):
7136
7136
  """
7137
- Argument HeightNode.
7137
+ Specify the X-coordinate for the offset of the initial position of the cylinder.
7138
7138
  """
7139
7139
 
7140
7140
  class _HeightBackInc(PyNumericalCommandArgumentsSubItem):
@@ -7157,9 +7157,9 @@ class Root(PyMenu):
7157
7157
  Specify the Z-coordinate for the offset of the initial position of the cylinder.
7158
7158
  """
7159
7159
 
7160
- class _Z2(PyNumericalCommandArgumentsSubItem):
7160
+ class _Z1(PyNumericalCommandArgumentsSubItem):
7161
7161
  """
7162
- Specify the Z-coordinate of the second position of the cylinder.
7162
+ Specify the Z-coordinate of the first position of the cylinder.
7163
7163
  """
7164
7164
 
7165
7165
  class _Node1(PyTextualCommandArgumentsSubItem):
@@ -7167,9 +7167,9 @@ class Root(PyMenu):
7167
7167
  Argument Node1.
7168
7168
  """
7169
7169
 
7170
- class _Z1(PyNumericalCommandArgumentsSubItem):
7170
+ class _Z2(PyNumericalCommandArgumentsSubItem):
7171
7171
  """
7172
- Specify the Z-coordinate of the first position of the cylinder.
7172
+ Specify the Z-coordinate of the second position of the cylinder.
7173
7173
  """
7174
7174
 
7175
7175
  class _Radius2(PyNumericalCommandArgumentsSubItem):
@@ -7192,14 +7192,14 @@ class Root(PyMenu):
7192
7192
  Specify the X-coordinate of the second position of the cylinder.
7193
7193
  """
7194
7194
 
7195
- class _Node2(PyTextualCommandArgumentsSubItem):
7195
+ class _Y_Offset(PyNumericalCommandArgumentsSubItem):
7196
7196
  """
7197
- Argument Node2.
7197
+ Specify the Y-coordinate for the offset of the initial position of the cylinder.
7198
7198
  """
7199
7199
 
7200
- class _Y_Offset(PyNumericalCommandArgumentsSubItem):
7200
+ class _Node2(PyTextualCommandArgumentsSubItem):
7201
7201
  """
7202
- Specify the Y-coordinate for the offset of the initial position of the cylinder.
7202
+ Argument Node2.
7203
7203
  """
7204
7204
 
7205
7205
  class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
@@ -7266,8 +7266,8 @@ class Root(PyMenu):
7266
7266
  self.CylinderZ1 = self._CylinderZ1(self, "CylinderZ1", service, rules, path)
7267
7267
  self.CylinderRadius1 = self._CylinderRadius1(self, "CylinderRadius1", service, rules, path)
7268
7268
  self.BoxCenterX = self._BoxCenterX(self, "BoxCenterX", service, rules, path)
7269
- self.BoxCenterZ = self._BoxCenterZ(self, "BoxCenterZ", service, rules, path)
7270
7269
  self.CylinderRadius2 = self._CylinderRadius2(self, "CylinderRadius2", service, rules, path)
7270
+ self.BoxCenterZ = self._BoxCenterZ(self, "BoxCenterZ", service, rules, path)
7271
7271
  self.CylinderY2 = self._CylinderY2(self, "CylinderY2", service, rules, path)
7272
7272
 
7273
7273
  class _CylinderZ2(PyNumericalCommandArgumentsSubItem):
@@ -7325,14 +7325,14 @@ class Root(PyMenu):
7325
7325
  Specify the X-coordinate for the initial position of the cylindrical refinement region.
7326
7326
  """
7327
7327
 
7328
- class _BoxCenterZ(PyNumericalCommandArgumentsSubItem):
7328
+ class _CylinderRadius2(PyNumericalCommandArgumentsSubItem):
7329
7329
  """
7330
- Specify the Z-coordinate for the initial position of the cylindrical refinement region.
7330
+ Specify the radius of the cylinder at the second position.
7331
7331
  """
7332
7332
 
7333
- class _CylinderRadius2(PyNumericalCommandArgumentsSubItem):
7333
+ class _BoxCenterZ(PyNumericalCommandArgumentsSubItem):
7334
7334
  """
7335
- Specify the radius of the cylinder at the second position.
7335
+ Specify the Z-coordinate for the initial position of the cylindrical refinement region.
7336
7336
  """
7337
7337
 
7338
7338
  class _CylinderY2(PyNumericalCommandArgumentsSubItem):
@@ -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.SelectionType = self._SelectionType(self, "SelectionType", service, rules, path)
7542
- self.ZoneSelectionList = self._ZoneSelectionList(self, "ZoneSelectionList", service, rules, path)
7543
7542
  self.LabelSelectionList = self._LabelSelectionList(self, "LabelSelectionList", service, rules, path)
7543
+ self.ZoneSelectionList = self._ZoneSelectionList(self, "ZoneSelectionList", service, rules, path)
7544
7544
  self.MeshSize = self._MeshSize(self, "MeshSize", service, rules, path)
7545
7545
  self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
7546
7546
  self.BufferSize = self._BufferSize(self, "BufferSize", service, rules, path)
@@ -7563,14 +7563,14 @@ class Root(PyMenu):
7563
7563
  Choose how you want to make your selection (by object, zone, or label).
7564
7564
  """
7565
7565
 
7566
- class _ZoneSelectionList(PyTextualCommandArgumentsSubItem):
7566
+ class _LabelSelectionList(PyTextualCommandArgumentsSubItem):
7567
7567
  """
7568
- Choose a single face zone from the list below. Use the Filter Text field to provide text and/or regular expressions in filtering the list. The matching list item(s) are automatically displayed in the list. Use ^, |, and & in your expression to indicate boolean operations for NOT, OR, and AND, respectively. More...
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 _ZoneSelectionList(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 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...
7574
7574
  """
7575
7575
 
7576
7576
  class _MeshSize(PyNumericalCommandArgumentsSubItem):
@@ -7911,10 +7911,10 @@ class Root(PyMenu):
7911
7911
  def __init__(self, parent, attr, service, rules, path):
7912
7912
  super().__init__(parent, attr, service, rules, path)
7913
7913
  self.PorousRegions = self._PorousRegions(self, "PorousRegions", service, rules, path)
7914
- self.ZeroThickness = self._ZeroThickness(self, "ZeroThickness", service, rules, path)
7915
- self.CloseLeakges = self._CloseLeakges(self, "CloseLeakges", service, rules, path)
7916
7914
  self.CloseLeakages = self._CloseLeakages(self, "CloseLeakages", service, rules, path)
7917
7915
  self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
7916
+ self.ZeroThickness = self._ZeroThickness(self, "ZeroThickness", 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)
@@ -7926,24 +7926,24 @@ class Root(PyMenu):
7926
7926
  Specify whether or not you will have any porous regions in your geometry. If so, then a Create Porous Regions task will be added to the workflow. A simple primitive rectangle will be placed over complex and detailed geometry of a porous region (for example, fins and tubes of a heat exchanger). With buffer layer:
7927
7927
  """
7928
7928
 
7929
- class _ZeroThickness(PyTextualCommandArgumentsSubItem):
7929
+ class _CloseLeakages(PyTextualCommandArgumentsSubItem):
7930
7930
  """
7931
- Specify whether or not you will need to account for any portions of your geometry with zero-thickness, and apply thickness to them for a more refined surface mesh. If so, then an Add Thickness task will be added to the workflow.
7931
+ Argument CloseLeakages.
7932
7932
  """
7933
7933
 
7934
- class _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
- class _CloseLeakages(PyTextualCommandArgumentsSubItem):
7939
+ class _ZeroThickness(PyTextualCommandArgumentsSubItem):
7940
7940
  """
7941
- Argument CloseLeakages.
7941
+ 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.
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.MaxLayerHeight = self._MaxLayerHeight(self, "MaxLayerHeight", service, rules, path)
8291
- self.MidSpanLength = self._MidSpanLength(self, "MidSpanLength", service, rules, path)
8292
8298
  self.BiasMethod = self._BiasMethod(self, "BiasMethod", 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 _MaxLayerHeight(PyNumericalCommandArgumentsSubItem):
@@ -8299,11 +8304,6 @@ class Root(PyMenu):
8299
8304
  Argument MaxLayerHeight.
8300
8305
  """
8301
8306
 
8302
- class _MidSpanLength(PyNumericalCommandArgumentsSubItem):
8303
- """
8304
- Argument MidSpanLength.
8305
- """
8306
-
8307
8307
  class _BiasMethod(PyTextualCommandArgumentsSubItem):
8308
8308
  """
8309
8309
  Select from a choice of patterns that you want to apply to your volume mesh extrusion.
@@ -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.RemeshGrowthRate = self._RemeshGrowthRate(self, "RemeshGrowthRate", service, rules, path)
8395
8389
  self.LocalRemesh = self._LocalRemesh(self, "LocalRemesh", service, rules, path)
8396
- self.MaxFaceSkew = self._MaxFaceSkew(self, "MaxFaceSkew", service, rules, path)
8390
+ self.RemeshGrowthRate = self._RemeshGrowthRate(self, "RemeshGrowthRate", service, rules, path)
8391
+ self.GapFactor = self._GapFactor(self, "GapFactor", service, rules, path)
8397
8392
  self.RefineStretchedQuads = self._RefineStretchedQuads(self, "RefineStretchedQuads", service, rules, path)
8398
8393
  self.ShowPrism2DPreferences = self._ShowPrism2DPreferences(self, "ShowPrism2DPreferences", service, rules, path)
8399
- self.GapFactor = self._GapFactor(self, "GapFactor", service, rules, path)
8394
+ self.MaxFaceSkew = self._MaxFaceSkew(self, "MaxFaceSkew", service, rules, path)
8400
8395
  self.nOrthogonalLayers = self._nOrthogonalLayers(self, "nOrthogonalLayers", service, rules, path)
8401
8396
 
8402
8397
  class _SplitQuads(PyTextualCommandArgumentsSubItem):
@@ -8414,19 +8409,19 @@ class Root(PyMenu):
8414
8409
  Argument MinAspectRatio.
8415
8410
  """
8416
8411
 
8417
- class _RemeshGrowthRate(PyNumericalCommandArgumentsSubItem):
8412
+ class _LocalRemesh(PyTextualCommandArgumentsSubItem):
8418
8413
  """
8419
- Argument RemeshGrowthRate.
8414
+ Argument LocalRemesh.
8420
8415
  """
8421
8416
 
8422
- class _LocalRemesh(PyTextualCommandArgumentsSubItem):
8417
+ class _RemeshGrowthRate(PyNumericalCommandArgumentsSubItem):
8423
8418
  """
8424
- Argument LocalRemesh.
8419
+ Argument RemeshGrowthRate.
8425
8420
  """
8426
8421
 
8427
- class _MaxFaceSkew(PyNumericalCommandArgumentsSubItem):
8422
+ class _GapFactor(PyNumericalCommandArgumentsSubItem):
8428
8423
  """
8429
- Argument MaxFaceSkew.
8424
+ Argument GapFactor.
8430
8425
  """
8431
8426
 
8432
8427
  class _RefineStretchedQuads(PyTextualCommandArgumentsSubItem):
@@ -8439,9 +8434,9 @@ class Root(PyMenu):
8439
8434
  Argument ShowPrism2DPreferences.
8440
8435
  """
8441
8436
 
8442
- class _GapFactor(PyNumericalCommandArgumentsSubItem):
8437
+ class _MaxFaceSkew(PyNumericalCommandArgumentsSubItem):
8443
8438
  """
8444
- Argument GapFactor.
8439
+ Argument MaxFaceSkew.
8445
8440
  """
8446
8441
 
8447
8442
  class _nOrthogonalLayers(PyNumericalCommandArgumentsSubItem):
@@ -9168,8 +9163,8 @@ class Root(PyMenu):
9168
9163
  self.SaveSizeFieldFile = self._SaveSizeFieldFile(self, "SaveSizeFieldFile", service, rules, path)
9169
9164
  self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
9170
9165
  self.ScopeProximityTo = self._ScopeProximityTo(self, "ScopeProximityTo", service, rules, path)
9171
- self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
9172
9166
  self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
9167
+ self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
9173
9168
  self.SaveSizeField = self._SaveSizeField(self, "SaveSizeField", service, rules, path)
9174
9169
  self.UseSizeFiles = self._UseSizeFiles(self, "UseSizeFiles", service, rules, path)
9175
9170
  self.AutoCreateScopedSizing = self._AutoCreateScopedSizing(self, "AutoCreateScopedSizing", service, rules, path)
@@ -9199,14 +9194,14 @@ class Root(PyMenu):
9199
9194
  Set proximity based refinement. Edges considers edge-to-edge proximity, while Faces considers face-to-face proximity, and Faces and Edges considers both. More...
9200
9195
  """
9201
9196
 
9202
- class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
9197
+ class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
9203
9198
  """
9204
- 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. More...
9199
+ Enable this option to visualize the size field in the graphics window.
9205
9200
  """
9206
9201
 
9207
- class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
9202
+ class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
9208
9203
  """
9209
- Enable this option to visualize the size field in the graphics window.
9204
+ 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. More...
9210
9205
  """
9211
9206
 
9212
9207
  class _SaveSizeField(PyParameterCommandArgumentsSubItem):
@@ -9307,21 +9302,22 @@ class Root(PyMenu):
9307
9302
  def __init__(self, parent, attr, service, rules, path):
9308
9303
  super().__init__(parent, attr, service, rules, path)
9309
9304
  self.SMQualityCollapseLimit = self._SMQualityCollapseLimit(self, "SMQualityCollapseLimit", service, rules, path)
9310
- self.AutoMerge = self._AutoMerge(self, "AutoMerge", service, rules, path)
9311
- self.SMSeparation = self._SMSeparation(self, "SMSeparation", service, rules, path)
9312
- self.ShowSurfaceMeshPreferences = self._ShowSurfaceMeshPreferences(self, "ShowSurfaceMeshPreferences", service, rules, path)
9313
9305
  self.FoldFaceLimit = self._FoldFaceLimit(self, "FoldFaceLimit", service, rules, path)
9314
9306
  self.SMQualityImprove = self._SMQualityImprove(self, "SMQualityImprove", service, rules, path)
9315
- self.TVMAutoControlCreation = self._TVMAutoControlCreation(self, "TVMAutoControlCreation", service, rules, path)
9307
+ self.ShowSurfaceMeshPreferences = self._ShowSurfaceMeshPreferences(self, "ShowSurfaceMeshPreferences", service, rules, path)
9316
9308
  self.SMSeparationAngle = self._SMSeparationAngle(self, "SMSeparationAngle", service, rules, path)
9309
+ self.AutoMerge = self._AutoMerge(self, "AutoMerge", service, rules, path)
9310
+ self.TVMAutoControlCreation = self._TVMAutoControlCreation(self, "TVMAutoControlCreation", service, rules, path)
9311
+ self.SMSeparation = self._SMSeparation(self, "SMSeparation", service, rules, path)
9317
9312
  self.SMRemoveStep = self._SMRemoveStep(self, "SMRemoveStep", service, rules, path)
9313
+ self.ParallelRegionCompute = self._ParallelRegionCompute(self, "ParallelRegionCompute", service, rules, path)
9318
9314
  self.SMStepWidth = self._SMStepWidth(self, "SMStepWidth", service, rules, path)
9319
- self.SMQualityMaxAngle = self._SMQualityMaxAngle(self, "SMQualityMaxAngle", service, rules, path)
9320
- self.AutoAssignZoneTypes = self._AutoAssignZoneTypes(self, "AutoAssignZoneTypes", service, rules, path)
9321
9315
  self.VolumeMeshMaxSize = self._VolumeMeshMaxSize(self, "VolumeMeshMaxSize", service, rules, path)
9322
- self.SMQualityImproveLimit = self._SMQualityImproveLimit(self, "SMQualityImproveLimit", service, rules, path)
9323
- self.AutoSurfaceRemesh = self._AutoSurfaceRemesh(self, "AutoSurfaceRemesh", service, rules, path)
9316
+ self.AutoAssignZoneTypes = self._AutoAssignZoneTypes(self, "AutoAssignZoneTypes", service, rules, path)
9317
+ self.SMQualityMaxAngle = self._SMQualityMaxAngle(self, "SMQualityMaxAngle", service, rules, path)
9324
9318
  self.SelfIntersectCheck = self._SelfIntersectCheck(self, "SelfIntersectCheck", service, rules, path)
9319
+ self.AutoSurfaceRemesh = self._AutoSurfaceRemesh(self, "AutoSurfaceRemesh", service, rules, path)
9320
+ self.SMQualityImproveLimit = self._SMQualityImproveLimit(self, "SMQualityImproveLimit", service, rules, path)
9325
9321
  self.SetVolumeMeshMaxSize = self._SetVolumeMeshMaxSize(self, "SetVolumeMeshMaxSize", service, rules, path)
9326
9322
 
9327
9323
  class _SMQualityCollapseLimit(PyNumericalCommandArgumentsSubItem):
@@ -9329,14 +9325,14 @@ class Root(PyMenu):
9329
9325
  Specify the limiting skewness value for cell collapse to improve the mesh. If any remaining triangles are above this limit, these triangles will be aggressively removed using a fixed maximum angle of 120 degrees.
9330
9326
  """
9331
9327
 
9332
- class _AutoMerge(PyParameterCommandArgumentsSubItem):
9328
+ class _FoldFaceLimit(PyNumericalCommandArgumentsSubItem):
9333
9329
  """
9334
- Argument AutoMerge.
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 _ShowSurfaceMeshPreferences(PyParameterCommandArgumentsSubItem):
@@ -9344,14 +9340,14 @@ class Root(PyMenu):
9344
9340
  Display advanced options that you may want to apply to the task.
9345
9341
  """
9346
9342
 
9347
- class _FoldFaceLimit(PyNumericalCommandArgumentsSubItem):
9343
+ class _SMSeparationAngle(PyNumericalCommandArgumentsSubItem):
9348
9344
  """
9349
- 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.
9345
+ Specify a desired angle for determining separation. Assigning a smaller separation angle will produce more zones.
9350
9346
  """
9351
9347
 
9352
- class _SMQualityImprove(PyTextualCommandArgumentsSubItem):
9348
+ class _AutoMerge(PyParameterCommandArgumentsSubItem):
9353
9349
  """
9354
- 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.
9350
+ Argument AutoMerge.
9355
9351
  """
9356
9352
 
9357
9353
  class _TVMAutoControlCreation(PyTextualCommandArgumentsSubItem):
@@ -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 _SMSeparationAngle(PyNumericalCommandArgumentsSubItem):
9358
+ class _SMSeparation(PyTextualCommandArgumentsSubItem):
9363
9359
  """
9364
- Specify a desired angle for determining separation. Assigning a smaller separation angle will produce more zones.
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):
@@ -9369,14 +9365,19 @@ class Root(PyMenu):
9369
9365
  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.
9370
9366
  """
9371
9367
 
9368
+ class _ParallelRegionCompute(PyTextualCommandArgumentsSubItem):
9369
+ """
9370
+ Argument ParallelRegionCompute.
9371
+ """
9372
+
9372
9373
  class _SMStepWidth(PyNumericalCommandArgumentsSubItem):
9373
9374
  """
9374
9375
  Specify the width of the step that you wish to remove.
9375
9376
  """
9376
9377
 
9377
- class _SMQualityMaxAngle(PyNumericalCommandArgumentsSubItem):
9378
+ class _VolumeMeshMaxSize(PyNumericalCommandArgumentsSubItem):
9378
9379
  """
9379
- Specify the maximum angle between the normals of adjacent faces. This quality measure is useful in locating sharp corners in complicated geometries. The angle value ranges from 0 to 180 degrees. Four consecutive attempts are made to improve the quality, each using a larger adjacent angle, until this maximum value.
9380
+ Specify the maximum size of the elements for the surface mesh.
9380
9381
  """
9381
9382
 
9382
9383
  class _AutoAssignZoneTypes(PyTextualCommandArgumentsSubItem):
@@ -9384,14 +9385,14 @@ class Root(PyMenu):
9384
9385
  Choose whether or not to automatically assign boundary types to zones.
9385
9386
  """
9386
9387
 
9387
- class _VolumeMeshMaxSize(PyNumericalCommandArgumentsSubItem):
9388
+ class _SMQualityMaxAngle(PyNumericalCommandArgumentsSubItem):
9388
9389
  """
9389
- Specify the maximum size of the elements for the surface mesh.
9390
+ Specify the maximum angle between the normals of adjacent faces. This quality measure is useful in locating sharp corners in complicated geometries. The angle value ranges from 0 to 180 degrees. Four consecutive attempts are made to improve the quality, each using a larger adjacent angle, until this maximum value.
9390
9391
  """
9391
9392
 
9392
- class _SMQualityImproveLimit(PyNumericalCommandArgumentsSubItem):
9393
+ class _SelfIntersectCheck(PyTextualCommandArgumentsSubItem):
9393
9394
  """
9394
- Specify a limiting value for skewness to improve the quality of the surface mesh. Quality improvement is attempted on those triangles where the skewness is above this limit.
9395
+ Choose whether or not to check for self-intersecting faces. Performance may be improved if this is disabled.
9395
9396
  """
9396
9397
 
9397
9398
  class _AutoSurfaceRemesh(PyTextualCommandArgumentsSubItem):
@@ -9399,9 +9400,9 @@ class Root(PyMenu):
9399
9400
  Choose whether or not to automatically remesh in order to remove excessive clustering of nodes. By default (auto), this is done if local sizing has been assigned or Share Topology is invoked, but skipped if not. Performance may be improved if this is disabled. In addition, you can choose to use the much faster refaceting technique as an alternative to automatic remeshing. When importing the mesh, remeshing is only performed if this option is set to yes and then all faces are remeshed; and the refaceting option is not available because the initial mesh cannot be refaceted.
9400
9401
  """
9401
9402
 
9402
- class _SelfIntersectCheck(PyTextualCommandArgumentsSubItem):
9403
+ class _SMQualityImproveLimit(PyNumericalCommandArgumentsSubItem):
9403
9404
  """
9404
- Choose whether or not to check for self-intersecting faces. Performance may be improved if this is disabled.
9405
+ Specify a limiting value for skewness to improve the quality of the surface mesh. Quality improvement is attempted on those triangles where the skewness is above this limit.
9405
9406
  """
9406
9407
 
9407
9408
  class _SetVolumeMeshMaxSize(PyTextualCommandArgumentsSubItem):
@@ -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.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
9497
+ self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
9497
9498
  self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
9498
9499
  self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
9499
9500
  self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
9500
- self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
9501
+ self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", 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 _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
9533
+ class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
9533
9534
  """
9534
- Argument UsePartOrBodyAsSuffix.
9535
+ Argument ImportCurvatureDataFromCAD.
9535
9536
  """
9536
9537
 
9537
9538
  class _ImportNamedSelections(PyParameterCommandArgumentsSubItem):
@@ -9549,9 +9550,9 @@ class Root(PyMenu):
9549
9550
  Argument ImportPartNames.
9550
9551
  """
9551
9552
 
9552
- class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
9553
+ class _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
9553
9554
  """
9554
- Argument ImportCurvatureDataFromCAD.
9555
+ Argument UsePartOrBodyAsSuffix.
9555
9556
  """
9556
9557
 
9557
9558
  class _ShareTopologyPreferences(PySingletonCommandArgumentsSubItem):
@@ -9566,10 +9567,10 @@ 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
9575
  self.IntfLabelList = self._IntfLabelList(self, "IntfLabelList", service, rules, path)
9575
9576
  self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
@@ -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):
@@ -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):
@@ -10115,24 +10116,24 @@ class Root(PyMenu):
10115
10116
  def __init__(self, parent, attr, service, rules, path):
10116
10117
  super().__init__(parent, attr, service, rules, path)
10117
10118
  self.UseSizeField = self._UseSizeField(self, "UseSizeField", service, rules, path)
10118
- self.PolyFeatureAngle = self._PolyFeatureAngle(self, "PolyFeatureAngle", service, rules, path)
10119
- self.MinPolySize = self._MinPolySize(self, "MinPolySize", service, rules, path)
10120
10119
  self.QualityMethod = self._QualityMethod(self, "QualityMethod", service, rules, path)
10120
+ self.MinPolySize = self._MinPolySize(self, "MinPolySize", service, rules, path)
10121
+ self.PolyFeatureAngle = self._PolyFeatureAngle(self, "PolyFeatureAngle", service, rules, path)
10121
10122
  self.SizeFieldPeriodicity = self._SizeFieldPeriodicity(self, "SizeFieldPeriodicity", service, rules, path)
10122
- self.UseSizeFieldInSolids = self._UseSizeFieldInSolids(self, "UseSizeFieldInSolids", service, rules, path)
10123
10123
  self.MergeBodyLabels = self._MergeBodyLabels(self, "MergeBodyLabels", service, rules, path)
10124
+ self.UseSizeFieldInSolids = self._UseSizeFieldInSolids(self, "UseSizeFieldInSolids", service, rules, path)
10124
10125
  self.ShowVolumeMeshPreferences = self._ShowVolumeMeshPreferences(self, "ShowVolumeMeshPreferences", service, rules, path)
10125
10126
  self.TetInSolids = self._TetInSolids(self, "TetInSolids", 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
- self.MinFaceArea = self._MinFaceArea(self, "MinFaceArea", service, rules, path)
10130
+ self.PrepareZoneNames = self._PrepareZoneNames(self, "PrepareZoneNames", 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)
10132
- self.MinEdgeLength = self._MinEdgeLength(self, "MinEdgeLength", service, rules, path)
10133
10133
  self.PolyInSolids = self._PolyInSolids(self, "PolyInSolids", service, rules, path)
10134
+ self.MinFaceArea = self._MinFaceArea(self, "MinFaceArea", service, rules, path)
10134
10135
  self.SolidGrowthRate = self._SolidGrowthRate(self, "SolidGrowthRate", service, rules, path)
10135
- self.PrepareZoneNames = self._PrepareZoneNames(self, "PrepareZoneNames", service, rules, path)
10136
+ self.MinEdgeLength = self._MinEdgeLength(self, "MinEdgeLength", service, rules, path)
10136
10137
  self.QualityWarningLimit = self._QualityWarningLimit(self, "QualityWarningLimit", service, rules, path)
10137
10138
 
10138
10139
  class _UseSizeField(PyTextualCommandArgumentsSubItem):
@@ -10140,9 +10141,9 @@ class Root(PyMenu):
10140
10141
  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.
10141
10142
  """
10142
10143
 
10143
- class _PolyFeatureAngle(PyNumericalCommandArgumentsSubItem):
10144
+ class _QualityMethod(PyTextualCommandArgumentsSubItem):
10144
10145
  """
10145
- Specify the angle to preserve features when using a polyhedral-based mesh.
10146
+ Choose from several different types of mesh quality controls (skewness, aspect ratio, change in size, and so on). Choices include Orthogonal (the default for the workflows), Enhanced Orthogonal, and Skewness. For more information, see More... .
10146
10147
  """
10147
10148
 
10148
10149
  class _MinPolySize(PyNumericalCommandArgumentsSubItem):
@@ -10150,9 +10151,9 @@ class Root(PyMenu):
10150
10151
  Argument MinPolySize.
10151
10152
  """
10152
10153
 
10153
- class _QualityMethod(PyTextualCommandArgumentsSubItem):
10154
+ class _PolyFeatureAngle(PyNumericalCommandArgumentsSubItem):
10154
10155
  """
10155
- Choose from several different types of mesh quality controls (skewness, aspect ratio, change in size, and so on). Choices include Orthogonal (the default for the workflows), Enhanced Orthogonal, and Skewness. For more information, see More... .
10156
+ Specify the angle to preserve features when using a polyhedral-based mesh.
10156
10157
  """
10157
10158
 
10158
10159
  class _SizeFieldPeriodicity(PyTextualCommandArgumentsSubItem):
@@ -10160,14 +10161,14 @@ class Root(PyMenu):
10160
10161
  Argument SizeFieldPeriodicity.
10161
10162
  """
10162
10163
 
10163
- class _UseSizeFieldInSolids(PyTextualCommandArgumentsSubItem):
10164
+ class _MergeBodyLabels(PyTextualCommandArgumentsSubItem):
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
+ Determine whether or not you would like to merge bodies that contain multiple body labels when generating the volume mesh (the default is yes)
10166
10167
  """
10167
10168
 
10168
- class _MergeBodyLabels(PyTextualCommandArgumentsSubItem):
10169
+ class _UseSizeFieldInSolids(PyTextualCommandArgumentsSubItem):
10169
10170
  """
10170
- Determine whether or not you would like to merge bodies that contain multiple body labels when generating the volume mesh (the default is yes)
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
10174
  class _ShowVolumeMeshPreferences(PyParameterCommandArgumentsSubItem):
@@ -10195,9 +10196,9 @@ class Root(PyMenu):
10195
10196
  Indicate whether or not you want to save a .pzmcontrol file to your working folder that will contain the boundary (prism) layer specifications.
10196
10197
  """
10197
10198
 
10198
- class _MinFaceArea(PyNumericalCommandArgumentsSubItem):
10199
+ class _PrepareZoneNames(PyTextualCommandArgumentsSubItem):
10199
10200
  """
10200
- Argument MinFaceArea.
10201
+ Indicate whether or not you want to persistently rename volume mesh components. This will make zone names equivalent to region names, and will make cell and face zone names unique. Using this field is highly recommended for any parametric study. Persistent renaming only works if all body names are unique.
10201
10202
  """
10202
10203
 
10203
10204
  class _CheckSelfProximity(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 _MinEdgeLength(PyNumericalCommandArgumentsSubItem):
10214
+ class _PolyInSolids(PyTextualCommandArgumentsSubItem):
10214
10215
  """
10215
- Argument MinEdgeLength.
10216
+ 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.
10216
10217
  """
10217
10218
 
10218
- class _PolyInSolids(PyTextualCommandArgumentsSubItem):
10219
+ class _MinFaceArea(PyNumericalCommandArgumentsSubItem):
10219
10220
  """
10220
- 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.
10221
+ Argument MinFaceArea.
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 _PrepareZoneNames(PyTextualCommandArgumentsSubItem):
10229
+ class _MinEdgeLength(PyNumericalCommandArgumentsSubItem):
10229
10230
  """
10230
- 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.
10231
+ Argument MinEdgeLength.
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)
10325
- self.AutoOrderControls = self._AutoOrderControls(self, "AutoOrderControls", service, rules, path)
10326
10326
  self.ShowGlobalThinVolumePreferences = self._ShowGlobalThinVolumePreferences(self, "ShowGlobalThinVolumePreferences", service, rules, path)
10327
- self.StairStep = self._StairStep(self, "StairStep", service, rules, path)
10328
10327
  self.MinAspectRatio = self._MinAspectRatio(self, "MinAspectRatio", service, rules, path)
10328
+ self.StairStep = self._StairStep(self, "StairStep", service, rules, path)
10329
+ self.AutoOrderControls = self._AutoOrderControls(self, "AutoOrderControls", service, rules, path)
10329
10330
 
10330
- class _AutoOrderControls(PyTextualCommandArgumentsSubItem):
10331
+ class _ShowGlobalThinVolumePreferences(PyParameterCommandArgumentsSubItem):
10331
10332
  """
10332
- 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.
10333
+ Display global settings for thin volume meshing.
10333
10334
  """
10334
10335
 
10335
- class _ShowGlobalThinVolumePreferences(PyParameterCommandArgumentsSubItem):
10336
+ class _MinAspectRatio(PyNumericalCommandArgumentsSubItem):
10336
10337
  """
10337
- Display global settings for thin volume meshing.
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 _MinAspectRatio(PyNumericalCommandArgumentsSubItem):
10346
+ class _AutoOrderControls(PyTextualCommandArgumentsSubItem):
10346
10347
  """
10347
- 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.
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):
@@ -10749,10 +10750,10 @@ class Root(PyMenu):
10749
10750
  self.SIQualityIterations = self._SIQualityIterations(self, "SIQualityIterations", service, rules, path)
10750
10751
  self.SIQualityMaxAngle = self._SIQualityMaxAngle(self, "SIQualityMaxAngle", service, rules, path)
10751
10752
  self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
10752
- self.ShowSMImprovePreferences = self._ShowSMImprovePreferences(self, "ShowSMImprovePreferences", service, rules, path)
10753
+ self.SIRemoveStep = self._SIRemoveStep(self, "SIRemoveStep", service, rules, path)
10753
10754
  self.AdvancedImprove = self._AdvancedImprove(self, "AdvancedImprove", service, rules, path)
10754
10755
  self.SIStepWidth = self._SIStepWidth(self, "SIStepWidth", service, rules, path)
10755
- self.SIRemoveStep = self._SIRemoveStep(self, "SIRemoveStep", service, rules, path)
10756
+ self.ShowSMImprovePreferences = self._ShowSMImprovePreferences(self, "ShowSMImprovePreferences", service, rules, path)
10756
10757
 
10757
10758
  class _SIStepQualityLimit(PyNumericalCommandArgumentsSubItem):
10758
10759
  """
@@ -10779,9 +10780,9 @@ class Root(PyMenu):
10779
10780
  Argument AllowDefeaturing.
10780
10781
  """
10781
10782
 
10782
- class _ShowSMImprovePreferences(PyParameterCommandArgumentsSubItem):
10783
+ class _SIRemoveStep(PyTextualCommandArgumentsSubItem):
10783
10784
  """
10784
- Argument ShowSMImprovePreferences.
10785
+ Argument SIRemoveStep.
10785
10786
  """
10786
10787
 
10787
10788
  class _AdvancedImprove(PyTextualCommandArgumentsSubItem):
@@ -10794,9 +10795,9 @@ class Root(PyMenu):
10794
10795
  Argument SIStepWidth.
10795
10796
  """
10796
10797
 
10797
- class _SIRemoveStep(PyTextualCommandArgumentsSubItem):
10798
+ class _ShowSMImprovePreferences(PyParameterCommandArgumentsSubItem):
10798
10799
  """
10799
- Argument SIRemoveStep.
10800
+ Argument ShowSMImprovePreferences.
10800
10801
  """
10801
10802
 
10802
10803
  def create_instance(self) -> _GeometrySetupCommandArguments:
@@ -11005,15 +11006,15 @@ class Root(PyMenu):
11005
11006
 
11006
11007
  def __init__(self, parent, attr, service, rules, path):
11007
11008
  super().__init__(parent, attr, service, rules, path)
11008
- self.HeightNode = self._HeightNode(self, "HeightNode", service, rules, path)
11009
11009
  self.X_Offset = self._X_Offset(self, "X-Offset", service, rules, path)
11010
+ self.HeightNode = self._HeightNode(self, "HeightNode", service, rules, path)
11010
11011
  self.HeightBackInc = self._HeightBackInc(self, "HeightBackInc", service, rules, path)
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.Z2 = self._Z2(self, "Z2", service, rules, path)
11015
- self.Node1 = self._Node1(self, "Node1", service, rules, path)
11016
11015
  self.Z1 = self._Z1(self, "Z1", service, rules, path)
11016
+ self.Node1 = self._Node1(self, "Node1", service, rules, path)
11017
+ self.Z2 = self._Z2(self, "Z2", service, rules, path)
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)
@@ -11023,14 +11024,14 @@ class Root(PyMenu):
11023
11024
  self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
11024
11025
  self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
11025
11026
 
11026
- class _HeightNode(PyTextualCommandArgumentsSubItem):
11027
+ class _X_Offset(PyNumericalCommandArgumentsSubItem):
11027
11028
  """
11028
- Argument HeightNode.
11029
+ Argument X-Offset.
11029
11030
  """
11030
11031
 
11031
- class _X_Offset(PyNumericalCommandArgumentsSubItem):
11032
+ class _HeightNode(PyTextualCommandArgumentsSubItem):
11032
11033
  """
11033
- Argument X-Offset.
11034
+ Argument HeightNode.
11034
11035
  """
11035
11036
 
11036
11037
  class _HeightBackInc(PyNumericalCommandArgumentsSubItem):
@@ -11053,9 +11054,9 @@ class Root(PyMenu):
11053
11054
  Argument Z-Offset.
11054
11055
  """
11055
11056
 
11056
- class _Z2(PyNumericalCommandArgumentsSubItem):
11057
+ class _Z1(PyNumericalCommandArgumentsSubItem):
11057
11058
  """
11058
- Argument Z2.
11059
+ Argument Z1.
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 _Z1(PyNumericalCommandArgumentsSubItem):
11067
+ class _Z2(PyNumericalCommandArgumentsSubItem):
11067
11068
  """
11068
- Argument Z1.
11069
+ Argument Z2.
11069
11070
  """
11070
11071
 
11071
11072
  class _Radius2(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)
11631
+ self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
11632
11632
  self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
11633
+ self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
11633
11634
  self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
11634
- self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
11635
+ self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", 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 _ExtractFeatures(PyParameterCommandArgumentsSubItem):
11677
+ class _ImportNamedSelections(PyParameterCommandArgumentsSubItem):
11677
11678
  """
11678
- Argument ExtractFeatures.
11679
+ Argument ImportNamedSelections.
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 _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
11687
+ class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
11687
11688
  """
11688
- Argument UsePartOrBodyAsSuffix.
11689
+ Argument ImportCurvatureDataFromCAD.
11689
11690
  """
11690
11691
 
11691
11692
  def create_instance(self) -> _ImportBodyOfInfluenceGeometryCommandArguments:
@@ -11775,26 +11776,28 @@ 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.CITolerence = self._CITolerence(self, "CITolerence", service, rules, path)
11779
- self.FacetedBodies = self._FacetedBodies(self, "FacetedBodies", service, rules, path)
11779
+ self.ExtractAngle = self._ExtractAngle(self, "ExtractAngle", service, rules, path)
11780
+ self.MaxFacetLengthOption = self._MaxFacetLengthOption(self, "MaxFacetLengthOption", service, rules, path)
11780
11781
  self.CISeparation = self._CISeparation(self, "CISeparation", service, rules, path)
11781
- self.MergeNodes = self._MergeNodes(self, "MergeNodes", service, rules, path)
11782
+ self.FacetedBodies = self._FacetedBodies(self, "FacetedBodies", service, rules, path)
11782
11783
  self.CIRefaceting = self._CIRefaceting(self, "CIRefaceting", service, rules, path)
11784
+ self.CITolerence = self._CITolerence(self, "CITolerence", service, rules, path)
11783
11785
  self.AutomaticObjectCreation = self._AutomaticObjectCreation(self, "AutomaticObjectCreation", service, rules, path)
11784
- self.ShowImportCadPreferences = self._ShowImportCadPreferences(self, "ShowImportCadPreferences", service, rules, path)
11785
11786
  self.MaxFacetLength = self._MaxFacetLength(self, "MaxFacetLength", service, rules, path)
11786
- self.ExtractAngle = self._ExtractAngle(self, "ExtractAngle", service, rules, path)
11787
+ self.MaxFacetLengthRatio = self._MaxFacetLengthRatio(self, "MaxFacetLengthRatio", service, rules, path)
11788
+ self.ShowImportCadPreferences = self._ShowImportCadPreferences(self, "ShowImportCadPreferences", service, rules, path)
11789
+ self.MergeNodes = self._MergeNodes(self, "MergeNodes", service, rules, path)
11787
11790
  self.CISeparationAngle = self._CISeparationAngle(self, "CISeparationAngle", service, rules, path)
11788
11791
  self.EdgeLabel = self._EdgeLabel(self, "EdgeLabel", service, rules, path)
11789
11792
 
11790
- class _CITolerence(PyNumericalCommandArgumentsSubItem):
11793
+ class _ExtractAngle(PyNumericalCommandArgumentsSubItem):
11791
11794
  """
11792
- 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.
11795
+ Argument ExtractAngle.
11793
11796
  """
11794
11797
 
11795
- class _FacetedBodies(PyTextualCommandArgumentsSubItem):
11798
+ class _MaxFacetLengthOption(PyTextualCommandArgumentsSubItem):
11796
11799
  """
11797
- When performing faceting and wrapping operations in your CAD tool lead to non-CAD geometries, set this option to yes to be able to use such geometries in the workflow. To ensure a relatively good quality surface mesh, you should shrink wrap any faceted bodies. In addition, each shrink-wrapped faceted body should be defined in its own unique component within the CAD environment.
11800
+ Argument MaxFacetLengthOption.
11798
11801
  """
11799
11802
 
11800
11803
  class _CISeparation(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 _MergeNodes(PyTextualCommandArgumentsSubItem):
11808
+ class _FacetedBodies(PyTextualCommandArgumentsSubItem):
11806
11809
  """
11807
- Argument MergeNodes.
11810
+ When performing faceting and wrapping operations in your CAD tool lead to non-CAD geometries, set this option to yes to be able to use such geometries in the workflow. To ensure a relatively good quality surface mesh, you should shrink wrap any faceted bodies. In addition, each shrink-wrapped faceted body should be defined in its own unique component within the CAD environment.
11808
11811
  """
11809
11812
 
11810
11813
  class _CIRefaceting(PyParameterCommandArgumentsSubItem):
@@ -11812,14 +11815,14 @@ 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
 
11815
- class _AutomaticObjectCreation(PyTextualCommandArgumentsSubItem):
11818
+ class _CITolerence(PyNumericalCommandArgumentsSubItem):
11816
11819
  """
11817
- 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.
11820
+ 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.
11818
11821
  """
11819
11822
 
11820
- class _ShowImportCadPreferences(PyParameterCommandArgumentsSubItem):
11823
+ class _AutomaticObjectCreation(PyTextualCommandArgumentsSubItem):
11821
11824
  """
11822
- Display advanced options that you may want to apply to the task.
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.
11823
11826
  """
11824
11827
 
11825
11828
  class _MaxFacetLength(PyNumericalCommandArgumentsSubItem):
@@ -11827,9 +11830,19 @@ class Root(PyMenu):
11827
11830
  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.
11828
11831
  """
11829
11832
 
11830
- class _ExtractAngle(PyNumericalCommandArgumentsSubItem):
11833
+ class _MaxFacetLengthRatio(PyNumericalCommandArgumentsSubItem):
11831
11834
  """
11832
- Argument ExtractAngle.
11835
+ Argument MaxFacetLengthRatio.
11836
+ """
11837
+
11838
+ class _ShowImportCadPreferences(PyParameterCommandArgumentsSubItem):
11839
+ """
11840
+ Display advanced options that you may want to apply to the task.
11841
+ """
11842
+
11843
+ class _MergeNodes(PyTextualCommandArgumentsSubItem):
11844
+ """
11845
+ Argument MergeNodes.
11833
11846
  """
11834
11847
 
11835
11848
  class _CISeparationAngle(PyNumericalCommandArgumentsSubItem):
@@ -11890,9 +11903,9 @@ class Root(PyMenu):
11890
11903
  self.CreateCADAssemblies = self._CreateCADAssemblies(self, "CreateCADAssemblies", service, rules, path)
11891
11904
  self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
11892
11905
  self.OneZonePer = self._OneZonePer(self, "OneZonePer", service, rules, path)
11893
- self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
11894
- self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
11895
11906
  self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
11907
+ self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
11908
+ self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
11896
11909
  self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
11897
11910
  self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
11898
11911
 
@@ -11926,9 +11939,9 @@ class Root(PyMenu):
11926
11939
  Argument OneZonePer.
11927
11940
  """
11928
11941
 
11929
- class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
11942
+ class _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
11930
11943
  """
11931
- Argument ImportCurvatureDataFromCAD.
11944
+ Argument UsePartOrBodyAsSuffix.
11932
11945
  """
11933
11946
 
11934
11947
  class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
@@ -11936,9 +11949,9 @@ class Root(PyMenu):
11936
11949
  Argument ExtractFeatures.
11937
11950
  """
11938
11951
 
11939
- class _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
11952
+ class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
11940
11953
  """
11941
- Argument UsePartOrBodyAsSuffix.
11954
+ Argument ImportCurvatureDataFromCAD.
11942
11955
  """
11943
11956
 
11944
11957
  class _ImportPartNames(PyParameterCommandArgumentsSubItem):
@@ -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.SIRemoveStep = self._SIRemoveStep(self, "SIRemoveStep", service, rules, path)
12029
+ self.ShowSMImprovePreferences = self._ShowSMImprovePreferences(self, "ShowSMImprovePreferences", 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.ShowSMImprovePreferences = self._ShowSMImprovePreferences(self, "ShowSMImprovePreferences", service, rules, path)
12032
+ self.SIRemoveStep = self._SIRemoveStep(self, "SIRemoveStep", 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 _SIRemoveStep(PyTextualCommandArgumentsSubItem):
12059
+ class _ShowSMImprovePreferences(PyParameterCommandArgumentsSubItem):
12047
12060
  """
12048
- Indicate if there are any small imperfections (ledge or step artifacts from the original CAD geometry) that can be removed as part of this task. If you select yes, then you must specify a Max Step Width and the Step Skewness Quality Limit.
12061
+ Display advanced options that you may want to apply to the task.
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 _ShowSMImprovePreferences(PyParameterCommandArgumentsSubItem):
12074
+ class _SIRemoveStep(PyTextualCommandArgumentsSubItem):
12062
12075
  """
12063
- Display advanced options that you may want to apply to the task.
12076
+ Indicate if there are any small imperfections (ledge or step artifacts from the original CAD geometry) that can be removed as part of this task. If you select yes, then you must specify a Max Step Width and the Step Skewness Quality Limit.
12064
12077
  """
12065
12078
 
12066
12079
  def create_instance(self) -> _ImproveSurfaceMeshCommandArguments:
@@ -12384,8 +12397,8 @@ 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
12400
  self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
12401
+ self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
12389
12402
  self.MaxEdgeLengthFactor = self._MaxEdgeLengthFactor(self, "MaxEdgeLengthFactor", 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)
@@ -12402,14 +12415,14 @@ class Root(PyMenu):
12402
12415
  Argument FacetResolution.
12403
12416
  """
12404
12417
 
12405
- class _NormalAngle(PyNumericalCommandArgumentsSubItem):
12418
+ class _Deviation(PyNumericalCommandArgumentsSubItem):
12406
12419
  """
12407
- Argument NormalAngle.
12420
+ Argument Deviation.
12408
12421
  """
12409
12422
 
12410
- class _Deviation(PyNumericalCommandArgumentsSubItem):
12423
+ class _NormalAngle(PyNumericalCommandArgumentsSubItem):
12411
12424
  """
12412
- Argument Deviation.
12425
+ Argument NormalAngle.
12413
12426
  """
12414
12427
 
12415
12428
  class _MaxEdgeLengthFactor(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)
12544
- self.SizingType = self._SizingType(self, "SizingType", service, rules, path)
12545
- self.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", service, rules, path)
12546
12557
  self.InitialSizeControl = self._InitialSizeControl(self, "InitialSizeControl", service, rules, path)
12547
- self.WrapCurvatureNormalAngle = self._WrapCurvatureNormalAngle(self, "WrapCurvatureNormalAngle", service, rules, path)
12558
+ self.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", service, rules, path)
12559
+ self.SizingType = self._SizingType(self, "SizingType", service, rules, path)
12548
12560
  self.CellsPerGap = self._CellsPerGap(self, "CellsPerGap", service, rules, path)
12561
+ self.WrapCurvatureNormalAngle = self._WrapCurvatureNormalAngle(self, "WrapCurvatureNormalAngle", 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,9 +12607,9 @@ 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
 
12597
- class _SizingType(PyTextualCommandArgumentsSubItem):
12610
+ class _InitialSizeControl(PyParameterCommandArgumentsSubItem):
12598
12611
  """
12599
- Choose the type of sizing control (curvature, proximity, soft, or boi).
12612
+ Enable this field to display the initial size control in the graphics window.
12600
12613
  """
12601
12614
 
12602
12615
  class _WrapGrowthRate(PyNumericalCommandArgumentsSubItem):
@@ -12604,19 +12617,19 @@ class Root(PyMenu):
12604
12617
  Specify the increase in element edge length with each succeeding layer of elements.
12605
12618
  """
12606
12619
 
12607
- class _InitialSizeControl(PyParameterCommandArgumentsSubItem):
12620
+ class _SizingType(PyTextualCommandArgumentsSubItem):
12608
12621
  """
12609
- Enable this field to display the initial size control in the graphics window.
12622
+ Choose the type of sizing control (curvature, proximity, soft, or boi).
12610
12623
  """
12611
12624
 
12612
- class _WrapCurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
12625
+ class _CellsPerGap(PyNumericalCommandArgumentsSubItem):
12613
12626
  """
12614
- 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.
12627
+ 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
12628
  """
12616
12629
 
12617
- class _CellsPerGap(PyNumericalCommandArgumentsSubItem):
12630
+ class _WrapCurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
12618
12631
  """
12619
- 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.
12632
+ 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
12633
  """
12621
12634
 
12622
12635
  class _TargetSizeControl(PyParameterCommandArgumentsSubItem):
@@ -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,10 +13333,10 @@ 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.MaxEdgeLengthFactor = self._MaxEdgeLengthFactor(self, "MaxEdgeLengthFactor", service, rules, path)
13336
+ self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
13324
13337
  self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
13325
13338
  self.Refacet = self._Refacet(self, "Refacet", service, rules, path)
13326
- self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
13339
+ self.MaxEdgeLengthFactor = self._MaxEdgeLengthFactor(self, "MaxEdgeLengthFactor", service, rules, path)
13327
13340
 
13328
13341
  class _FacetMaxEdgeLength(PyTextualCommandArgumentsSubItem):
13329
13342
  """
@@ -13335,9 +13348,9 @@ 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 _MaxEdgeLengthFactor(PyNumericalCommandArgumentsSubItem):
13351
+ class _Deviation(PyNumericalCommandArgumentsSubItem):
13339
13352
  """
13340
- Specifies the maximum size of the facets relative to the bounding box of the geometry.
13353
+ Specify the distance between facet edges and the geometry edges. Decreasing this value will result in more facets along curved edges.
13341
13354
  """
13342
13355
 
13343
13356
  class _NormalAngle(PyNumericalCommandArgumentsSubItem):
@@ -13350,9 +13363,9 @@ class Root(PyMenu):
13350
13363
  Select this option when you want to change faceting of the selected object. Refaceting will refacet the original CAD geometry. Only the faceted CAD geometry is used during the meshing process. The refaceting settings control how far the facet edges are from the model and the size of the facets. More...
13351
13364
  """
13352
13365
 
13353
- class _Deviation(PyNumericalCommandArgumentsSubItem):
13366
+ class _MaxEdgeLengthFactor(PyNumericalCommandArgumentsSubItem):
13354
13367
  """
13355
- Specify the distance between facet edges and the geometry edges. Decreasing this value will result in more facets along curved edges.
13368
+ Specifies the maximum size of the facets relative to the bounding box of the geometry.
13356
13369
  """
13357
13370
 
13358
13371
  class _IgnoreSolidNames(PyParameterCommandArgumentsSubItem):
@@ -14026,10 +14039,10 @@ 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
14047
  self.IntfLabelList = self._IntfLabelList(self, "IntfLabelList", service, rules, path)
14035
14048
  self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
@@ -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):
@@ -14185,18 +14198,19 @@ class Root(PyMenu):
14185
14198
  self.AutoMerge = self._AutoMerge(self, "AutoMerge", service, rules, path)
14186
14199
  self.SMQualityImprove = self._SMQualityImprove(self, "SMQualityImprove", service, rules, path)
14187
14200
  self.ShowSurfaceMeshPreferences = self._ShowSurfaceMeshPreferences(self, "ShowSurfaceMeshPreferences", service, rules, path)
14188
- self.SMSeparation = self._SMSeparation(self, "SMSeparation", service, rules, path)
14189
14201
  self.SMSeparationAngle = self._SMSeparationAngle(self, "SMSeparationAngle", service, rules, path)
14202
+ self.SMSeparation = self._SMSeparation(self, "SMSeparation", service, rules, path)
14190
14203
  self.TVMAutoControlCreation = self._TVMAutoControlCreation(self, "TVMAutoControlCreation", service, rules, path)
14191
14204
  self.FoldFaceLimit = self._FoldFaceLimit(self, "FoldFaceLimit", service, rules, path)
14192
14205
  self.SMRemoveStep = self._SMRemoveStep(self, "SMRemoveStep", service, rules, path)
14206
+ self.ParallelRegionCompute = self._ParallelRegionCompute(self, "ParallelRegionCompute", service, rules, path)
14193
14207
  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)
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):
@@ -14219,14 +14233,14 @@ class Root(PyMenu):
14219
14233
  Argument ShowSurfaceMeshPreferences.
14220
14234
  """
14221
14235
 
14222
- class _SMSeparation(PyTextualCommandArgumentsSubItem):
14236
+ class _SMSeparationAngle(PyNumericalCommandArgumentsSubItem):
14223
14237
  """
14224
- Argument SMSeparation.
14238
+ Argument SMSeparationAngle.
14225
14239
  """
14226
14240
 
14227
- class _SMSeparationAngle(PyNumericalCommandArgumentsSubItem):
14241
+ class _SMSeparation(PyTextualCommandArgumentsSubItem):
14228
14242
  """
14229
- Argument SMSeparationAngle.
14243
+ Argument SMSeparation.
14230
14244
  """
14231
14245
 
14232
14246
  class _TVMAutoControlCreation(PyTextualCommandArgumentsSubItem):
@@ -14244,14 +14258,19 @@ class Root(PyMenu):
14244
14258
  Argument SMRemoveStep.
14245
14259
  """
14246
14260
 
14261
+ class _ParallelRegionCompute(PyTextualCommandArgumentsSubItem):
14262
+ """
14263
+ Argument ParallelRegionCompute.
14264
+ """
14265
+
14247
14266
  class _SMStepWidth(PyNumericalCommandArgumentsSubItem):
14248
14267
  """
14249
14268
  Argument SMStepWidth.
14250
14269
  """
14251
14270
 
14252
- class _SMQualityMaxAngle(PyNumericalCommandArgumentsSubItem):
14271
+ class _VolumeMeshMaxSize(PyNumericalCommandArgumentsSubItem):
14253
14272
  """
14254
- Argument SMQualityMaxAngle.
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):