ansys-fluent-core 0.34.dev0__py3-none-any.whl → 0.34.1__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (79) hide show
  1. ansys/fluent/core/__init__.py +3 -3
  2. ansys/fluent/core/codegen/builtin_settingsgen.py +25 -19
  3. ansys/fluent/core/codegen/settingsgen.py +17 -5
  4. ansys/fluent/core/codegen/tuigen.py +2 -1
  5. ansys/fluent/core/docker/docker_compose.py +4 -1
  6. ansys/fluent/core/docker/utils.py +35 -0
  7. ansys/fluent/core/exceptions.py +13 -1
  8. ansys/fluent/core/field_data_interfaces.py +239 -38
  9. ansys/fluent/core/file_session.py +167 -61
  10. ansys/fluent/core/fluent_connection.py +23 -16
  11. ansys/fluent/core/generated/api_tree/api_objects.json +1 -1
  12. ansys/fluent/core/generated/datamodel_231/flicing.py +45 -45
  13. ansys/fluent/core/generated/datamodel_231/meshing.py +256 -256
  14. ansys/fluent/core/generated/datamodel_232/flicing.py +15 -15
  15. ansys/fluent/core/generated/datamodel_232/meshing.py +205 -205
  16. ansys/fluent/core/generated/datamodel_241/flicing.py +50 -50
  17. ansys/fluent/core/generated/datamodel_241/meshing.py +279 -279
  18. ansys/fluent/core/generated/datamodel_242/flicing.py +45 -45
  19. ansys/fluent/core/generated/datamodel_242/meshing.py +315 -315
  20. ansys/fluent/core/generated/datamodel_242/part_management.py +9 -9
  21. ansys/fluent/core/generated/datamodel_251/flicing.py +35 -35
  22. ansys/fluent/core/generated/datamodel_251/meshing.py +311 -311
  23. ansys/fluent/core/generated/datamodel_252/flicing.py +60 -60
  24. ansys/fluent/core/generated/datamodel_252/meshing.py +391 -391
  25. ansys/fluent/core/generated/datamodel_252/part_management.py +10 -10
  26. ansys/fluent/core/generated/datamodel_261/flicing.py +35 -35
  27. ansys/fluent/core/generated/datamodel_261/meshing.py +494 -475
  28. ansys/fluent/core/generated/datamodel_261/meshing_utilities.py +296 -616
  29. ansys/fluent/core/generated/datamodel_261/part_management.py +5 -5
  30. ansys/fluent/core/generated/datamodel_261/preferences.py +7 -0
  31. ansys/fluent/core/generated/fluent_version_261.py +3 -3
  32. ansys/fluent/core/generated/meshing/tui_261.py +1186 -1180
  33. ansys/fluent/core/generated/solver/settings_231.py +1 -0
  34. ansys/fluent/core/generated/solver/settings_231.pyi +3025 -1
  35. ansys/fluent/core/generated/solver/settings_232.py +1 -0
  36. ansys/fluent/core/generated/solver/settings_232.pyi +3425 -1
  37. ansys/fluent/core/generated/solver/settings_241.py +1 -0
  38. ansys/fluent/core/generated/solver/settings_241.pyi +4423 -1
  39. ansys/fluent/core/generated/solver/settings_242.py +1 -0
  40. ansys/fluent/core/generated/solver/settings_242.pyi +5474 -1
  41. ansys/fluent/core/generated/solver/settings_251.py +11 -0
  42. ansys/fluent/core/generated/solver/settings_251.pyi +6006 -1
  43. ansys/fluent/core/generated/solver/settings_252.py +11 -1
  44. ansys/fluent/core/generated/solver/settings_252.pyi +6782 -2
  45. ansys/fluent/core/generated/solver/settings_261.py +7438 -3941
  46. ansys/fluent/core/generated/solver/settings_261.pyi +10916 -2656
  47. ansys/fluent/core/generated/solver/settings_builtin.py +56 -22
  48. ansys/fluent/core/generated/solver/settings_builtin.pyi +22 -0
  49. ansys/fluent/core/generated/solver/tui_261.py +3877 -2876
  50. ansys/fluent/core/launcher/container_launcher.py +6 -2
  51. ansys/fluent/core/launcher/error_handler.py +1 -1
  52. ansys/fluent/core/launcher/fluent_container.py +53 -10
  53. ansys/fluent/core/launcher/launcher.py +3 -0
  54. ansys/fluent/core/launcher/watchdog.py +6 -6
  55. ansys/fluent/core/launcher/watchdog_exec +1 -1
  56. ansys/fluent/core/pyfluent_warnings.py +7 -1
  57. ansys/fluent/core/report.py +2 -0
  58. ansys/fluent/core/search.py +11 -3
  59. ansys/fluent/core/services/__init__.py +2 -2
  60. ansys/fluent/core/services/app_utilities.py +39 -0
  61. ansys/fluent/core/services/deprecated_field_data.py +4 -4
  62. ansys/fluent/core/services/field_data.py +185 -49
  63. ansys/fluent/core/services/reduction.py +16 -5
  64. ansys/fluent/core/services/settings.py +1 -0
  65. ansys/fluent/core/session.py +16 -1
  66. ansys/fluent/core/session_pure_meshing.py +5 -5
  67. ansys/fluent/core/session_pure_meshing.pyi +1 -0
  68. ansys/fluent/core/session_solver.py +33 -8
  69. ansys/fluent/core/session_solver.pyi +1 -0
  70. ansys/fluent/core/solver/error_message.py +2 -2
  71. ansys/fluent/core/solver/flobject.py +187 -120
  72. ansys/fluent/core/solver/function/reduction.py +37 -9
  73. ansys/fluent/core/solver/settings_builtin_data.py +5 -3
  74. ansys/fluent/core/utils/fluent_version.py +1 -3
  75. ansys/fluent/core/utils/networking.py +18 -8
  76. {ansys_fluent_core-0.34.dev0.dist-info → ansys_fluent_core-0.34.1.dist-info}/METADATA +10 -11
  77. {ansys_fluent_core-0.34.dev0.dist-info → ansys_fluent_core-0.34.1.dist-info}/RECORD +79 -78
  78. {ansys_fluent_core-0.34.dev0.dist-info → ansys_fluent_core-0.34.1.dist-info}/WHEEL +1 -1
  79. {ansys_fluent_core-0.34.dev0.dist-info/licenses → ansys_fluent_core-0.34.1.dist-info}/LICENSE +0 -0
@@ -1302,14 +1302,14 @@ class Root(PyMenu):
1302
1302
  self.ConnectLabelWildcard = self._ConnectLabelWildcard(self, "ConnectLabelWildcard", service, rules, path)
1303
1303
  self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
1304
1304
  self.RelativeShareTopologyTolerance = self._RelativeShareTopologyTolerance(self, "RelativeShareTopologyTolerance", service, rules, path)
1305
- self.FluidLabelWildcard = self._FluidLabelWildcard(self, "FluidLabelWildcard", service, rules, path)
1305
+ self.ShareTopologyAngle = self._ShareTopologyAngle(self, "ShareTopologyAngle", service, rules, path)
1306
1306
  self.ExecuteJoinIntersect = self._ExecuteJoinIntersect(self, "ExecuteJoinIntersect", service, rules, path)
1307
1307
  self.Operation = self._Operation(self, "Operation", service, rules, path)
1308
- self.ShareTopologyAngle = self._ShareTopologyAngle(self, "ShareTopologyAngle", service, rules, path)
1308
+ self.FluidLabelWildcard = self._FluidLabelWildcard(self, "FluidLabelWildcard", service, rules, path)
1309
1309
  self.STToleranceIncrement = self._STToleranceIncrement(self, "STToleranceIncrement", service, rules, path)
1310
- self.IntfLabelList = self._IntfLabelList(self, "IntfLabelList", service, rules, path)
1311
- self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
1312
1310
  self.ShowShareTopologyPreferences = self._ShowShareTopologyPreferences(self, "ShowShareTopologyPreferences", service, rules, path)
1311
+ self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
1312
+ self.IntfLabelList = self._IntfLabelList(self, "IntfLabelList", service, rules, path)
1313
1313
  self.AdvancedImprove = self._AdvancedImprove(self, "AdvancedImprove", service, rules, path)
1314
1314
  self.NumberOfJoinTries = self._NumberOfJoinTries(self, "NumberOfJoinTries", service, rules, path)
1315
1315
 
@@ -1338,9 +1338,9 @@ class Root(PyMenu):
1338
1338
  Specify the relative tolerance for joining or intersecting face pairs, or the relative tolerance for connecting edge and face pairs.
1339
1339
  """
1340
1340
 
1341
- class _FluidLabelWildcard(PyTextualCommandArgumentsSubItem):
1341
+ class _ShareTopologyAngle(PyNumericalCommandArgumentsSubItem):
1342
1342
  """
1343
- Argument FluidLabelWildcard.
1343
+ Specify the threshold angle for joining face pairs.
1344
1344
  """
1345
1345
 
1346
1346
  class _ExecuteJoinIntersect(PyTextualCommandArgumentsSubItem):
@@ -1353,9 +1353,9 @@ class Root(PyMenu):
1353
1353
  Choose whether to apply share topology using the Join-Intersect method where you join and/or intersect the problematic faces, or using the Interface Connect method where you connect edges of overlapping face pairs. Note that imprinting of overlapping faces in SCDM/Discovery is highly recommended for the Interface Connect method.
1354
1354
  """
1355
1355
 
1356
- class _ShareTopologyAngle(PyNumericalCommandArgumentsSubItem):
1356
+ class _FluidLabelWildcard(PyTextualCommandArgumentsSubItem):
1357
1357
  """
1358
- Specify the threshold angle for joining face pairs.
1358
+ Argument FluidLabelWildcard.
1359
1359
  """
1360
1360
 
1361
1361
  class _STToleranceIncrement(PyNumericalCommandArgumentsSubItem):
@@ -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):
@@ -1769,12 +1769,12 @@ 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.ShowLocalPrismPreferences = self._ShowLocalPrismPreferences(self, "ShowLocalPrismPreferences", service, rules, path)
1775
1776
  self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
1776
1777
  self.NumberOfSplitLayers = self._NumberOfSplitLayers(self, "NumberOfSplitLayers", service, rules, path)
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)
1780
1780
  self.IgnoreBoundaryLayers = self._IgnoreBoundaryLayers(self, "IgnoreBoundaryLayers", 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,6 +1819,11 @@ class Root(PyMenu):
1819
1819
  Argument InvalidNormalMethod.
1820
1820
  """
1821
1821
 
1822
+ class _ShowLocalPrismPreferences(PyParameterCommandArgumentsSubItem):
1823
+ """
1824
+ Display advanced options that you may want to apply to this task.
1825
+ """
1826
+
1822
1827
  class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
1823
1828
  """
1824
1829
  Argument LastRatioNumLayers.
@@ -1829,11 +1834,6 @@ class Root(PyMenu):
1829
1834
  Indicate the number of split prism layers you wish to apply to each layer that you specified for the boundary layer definition.
1830
1835
  """
1831
1836
 
1832
- class _ShowLocalPrismPreferences(PyParameterCommandArgumentsSubItem):
1833
- """
1834
- Display advanced options that you may want to apply to this task.
1835
- """
1836
-
1837
1837
  class _AllowedTangencyAtInvalidNormals(PyNumericalCommandArgumentsSubItem):
1838
1838
  """
1839
1839
  Controls the tangency of the invalid normal faces. An invalid normal location with all 90 degree angles has a tangency of 1. So, faces are still treated as an invalid normal even if the angle deviates slightly from 90 degrees (resulting in a tangency of 0.98).
@@ -2094,8 +2094,8 @@ class Root(PyMenu):
2094
2094
  self.SplitPrism = self._SplitPrism(self, "SplitPrism", service, rules, path)
2095
2095
  self.InvalidNormalMethod = self._InvalidNormalMethod(self, "InvalidNormalMethod", service, rules, path)
2096
2096
  self.ShowLocalPrismPreferences = self._ShowLocalPrismPreferences(self, "ShowLocalPrismPreferences", service, rules, path)
2097
- self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
2098
2097
  self.NumberOfSplitLayers = self._NumberOfSplitLayers(self, "NumberOfSplitLayers", service, rules, path)
2098
+ self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", 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)
@@ -2145,14 +2145,14 @@ class Root(PyMenu):
2145
2145
  Display advanced options that you may want to apply to this task.
2146
2146
  """
2147
2147
 
2148
- class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
2148
+ class _NumberOfSplitLayers(PyNumericalCommandArgumentsSubItem):
2149
2149
  """
2150
- Argument LastRatioNumLayers.
2150
+ Indicate the number of split prism layers you wish to apply to each layer that you specified for the boundary layer definition.
2151
2151
  """
2152
2152
 
2153
- class _NumberOfSplitLayers(PyNumericalCommandArgumentsSubItem):
2153
+ class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
2154
2154
  """
2155
- Indicate the number of split prism layers you wish to apply to each layer that you specified for the boundary layer definition.
2155
+ Argument LastRatioNumLayers.
2156
2156
  """
2157
2157
 
2158
2158
  class _AllowedTangencyAtInvalidNormals(PyNumericalCommandArgumentsSubItem):
@@ -2395,11 +2395,11 @@ class Root(PyMenu):
2395
2395
  self.MinSize = self._MinSize(self, "MinSize", service, rules, path)
2396
2396
  self.WrapMax = self._WrapMax(self, "WrapMax", service, rules, path)
2397
2397
  self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
2398
- self.InitialSizeControl = self._InitialSizeControl(self, "InitialSizeControl", service, rules, path)
2399
2398
  self.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", service, rules, path)
2400
2399
  self.SizingType = self._SizingType(self, "SizingType", service, rules, path)
2401
- self.WrapCurvatureNormalAngle = self._WrapCurvatureNormalAngle(self, "WrapCurvatureNormalAngle", service, rules, path)
2400
+ self.InitialSizeControl = self._InitialSizeControl(self, "InitialSizeControl", service, rules, path)
2402
2401
  self.CellsPerGap = self._CellsPerGap(self, "CellsPerGap", service, rules, path)
2402
+ self.WrapCurvatureNormalAngle = self._WrapCurvatureNormalAngle(self, "WrapCurvatureNormalAngle", service, rules, path)
2403
2403
  self.TargetSizeControl = self._TargetSizeControl(self, "TargetSizeControl", service, rules, path)
2404
2404
  self.GrowthRate = self._GrowthRate(self, "GrowthRate", service, rules, path)
2405
2405
 
@@ -2448,11 +2448,6 @@ class Root(PyMenu):
2448
2448
  Display advanced wrap-specific options that are also applied to the task. See this description for more information about wrap (and target) mesh size controls.
2449
2449
  """
2450
2450
 
2451
- class _InitialSizeControl(PyParameterCommandArgumentsSubItem):
2452
- """
2453
- Enable this field to display the initial size control in the graphics window.
2454
- """
2455
-
2456
2451
  class _WrapGrowthRate(PyNumericalCommandArgumentsSubItem):
2457
2452
  """
2458
2453
  Specify the increase in element edge length with each succeeding layer of elements.
@@ -2463,9 +2458,9 @@ class Root(PyMenu):
2463
2458
  Choose the type of sizing control (curvature, proximity, soft, or boi).
2464
2459
  """
2465
2460
 
2466
- class _WrapCurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
2461
+ class _InitialSizeControl(PyParameterCommandArgumentsSubItem):
2467
2462
  """
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.
2463
+ Enable this field to display the initial size control in the graphics window.
2469
2464
  """
2470
2465
 
2471
2466
  class _CellsPerGap(PyNumericalCommandArgumentsSubItem):
@@ -2473,6 +2468,11 @@ class Root(PyMenu):
2473
2468
  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.
2474
2469
  """
2475
2470
 
2471
+ class _WrapCurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
2472
+ """
2473
+ 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.
2474
+ """
2475
+
2476
2476
  class _TargetSizeControl(PyParameterCommandArgumentsSubItem):
2477
2477
  """
2478
2478
  Enable this field to display the target size control in the graphics window.
@@ -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):
@@ -4162,7 +4162,7 @@ class Root(PyMenu):
4162
4162
 
4163
4163
  def __init__(self, parent, attr, service, rules, path):
4164
4164
  super().__init__(parent, attr, service, rules, path)
4165
- self.TargeSizeFieldFileName = self._TargeSizeFieldFileName(self, "TargeSizeFieldFileName", service, rules, path)
4165
+ self.WrapTargetRatio = self._WrapTargetRatio(self, "WrapTargetRatio", service, rules, path)
4166
4166
  self.WrapTargetSizeFieldRatio = self._WrapTargetSizeFieldRatio(self, "WrapTargetSizeFieldRatio", service, rules, path)
4167
4167
  self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
4168
4168
  self.SolidFluidRaio = self._SolidFluidRaio(self, "SolidFluidRaio", service, rules, path)
@@ -4173,12 +4173,12 @@ class Root(PyMenu):
4173
4173
  self.TargetSizeFieldFileName = self._TargetSizeFieldFileName(self, "TargetSizeFieldFileName", service, rules, path)
4174
4174
  self.SolidFluidRatio = self._SolidFluidRatio(self, "SolidFluidRatio", service, rules, path)
4175
4175
  self.WrapSizeFieldFileName = self._WrapSizeFieldFileName(self, "WrapSizeFieldFileName", service, rules, path)
4176
- self.WrapTargetRatio = self._WrapTargetRatio(self, "WrapTargetRatio", service, rules, path)
4176
+ self.TargeSizeFieldFileName = self._TargeSizeFieldFileName(self, "TargeSizeFieldFileName", service, rules, path)
4177
4177
  self.WrapTargetRaio = self._WrapTargetRaio(self, "WrapTargetRaio", service, rules, path)
4178
4178
 
4179
- class _TargeSizeFieldFileName(PyTextualCommandArgumentsSubItem):
4179
+ class _WrapTargetRatio(PyNumericalCommandArgumentsSubItem):
4180
4180
  """
4181
- Indicate the name and location of the target size field file (\\*.sf).
4181
+ Argument WrapTargetRatio.
4182
4182
  """
4183
4183
 
4184
4184
  class _WrapTargetSizeFieldRatio(PyNumericalCommandArgumentsSubItem):
@@ -4231,9 +4231,9 @@ class Root(PyMenu):
4231
4231
  Indicate the name and location of the wrap size field file (\\*.sf).
4232
4232
  """
4233
4233
 
4234
- class _WrapTargetRatio(PyNumericalCommandArgumentsSubItem):
4234
+ class _TargeSizeFieldFileName(PyTextualCommandArgumentsSubItem):
4235
4235
  """
4236
- Argument WrapTargetRatio.
4236
+ Indicate the name and location of the target size field file (\\*.sf).
4237
4237
  """
4238
4238
 
4239
4239
  class _WrapTargetRaio(PyNumericalCommandArgumentsSubItem):
@@ -4508,7 +4508,7 @@ class Root(PyMenu):
4508
4508
  def __init__(self, parent, attr, service, rules, path):
4509
4509
  super().__init__(parent, attr, service, rules, path)
4510
4510
  self.SizeRelativeLength = self._SizeRelativeLength(self, "SizeRelativeLength", service, rules, path)
4511
- self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
4511
+ self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
4512
4512
  self.XminRatio = self._XminRatio(self, "XminRatio", service, rules, path)
4513
4513
  self.YminRatio = self._YminRatio(self, "YminRatio", service, rules, path)
4514
4514
  self.Zmin = self._Zmin(self, "Zmin", service, rules, path)
@@ -4519,16 +4519,16 @@ class Root(PyMenu):
4519
4519
  self.Xmin = self._Xmin(self, "Xmin", service, rules, path)
4520
4520
  self.YmaxRatio = self._YmaxRatio(self, "YmaxRatio", service, rules, path)
4521
4521
  self.ZmaxRatio = self._ZmaxRatio(self, "ZmaxRatio", service, rules, path)
4522
- self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
4522
+ self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
4523
4523
 
4524
4524
  class _SizeRelativeLength(PyTextualCommandArgumentsSubItem):
4525
4525
  """
4526
4526
  Argument SizeRelativeLength.
4527
4527
  """
4528
4528
 
4529
- class _Xmax(PyNumericalCommandArgumentsSubItem):
4529
+ class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
4530
4530
  """
4531
- Argument Xmax.
4531
+ Argument XmaxRatio.
4532
4532
  """
4533
4533
 
4534
4534
  class _XminRatio(PyNumericalCommandArgumentsSubItem):
@@ -4581,9 +4581,9 @@ class Root(PyMenu):
4581
4581
  Argument ZmaxRatio.
4582
4582
  """
4583
4583
 
4584
- class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
4584
+ class _Xmax(PyNumericalCommandArgumentsSubItem):
4585
4585
  """
4586
- Argument XmaxRatio.
4586
+ Argument Xmax.
4587
4587
  """
4588
4588
 
4589
4589
  class _OffsetObject(PySingletonCommandArgumentsSubItem):
@@ -4598,18 +4598,18 @@ 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)
4602
+ self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
4603
+ self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
4604
4604
  self.Rate = self._Rate(self, "Rate", service, rules, path)
4605
4605
  self.FlowDirection = self._FlowDirection(self, "FlowDirection", service, rules, path)
4606
4606
  self.MptMethodType = self._MptMethodType(self, "MptMethodType", service, rules, path)
4607
4607
  self.EdgeSelectionList = self._EdgeSelectionList(self, "EdgeSelectionList", service, rules, path)
4608
- self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
4609
- self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
4608
+ self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
4610
4609
  self.X = self._X(self, "X", service, rules, path)
4611
- self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
4610
+ self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
4612
4611
  self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
4612
+ self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
4613
4613
  self.FirstHeight = self._FirstHeight(self, "FirstHeight", service, rules, path)
4614
4614
  self.BoundaryLayerHeight = self._BoundaryLayerHeight(self, "BoundaryLayerHeight", service, rules, path)
4615
4615
  self.CrossWakeGrowthFactor = self._CrossWakeGrowthFactor(self, "CrossWakeGrowthFactor", service, rules, path)
@@ -4639,9 +4639,9 @@ 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
4647
  class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
@@ -4649,9 +4649,9 @@ class Root(PyMenu):
4649
4649
  Argument NumberOfLayers.
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
4657
  class _Rate(PyNumericalCommandArgumentsSubItem):
@@ -4674,14 +4674,9 @@ class Root(PyMenu):
4674
4674
  Argument EdgeSelectionList.
4675
4675
  """
4676
4676
 
4677
- class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
4678
- """
4679
- Argument WakeGrowthFactor.
4680
- """
4681
-
4682
- class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
4677
+ class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
4683
4678
  """
4684
- Argument LastRatioPercentage.
4679
+ Argument BoundaryLayerLevels.
4685
4680
  """
4686
4681
 
4687
4682
  class _X(PyNumericalCommandArgumentsSubItem):
@@ -4689,9 +4684,9 @@ class Root(PyMenu):
4689
4684
  Argument X.
4690
4685
  """
4691
4686
 
4692
- class _FlipDirection(PyParameterCommandArgumentsSubItem):
4687
+ class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
4693
4688
  """
4694
- Argument FlipDirection.
4689
+ Argument LastRatioPercentage.
4695
4690
  """
4696
4691
 
4697
4692
  class _OffsetMethodType(PyTextualCommandArgumentsSubItem):
@@ -4699,6 +4694,11 @@ class Root(PyMenu):
4699
4694
  Argument OffsetMethodType.
4700
4695
  """
4701
4696
 
4697
+ class _FlipDirection(PyParameterCommandArgumentsSubItem):
4698
+ """
4699
+ Argument FlipDirection.
4700
+ """
4701
+
4702
4702
  class _FirstHeight(PyNumericalCommandArgumentsSubItem):
4703
4703
  """
4704
4704
  Argument FirstHeight.
@@ -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)
@@ -4738,20 +4738,20 @@ class Root(PyMenu):
4738
4738
  self.Radius2 = self._Radius2(self, "Radius2", service, rules, path)
4739
4739
  self.Y2 = self._Y2(self, "Y2", service, rules, path)
4740
4740
  self.Node3 = self._Node3(self, "Node3", service, rules, path)
4741
- self.X2 = self._X2(self, "X2", service, rules, path)
4742
- self.Node2 = self._Node2(self, "Node2", service, rules, path)
4743
4741
  self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
4742
+ self.Node2 = self._Node2(self, "Node2", service, rules, path)
4743
+ self.X2 = self._X2(self, "X2", service, rules, path)
4744
4744
  self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
4745
4745
  self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
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):
@@ -4804,9 +4804,9 @@ class Root(PyMenu):
4804
4804
  Argument Node3.
4805
4805
  """
4806
4806
 
4807
- class _X2(PyNumericalCommandArgumentsSubItem):
4807
+ class _Y_Offset(PyNumericalCommandArgumentsSubItem):
4808
4808
  """
4809
- Argument X2.
4809
+ Argument Y-Offset.
4810
4810
  """
4811
4811
 
4812
4812
  class _Node2(PyTextualCommandArgumentsSubItem):
@@ -4814,9 +4814,9 @@ class Root(PyMenu):
4814
4814
  Argument Node2.
4815
4815
  """
4816
4816
 
4817
- class _Y_Offset(PyNumericalCommandArgumentsSubItem):
4817
+ class _X2(PyNumericalCommandArgumentsSubItem):
4818
4818
  """
4819
- Argument Y-Offset.
4819
+ Argument X2.
4820
4820
  """
4821
4821
 
4822
4822
  class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
@@ -4873,12 +4873,12 @@ 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)
@@ -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):
@@ -5195,8 +5195,8 @@ class Root(PyMenu):
5195
5195
  self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
5196
5196
  self.X = self._X(self, "X", service, rules, path)
5197
5197
  self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
5198
- self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
5199
5198
  self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
5199
+ self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
5200
5200
  self.FirstHeight = self._FirstHeight(self, "FirstHeight", service, rules, path)
5201
5201
  self.BoundaryLayerHeight = self._BoundaryLayerHeight(self, "BoundaryLayerHeight", service, rules, path)
5202
5202
  self.CrossWakeGrowthFactor = self._CrossWakeGrowthFactor(self, "CrossWakeGrowthFactor", service, rules, path)
@@ -5276,14 +5276,14 @@ class Root(PyMenu):
5276
5276
  Argument LastRatioPercentage.
5277
5277
  """
5278
5278
 
5279
- class _FlipDirection(PyParameterCommandArgumentsSubItem):
5279
+ class _OffsetMethodType(PyTextualCommandArgumentsSubItem):
5280
5280
  """
5281
- Argument FlipDirection.
5281
+ Argument OffsetMethodType.
5282
5282
  """
5283
5283
 
5284
- class _OffsetMethodType(PyTextualCommandArgumentsSubItem):
5284
+ class _FlipDirection(PyParameterCommandArgumentsSubItem):
5285
5285
  """
5286
- Argument OffsetMethodType.
5286
+ Argument FlipDirection.
5287
5287
  """
5288
5288
 
5289
5289
  class _FirstHeight(PyNumericalCommandArgumentsSubItem):
@@ -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)
@@ -5326,19 +5326,19 @@ class Root(PyMenu):
5326
5326
  self.Y2 = self._Y2(self, "Y2", service, rules, path)
5327
5327
  self.Node3 = self._Node3(self, "Node3", service, rules, path)
5328
5328
  self.Node2 = self._Node2(self, "Node2", service, rules, path)
5329
- 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.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
5331
5331
  self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
5332
5332
  self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
5333
5333
 
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):
@@ -5396,14 +5396,14 @@ class Root(PyMenu):
5396
5396
  Argument Node2.
5397
5397
  """
5398
5398
 
5399
- class _Y_Offset(PyNumericalCommandArgumentsSubItem):
5399
+ class _X2(PyNumericalCommandArgumentsSubItem):
5400
5400
  """
5401
- Argument Y-Offset.
5401
+ Argument X2.
5402
5402
  """
5403
5403
 
5404
- class _X2(PyNumericalCommandArgumentsSubItem):
5404
+ class _Y_Offset(PyNumericalCommandArgumentsSubItem):
5405
5405
  """
5406
- Argument X2.
5406
+ Argument Y-Offset.
5407
5407
  """
5408
5408
 
5409
5409
  class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
@@ -5463,15 +5463,15 @@ class Root(PyMenu):
5463
5463
  self.CylinderX2 = self._CylinderX2(self, "CylinderX2", service, rules, path)
5464
5464
  self.BoxYLength = self._BoxYLength(self, "BoxYLength", service, rules, path)
5465
5465
  self.CylinderX1 = self._CylinderX1(self, "CylinderX1", service, rules, path)
5466
- self.BoxXLength = self._BoxXLength(self, "BoxXLength", service, rules, path)
5467
- self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
5468
5466
  self.BoxZLength = self._BoxZLength(self, "BoxZLength", service, rules, path)
5467
+ self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
5468
+ self.BoxXLength = self._BoxXLength(self, "BoxXLength", service, rules, path)
5469
5469
  self.BoxCenterY = self._BoxCenterY(self, "BoxCenterY", service, rules, path)
5470
5470
  self.CylinderZ1 = self._CylinderZ1(self, "CylinderZ1", service, rules, path)
5471
5471
  self.CylinderRadius1 = self._CylinderRadius1(self, "CylinderRadius1", service, rules, path)
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):
@@ -5494,9 +5494,9 @@ class Root(PyMenu):
5494
5494
  Argument CylinderX1.
5495
5495
  """
5496
5496
 
5497
- class _BoxXLength(PyNumericalCommandArgumentsSubItem):
5497
+ class _BoxZLength(PyNumericalCommandArgumentsSubItem):
5498
5498
  """
5499
- Argument BoxXLength.
5499
+ Argument BoxZLength.
5500
5500
  """
5501
5501
 
5502
5502
  class _CylinderY1(PyNumericalCommandArgumentsSubItem):
@@ -5504,9 +5504,9 @@ class Root(PyMenu):
5504
5504
  Argument CylinderY1.
5505
5505
  """
5506
5506
 
5507
- class _BoxZLength(PyNumericalCommandArgumentsSubItem):
5507
+ class _BoxXLength(PyNumericalCommandArgumentsSubItem):
5508
5508
  """
5509
- Argument BoxZLength.
5509
+ Argument BoxXLength.
5510
5510
  """
5511
5511
 
5512
5512
  class _BoxCenterY(PyNumericalCommandArgumentsSubItem):
@@ -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,8 +5774,8 @@ 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)
5778
+ self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
5779
5779
  self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
5780
5780
  self.FlowDirection = self._FlowDirection(self, "FlowDirection", service, rules, path)
5781
5781
  self.MptMethodType = self._MptMethodType(self, "MptMethodType", service, rules, path)
@@ -5783,8 +5783,8 @@ class Root(PyMenu):
5783
5783
  self.Rate = self._Rate(self, "Rate", service, rules, path)
5784
5784
  self.X = self._X(self, "X", service, rules, path)
5785
5785
  self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
5786
- self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
5787
5786
  self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
5787
+ self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
5788
5788
  self.FirstHeight = self._FirstHeight(self, "FirstHeight", service, rules, path)
5789
5789
  self.BoundaryLayerHeight = self._BoundaryLayerHeight(self, "BoundaryLayerHeight", service, rules, path)
5790
5790
  self.CrossWakeGrowthFactor = self._CrossWakeGrowthFactor(self, "CrossWakeGrowthFactor", service, rules, path)
@@ -5819,14 +5819,14 @@ 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
5832
  class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
@@ -5864,14 +5864,14 @@ class Root(PyMenu):
5864
5864
  Specify the offset height of the last layer as a percentage of the local base mesh size.
5865
5865
  """
5866
5866
 
5867
- class _OffsetMethodType(PyTextualCommandArgumentsSubItem):
5867
+ class _FlipDirection(PyParameterCommandArgumentsSubItem):
5868
5868
  """
5869
- Choose the method that will be used to create the boundary layer, or prism, controls.
5869
+ Argument FlipDirection.
5870
5870
  """
5871
5871
 
5872
- class _FlipDirection(PyParameterCommandArgumentsSubItem):
5872
+ class _OffsetMethodType(PyTextualCommandArgumentsSubItem):
5873
5873
  """
5874
- Argument FlipDirection.
5874
+ Choose the method that will be used to create the boundary layer, or prism, controls.
5875
5875
  """
5876
5876
 
5877
5877
  class _FirstHeight(PyNumericalCommandArgumentsSubItem):
@@ -5907,14 +5907,14 @@ class Root(PyMenu):
5907
5907
  self.X1 = self._X1(self, "X1", service, rules, path)
5908
5908
  self.Y1 = self._Y1(self, "Y1", service, rules, path)
5909
5909
  self.Z_Offset = self._Z_Offset(self, "Z-Offset", service, rules, path)
5910
- self.Z2 = self._Z2(self, "Z2", service, rules, path)
5911
- self.Node1 = self._Node1(self, "Node1", service, rules, path)
5912
5910
  self.Z1 = self._Z1(self, "Z1", service, rules, path)
5911
+ self.Node1 = self._Node1(self, "Node1", service, rules, path)
5912
+ self.Z2 = self._Z2(self, "Z2", service, rules, path)
5913
5913
  self.Radius2 = self._Radius2(self, "Radius2", service, rules, path)
5914
5914
  self.Y2 = self._Y2(self, "Y2", service, rules, path)
5915
5915
  self.Node3 = self._Node3(self, "Node3", service, rules, path)
5916
- self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
5917
5916
  self.X2 = self._X2(self, "X2", service, rules, path)
5917
+ self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
5918
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)
@@ -5949,9 +5949,9 @@ class Root(PyMenu):
5949
5949
  Argument Z-Offset.
5950
5950
  """
5951
5951
 
5952
- class _Z2(PyNumericalCommandArgumentsSubItem):
5952
+ class _Z1(PyNumericalCommandArgumentsSubItem):
5953
5953
  """
5954
- Argument Z2.
5954
+ Argument Z1.
5955
5955
  """
5956
5956
 
5957
5957
  class _Node1(PyTextualCommandArgumentsSubItem):
@@ -5959,9 +5959,9 @@ class Root(PyMenu):
5959
5959
  Argument Node1.
5960
5960
  """
5961
5961
 
5962
- class _Z1(PyNumericalCommandArgumentsSubItem):
5962
+ class _Z2(PyNumericalCommandArgumentsSubItem):
5963
5963
  """
5964
- Argument Z1.
5964
+ Argument Z2.
5965
5965
  """
5966
5966
 
5967
5967
  class _Radius2(PyNumericalCommandArgumentsSubItem):
@@ -5979,14 +5979,14 @@ class Root(PyMenu):
5979
5979
  Argument Node3.
5980
5980
  """
5981
5981
 
5982
- class _Y_Offset(PyNumericalCommandArgumentsSubItem):
5982
+ class _X2(PyNumericalCommandArgumentsSubItem):
5983
5983
  """
5984
- Argument Y-Offset.
5984
+ Argument X2.
5985
5985
  """
5986
5986
 
5987
- class _X2(PyNumericalCommandArgumentsSubItem):
5987
+ class _Y_Offset(PyNumericalCommandArgumentsSubItem):
5988
5988
  """
5989
- Argument X2.
5989
+ Argument Y-Offset.
5990
5990
  """
5991
5991
 
5992
5992
  class _Node2(PyTextualCommandArgumentsSubItem):
@@ -6048,12 +6048,12 @@ class Root(PyMenu):
6048
6048
  def __init__(self, parent, attr, service, rules, path):
6049
6049
  super().__init__(parent, attr, service, rules, path)
6050
6050
  self.CylinderZ2 = self._CylinderZ2(self, "CylinderZ2", service, rules, path)
6051
- self.BoxYLength = self._BoxYLength(self, "BoxYLength", service, rules, path)
6052
6051
  self.CylinderX2 = self._CylinderX2(self, "CylinderX2", service, rules, path)
6052
+ self.BoxYLength = self._BoxYLength(self, "BoxYLength", service, rules, path)
6053
6053
  self.CylinderX1 = self._CylinderX1(self, "CylinderX1", service, rules, path)
6054
- self.BoxZLength = self._BoxZLength(self, "BoxZLength", service, rules, path)
6055
- self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
6056
6054
  self.BoxXLength = self._BoxXLength(self, "BoxXLength", service, rules, path)
6055
+ self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
6056
+ self.BoxZLength = self._BoxZLength(self, "BoxZLength", service, rules, path)
6057
6057
  self.BoxCenterY = self._BoxCenterY(self, "BoxCenterY", service, rules, path)
6058
6058
  self.CylinderZ1 = self._CylinderZ1(self, "CylinderZ1", service, rules, path)
6059
6059
  self.CylinderRadius1 = self._CylinderRadius1(self, "CylinderRadius1", service, rules, path)
@@ -6067,14 +6067,14 @@ class Root(PyMenu):
6067
6067
  Argument CylinderZ2.
6068
6068
  """
6069
6069
 
6070
- class _BoxYLength(PyNumericalCommandArgumentsSubItem):
6070
+ class _CylinderX2(PyNumericalCommandArgumentsSubItem):
6071
6071
  """
6072
- Argument BoxYLength.
6072
+ Argument CylinderX2.
6073
6073
  """
6074
6074
 
6075
- class _CylinderX2(PyNumericalCommandArgumentsSubItem):
6075
+ class _BoxYLength(PyNumericalCommandArgumentsSubItem):
6076
6076
  """
6077
- Argument CylinderX2.
6077
+ Argument BoxYLength.
6078
6078
  """
6079
6079
 
6080
6080
  class _CylinderX1(PyNumericalCommandArgumentsSubItem):
@@ -6082,9 +6082,9 @@ class Root(PyMenu):
6082
6082
  Argument CylinderX1.
6083
6083
  """
6084
6084
 
6085
- class _BoxZLength(PyNumericalCommandArgumentsSubItem):
6085
+ class _BoxXLength(PyNumericalCommandArgumentsSubItem):
6086
6086
  """
6087
- Argument BoxZLength.
6087
+ Argument BoxXLength.
6088
6088
  """
6089
6089
 
6090
6090
  class _CylinderY1(PyNumericalCommandArgumentsSubItem):
@@ -6092,9 +6092,9 @@ class Root(PyMenu):
6092
6092
  Argument CylinderY1.
6093
6093
  """
6094
6094
 
6095
- class _BoxXLength(PyNumericalCommandArgumentsSubItem):
6095
+ class _BoxZLength(PyNumericalCommandArgumentsSubItem):
6096
6096
  """
6097
- Argument BoxXLength.
6097
+ Argument BoxZLength.
6098
6098
  """
6099
6099
 
6100
6100
  class _BoxCenterY(PyNumericalCommandArgumentsSubItem):
@@ -6370,7 +6370,7 @@ class Root(PyMenu):
6370
6370
  def __init__(self, parent, attr, service, rules, path):
6371
6371
  super().__init__(parent, attr, service, rules, path)
6372
6372
  self.SizeRelativeLength = self._SizeRelativeLength(self, "SizeRelativeLength", service, rules, path)
6373
- self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
6373
+ self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
6374
6374
  self.XminRatio = self._XminRatio(self, "XminRatio", service, rules, path)
6375
6375
  self.YminRatio = self._YminRatio(self, "YminRatio", service, rules, path)
6376
6376
  self.Zmin = self._Zmin(self, "Zmin", service, rules, path)
@@ -6381,16 +6381,16 @@ class Root(PyMenu):
6381
6381
  self.Xmin = self._Xmin(self, "Xmin", service, rules, path)
6382
6382
  self.YmaxRatio = self._YmaxRatio(self, "YmaxRatio", service, rules, path)
6383
6383
  self.ZmaxRatio = self._ZmaxRatio(self, "ZmaxRatio", service, rules, path)
6384
- self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
6384
+ self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
6385
6385
 
6386
6386
  class _SizeRelativeLength(PyTextualCommandArgumentsSubItem):
6387
6387
  """
6388
6388
  Determine if you would like to specify the bounding box as a ratio of the geometry length, or by specifying a specific location for the minimum and maximum coordinates.
6389
6389
  """
6390
6390
 
6391
- class _Xmax(PyNumericalCommandArgumentsSubItem):
6391
+ class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
6392
6392
  """
6393
- Extends the maximum size of the bounding box in the X direction by the specified value.
6393
+ Extends the maximum size of the bounding box in the X direction by the specified value. The value is the ratio relative to the geometry size in the X direction.
6394
6394
  """
6395
6395
 
6396
6396
  class _XminRatio(PyNumericalCommandArgumentsSubItem):
@@ -6443,9 +6443,9 @@ class Root(PyMenu):
6443
6443
  Extends the maximum size of the bounding box in the Z direction by the specified value. The value is the ratio relative to the geometry size in the Z direction.
6444
6444
  """
6445
6445
 
6446
- class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
6446
+ class _Xmax(PyNumericalCommandArgumentsSubItem):
6447
6447
  """
6448
- Extends the maximum size of the bounding box in the X direction by the specified value. The value is the ratio relative to the geometry size in the X direction.
6448
+ Extends the maximum size of the bounding box in the X direction by the specified value.
6449
6449
  """
6450
6450
 
6451
6451
  def create_instance(self) -> _CreateExternalFlowBoundariesCommandArguments:
@@ -6891,7 +6891,7 @@ class Root(PyMenu):
6891
6891
  def __init__(self, parent, attr, service, rules, path):
6892
6892
  super().__init__(parent, attr, service, rules, path)
6893
6893
  self.SizeRelativeLength = self._SizeRelativeLength(self, "SizeRelativeLength", service, rules, path)
6894
- self.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,18 +6981,18 @@ 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.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
6986
+ self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
6987
6987
  self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
6988
6988
  self.FlowDirection = self._FlowDirection(self, "FlowDirection", service, rules, path)
6989
6989
  self.MptMethodType = self._MptMethodType(self, "MptMethodType", service, rules, path)
6990
6990
  self.EdgeSelectionList = self._EdgeSelectionList(self, "EdgeSelectionList", service, rules, path)
6991
- self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
6992
- self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
6991
+ self.Rate = self._Rate(self, "Rate", service, rules, path)
6993
6992
  self.X = self._X(self, "X", service, rules, path)
6994
- self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
6993
+ self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
6995
6994
  self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
6995
+ self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
6996
6996
  self.FirstHeight = self._FirstHeight(self, "FirstHeight", service, rules, path)
6997
6997
  self.BoundaryLayerHeight = self._BoundaryLayerHeight(self, "BoundaryLayerHeight", service, rules, path)
6998
6998
  self.CrossWakeGrowthFactor = self._CrossWakeGrowthFactor(self, "CrossWakeGrowthFactor", service, rules, path)
@@ -7022,19 +7022,19 @@ 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
- class _Rate(PyNumericalCommandArgumentsSubItem):
7030
+ class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
7031
7031
  """
7032
- Argument Rate.
7032
+ Argument NumberOfLayers.
7033
7033
  """
7034
7034
 
7035
- class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
7035
+ class _AspectRatio(PyNumericalCommandArgumentsSubItem):
7036
7036
  """
7037
- Specify the number of boundary layers that are to be captured in the refinement region.
7037
+ Argument AspectRatio.
7038
7038
  """
7039
7039
 
7040
7040
  class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
@@ -7057,14 +7057,9 @@ class Root(PyMenu):
7057
7057
  Argument EdgeSelectionList.
7058
7058
  """
7059
7059
 
7060
- class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
7061
- """
7062
- Argument NumberOfLayers.
7063
- """
7064
-
7065
- class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
7060
+ class _Rate(PyNumericalCommandArgumentsSubItem):
7066
7061
  """
7067
- Argument LastRatioPercentage.
7062
+ Argument Rate.
7068
7063
  """
7069
7064
 
7070
7065
  class _X(PyNumericalCommandArgumentsSubItem):
@@ -7072,9 +7067,9 @@ class Root(PyMenu):
7072
7067
  Specify the X-coordinate for the initial position of the cylindrical refinement region.
7073
7068
  """
7074
7069
 
7075
- class _FlipDirection(PyParameterCommandArgumentsSubItem):
7070
+ class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
7076
7071
  """
7077
- Reverses the orientation of the refinement region.
7072
+ Argument LastRatioPercentage.
7078
7073
  """
7079
7074
 
7080
7075
  class _OffsetMethodType(PyTextualCommandArgumentsSubItem):
@@ -7082,6 +7077,11 @@ class Root(PyMenu):
7082
7077
  Argument OffsetMethodType.
7083
7078
  """
7084
7079
 
7080
+ class _FlipDirection(PyParameterCommandArgumentsSubItem):
7081
+ """
7082
+ Reverses the orientation of the refinement region.
7083
+ """
7084
+
7085
7085
  class _FirstHeight(PyNumericalCommandArgumentsSubItem):
7086
7086
  """
7087
7087
  Argument FirstHeight.
@@ -7109,8 +7109,8 @@ class Root(PyMenu):
7109
7109
 
7110
7110
  def __init__(self, parent, attr, service, rules, path):
7111
7111
  super().__init__(parent, attr, service, rules, path)
7112
- self.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)
@@ -7121,20 +7121,20 @@ class Root(PyMenu):
7121
7121
  self.Radius2 = self._Radius2(self, "Radius2", service, rules, path)
7122
7122
  self.Y2 = self._Y2(self, "Y2", service, rules, path)
7123
7123
  self.Node3 = self._Node3(self, "Node3", service, rules, path)
7124
- self.X2 = self._X2(self, "X2", service, rules, path)
7125
- self.Node2 = self._Node2(self, "Node2", service, rules, path)
7126
7124
  self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
7125
+ self.Node2 = self._Node2(self, "Node2", service, rules, path)
7126
+ self.X2 = self._X2(self, "X2", 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):
@@ -7187,9 +7187,9 @@ class Root(PyMenu):
7187
7187
  Argument Node3.
7188
7188
  """
7189
7189
 
7190
- class _X2(PyNumericalCommandArgumentsSubItem):
7190
+ class _Y_Offset(PyNumericalCommandArgumentsSubItem):
7191
7191
  """
7192
- Specify the X-coordinate of the second position of the cylinder.
7192
+ Specify the Y-coordinate for the offset of the initial position of the cylinder.
7193
7193
  """
7194
7194
 
7195
7195
  class _Node2(PyTextualCommandArgumentsSubItem):
@@ -7197,9 +7197,9 @@ class Root(PyMenu):
7197
7197
  Argument Node2.
7198
7198
  """
7199
7199
 
7200
- class _Y_Offset(PyNumericalCommandArgumentsSubItem):
7200
+ class _X2(PyNumericalCommandArgumentsSubItem):
7201
7201
  """
7202
- Specify the Y-coordinate for the offset of the initial position of the cylinder.
7202
+ Specify the X-coordinate of the second position of the cylinder.
7203
7203
  """
7204
7204
 
7205
7205
  class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
@@ -7256,8 +7256,8 @@ class Root(PyMenu):
7256
7256
  def __init__(self, parent, attr, service, rules, path):
7257
7257
  super().__init__(parent, attr, service, rules, path)
7258
7258
  self.CylinderZ2 = self._CylinderZ2(self, "CylinderZ2", service, rules, path)
7259
- self.BoxYLength = self._BoxYLength(self, "BoxYLength", service, rules, path)
7260
7259
  self.CylinderX2 = self._CylinderX2(self, "CylinderX2", service, rules, path)
7260
+ self.BoxYLength = self._BoxYLength(self, "BoxYLength", service, rules, path)
7261
7261
  self.CylinderX1 = self._CylinderX1(self, "CylinderX1", service, rules, path)
7262
7262
  self.BoxXLength = self._BoxXLength(self, "BoxXLength", service, rules, path)
7263
7263
  self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
@@ -7275,14 +7275,14 @@ class Root(PyMenu):
7275
7275
  Specify the Z-coordinate of the second position of the cylinder.
7276
7276
  """
7277
7277
 
7278
- class _BoxYLength(PyNumericalCommandArgumentsSubItem):
7278
+ class _CylinderX2(PyNumericalCommandArgumentsSubItem):
7279
7279
  """
7280
- Argument BoxYLength.
7280
+ Specify the X-coordinate of the second position of the cylinder.
7281
7281
  """
7282
7282
 
7283
- class _CylinderX2(PyNumericalCommandArgumentsSubItem):
7283
+ class _BoxYLength(PyNumericalCommandArgumentsSubItem):
7284
7284
  """
7285
- Specify the X-coordinate of the second position of the cylinder.
7285
+ Argument BoxYLength.
7286
7286
  """
7287
7287
 
7288
7288
  class _CylinderX1(PyNumericalCommandArgumentsSubItem):
@@ -7537,12 +7537,12 @@ class Root(PyMenu):
7537
7537
  def __init__(self, parent, attr, service, rules, path):
7538
7538
  super().__init__(parent, attr, service, rules, path)
7539
7539
  self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
7540
- self.Thickness = self._Thickness(self, "Thickness", service, rules, path)
7541
- self.SelectionType = self._SelectionType(self, "SelectionType", service, rules, path)
7542
- self.ZoneSelectionList = self._ZoneSelectionList(self, "ZoneSelectionList", service, rules, path)
7543
7540
  self.LabelSelectionList = self._LabelSelectionList(self, "LabelSelectionList", service, rules, path)
7544
- self.MeshSize = self._MeshSize(self, "MeshSize", service, rules, path)
7541
+ self.ZoneSelectionList = self._ZoneSelectionList(self, "ZoneSelectionList", service, rules, path)
7542
+ self.SelectionType = self._SelectionType(self, "SelectionType", service, rules, path)
7543
+ self.Thickness = self._Thickness(self, "Thickness", service, rules, path)
7545
7544
  self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
7545
+ self.MeshSize = self._MeshSize(self, "MeshSize", service, rules, path)
7546
7546
  self.BufferSize = self._BufferSize(self, "BufferSize", service, rules, path)
7547
7547
  self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
7548
7548
  self.NonRectangularBufferSize = self._NonRectangularBufferSize(self, "NonRectangularBufferSize", service, rules, path)
@@ -7553,14 +7553,9 @@ class Root(PyMenu):
7553
7553
  Specify the number of layers, or divisions, along the thickness of the porous region.
7554
7554
  """
7555
7555
 
7556
- class _Thickness(PyNumericalCommandArgumentsSubItem):
7557
- """
7558
- Specify the thickness (or the total height) of the porous region.
7559
- """
7560
-
7561
- class _SelectionType(PyTextualCommandArgumentsSubItem):
7556
+ class _LabelSelectionList(PyTextualCommandArgumentsSubItem):
7562
7557
  """
7563
- Choose how you want to make your selection (by object, zone, or label).
7558
+ Select a single label that will correspond to the porous region. Use the Filter Text field to provide text and/or regular expressions in filtering the list. The matching list item(s) are automatically displayed in the list. Use ^, |, and & in your expression to indicate boolean operations for NOT, OR, and AND, respectively. More...
7564
7559
  """
7565
7560
 
7566
7561
  class _ZoneSelectionList(PyTextualCommandArgumentsSubItem):
@@ -7568,14 +7563,14 @@ class Root(PyMenu):
7568
7563
  Choose a single face zone from the list below. Use the Filter Text field to provide text and/or regular expressions in filtering the list. The matching list item(s) are automatically displayed in the list. Use ^, |, and & in your expression to indicate boolean operations for NOT, OR, and AND, respectively. More...
7569
7564
  """
7570
7565
 
7571
- class _LabelSelectionList(PyTextualCommandArgumentsSubItem):
7566
+ class _SelectionType(PyTextualCommandArgumentsSubItem):
7572
7567
  """
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...
7568
+ Choose how you want to make your selection (by object, zone, or label).
7574
7569
  """
7575
7570
 
7576
- class _MeshSize(PyNumericalCommandArgumentsSubItem):
7571
+ class _Thickness(PyNumericalCommandArgumentsSubItem):
7577
7572
  """
7578
- Specify the cell size for the porous region mesh.
7573
+ Specify the thickness (or the total height) of the porous region.
7579
7574
  """
7580
7575
 
7581
7576
  class _FeatureAngle(PyNumericalCommandArgumentsSubItem):
@@ -7583,6 +7578,11 @@ class Root(PyMenu):
7583
7578
  Specify the angle at which features will be extracted for the porous region.
7584
7579
  """
7585
7580
 
7581
+ class _MeshSize(PyNumericalCommandArgumentsSubItem):
7582
+ """
7583
+ Specify the cell size for the porous region mesh.
7584
+ """
7585
+
7586
7586
  class _BufferSize(PyNumericalCommandArgumentsSubItem):
7587
7587
  """
7588
7588
  Specify a value for the buffer size. The buffer is created as an extra layer. The thickness is equivalent to the product of the buffer size ratio and the core thickness. The core thickness is the distance between P1 and P4.
@@ -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)
7915
+ self.CloseLeakges = self._CloseLeakges(self, "CloseLeakges", service, rules, path)
7917
7916
  self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
7917
+ self.ZeroThickness = self._ZeroThickness(self, "ZeroThickness", service, rules, path)
7918
7918
  self.ExtractEdgeFeatures = self._ExtractEdgeFeatures(self, "ExtractEdgeFeatures", service, rules, path)
7919
7919
  self.MovingObjects = self._MovingObjects(self, "MovingObjects", service, rules, path)
7920
7920
  self.EnablePrimeWrapper = self._EnablePrimeWrapper(self, "EnablePrimeWrapper", service, rules, path)
@@ -7926,9 +7926,9 @@ 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
7934
  class _CloseLeakges(PyTextualCommandArgumentsSubItem):
@@ -7936,14 +7936,14 @@ class Root(PyMenu):
7936
7936
  Specify whether or not your geometry contains any problems (such as gaps or overlapping/intersecting surfaces) that may create leakages that need to be closed. If so, then a Define Leakage Threshold task is added to the workflow.
7937
7937
  """
7938
7938
 
7939
- class _CloseLeakages(PyTextualCommandArgumentsSubItem):
7939
+ class _AdvancedOptions(PyParameterCommandArgumentsSubItem):
7940
7940
  """
7941
- Argument CloseLeakages.
7941
+ Display advanced options that you may want to apply to the workflow.
7942
7942
  """
7943
7943
 
7944
- class _AdvancedOptions(PyParameterCommandArgumentsSubItem):
7944
+ class _ZeroThickness(PyTextualCommandArgumentsSubItem):
7945
7945
  """
7946
- Display advanced options that you may want to apply to the workflow.
7946
+ Specify whether or not you will need to account for any portions of your geometry with zero-thickness, and apply thickness to them for a more refined surface mesh. If so, then an Add Thickness task will be added to the workflow.
7947
7947
  """
7948
7948
 
7949
7949
  class _ExtractEdgeFeatures(PyTextualCommandArgumentsSubItem):
@@ -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)
8390
+ self.RemeshGrowthRate = self._RemeshGrowthRate(self, "RemeshGrowthRate", service, rules, path)
8391
+ self.GapFactor = self._GapFactor(self, "GapFactor", service, rules, path)
8392
+ self.ShowPrism2DPreferences = self._ShowPrism2DPreferences(self, "ShowPrism2DPreferences", service, rules, path)
8396
8393
  self.MaxFaceSkew = self._MaxFaceSkew(self, "MaxFaceSkew", service, rules, path)
8397
8394
  self.RefineStretchedQuads = self._RefineStretchedQuads(self, "RefineStretchedQuads", service, rules, path)
8398
- self.ShowPrism2DPreferences = self._ShowPrism2DPreferences(self, "ShowPrism2DPreferences", service, rules, path)
8399
- self.GapFactor = self._GapFactor(self, "GapFactor", service, rules, path)
8400
8395
  self.nOrthogonalLayers = self._nOrthogonalLayers(self, "nOrthogonalLayers", service, rules, path)
8401
8396
 
8402
8397
  class _SplitQuads(PyTextualCommandArgumentsSubItem):
@@ -8414,24 +8409,19 @@ class Root(PyMenu):
8414
8409
  Argument MinAspectRatio.
8415
8410
  """
8416
8411
 
8417
- class _RemeshGrowthRate(PyNumericalCommandArgumentsSubItem):
8418
- """
8419
- Argument RemeshGrowthRate.
8420
- """
8421
-
8422
8412
  class _LocalRemesh(PyTextualCommandArgumentsSubItem):
8423
8413
  """
8424
8414
  Argument LocalRemesh.
8425
8415
  """
8426
8416
 
8427
- class _MaxFaceSkew(PyNumericalCommandArgumentsSubItem):
8417
+ class _RemeshGrowthRate(PyNumericalCommandArgumentsSubItem):
8428
8418
  """
8429
- Argument MaxFaceSkew.
8419
+ Argument RemeshGrowthRate.
8430
8420
  """
8431
8421
 
8432
- class _RefineStretchedQuads(PyTextualCommandArgumentsSubItem):
8422
+ class _GapFactor(PyNumericalCommandArgumentsSubItem):
8433
8423
  """
8434
- Argument RefineStretchedQuads.
8424
+ Argument GapFactor.
8435
8425
  """
8436
8426
 
8437
8427
  class _ShowPrism2DPreferences(PyParameterCommandArgumentsSubItem):
@@ -8439,9 +8429,14 @@ class Root(PyMenu):
8439
8429
  Argument ShowPrism2DPreferences.
8440
8430
  """
8441
8431
 
8442
- class _GapFactor(PyNumericalCommandArgumentsSubItem):
8432
+ class _MaxFaceSkew(PyNumericalCommandArgumentsSubItem):
8443
8433
  """
8444
- Argument GapFactor.
8434
+ Argument MaxFaceSkew.
8435
+ """
8436
+
8437
+ class _RefineStretchedQuads(PyTextualCommandArgumentsSubItem):
8438
+ """
8439
+ Argument RefineStretchedQuads.
8445
8440
  """
8446
8441
 
8447
8442
  class _nOrthogonalLayers(PyNumericalCommandArgumentsSubItem):
@@ -8456,18 +8451,18 @@ class Root(PyMenu):
8456
8451
 
8457
8452
  def __init__(self, parent, attr, service, rules, path):
8458
8453
  super().__init__(parent, attr, service, rules, path)
8459
- self.MergeFaceZonesBasedOnLabels = self._MergeFaceZonesBasedOnLabels(self, "MergeFaceZonesBasedOnLabels", service, rules, path)
8460
8454
  self.MergeEdgeZonesBasedOnLabels = self._MergeEdgeZonesBasedOnLabels(self, "MergeEdgeZonesBasedOnLabels", service, rules, path)
8455
+ self.MergeFaceZonesBasedOnLabels = self._MergeFaceZonesBasedOnLabels(self, "MergeFaceZonesBasedOnLabels", service, rules, path)
8461
8456
  self.ShowAdvancedOptions = self._ShowAdvancedOptions(self, "ShowAdvancedOptions", service, rules, path)
8462
8457
 
8463
- class _MergeFaceZonesBasedOnLabels(PyTextualCommandArgumentsSubItem):
8458
+ class _MergeEdgeZonesBasedOnLabels(PyTextualCommandArgumentsSubItem):
8464
8459
  """
8465
- Argument MergeFaceZonesBasedOnLabels.
8460
+ Argument MergeEdgeZonesBasedOnLabels.
8466
8461
  """
8467
8462
 
8468
- class _MergeEdgeZonesBasedOnLabels(PyTextualCommandArgumentsSubItem):
8463
+ class _MergeFaceZonesBasedOnLabels(PyTextualCommandArgumentsSubItem):
8469
8464
  """
8470
- Argument MergeEdgeZonesBasedOnLabels.
8465
+ Argument MergeFaceZonesBasedOnLabels.
8471
8466
  """
8472
8467
 
8473
8468
  class _ShowAdvancedOptions(PyParameterCommandArgumentsSubItem):
@@ -8780,8 +8775,8 @@ class Root(PyMenu):
8780
8775
  self.SaveSizeFieldFile = self._SaveSizeFieldFile(self, "SaveSizeFieldFile", service, rules, path)
8781
8776
  self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
8782
8777
  self.ScopeProximityTo = self._ScopeProximityTo(self, "ScopeProximityTo", service, rules, path)
8783
- self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
8784
8778
  self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
8779
+ self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
8785
8780
  self.SaveSizeField = self._SaveSizeField(self, "SaveSizeField", service, rules, path)
8786
8781
  self.UseSizeFiles = self._UseSizeFiles(self, "UseSizeFiles", service, rules, path)
8787
8782
  self.AutoCreateScopedSizing = self._AutoCreateScopedSizing(self, "AutoCreateScopedSizing", service, rules, path)
@@ -8811,14 +8806,14 @@ class Root(PyMenu):
8811
8806
  Argument ScopeProximityTo.
8812
8807
  """
8813
8808
 
8814
- class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
8809
+ class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
8815
8810
  """
8816
- Argument CurvatureNormalAngle.
8811
+ Argument PreviewSizefield.
8817
8812
  """
8818
8813
 
8819
- class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
8814
+ class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
8820
8815
  """
8821
- Argument PreviewSizefield.
8816
+ Argument CurvatureNormalAngle.
8822
8817
  """
8823
8818
 
8824
8819
  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)
9316
9307
  self.SMSeparationAngle = self._SMSeparationAngle(self, "SMSeparationAngle", service, rules, path)
9308
+ self.AutoMerge = self._AutoMerge(self, "AutoMerge", service, rules, path)
9309
+ self.ShowSurfaceMeshPreferences = self._ShowSurfaceMeshPreferences(self, "ShowSurfaceMeshPreferences", 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)
9318
9313
  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)
9314
+ self.ParallelRegionCompute = self._ParallelRegionCompute(self, "ParallelRegionCompute", 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,29 +9325,29 @@ 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
- class _ShowSurfaceMeshPreferences(PyParameterCommandArgumentsSubItem):
9338
+ class _SMSeparationAngle(PyNumericalCommandArgumentsSubItem):
9343
9339
  """
9344
- Display advanced options that you may want to apply to the task.
9340
+ Specify a desired angle for determining separation. Assigning a smaller separation angle will produce more zones.
9345
9341
  """
9346
9342
 
9347
- class _FoldFaceLimit(PyNumericalCommandArgumentsSubItem):
9343
+ class _AutoMerge(PyParameterCommandArgumentsSubItem):
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
+ Argument AutoMerge.
9350
9346
  """
9351
9347
 
9352
- class _SMQualityImprove(PyTextualCommandArgumentsSubItem):
9348
+ class _ShowSurfaceMeshPreferences(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
+ Display advanced options that you may want to apply to the task.
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):
@@ -9374,9 +9370,14 @@ class Root(PyMenu):
9374
9370
  Specify the width of the step that you wish to remove.
9375
9371
  """
9376
9372
 
9377
- class _SMQualityMaxAngle(PyNumericalCommandArgumentsSubItem):
9373
+ class _ParallelRegionCompute(PyTextualCommandArgumentsSubItem):
9378
9374
  """
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.
9375
+ Argument ParallelRegionCompute.
9376
+ """
9377
+
9378
+ class _VolumeMeshMaxSize(PyNumericalCommandArgumentsSubItem):
9379
+ """
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.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
9497
+ self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
9498
9498
  self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
9499
+ self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", 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.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
9501
9502
 
9502
9503
  class _SavePMDBIntermediateFile(PyParameterCommandArgumentsSubItem):
9503
9504
  """
@@ -9529,19 +9530,19 @@ 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
- class _ImportNamedSelections(PyParameterCommandArgumentsSubItem):
9538
+ class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
9538
9539
  """
9539
- Argument ImportNamedSelections.
9540
+ Argument ExtractFeatures.
9540
9541
  """
9541
9542
 
9542
- class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
9543
+ class _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
9543
9544
  """
9544
- Argument ExtractFeatures.
9545
+ Argument UsePartOrBodyAsSuffix.
9545
9546
  """
9546
9547
 
9547
9548
  class _ImportPartNames(PyParameterCommandArgumentsSubItem):
@@ -9549,9 +9550,9 @@ class Root(PyMenu):
9549
9550
  Argument ImportPartNames.
9550
9551
  """
9551
9552
 
9552
- class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
9553
+ class _ImportNamedSelections(PyParameterCommandArgumentsSubItem):
9553
9554
  """
9554
- Argument ImportCurvatureDataFromCAD.
9555
+ Argument ImportNamedSelections.
9555
9556
  """
9556
9557
 
9557
9558
  class _ShareTopologyPreferences(PySingletonCommandArgumentsSubItem):
@@ -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):
@@ -10114,35 +10115,35 @@ class Root(PyMenu):
10114
10115
 
10115
10116
  def __init__(self, parent, attr, service, rules, path):
10116
10117
  super().__init__(parent, attr, service, rules, path)
10117
- 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)
10118
+ self.UseSizeFieldInSolids = self._UseSizeFieldInSolids(self, "UseSizeFieldInSolids", 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.ShowVolumeMeshPreferences = self._ShowVolumeMeshPreferences(self, "ShowVolumeMeshPreferences", service, rules, path)
10124
+ self.UseSizeField = self._UseSizeField(self, "UseSizeField", service, rules, path)
10125
+ self.PolyInSolids = self._PolyInSolids(self, "PolyInSolids", 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)
10133
+ self.ShowVolumeMeshPreferences = self._ShowVolumeMeshPreferences(self, "ShowVolumeMeshPreferences", service, rules, path)
10132
10134
  self.MinEdgeLength = self._MinEdgeLength(self, "MinEdgeLength", service, rules, path)
10133
- self.PolyInSolids = self._PolyInSolids(self, "PolyInSolids", 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.MinFaceArea = self._MinFaceArea(self, "MinFaceArea", service, rules, path)
10136
10137
  self.QualityWarningLimit = self._QualityWarningLimit(self, "QualityWarningLimit", service, rules, path)
10137
10138
 
10138
- class _UseSizeField(PyTextualCommandArgumentsSubItem):
10139
+ class _UseSizeFieldInSolids(PyTextualCommandArgumentsSubItem):
10139
10140
  """
10140
- 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
+ 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.
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,19 +10161,19 @@ 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 _UseSizeField(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
+ Specify whether or not to use size fields as part of generating the volume mesh. By default, this is set to yes when a BOI or body sizing has been defined in the Add Local Sizing task, however, for large cases, it can be turned off for the hexcore and poly-hexcore volume fill methods.
10171
10172
  """
10172
10173
 
10173
- class _ShowVolumeMeshPreferences(PyParameterCommandArgumentsSubItem):
10174
+ class _PolyInSolids(PyTextualCommandArgumentsSubItem):
10174
10175
  """
10175
- Display advanced options that you may want to apply to the task.
10176
+ Indicate whether or not to fill only polyhedra cells in all solid regions during volume meshing using the poly-hexcore volume fill method. The default value is no. Setting this to yes may improve meshing efficiency.
10176
10177
  """
10177
10178
 
10178
10179
  class _TetInSolids(PyTextualCommandArgumentsSubItem):
@@ -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 _ShowVolumeMeshPreferences(PyParameterCommandArgumentsSubItem):
10214
10215
  """
10215
- Argument MinEdgeLength.
10216
+ Display advanced options that you may want to apply to the task.
10216
10217
  """
10217
10218
 
10218
- class _PolyInSolids(PyTextualCommandArgumentsSubItem):
10219
+ class _MinEdgeLength(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 MinEdgeLength.
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 _MinFaceArea(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 MinFaceArea.
10231
10232
  """
10232
10233
 
10233
10234
  class _QualityWarningLimit(PyNumericalCommandArgumentsSubItem):
@@ -10251,8 +10252,8 @@ class Root(PyMenu):
10251
10252
  self.MergeBoundaryLayers = self._MergeBoundaryLayers(self, "MergeBoundaryLayers", service, rules, path)
10252
10253
  self.NormalSmoothRelaxationFactor = self._NormalSmoothRelaxationFactor(self, "NormalSmoothRelaxationFactor", service, rules, path)
10253
10254
  self.ShowPrismPreferences = self._ShowPrismPreferences(self, "ShowPrismPreferences", service, rules, path)
10254
- self.StairstepExposedQuads = self._StairstepExposedQuads(self, "StairstepExposedQuads", service, rules, path)
10255
10255
  self.PrismMinAspectRatio = self._PrismMinAspectRatio(self, "PrismMinAspectRatio", service, rules, path)
10256
+ self.StairstepExposedQuads = self._StairstepExposedQuads(self, "StairstepExposedQuads", service, rules, path)
10256
10257
  self.PrismAdjacentAngle = self._PrismAdjacentAngle(self, "PrismAdjacentAngle", service, rules, path)
10257
10258
 
10258
10259
  class _PrismKeepFirstLayer(PyTextualCommandArgumentsSubItem):
@@ -10300,14 +10301,14 @@ class Root(PyMenu):
10300
10301
  Display global settings for your boundary layers. Note that these settings are not applied for Multizone boundary layers
10301
10302
  """
10302
10303
 
10303
- class _StairstepExposedQuads(PyTextualCommandArgumentsSubItem):
10304
+ class _PrismMinAspectRatio(PyNumericalCommandArgumentsSubItem):
10304
10305
  """
10305
- This option can be used when generating a tetrahedral mesh with prism cells and is set to No by default. Selecting Yes for this option will enable stair-stepping for exposed quadrilateral faces (exposed quads) on prism cells. Stair-stepping will prevent pyramids from being created on these exposed quads, which generally would lead to poor quality in the exposed quad location.
10306
+ Controls the minimum aspect ratio for cells at the boundary of the thin volume mesh regions. By default, this option is set to 0.3, other than for Stacked Plates, where it is set to 0.1. For flat parallel plates (not including stacked plates), it is recommended to use a value of 0.1 to produce a high quality thin volume mesh.
10306
10307
  """
10307
10308
 
10308
- class _PrismMinAspectRatio(PyNumericalCommandArgumentsSubItem):
10309
+ class _StairstepExposedQuads(PyTextualCommandArgumentsSubItem):
10309
10310
  """
10310
- 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.
10311
+ This option can be used when generating a tetrahedral mesh with prism cells and is set to No by default. Selecting Yes for this option will enable stair-stepping for exposed quadrilateral faces (exposed quads) on prism cells. Stair-stepping will prevent pyramids from being created on these exposed quads, which generally would lead to poor quality in the exposed quad location.
10311
10312
  """
10312
10313
 
10313
10314
  class _PrismAdjacentAngle(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.AutoOrderControls = self._AutoOrderControls(self, "AutoOrderControls", service, rules, path)
10327
10328
  self.StairStep = self._StairStep(self, "StairStep", service, rules, path)
10328
10329
  self.MinAspectRatio = self._MinAspectRatio(self, "MinAspectRatio", 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 _AutoOrderControls(PyTextualCommandArgumentsSubItem):
10336
10337
  """
10337
- Display global settings for thin volume meshing.
10338
+ When set to yes, will automatically swap source and target faces in order to increase the success rate of the thin volume mesh generation. This option is set to yes by default for conventional thin volume meshing and is set to no when Stacked Plates is enabled.
10338
10339
  """
10339
10340
 
10340
10341
  class _StairStep(PyTextualCommandArgumentsSubItem):
@@ -11005,32 +11006,32 @@ 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)
11020
- self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
11021
11021
  self.X2 = self._X2(self, "X2", service, rules, path)
11022
11022
  self.Node2 = self._Node2(self, "Node2", service, rules, path)
11023
+ self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
11023
11024
  self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
11024
11025
  self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
11025
11026
 
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):
@@ -11083,11 +11084,6 @@ class Root(PyMenu):
11083
11084
  Argument Node3.
11084
11085
  """
11085
11086
 
11086
- class _Y_Offset(PyNumericalCommandArgumentsSubItem):
11087
- """
11088
- Argument Y-Offset.
11089
- """
11090
-
11091
11087
  class _X2(PyNumericalCommandArgumentsSubItem):
11092
11088
  """
11093
11089
  Argument X2.
@@ -11098,6 +11094,11 @@ class Root(PyMenu):
11098
11094
  Argument Node2.
11099
11095
  """
11100
11096
 
11097
+ class _Y_Offset(PyNumericalCommandArgumentsSubItem):
11098
+ """
11099
+ Argument Y-Offset.
11100
+ """
11101
+
11101
11102
  class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
11102
11103
  """
11103
11104
  Argument HeightFrontInc.
@@ -11121,7 +11122,7 @@ class Root(PyMenu):
11121
11122
  def __init__(self, parent, attr, service, rules, path):
11122
11123
  super().__init__(parent, attr, service, rules, path)
11123
11124
  self.SizeRelativeLength = self._SizeRelativeLength(self, "SizeRelativeLength", service, rules, path)
11124
- self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
11125
+ self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
11125
11126
  self.XminRatio = self._XminRatio(self, "XminRatio", service, rules, path)
11126
11127
  self.YminRatio = self._YminRatio(self, "YminRatio", service, rules, path)
11127
11128
  self.Zmin = self._Zmin(self, "Zmin", service, rules, path)
@@ -11132,16 +11133,16 @@ class Root(PyMenu):
11132
11133
  self.Xmin = self._Xmin(self, "Xmin", service, rules, path)
11133
11134
  self.YmaxRatio = self._YmaxRatio(self, "YmaxRatio", service, rules, path)
11134
11135
  self.ZmaxRatio = self._ZmaxRatio(self, "ZmaxRatio", service, rules, path)
11135
- self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
11136
+ self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
11136
11137
 
11137
11138
  class _SizeRelativeLength(PyTextualCommandArgumentsSubItem):
11138
11139
  """
11139
11140
  Determine if you would like to specify the bounding box for the construction surface as a ratio of the geometry length, or by specifying a specific location for the minimum and maximum coordinates.
11140
11141
  """
11141
11142
 
11142
- class _Xmax(PyNumericalCommandArgumentsSubItem):
11143
+ class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
11143
11144
  """
11144
- Extends the maximum size of the bounding box in the X direction by the specified value.
11145
+ 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.
11145
11146
  """
11146
11147
 
11147
11148
  class _XminRatio(PyNumericalCommandArgumentsSubItem):
@@ -11194,9 +11195,9 @@ class Root(PyMenu):
11194
11195
  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.
11195
11196
  """
11196
11197
 
11197
- class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
11198
+ class _Xmax(PyNumericalCommandArgumentsSubItem):
11198
11199
  """
11199
- 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.
11200
+ Extends the maximum size of the bounding box in the X direction by the specified value.
11200
11201
  """
11201
11202
 
11202
11203
  def create_instance(self) -> _IdentifyConstructionSurfacesCommandArguments:
@@ -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.EdgeLabel = self._EdgeLabel(self, "EdgeLabel", 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.MergeNodes = self._MergeNodes(self, "MergeNodes", service, rules, path)
11783
11785
  self.AutomaticObjectCreation = self._AutomaticObjectCreation(self, "AutomaticObjectCreation", service, rules, path)
11784
- self.ShowImportCadPreferences = self._ShowImportCadPreferences(self, "ShowImportCadPreferences", service, rules, path)
11786
+ self.MaxFacetLengthRatio = self._MaxFacetLengthRatio(self, "MaxFacetLengthRatio", service, rules, path)
11785
11787
  self.MaxFacetLength = self._MaxFacetLength(self, "MaxFacetLength", service, rules, path)
11788
+ self.ShowImportCadPreferences = self._ShowImportCadPreferences(self, "ShowImportCadPreferences", service, rules, path)
11786
11789
  self.ExtractAngle = self._ExtractAngle(self, "ExtractAngle", service, rules, path)
11787
11790
  self.CISeparationAngle = self._CISeparationAngle(self, "CISeparationAngle", service, rules, path)
11788
- self.EdgeLabel = self._EdgeLabel(self, "EdgeLabel", service, rules, path)
11791
+ self.CITolerence = self._CITolerence(self, "CITolerence", service, rules, path)
11789
11792
 
11790
- class _CITolerence(PyNumericalCommandArgumentsSubItem):
11793
+ class _EdgeLabel(PyTextualCommandArgumentsSubItem):
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
+ Specify whether or not the imported CAD geometry already includes specific edges with assigned names (named selections). These named edges can be available later in the workflow when you are adding local size controls.
11793
11796
  """
11794
11797
 
11795
- 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,19 @@ class Root(PyMenu):
11812
11815
  Enable this option to be able to set the Tolerance and the Max Facet Length custom faceting options for the imported geometry.
11813
11816
  """
11814
11817
 
11818
+ class _MergeNodes(PyTextualCommandArgumentsSubItem):
11819
+ """
11820
+ Argument MergeNodes.
11821
+ """
11822
+
11815
11823
  class _AutomaticObjectCreation(PyTextualCommandArgumentsSubItem):
11816
11824
  """
11817
11825
  Determine whether or not mesh objects and labels are automatically created upon import, potentially and dramatically increasing the mesh import speed for very large cases. By default, this is set to yes however, if it is set to no, then no labels are created and a single mesh object is created employing all zones.
11818
11826
  """
11819
11827
 
11820
- class _ShowImportCadPreferences(PyParameterCommandArgumentsSubItem):
11828
+ class _MaxFacetLengthRatio(PyNumericalCommandArgumentsSubItem):
11821
11829
  """
11822
- Display advanced options that you may want to apply to the task.
11830
+ Argument MaxFacetLengthRatio.
11823
11831
  """
11824
11832
 
11825
11833
  class _MaxFacetLength(PyNumericalCommandArgumentsSubItem):
@@ -11827,6 +11835,11 @@ class Root(PyMenu):
11827
11835
  Enables you to specify a maximum facet size for the imported model to avoid very large facets during the file import. Depending on the CAD geometry, this may yield more accuracy.
11828
11836
  """
11829
11837
 
11838
+ class _ShowImportCadPreferences(PyParameterCommandArgumentsSubItem):
11839
+ """
11840
+ Display advanced options that you may want to apply to the task.
11841
+ """
11842
+
11830
11843
  class _ExtractAngle(PyNumericalCommandArgumentsSubItem):
11831
11844
  """
11832
11845
  Argument ExtractAngle.
@@ -11837,9 +11850,9 @@ class Root(PyMenu):
11837
11850
  Specify the angle at which features will be extracted from the CAD model on import. Assigning a smaller separation angle will produce more zones.
11838
11851
  """
11839
11852
 
11840
- class _EdgeLabel(PyTextualCommandArgumentsSubItem):
11853
+ class _CITolerence(PyNumericalCommandArgumentsSubItem):
11841
11854
  """
11842
- Specify whether or not the imported CAD geometry already includes specific edges with assigned names (named selections). These named edges can be available later in the workflow when you are adding local size controls.
11855
+ Specify the level of facet refinement during import. A value approximately 1/10 of the intended minimum size is recommended. Using a value of 0 results in the coarsest possible faceting.
11843
11856
  """
11844
11857
 
11845
11858
  class _FileName(PyTextualCommandArgumentsSubItem):
@@ -11891,10 +11904,10 @@ class Root(PyMenu):
11891
11904
  self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
11892
11905
  self.OneZonePer = self._OneZonePer(self, "OneZonePer", service, rules, path)
11893
11906
  self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
11894
- self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
11907
+ self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
11895
11908
  self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
11896
11909
  self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
11897
- self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
11910
+ self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
11898
11911
 
11899
11912
  class _SavePMDBIntermediateFile(PyParameterCommandArgumentsSubItem):
11900
11913
  """
@@ -11931,9 +11944,9 @@ class Root(PyMenu):
11931
11944
  Argument ImportCurvatureDataFromCAD.
11932
11945
  """
11933
11946
 
11934
- class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
11947
+ class _ImportNamedSelections(PyParameterCommandArgumentsSubItem):
11935
11948
  """
11936
- Argument ExtractFeatures.
11949
+ Argument ImportNamedSelections.
11937
11950
  """
11938
11951
 
11939
11952
  class _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
@@ -11946,9 +11959,9 @@ class Root(PyMenu):
11946
11959
  Argument ImportPartNames.
11947
11960
  """
11948
11961
 
11949
- class _ImportNamedSelections(PyParameterCommandArgumentsSubItem):
11962
+ class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
11950
11963
  """
11951
- Argument ImportNamedSelections.
11964
+ Argument ExtractFeatures.
11952
11965
  """
11953
11966
 
11954
11967
  def create_instance(self) -> _ImportGeometryCommandArguments:
@@ -12013,10 +12026,10 @@ class Root(PyMenu):
12013
12026
  self.SIQualityIterations = self._SIQualityIterations(self, "SIQualityIterations", service, rules, path)
12014
12027
  self.SIQualityMaxAngle = self._SIQualityMaxAngle(self, "SIQualityMaxAngle", service, rules, path)
12015
12028
  self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
12016
- self.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:
@@ -12274,8 +12287,8 @@ class Root(PyMenu):
12274
12287
  def __init__(self, parent, attr, service, rules, path):
12275
12288
  super().__init__(parent, attr, service, rules, path)
12276
12289
  self.FirstNumber = self._FirstNumber(self, "FirstNumber", service, rules, path)
12277
- self.CustomPatternString = self._CustomPatternString(self, "CustomPatternString", service, rules, path)
12278
12290
  self.NbCellsPerUnit = self._NbCellsPerUnit(self, "NbCellsPerUnit", service, rules, path)
12291
+ self.CustomPatternString = self._CustomPatternString(self, "CustomPatternString", service, rules, path)
12279
12292
  self.InvokeBatteryModelingOptions = self._InvokeBatteryModelingOptions(self, "InvokeBatteryModelingOptions", service, rules, path)
12280
12293
  self.UseCustomPattern = self._UseCustomPattern(self, "UseCustomPattern", service, rules, path)
12281
12294
 
@@ -12284,14 +12297,14 @@ class Root(PyMenu):
12284
12297
  Specify the numerical value that will be appended to the name of the first unit associated with the meshing pattern object. This value also dictates the labeling for mesh objects associated with this mesh pattern. More...
12285
12298
  """
12286
12299
 
12287
- class _CustomPatternString(PyTextualCommandArgumentsSubItem):
12300
+ class _NbCellsPerUnit(PyNumericalCommandArgumentsSubItem):
12288
12301
  """
12289
- Argument CustomPatternString.
12302
+ Specify the numerical value that will be appended to the name of the first unit associated with the meshing pattern object. This value also dictates the labeling for mesh objects associated with this mesh pattern. More...
12290
12303
  """
12291
12304
 
12292
- class _NbCellsPerUnit(PyNumericalCommandArgumentsSubItem):
12305
+ class _CustomPatternString(PyTextualCommandArgumentsSubItem):
12293
12306
  """
12294
- Specify the numerical value that will be appended to the name of the first unit associated with the meshing pattern object. This value also dictates the labeling for mesh objects associated with this mesh pattern. More...
12307
+ Argument CustomPatternString.
12295
12308
  """
12296
12309
 
12297
12310
  class _InvokeBatteryModelingOptions(PyTextualCommandArgumentsSubItem):
@@ -12384,9 +12397,9 @@ class Root(PyMenu):
12384
12397
  super().__init__(parent, attr, service, rules, path)
12385
12398
  self.FacetMaxEdgeLength = self._FacetMaxEdgeLength(self, "FacetMaxEdgeLength", service, rules, path)
12386
12399
  self.FacetResolution = self._FacetResolution(self, "FacetResolution", service, rules, path)
12387
- self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
12388
12400
  self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
12389
12401
  self.MaxEdgeLengthFactor = self._MaxEdgeLengthFactor(self, "MaxEdgeLengthFactor", service, rules, path)
12402
+ self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
12390
12403
  self.MaxEdgeLength = self._MaxEdgeLength(self, "MaxEdgeLength", service, rules, path)
12391
12404
  self.CustomNormalAngle = self._CustomNormalAngle(self, "CustomNormalAngle", service, rules, path)
12392
12405
  self.CustomDeviation = self._CustomDeviation(self, "CustomDeviation", service, rules, path)
@@ -12402,11 +12415,6 @@ class Root(PyMenu):
12402
12415
  Argument FacetResolution.
12403
12416
  """
12404
12417
 
12405
- class _NormalAngle(PyNumericalCommandArgumentsSubItem):
12406
- """
12407
- Argument NormalAngle.
12408
- """
12409
-
12410
12418
  class _Deviation(PyNumericalCommandArgumentsSubItem):
12411
12419
  """
12412
12420
  Argument Deviation.
@@ -12417,6 +12425,11 @@ class Root(PyMenu):
12417
12425
  Argument MaxEdgeLengthFactor.
12418
12426
  """
12419
12427
 
12428
+ class _NormalAngle(PyNumericalCommandArgumentsSubItem):
12429
+ """
12430
+ Argument NormalAngle.
12431
+ """
12432
+
12420
12433
  class _MaxEdgeLength(PyNumericalCommandArgumentsSubItem):
12421
12434
  """
12422
12435
  Argument MaxEdgeLength.
@@ -12541,9 +12554,9 @@ 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
12557
  self.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", service, rules, path)
12546
12558
  self.InitialSizeControl = self._InitialSizeControl(self, "InitialSizeControl", service, rules, path)
12559
+ self.SizingType = self._SizingType(self, "SizingType", service, rules, path)
12547
12560
  self.WrapCurvatureNormalAngle = self._WrapCurvatureNormalAngle(self, "WrapCurvatureNormalAngle", service, rules, path)
12548
12561
  self.CellsPerGap = self._CellsPerGap(self, "CellsPerGap", service, rules, path)
12549
12562
  self.TargetSizeControl = self._TargetSizeControl(self, "TargetSizeControl", service, rules, path)
@@ -12594,11 +12607,6 @@ 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):
12598
- """
12599
- Choose the type of sizing control (curvature, proximity, soft, or boi).
12600
- """
12601
-
12602
12610
  class _WrapGrowthRate(PyNumericalCommandArgumentsSubItem):
12603
12611
  """
12604
12612
  Specify the increase in element edge length with each succeeding layer of elements.
@@ -12609,6 +12617,11 @@ class Root(PyMenu):
12609
12617
  Enable this field to display the initial size control in the graphics window.
12610
12618
  """
12611
12619
 
12620
+ class _SizingType(PyTextualCommandArgumentsSubItem):
12621
+ """
12622
+ Choose the type of sizing control (curvature, proximity, soft, or boi).
12623
+ """
12624
+
12612
12625
  class _WrapCurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
12613
12626
  """
12614
12627
  Specify the maximum allowable angle (from 0 to 180 degrees) that one element edge is allowed to span given a particular geometry curvature. You can use this field to limit the number of elements that are generated along a curve or surface if the minimum size is too small for that particular curve.
@@ -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)
13336
+ self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
13323
13337
  self.MaxEdgeLengthFactor = self._MaxEdgeLengthFactor(self, "MaxEdgeLengthFactor", service, rules, path)
13324
- 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.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
13327
13340
 
13328
13341
  class _FacetMaxEdgeLength(PyTextualCommandArgumentsSubItem):
13329
13342
  """
@@ -13335,14 +13348,14 @@ class Root(PyMenu):
13335
13348
  Specify a maximum element size for the imported model to avoid very large facets during the file import.
13336
13349
  """
13337
13350
 
13338
- class _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
- class _NormalAngle(PyNumericalCommandArgumentsSubItem):
13356
+ class _MaxEdgeLengthFactor(PyNumericalCommandArgumentsSubItem):
13344
13357
  """
13345
- Specify a rotational angle (in degrees) of transformation.
13358
+ Specifies the maximum size of the facets relative to the bounding box of the geometry.
13346
13359
  """
13347
13360
 
13348
13361
  class _Refacet(PyParameterCommandArgumentsSubItem):
@@ -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 _NormalAngle(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
+ Specify a rotational angle (in degrees) of transformation.
13356
13369
  """
13357
13370
 
13358
13371
  class _IgnoreSolidNames(PyParameterCommandArgumentsSubItem):
@@ -13415,8 +13428,8 @@ class Root(PyMenu):
13415
13428
  super().__init__(parent, attr, service, rules, path)
13416
13429
  self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
13417
13430
  self.RefacetDuringLoad = self._RefacetDuringLoad(self, "RefacetDuringLoad", service, rules, path)
13418
- self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
13419
13431
  self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
13432
+ self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
13420
13433
 
13421
13434
  class _MaxSize(PyNumericalCommandArgumentsSubItem):
13422
13435
  """
@@ -13428,14 +13441,14 @@ class Root(PyMenu):
13428
13441
  This option is available when DSCO is selected for the Import Route. When enabled, this option will refacet the geometry as it is converted to a .fmd file. This option eliminates the need for any refaceting operation after the geometry is loaded, which can be expensive.
13429
13442
  """
13430
13443
 
13431
- class _NormalAngle(PyNumericalCommandArgumentsSubItem):
13444
+ class _Deviation(PyNumericalCommandArgumentsSubItem):
13432
13445
  """
13433
- Specify a rotational angle (in degrees) of transformation.
13446
+ Specify the distance between facet edges and the geometry edges. Decreasing this value will result in more facets along curved edges.
13434
13447
  """
13435
13448
 
13436
- class _Deviation(PyNumericalCommandArgumentsSubItem):
13449
+ class _NormalAngle(PyNumericalCommandArgumentsSubItem):
13437
13450
  """
13438
- Specify the distance between facet edges and the geometry edges. Decreasing this value will result in more facets along curved edges.
13451
+ Specify a rotational angle (in degrees) of transformation.
13439
13452
  """
13440
13453
 
13441
13454
  def create_instance(self) -> _PartManagementCommandArguments:
@@ -14182,21 +14195,22 @@ class Root(PyMenu):
14182
14195
  def __init__(self, parent, attr, service, rules, path):
14183
14196
  super().__init__(parent, attr, service, rules, path)
14184
14197
  self.SMQualityCollapseLimit = self._SMQualityCollapseLimit(self, "SMQualityCollapseLimit", service, rules, path)
14185
- self.AutoMerge = self._AutoMerge(self, "AutoMerge", service, rules, path)
14198
+ self.FoldFaceLimit = self._FoldFaceLimit(self, "FoldFaceLimit", service, rules, path)
14186
14199
  self.SMQualityImprove = self._SMQualityImprove(self, "SMQualityImprove", service, rules, path)
14187
- self.ShowSurfaceMeshPreferences = self._ShowSurfaceMeshPreferences(self, "ShowSurfaceMeshPreferences", service, rules, path)
14188
- self.SMSeparation = self._SMSeparation(self, "SMSeparation", service, rules, path)
14189
14200
  self.SMSeparationAngle = self._SMSeparationAngle(self, "SMSeparationAngle", service, rules, path)
14201
+ self.SMSeparation = self._SMSeparation(self, "SMSeparation", service, rules, path)
14202
+ self.ShowSurfaceMeshPreferences = self._ShowSurfaceMeshPreferences(self, "ShowSurfaceMeshPreferences", service, rules, path)
14190
14203
  self.TVMAutoControlCreation = self._TVMAutoControlCreation(self, "TVMAutoControlCreation", service, rules, path)
14191
- self.FoldFaceLimit = self._FoldFaceLimit(self, "FoldFaceLimit", service, rules, path)
14204
+ self.AutoMerge = self._AutoMerge(self, "AutoMerge", 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):
@@ -14204,9 +14218,9 @@ class Root(PyMenu):
14204
14218
  Argument SMQualityCollapseLimit.
14205
14219
  """
14206
14220
 
14207
- class _AutoMerge(PyParameterCommandArgumentsSubItem):
14221
+ class _FoldFaceLimit(PyNumericalCommandArgumentsSubItem):
14208
14222
  """
14209
- Argument AutoMerge.
14223
+ Argument FoldFaceLimit.
14210
14224
  """
14211
14225
 
14212
14226
  class _SMQualityImprove(PyTextualCommandArgumentsSubItem):
@@ -14214,9 +14228,9 @@ class Root(PyMenu):
14214
14228
  Argument SMQualityImprove.
14215
14229
  """
14216
14230
 
14217
- class _ShowSurfaceMeshPreferences(PyParameterCommandArgumentsSubItem):
14231
+ class _SMSeparationAngle(PyNumericalCommandArgumentsSubItem):
14218
14232
  """
14219
- Argument ShowSurfaceMeshPreferences.
14233
+ Argument SMSeparationAngle.
14220
14234
  """
14221
14235
 
14222
14236
  class _SMSeparation(PyTextualCommandArgumentsSubItem):
@@ -14224,9 +14238,9 @@ class Root(PyMenu):
14224
14238
  Argument SMSeparation.
14225
14239
  """
14226
14240
 
14227
- class _SMSeparationAngle(PyNumericalCommandArgumentsSubItem):
14241
+ class _ShowSurfaceMeshPreferences(PyParameterCommandArgumentsSubItem):
14228
14242
  """
14229
- Argument SMSeparationAngle.
14243
+ Argument ShowSurfaceMeshPreferences.
14230
14244
  """
14231
14245
 
14232
14246
  class _TVMAutoControlCreation(PyTextualCommandArgumentsSubItem):
@@ -14234,9 +14248,9 @@ class Root(PyMenu):
14234
14248
  Argument TVMAutoControlCreation.
14235
14249
  """
14236
14250
 
14237
- class _FoldFaceLimit(PyNumericalCommandArgumentsSubItem):
14251
+ class _AutoMerge(PyParameterCommandArgumentsSubItem):
14238
14252
  """
14239
- Argument FoldFaceLimit.
14253
+ Argument AutoMerge.
14240
14254
  """
14241
14255
 
14242
14256
  class _SMRemoveStep(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):
@@ -14366,10 +14385,10 @@ class Root(PyMenu):
14366
14385
  def __init__(self, parent, attr, service, rules, path):
14367
14386
  super().__init__(parent, attr, service, rules, path)
14368
14387
  self.NewLabelObjects = self._NewLabelObjects(self, "NewLabelObjects", service, rules, path)
14369
- self.NewLabels = self._NewLabels(self, "NewLabels", service, rules, path)
14388
+ self.NewLabelCells = self._NewLabelCells(self, "NewLabelCells", service, rules, path)
14370
14389
  self.NewLabelType = self._NewLabelType(self, "NewLabelType", service, rules, path)
14390
+ self.NewLabels = self._NewLabels(self, "NewLabels", service, rules, path)
14371
14391
  self.NewLabelResolution = self._NewLabelResolution(self, "NewLabelResolution", service, rules, path)
14372
- self.NewLabelCells = self._NewLabelCells(self, "NewLabelCells", service, rules, path)
14373
14392
  self.NewLabelMax = self._NewLabelMax(self, "NewLabelMax", service, rules, path)
14374
14393
  self.NewZoneType = self._NewZoneType(self, "NewZoneType", service, rules, path)
14375
14394
  self.NewLabelCurvature = self._NewLabelCurvature(self, "NewLabelCurvature", service, rules, path)
@@ -14380,9 +14399,9 @@ class Root(PyMenu):
14380
14399
  Argument NewLabelObjects.
14381
14400
  """
14382
14401
 
14383
- class _NewLabels(PyTextualCommandArgumentsSubItem):
14402
+ class _NewLabelCells(PyTextualCommandArgumentsSubItem):
14384
14403
  """
14385
- Argument NewLabels.
14404
+ Argument NewLabelCells.
14386
14405
  """
14387
14406
 
14388
14407
  class _NewLabelType(PyTextualCommandArgumentsSubItem):
@@ -14390,14 +14409,14 @@ class Root(PyMenu):
14390
14409
  Argument NewLabelType.
14391
14410
  """
14392
14411
 
14393
- class _NewLabelResolution(PyTextualCommandArgumentsSubItem):
14412
+ class _NewLabels(PyTextualCommandArgumentsSubItem):
14394
14413
  """
14395
- Argument NewLabelResolution.
14414
+ Argument NewLabels.
14396
14415
  """
14397
14416
 
14398
- class _NewLabelCells(PyTextualCommandArgumentsSubItem):
14417
+ class _NewLabelResolution(PyTextualCommandArgumentsSubItem):
14399
14418
  """
14400
- Argument NewLabelCells.
14419
+ Argument NewLabelResolution.
14401
14420
  """
14402
14421
 
14403
14422
  class _NewLabelMax(PyTextualCommandArgumentsSubItem):