ansys-fluent-core 0.31.dev1__py3-none-any.whl → 0.31.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.
- ansys/fluent/core/__init__.py +11 -3
- ansys/fluent/core/codegen/settingsgen.py +6 -0
- ansys/fluent/core/codegen/tuigen.py +1 -2
- ansys/fluent/core/docker/docker_compose.py +243 -0
- ansys/fluent/core/field_data_interfaces.py +6 -0
- ansys/fluent/core/file_session.py +158 -128
- ansys/fluent/core/filereader/data_file.py +11 -0
- ansys/fluent/core/filereader/pre_processor.py +22 -0
- ansys/fluent/core/fluent_connection.py +48 -20
- ansys/fluent/core/generated/api_tree/api_objects.json +1 -1
- ansys/fluent/core/generated/datamodel_231/flicing.py +35 -35
- ansys/fluent/core/generated/datamodel_231/meshing.py +189 -189
- ansys/fluent/core/generated/datamodel_232/flicing.py +35 -35
- ansys/fluent/core/generated/datamodel_232/meshing.py +237 -237
- ansys/fluent/core/generated/datamodel_241/flicing.py +45 -45
- ansys/fluent/core/generated/datamodel_241/meshing.py +295 -295
- ansys/fluent/core/generated/datamodel_242/flicing.py +60 -60
- ansys/fluent/core/generated/datamodel_242/meshing.py +285 -285
- ansys/fluent/core/generated/datamodel_242/part_management.py +6 -6
- ansys/fluent/core/generated/datamodel_251/flicing.py +55 -55
- ansys/fluent/core/generated/datamodel_251/meshing.py +370 -370
- ansys/fluent/core/generated/datamodel_251/part_management.py +6 -6
- ansys/fluent/core/generated/datamodel_252/flicing.py +55 -55
- ansys/fluent/core/generated/datamodel_252/meshing.py +790 -428
- ansys/fluent/core/generated/datamodel_252/part_management.py +10 -10
- ansys/fluent/core/generated/datamodel_252/preferences.py +1 -1
- ansys/fluent/core/generated/fluent_version_252.py +4 -4
- ansys/fluent/core/generated/meshing/tui_252.py +1133 -1178
- ansys/fluent/core/generated/solver/settings_252.py +2241 -1649
- ansys/fluent/core/generated/solver/settings_252.pyi +1785 -1430
- ansys/fluent/core/generated/solver/settings_builtin.pyi +104 -0
- ansys/fluent/core/generated/solver/tui_252.py +2174 -2005
- ansys/fluent/core/launcher/container_launcher.py +39 -8
- ansys/fluent/core/launcher/fluent_container.py +61 -22
- ansys/fluent/core/launcher/launcher.py +24 -13
- ansys/fluent/core/launcher/launcher_utils.py +8 -0
- ansys/fluent/core/launcher/process_launch_string.py +2 -6
- ansys/fluent/core/launcher/slurm_launcher.py +1 -0
- ansys/fluent/core/report.py +2 -0
- ansys/fluent/core/services/deprecated_field_data.py +74 -46
- ansys/fluent/core/services/field_data.py +104 -69
- ansys/fluent/core/services/reduction.py +55 -66
- ansys/fluent/core/services/solution_variables.py +9 -1
- ansys/fluent/core/session.py +15 -12
- ansys/fluent/core/session_meshing.py +3 -0
- ansys/fluent/core/session_solver.py +20 -43
- ansys/fluent/core/session_utilities.py +429 -0
- ansys/fluent/core/solver/flobject.py +28 -0
- ansys/fluent/core/utils/deprecate.py +46 -0
- ansys/fluent/core/utils/file_transfer_service.py +19 -3
- ansys/fluent/core/utils/fluent_version.py +42 -11
- ansys/fluent/core/variable_strategies/__init__.py +29 -0
- ansys/fluent/core/variable_strategies/expr.py +186 -0
- ansys/fluent/core/variable_strategies/field.py +186 -0
- ansys/fluent/core/variable_strategies/svar.py +61 -0
- {ansys_fluent_core-0.31.dev1.dist-info → ansys_fluent_core-0.31.1.dist-info}/METADATA +9 -6
- {ansys_fluent_core-0.31.dev1.dist-info → ansys_fluent_core-0.31.1.dist-info}/RECORD +59 -53
- {ansys_fluent_core-0.31.dev1.dist-info → ansys_fluent_core-0.31.1.dist-info}/WHEEL +1 -1
- {ansys_fluent_core-0.31.dev1.dist-info → ansys_fluent_core-0.31.1.dist-info/licenses}/LICENSE +0 -0
|
@@ -58,6 +58,7 @@ class Root(PyMenu):
|
|
|
58
58
|
self.CreateExternalFlowBoundaries = self.__class__.CreateExternalFlowBoundaries(service, rules, "CreateExternalFlowBoundaries", path)
|
|
59
59
|
self.CreateGapCover = self.__class__.CreateGapCover(service, rules, "CreateGapCover", path)
|
|
60
60
|
self.CreateGroup = self.__class__.CreateGroup(service, rules, "CreateGroup", path)
|
|
61
|
+
self.CreateLeakShield = self.__class__.CreateLeakShield(service, rules, "CreateLeakShield", path)
|
|
61
62
|
self.CreateLocalRefinementRegions = self.__class__.CreateLocalRefinementRegions(service, rules, "CreateLocalRefinementRegions", path)
|
|
62
63
|
self.CreateMeshObjects = self.__class__.CreateMeshObjects(service, rules, "CreateMeshObjects", path)
|
|
63
64
|
self.CreateOversetInterfaces = self.__class__.CreateOversetInterfaces(service, rules, "CreateOversetInterfaces", path)
|
|
@@ -722,6 +723,7 @@ class Root(PyMenu):
|
|
|
722
723
|
def __init__(self, service, rules, path):
|
|
723
724
|
self.FTMRegionData = self.__class__.FTMRegionData(service, rules, path + [("FTMRegionData", "")])
|
|
724
725
|
self.AreaUnit = self.__class__.AreaUnit(service, rules, path + [("AreaUnit", "")])
|
|
726
|
+
self.CurrentTask = self.__class__.CurrentTask(service, rules, path + [("CurrentTask", "")])
|
|
725
727
|
self.EnableCleanCAD = self.__class__.EnableCleanCAD(service, rules, path + [("EnableCleanCAD", "")])
|
|
726
728
|
self.EnableComplexMeshing = self.__class__.EnableComplexMeshing(service, rules, path + [("EnableComplexMeshing", "")])
|
|
727
729
|
self.EnableOversetMeshing = self.__class__.EnableOversetMeshing(service, rules, path + [("EnableOversetMeshing", "")])
|
|
@@ -847,6 +849,12 @@ class Root(PyMenu):
|
|
|
847
849
|
"""
|
|
848
850
|
pass
|
|
849
851
|
|
|
852
|
+
class CurrentTask(PyTextual):
|
|
853
|
+
"""
|
|
854
|
+
Parameter CurrentTask of value type str.
|
|
855
|
+
"""
|
|
856
|
+
pass
|
|
857
|
+
|
|
850
858
|
class EnableCleanCAD(PyParameter):
|
|
851
859
|
"""
|
|
852
860
|
Parameter EnableCleanCAD of value type bool.
|
|
@@ -1299,9 +1307,9 @@ class Root(PyMenu):
|
|
|
1299
1307
|
self.Operation = self._Operation(self, "Operation", service, rules, path)
|
|
1300
1308
|
self.ShareTopologyAngle = self._ShareTopologyAngle(self, "ShareTopologyAngle", service, rules, path)
|
|
1301
1309
|
self.STToleranceIncrement = self._STToleranceIncrement(self, "STToleranceIncrement", service, rules, path)
|
|
1302
|
-
self.IntfLabelList = self._IntfLabelList(self, "IntfLabelList", service, rules, path)
|
|
1303
|
-
self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
|
|
1304
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)
|
|
1305
1313
|
self.AdvancedImprove = self._AdvancedImprove(self, "AdvancedImprove", service, rules, path)
|
|
1306
1314
|
self.NumberOfJoinTries = self._NumberOfJoinTries(self, "NumberOfJoinTries", service, rules, path)
|
|
1307
1315
|
|
|
@@ -1355,9 +1363,9 @@ class Root(PyMenu):
|
|
|
1355
1363
|
Specify the increment by which the tolerance changes for each attempt to join face pairs.
|
|
1356
1364
|
"""
|
|
1357
1365
|
|
|
1358
|
-
class
|
|
1366
|
+
class _ShowShareTopologyPreferences(PyParameterCommandArgumentsSubItem):
|
|
1359
1367
|
"""
|
|
1360
|
-
|
|
1368
|
+
Display advanced options that you may want to apply to the task.
|
|
1361
1369
|
"""
|
|
1362
1370
|
|
|
1363
1371
|
class _PerLabelList(PyTextualCommandArgumentsSubItem):
|
|
@@ -1365,9 +1373,9 @@ class Root(PyMenu):
|
|
|
1365
1373
|
Argument PerLabelList.
|
|
1366
1374
|
"""
|
|
1367
1375
|
|
|
1368
|
-
class
|
|
1376
|
+
class _IntfLabelList(PyTextualCommandArgumentsSubItem):
|
|
1369
1377
|
"""
|
|
1370
|
-
|
|
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...
|
|
1371
1379
|
"""
|
|
1372
1380
|
|
|
1373
1381
|
class _AdvancedImprove(PyTextualCommandArgumentsSubItem):
|
|
@@ -1514,23 +1522,23 @@ class Root(PyMenu):
|
|
|
1514
1522
|
|
|
1515
1523
|
def __init__(self, parent, attr, service, rules, path):
|
|
1516
1524
|
super().__init__(parent, attr, service, rules, path)
|
|
1517
|
-
self.ExposeSide = self._ExposeSide(self, "ExposeSide", service, rules, path)
|
|
1518
1525
|
self.ShowShellBLAdvancedOptions = self._ShowShellBLAdvancedOptions(self, "ShowShellBLAdvancedOptions", service, rules, path)
|
|
1526
|
+
self.ExposeSide = self._ExposeSide(self, "ExposeSide", service, rules, path)
|
|
1519
1527
|
self.MaxAspectRatio = self._MaxAspectRatio(self, "MaxAspectRatio", service, rules, path)
|
|
1520
1528
|
self.MinAspectRatio = self._MinAspectRatio(self, "MinAspectRatio", service, rules, path)
|
|
1521
|
-
self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
|
|
1522
1529
|
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
1530
|
+
self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
|
|
1523
1531
|
self.GapFactor = self._GapFactor(self, "GapFactor", service, rules, path)
|
|
1524
1532
|
self.AdjacentAttachAngle = self._AdjacentAttachAngle(self, "AdjacentAttachAngle", service, rules, path)
|
|
1525
1533
|
|
|
1526
|
-
class
|
|
1534
|
+
class _ShowShellBLAdvancedOptions(PyParameterCommandArgumentsSubItem):
|
|
1527
1535
|
"""
|
|
1528
|
-
Argument
|
|
1536
|
+
Argument ShowShellBLAdvancedOptions.
|
|
1529
1537
|
"""
|
|
1530
1538
|
|
|
1531
|
-
class
|
|
1539
|
+
class _ExposeSide(PyTextualCommandArgumentsSubItem):
|
|
1532
1540
|
"""
|
|
1533
|
-
Argument
|
|
1541
|
+
Argument ExposeSide.
|
|
1534
1542
|
"""
|
|
1535
1543
|
|
|
1536
1544
|
class _MaxAspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -1543,14 +1551,14 @@ class Root(PyMenu):
|
|
|
1543
1551
|
Argument MinAspectRatio.
|
|
1544
1552
|
"""
|
|
1545
1553
|
|
|
1546
|
-
class
|
|
1554
|
+
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
1547
1555
|
"""
|
|
1548
|
-
Argument
|
|
1556
|
+
Argument LastRatioPercentage.
|
|
1549
1557
|
"""
|
|
1550
1558
|
|
|
1551
|
-
class
|
|
1559
|
+
class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
|
|
1552
1560
|
"""
|
|
1553
|
-
Argument
|
|
1561
|
+
Argument LastRatioNumLayers.
|
|
1554
1562
|
"""
|
|
1555
1563
|
|
|
1556
1564
|
class _GapFactor(PyNumericalCommandArgumentsSubItem):
|
|
@@ -1761,12 +1769,12 @@ class Root(PyMenu):
|
|
|
1761
1769
|
self.SphereRadiusFactorAtInvalidNormals = self._SphereRadiusFactorAtInvalidNormals(self, "SphereRadiusFactorAtInvalidNormals", service, rules, path)
|
|
1762
1770
|
self.SmoothRingsAtInvalidNormals = self._SmoothRingsAtInvalidNormals(self, "SmoothRingsAtInvalidNormals", service, rules, path)
|
|
1763
1771
|
self.Continuous = self._Continuous(self, "Continuous", service, rules, path)
|
|
1764
|
-
self.SplitPrism = self._SplitPrism(self, "SplitPrism", service, rules, path)
|
|
1765
1772
|
self.ModifyAtInvalidNormals = self._ModifyAtInvalidNormals(self, "ModifyAtInvalidNormals", service, rules, path)
|
|
1773
|
+
self.SplitPrism = self._SplitPrism(self, "SplitPrism", service, rules, path)
|
|
1766
1774
|
self.InvalidNormalMethod = self._InvalidNormalMethod(self, "InvalidNormalMethod", service, rules, path)
|
|
1767
|
-
self.ShowLocalPrismPreferences = self._ShowLocalPrismPreferences(self, "ShowLocalPrismPreferences", service, rules, path)
|
|
1768
|
-
self.NumberOfSplitLayers = self._NumberOfSplitLayers(self, "NumberOfSplitLayers", service, rules, path)
|
|
1769
1775
|
self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
|
|
1776
|
+
self.NumberOfSplitLayers = self._NumberOfSplitLayers(self, "NumberOfSplitLayers", service, rules, path)
|
|
1777
|
+
self.ShowLocalPrismPreferences = self._ShowLocalPrismPreferences(self, "ShowLocalPrismPreferences", service, rules, path)
|
|
1770
1778
|
self.AllowedTangencyAtInvalidNormals = self._AllowedTangencyAtInvalidNormals(self, "AllowedTangencyAtInvalidNormals", service, rules, path)
|
|
1771
1779
|
self.RemeshAtInvalidNormals = self._RemeshAtInvalidNormals(self, "RemeshAtInvalidNormals", service, rules, path)
|
|
1772
1780
|
self.IgnoreBoundaryLayers = self._IgnoreBoundaryLayers(self, "IgnoreBoundaryLayers", service, rules, path)
|
|
@@ -1796,14 +1804,14 @@ class Root(PyMenu):
|
|
|
1796
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).
|
|
1797
1805
|
"""
|
|
1798
1806
|
|
|
1799
|
-
class
|
|
1807
|
+
class _ModifyAtInvalidNormals(PyTextualCommandArgumentsSubItem):
|
|
1800
1808
|
"""
|
|
1801
|
-
|
|
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...
|
|
1802
1810
|
"""
|
|
1803
1811
|
|
|
1804
|
-
class
|
|
1812
|
+
class _SplitPrism(PyTextualCommandArgumentsSubItem):
|
|
1805
1813
|
"""
|
|
1806
|
-
|
|
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.
|
|
1807
1815
|
"""
|
|
1808
1816
|
|
|
1809
1817
|
class _InvalidNormalMethod(PyTextualCommandArgumentsSubItem):
|
|
@@ -1811,9 +1819,9 @@ class Root(PyMenu):
|
|
|
1811
1819
|
Argument InvalidNormalMethod.
|
|
1812
1820
|
"""
|
|
1813
1821
|
|
|
1814
|
-
class
|
|
1822
|
+
class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
|
|
1815
1823
|
"""
|
|
1816
|
-
|
|
1824
|
+
Argument LastRatioNumLayers.
|
|
1817
1825
|
"""
|
|
1818
1826
|
|
|
1819
1827
|
class _NumberOfSplitLayers(PyNumericalCommandArgumentsSubItem):
|
|
@@ -1821,9 +1829,9 @@ class Root(PyMenu):
|
|
|
1821
1829
|
Indicate the number of split prism layers you wish to apply to each layer that you specified for the boundary layer definition.
|
|
1822
1830
|
"""
|
|
1823
1831
|
|
|
1824
|
-
class
|
|
1832
|
+
class _ShowLocalPrismPreferences(PyParameterCommandArgumentsSubItem):
|
|
1825
1833
|
"""
|
|
1826
|
-
|
|
1834
|
+
Display advanced options that you may want to apply to this task.
|
|
1827
1835
|
"""
|
|
1828
1836
|
|
|
1829
1837
|
class _AllowedTangencyAtInvalidNormals(PyNumericalCommandArgumentsSubItem):
|
|
@@ -2085,9 +2093,9 @@ class Root(PyMenu):
|
|
|
2085
2093
|
self.ModifyAtInvalidNormals = self._ModifyAtInvalidNormals(self, "ModifyAtInvalidNormals", service, rules, path)
|
|
2086
2094
|
self.SplitPrism = self._SplitPrism(self, "SplitPrism", service, rules, path)
|
|
2087
2095
|
self.InvalidNormalMethod = self._InvalidNormalMethod(self, "InvalidNormalMethod", service, rules, path)
|
|
2096
|
+
self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
|
|
2088
2097
|
self.NumberOfSplitLayers = self._NumberOfSplitLayers(self, "NumberOfSplitLayers", service, rules, path)
|
|
2089
2098
|
self.ShowLocalPrismPreferences = self._ShowLocalPrismPreferences(self, "ShowLocalPrismPreferences", service, rules, path)
|
|
2090
|
-
self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
|
|
2091
2099
|
self.AllowedTangencyAtInvalidNormals = self._AllowedTangencyAtInvalidNormals(self, "AllowedTangencyAtInvalidNormals", service, rules, path)
|
|
2092
2100
|
self.RemeshAtInvalidNormals = self._RemeshAtInvalidNormals(self, "RemeshAtInvalidNormals", service, rules, path)
|
|
2093
2101
|
self.IgnoreBoundaryLayers = self._IgnoreBoundaryLayers(self, "IgnoreBoundaryLayers", service, rules, path)
|
|
@@ -2132,6 +2140,11 @@ class Root(PyMenu):
|
|
|
2132
2140
|
Argument InvalidNormalMethod.
|
|
2133
2141
|
"""
|
|
2134
2142
|
|
|
2143
|
+
class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
|
|
2144
|
+
"""
|
|
2145
|
+
Argument LastRatioNumLayers.
|
|
2146
|
+
"""
|
|
2147
|
+
|
|
2135
2148
|
class _NumberOfSplitLayers(PyNumericalCommandArgumentsSubItem):
|
|
2136
2149
|
"""
|
|
2137
2150
|
Indicate the number of split prism layers you wish to apply to each layer that you specified for the boundary layer definition.
|
|
@@ -2142,11 +2155,6 @@ class Root(PyMenu):
|
|
|
2142
2155
|
Display advanced options that you may want to apply to this task.
|
|
2143
2156
|
"""
|
|
2144
2157
|
|
|
2145
|
-
class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
|
|
2146
|
-
"""
|
|
2147
|
-
Argument LastRatioNumLayers.
|
|
2148
|
-
"""
|
|
2149
|
-
|
|
2150
2158
|
class _AllowedTangencyAtInvalidNormals(PyNumericalCommandArgumentsSubItem):
|
|
2151
2159
|
"""
|
|
2152
2160
|
Controls the tangency of the invalid normal faces. An invalid normal location with all 90 degree angles has a tangency of 1. So, faces are still treated as an invalid normal even if the angle deviates slightly from 90 degrees (resulting in a tangency of 0.98).
|
|
@@ -2387,11 +2395,11 @@ class Root(PyMenu):
|
|
|
2387
2395
|
self.MinSize = self._MinSize(self, "MinSize", service, rules, path)
|
|
2388
2396
|
self.WrapMax = self._WrapMax(self, "WrapMax", service, rules, path)
|
|
2389
2397
|
self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
|
|
2390
|
-
self.SizingType = self._SizingType(self, "SizingType", service, rules, path)
|
|
2391
2398
|
self.InitialSizeControl = self._InitialSizeControl(self, "InitialSizeControl", service, rules, path)
|
|
2392
2399
|
self.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", service, rules, path)
|
|
2393
|
-
self.
|
|
2400
|
+
self.SizingType = self._SizingType(self, "SizingType", service, rules, path)
|
|
2394
2401
|
self.CellsPerGap = self._CellsPerGap(self, "CellsPerGap", service, rules, path)
|
|
2402
|
+
self.WrapCurvatureNormalAngle = self._WrapCurvatureNormalAngle(self, "WrapCurvatureNormalAngle", service, rules, path)
|
|
2395
2403
|
self.TargetSizeControl = self._TargetSizeControl(self, "TargetSizeControl", service, rules, path)
|
|
2396
2404
|
self.GrowthRate = self._GrowthRate(self, "GrowthRate", service, rules, path)
|
|
2397
2405
|
|
|
@@ -2440,11 +2448,6 @@ class Root(PyMenu):
|
|
|
2440
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.
|
|
2441
2449
|
"""
|
|
2442
2450
|
|
|
2443
|
-
class _SizingType(PyTextualCommandArgumentsSubItem):
|
|
2444
|
-
"""
|
|
2445
|
-
Choose the type of sizing control (curvature, proximity, soft, or boi).
|
|
2446
|
-
"""
|
|
2447
|
-
|
|
2448
2451
|
class _InitialSizeControl(PyParameterCommandArgumentsSubItem):
|
|
2449
2452
|
"""
|
|
2450
2453
|
Enable this field to display the initial size control in the graphics window.
|
|
@@ -2455,9 +2458,9 @@ class Root(PyMenu):
|
|
|
2455
2458
|
Specify the increase in element edge length with each succeeding layer of elements.
|
|
2456
2459
|
"""
|
|
2457
2460
|
|
|
2458
|
-
class
|
|
2461
|
+
class _SizingType(PyTextualCommandArgumentsSubItem):
|
|
2459
2462
|
"""
|
|
2460
|
-
|
|
2463
|
+
Choose the type of sizing control (curvature, proximity, soft, or boi).
|
|
2461
2464
|
"""
|
|
2462
2465
|
|
|
2463
2466
|
class _CellsPerGap(PyNumericalCommandArgumentsSubItem):
|
|
@@ -2465,6 +2468,11 @@ class Root(PyMenu):
|
|
|
2465
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.
|
|
2466
2469
|
"""
|
|
2467
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
|
+
|
|
2468
2476
|
class _TargetSizeControl(PyParameterCommandArgumentsSubItem):
|
|
2469
2477
|
"""
|
|
2470
2478
|
Enable this field to display the target size control in the graphics window.
|
|
@@ -2998,6 +3006,7 @@ class Root(PyMenu):
|
|
|
2998
3006
|
self.AutoCreateScopedSizing = self._AutoCreateScopedSizing(self, "AutoCreateScopedSizing", service, rules, path)
|
|
2999
3007
|
self.MinSize = self._MinSize(self, "MinSize", service, rules, path)
|
|
3000
3008
|
self.SizeFunctions = self._SizeFunctions(self, "SizeFunctions", service, rules, path)
|
|
3009
|
+
self.SurfaceMeshMethod = self._SurfaceMeshMethod(self, "SurfaceMeshMethod", service, rules, path)
|
|
3001
3010
|
self.SizeFieldFile = self._SizeFieldFile(self, "SizeFieldFile", service, rules, path)
|
|
3002
3011
|
self.DrawSizeControl = self._DrawSizeControl(self, "DrawSizeControl", service, rules, path)
|
|
3003
3012
|
self.CellsPerGap = self._CellsPerGap(self, "CellsPerGap", service, rules, path)
|
|
@@ -3056,6 +3065,11 @@ class Root(PyMenu):
|
|
|
3056
3065
|
Argument SizeFunctions.
|
|
3057
3066
|
"""
|
|
3058
3067
|
|
|
3068
|
+
class _SurfaceMeshMethod(PyTextualCommandArgumentsSubItem):
|
|
3069
|
+
"""
|
|
3070
|
+
Choose a multi-zone meshing technique: Standard or the Thin volume technique (for only a single layer)
|
|
3071
|
+
"""
|
|
3072
|
+
|
|
3059
3073
|
class _SizeFieldFile(PyTextualCommandArgumentsSubItem):
|
|
3060
3074
|
"""
|
|
3061
3075
|
Argument SizeFieldFile.
|
|
@@ -3373,9 +3387,9 @@ class Root(PyMenu):
|
|
|
3373
3387
|
AssignSizeUsing : str
|
|
3374
3388
|
Specify the sizing of the mesh layers to be based on Intervals or based on the Size of the plates.
|
|
3375
3389
|
Intervals : int
|
|
3376
|
-
Specifies the number of mesh layers to be created within the thin volume mesh.
|
|
3390
|
+
Specifies the minimum number of mesh layers to be created within the thin volume mesh.
|
|
3377
3391
|
MaxNumberOfIntervals : int
|
|
3378
|
-
Specifies the number of mesh layers to be created within the thin volume mesh.
|
|
3392
|
+
Specifies the minimum number of mesh layers to be created within the thin volume mesh.
|
|
3379
3393
|
Size : float
|
|
3380
3394
|
enter the Size of each thin mesh layer or use the default.
|
|
3381
3395
|
GrowthRate : float
|
|
@@ -3477,12 +3491,12 @@ class Root(PyMenu):
|
|
|
3477
3491
|
|
|
3478
3492
|
class _Intervals(PyNumericalCommandArgumentsSubItem):
|
|
3479
3493
|
"""
|
|
3480
|
-
Specifies the number of mesh layers to be created within the thin volume mesh.
|
|
3494
|
+
Specifies the minimum number of mesh layers to be created within the thin volume mesh.
|
|
3481
3495
|
"""
|
|
3482
3496
|
|
|
3483
3497
|
class _MaxNumberOfIntervals(PyNumericalCommandArgumentsSubItem):
|
|
3484
3498
|
"""
|
|
3485
|
-
Specifies the number of mesh layers to be created within the thin volume mesh.
|
|
3499
|
+
Specifies the minimum number of mesh layers to be created within the thin volume mesh.
|
|
3486
3500
|
"""
|
|
3487
3501
|
|
|
3488
3502
|
class _Size(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4148,23 +4162,23 @@ class Root(PyMenu):
|
|
|
4148
4162
|
|
|
4149
4163
|
def __init__(self, parent, attr, service, rules, path):
|
|
4150
4164
|
super().__init__(parent, attr, service, rules, path)
|
|
4151
|
-
self.
|
|
4165
|
+
self.WrapTargetRatio = self._WrapTargetRatio(self, "WrapTargetRatio", service, rules, path)
|
|
4152
4166
|
self.WrapTargetSizeFieldRatio = self._WrapTargetSizeFieldRatio(self, "WrapTargetSizeFieldRatio", service, rules, path)
|
|
4153
|
-
self.
|
|
4167
|
+
self.WrapTargetBothOptions = self._WrapTargetBothOptions(self, "WrapTargetBothOptions", service, rules, path)
|
|
4154
4168
|
self.SolidFluidRaio = self._SolidFluidRaio(self, "SolidFluidRaio", service, rules, path)
|
|
4155
4169
|
self.BoundaryLayers = self._BoundaryLayers(self, "BoundaryLayers", service, rules, path)
|
|
4156
4170
|
self.EdgeProximityComputation = self._EdgeProximityComputation(self, "EdgeProximityComputation", service, rules, path)
|
|
4157
|
-
self.
|
|
4171
|
+
self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
|
|
4158
4172
|
self.SolidFluidRatio = self._SolidFluidRatio(self, "SolidFluidRatio", service, rules, path)
|
|
4159
4173
|
self.TargetSizeFieldFileName = self._TargetSizeFieldFileName(self, "TargetSizeFieldFileName", service, rules, path)
|
|
4160
4174
|
self.ExistingSizeField = self._ExistingSizeField(self, "ExistingSizeField", service, rules, path)
|
|
4161
4175
|
self.WrapSizeFieldFileName = self._WrapSizeFieldFileName(self, "WrapSizeFieldFileName", service, rules, path)
|
|
4162
|
-
self.
|
|
4176
|
+
self.TargeSizeFieldFileName = self._TargeSizeFieldFileName(self, "TargeSizeFieldFileName", service, rules, path)
|
|
4163
4177
|
self.WrapTargetRaio = self._WrapTargetRaio(self, "WrapTargetRaio", service, rules, path)
|
|
4164
4178
|
|
|
4165
|
-
class
|
|
4179
|
+
class _WrapTargetRatio(PyNumericalCommandArgumentsSubItem):
|
|
4166
4180
|
"""
|
|
4167
|
-
|
|
4181
|
+
Argument WrapTargetRatio.
|
|
4168
4182
|
"""
|
|
4169
4183
|
|
|
4170
4184
|
class _WrapTargetSizeFieldRatio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4172,9 +4186,9 @@ class Root(PyMenu):
|
|
|
4172
4186
|
The ratio of the initial wrap size field and the local target size field.
|
|
4173
4187
|
"""
|
|
4174
4188
|
|
|
4175
|
-
class
|
|
4189
|
+
class _WrapTargetBothOptions(PyTextualCommandArgumentsSubItem):
|
|
4176
4190
|
"""
|
|
4177
|
-
|
|
4191
|
+
Determine how the size controls are calculated in the Add Local Sizing task: using Both Wrap and Target values, by Target Only (the default), or by Wrap Only. For complex models, computational expense can be lowered by choosing one of the other options. If either Wrap Only or Target Only is selected, then the other values are determined using the Wrap/Target Size Ratio value.
|
|
4178
4192
|
"""
|
|
4179
4193
|
|
|
4180
4194
|
class _SolidFluidRaio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4192,9 +4206,9 @@ class Root(PyMenu):
|
|
|
4192
4206
|
For geometries having a very large number of small feature edges, select Yes to speed up the calculation and reduce memory requirements when using a proximity size function.
|
|
4193
4207
|
"""
|
|
4194
4208
|
|
|
4195
|
-
class
|
|
4209
|
+
class _AdvancedOptions(PyParameterCommandArgumentsSubItem):
|
|
4196
4210
|
"""
|
|
4197
|
-
|
|
4211
|
+
Display advanced options that you may want to apply to the task.
|
|
4198
4212
|
"""
|
|
4199
4213
|
|
|
4200
4214
|
class _SolidFluidRatio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4217,9 +4231,9 @@ class Root(PyMenu):
|
|
|
4217
4231
|
Indicate the name and location of the wrap size field file (\\*.sf).
|
|
4218
4232
|
"""
|
|
4219
4233
|
|
|
4220
|
-
class
|
|
4234
|
+
class _TargeSizeFieldFileName(PyTextualCommandArgumentsSubItem):
|
|
4221
4235
|
"""
|
|
4222
|
-
|
|
4236
|
+
Indicate the name and location of the target size field file (\\*.sf).
|
|
4223
4237
|
"""
|
|
4224
4238
|
|
|
4225
4239
|
class _WrapTargetRaio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4391,10 +4405,10 @@ class Root(PyMenu):
|
|
|
4391
4405
|
TopologyList : list[str]
|
|
4392
4406
|
BoundingBoxObject : dict[str, Any]
|
|
4393
4407
|
OffsetObject : dict[str, Any]
|
|
4408
|
+
CylinderMethod : str
|
|
4394
4409
|
CylinderObject : dict[str, Any]
|
|
4395
4410
|
Axis : dict[str, Any]
|
|
4396
4411
|
VolumeFill : str
|
|
4397
|
-
CylinderMethod : str
|
|
4398
4412
|
CylinderLength : float
|
|
4399
4413
|
GeometryToolsProperties : dict[str, Any]
|
|
4400
4414
|
|
|
@@ -4419,10 +4433,10 @@ class Root(PyMenu):
|
|
|
4419
4433
|
self.TopologyList = self._TopologyList(self, "TopologyList", service, rules, path)
|
|
4420
4434
|
self.BoundingBoxObject = self._BoundingBoxObject(self, "BoundingBoxObject", service, rules, path)
|
|
4421
4435
|
self.OffsetObject = self._OffsetObject(self, "OffsetObject", service, rules, path)
|
|
4436
|
+
self.CylinderMethod = self._CylinderMethod(self, "CylinderMethod", service, rules, path)
|
|
4422
4437
|
self.CylinderObject = self._CylinderObject(self, "CylinderObject", service, rules, path)
|
|
4423
4438
|
self.Axis = self._Axis(self, "Axis", service, rules, path)
|
|
4424
4439
|
self.VolumeFill = self._VolumeFill(self, "VolumeFill", service, rules, path)
|
|
4425
|
-
self.CylinderMethod = self._CylinderMethod(self, "CylinderMethod", service, rules, path)
|
|
4426
4440
|
self.CylinderLength = self._CylinderLength(self, "CylinderLength", service, rules, path)
|
|
4427
4441
|
self.GeometryToolsProperties = self._GeometryToolsProperties(self, "GeometryToolsProperties", service, rules, path)
|
|
4428
4442
|
|
|
@@ -4584,10 +4598,10 @@ class Root(PyMenu):
|
|
|
4584
4598
|
self.ShowCoordinates = self._ShowCoordinates(self, "ShowCoordinates", service, rules, path)
|
|
4585
4599
|
self.Y = self._Y(self, "Y", service, rules, path)
|
|
4586
4600
|
self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
|
|
4587
|
-
self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
|
|
4588
|
-
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
4589
|
-
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
4590
4601
|
self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
|
|
4602
|
+
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
4603
|
+
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
4604
|
+
self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
|
|
4591
4605
|
self.FlowDirection = self._FlowDirection(self, "FlowDirection", service, rules, path)
|
|
4592
4606
|
self.MptMethodType = self._MptMethodType(self, "MptMethodType", service, rules, path)
|
|
4593
4607
|
self.EdgeSelectionList = self._EdgeSelectionList(self, "EdgeSelectionList", service, rules, path)
|
|
@@ -4625,24 +4639,24 @@ class Root(PyMenu):
|
|
|
4625
4639
|
Argument DefeaturingSize.
|
|
4626
4640
|
"""
|
|
4627
4641
|
|
|
4628
|
-
class
|
|
4642
|
+
class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
|
|
4629
4643
|
"""
|
|
4630
|
-
Argument
|
|
4644
|
+
Argument BoundaryLayerLevels.
|
|
4631
4645
|
"""
|
|
4632
4646
|
|
|
4633
|
-
class
|
|
4647
|
+
class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
|
|
4634
4648
|
"""
|
|
4635
|
-
Argument
|
|
4649
|
+
Argument NumberOfLayers.
|
|
4636
4650
|
"""
|
|
4637
4651
|
|
|
4638
|
-
class
|
|
4652
|
+
class _Rate(PyNumericalCommandArgumentsSubItem):
|
|
4639
4653
|
"""
|
|
4640
|
-
Argument
|
|
4654
|
+
Argument Rate.
|
|
4641
4655
|
"""
|
|
4642
4656
|
|
|
4643
|
-
class
|
|
4657
|
+
class _AspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
4644
4658
|
"""
|
|
4645
|
-
Argument
|
|
4659
|
+
Argument AspectRatio.
|
|
4646
4660
|
"""
|
|
4647
4661
|
|
|
4648
4662
|
class _FlowDirection(PyTextualCommandArgumentsSubItem):
|
|
@@ -4700,6 +4714,11 @@ class Root(PyMenu):
|
|
|
4700
4714
|
Argument CrossWakeGrowthFactor.
|
|
4701
4715
|
"""
|
|
4702
4716
|
|
|
4717
|
+
class _CylinderMethod(PyTextualCommandArgumentsSubItem):
|
|
4718
|
+
"""
|
|
4719
|
+
Argument CylinderMethod.
|
|
4720
|
+
"""
|
|
4721
|
+
|
|
4703
4722
|
class _CylinderObject(PySingletonCommandArgumentsSubItem):
|
|
4704
4723
|
"""
|
|
4705
4724
|
Argument CylinderObject.
|
|
@@ -4719,9 +4738,9 @@ class Root(PyMenu):
|
|
|
4719
4738
|
self.Radius2 = self._Radius2(self, "Radius2", service, rules, path)
|
|
4720
4739
|
self.Y2 = self._Y2(self, "Y2", service, rules, path)
|
|
4721
4740
|
self.Node3 = self._Node3(self, "Node3", service, rules, path)
|
|
4722
|
-
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
4723
4741
|
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
4724
4742
|
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
4743
|
+
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
4725
4744
|
self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
|
|
4726
4745
|
self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
|
|
4727
4746
|
|
|
@@ -4785,11 +4804,6 @@ class Root(PyMenu):
|
|
|
4785
4804
|
Argument Node3.
|
|
4786
4805
|
"""
|
|
4787
4806
|
|
|
4788
|
-
class _Y_Offset(PyNumericalCommandArgumentsSubItem):
|
|
4789
|
-
"""
|
|
4790
|
-
Argument Y-Offset.
|
|
4791
|
-
"""
|
|
4792
|
-
|
|
4793
4807
|
class _Node2(PyTextualCommandArgumentsSubItem):
|
|
4794
4808
|
"""
|
|
4795
4809
|
Argument Node2.
|
|
@@ -4800,6 +4814,11 @@ class Root(PyMenu):
|
|
|
4800
4814
|
Argument X2.
|
|
4801
4815
|
"""
|
|
4802
4816
|
|
|
4817
|
+
class _Y_Offset(PyNumericalCommandArgumentsSubItem):
|
|
4818
|
+
"""
|
|
4819
|
+
Argument Y-Offset.
|
|
4820
|
+
"""
|
|
4821
|
+
|
|
4803
4822
|
class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
|
|
4804
4823
|
"""
|
|
4805
4824
|
Argument HeightFrontInc.
|
|
@@ -4841,11 +4860,6 @@ class Root(PyMenu):
|
|
|
4841
4860
|
Argument VolumeFill.
|
|
4842
4861
|
"""
|
|
4843
4862
|
|
|
4844
|
-
class _CylinderMethod(PyTextualCommandArgumentsSubItem):
|
|
4845
|
-
"""
|
|
4846
|
-
Argument CylinderMethod.
|
|
4847
|
-
"""
|
|
4848
|
-
|
|
4849
4863
|
class _CylinderLength(PyNumericalCommandArgumentsSubItem):
|
|
4850
4864
|
"""
|
|
4851
4865
|
Argument CylinderLength.
|
|
@@ -4858,16 +4872,24 @@ class Root(PyMenu):
|
|
|
4858
4872
|
|
|
4859
4873
|
def __init__(self, parent, attr, service, rules, path):
|
|
4860
4874
|
super().__init__(parent, attr, service, rules, path)
|
|
4861
|
-
self.
|
|
4875
|
+
self.CylinderZ2 = self._CylinderZ2(self, "CylinderZ2", service, rules, path)
|
|
4862
4876
|
self.BoxYLength = self._BoxYLength(self, "BoxYLength", service, rules, path)
|
|
4863
|
-
self.
|
|
4864
|
-
self.
|
|
4877
|
+
self.CylinderX2 = self._CylinderX2(self, "CylinderX2", service, rules, path)
|
|
4878
|
+
self.CylinderX1 = self._CylinderX1(self, "CylinderX1", service, rules, path)
|
|
4865
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
|
+
self.BoxCenterY = self._BoxCenterY(self, "BoxCenterY", service, rules, path)
|
|
4883
|
+
self.CylinderZ1 = self._CylinderZ1(self, "CylinderZ1", service, rules, path)
|
|
4884
|
+
self.CylinderRadius1 = self._CylinderRadius1(self, "CylinderRadius1", service, rules, path)
|
|
4885
|
+
self.BoxCenterX = self._BoxCenterX(self, "BoxCenterX", service, rules, path)
|
|
4866
4886
|
self.BoxCenterZ = self._BoxCenterZ(self, "BoxCenterZ", service, rules, path)
|
|
4887
|
+
self.CylinderRadius2 = self._CylinderRadius2(self, "CylinderRadius2", service, rules, path)
|
|
4888
|
+
self.CylinderY2 = self._CylinderY2(self, "CylinderY2", service, rules, path)
|
|
4867
4889
|
|
|
4868
|
-
class
|
|
4890
|
+
class _CylinderZ2(PyNumericalCommandArgumentsSubItem):
|
|
4869
4891
|
"""
|
|
4870
|
-
Argument
|
|
4892
|
+
Argument CylinderZ2.
|
|
4871
4893
|
"""
|
|
4872
4894
|
|
|
4873
4895
|
class _BoxYLength(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4875,14 +4897,14 @@ class Root(PyMenu):
|
|
|
4875
4897
|
Argument BoxYLength.
|
|
4876
4898
|
"""
|
|
4877
4899
|
|
|
4878
|
-
class
|
|
4900
|
+
class _CylinderX2(PyNumericalCommandArgumentsSubItem):
|
|
4879
4901
|
"""
|
|
4880
|
-
Argument
|
|
4902
|
+
Argument CylinderX2.
|
|
4881
4903
|
"""
|
|
4882
4904
|
|
|
4883
|
-
class
|
|
4905
|
+
class _CylinderX1(PyNumericalCommandArgumentsSubItem):
|
|
4884
4906
|
"""
|
|
4885
|
-
Argument
|
|
4907
|
+
Argument CylinderX1.
|
|
4886
4908
|
"""
|
|
4887
4909
|
|
|
4888
4910
|
class _BoxXLength(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4890,11 +4912,51 @@ class Root(PyMenu):
|
|
|
4890
4912
|
Argument BoxXLength.
|
|
4891
4913
|
"""
|
|
4892
4914
|
|
|
4915
|
+
class _CylinderY1(PyNumericalCommandArgumentsSubItem):
|
|
4916
|
+
"""
|
|
4917
|
+
Argument CylinderY1.
|
|
4918
|
+
"""
|
|
4919
|
+
|
|
4920
|
+
class _BoxZLength(PyNumericalCommandArgumentsSubItem):
|
|
4921
|
+
"""
|
|
4922
|
+
Argument BoxZLength.
|
|
4923
|
+
"""
|
|
4924
|
+
|
|
4925
|
+
class _BoxCenterY(PyNumericalCommandArgumentsSubItem):
|
|
4926
|
+
"""
|
|
4927
|
+
Argument BoxCenterY.
|
|
4928
|
+
"""
|
|
4929
|
+
|
|
4930
|
+
class _CylinderZ1(PyNumericalCommandArgumentsSubItem):
|
|
4931
|
+
"""
|
|
4932
|
+
Argument CylinderZ1.
|
|
4933
|
+
"""
|
|
4934
|
+
|
|
4935
|
+
class _CylinderRadius1(PyNumericalCommandArgumentsSubItem):
|
|
4936
|
+
"""
|
|
4937
|
+
Argument CylinderRadius1.
|
|
4938
|
+
"""
|
|
4939
|
+
|
|
4940
|
+
class _BoxCenterX(PyNumericalCommandArgumentsSubItem):
|
|
4941
|
+
"""
|
|
4942
|
+
Argument BoxCenterX.
|
|
4943
|
+
"""
|
|
4944
|
+
|
|
4893
4945
|
class _BoxCenterZ(PyNumericalCommandArgumentsSubItem):
|
|
4894
4946
|
"""
|
|
4895
4947
|
Argument BoxCenterZ.
|
|
4896
4948
|
"""
|
|
4897
4949
|
|
|
4950
|
+
class _CylinderRadius2(PyNumericalCommandArgumentsSubItem):
|
|
4951
|
+
"""
|
|
4952
|
+
Argument CylinderRadius2.
|
|
4953
|
+
"""
|
|
4954
|
+
|
|
4955
|
+
class _CylinderY2(PyNumericalCommandArgumentsSubItem):
|
|
4956
|
+
"""
|
|
4957
|
+
Argument CylinderY2.
|
|
4958
|
+
"""
|
|
4959
|
+
|
|
4898
4960
|
def create_instance(self) -> _CreateBackgroundMeshCommandArguments:
|
|
4899
4961
|
args = self._get_create_instance_args()
|
|
4900
4962
|
if args is not None:
|
|
@@ -4929,11 +4991,11 @@ class Root(PyMenu):
|
|
|
4929
4991
|
TopologyList : list[str]
|
|
4930
4992
|
BoundingBoxObject : dict[str, Any]
|
|
4931
4993
|
OffsetObject : dict[str, Any]
|
|
4994
|
+
CylinderMethod : str
|
|
4932
4995
|
CylinderObject : dict[str, Any]
|
|
4933
4996
|
Axis : dict[str, Any]
|
|
4934
4997
|
VolumeFill : str
|
|
4935
4998
|
Specify the type of mesh cell to use to fill the collar mesh. Available options are tetrahedral, hexcore, poly, or poly-hexcore. .
|
|
4936
|
-
CylinderMethod : str
|
|
4937
4999
|
CylinderLength : float
|
|
4938
5000
|
GeometryToolsProperties : dict[str, Any]
|
|
4939
5001
|
|
|
@@ -4958,10 +5020,10 @@ class Root(PyMenu):
|
|
|
4958
5020
|
self.TopologyList = self._TopologyList(self, "TopologyList", service, rules, path)
|
|
4959
5021
|
self.BoundingBoxObject = self._BoundingBoxObject(self, "BoundingBoxObject", service, rules, path)
|
|
4960
5022
|
self.OffsetObject = self._OffsetObject(self, "OffsetObject", service, rules, path)
|
|
5023
|
+
self.CylinderMethod = self._CylinderMethod(self, "CylinderMethod", service, rules, path)
|
|
4961
5024
|
self.CylinderObject = self._CylinderObject(self, "CylinderObject", service, rules, path)
|
|
4962
5025
|
self.Axis = self._Axis(self, "Axis", service, rules, path)
|
|
4963
5026
|
self.VolumeFill = self._VolumeFill(self, "VolumeFill", service, rules, path)
|
|
4964
|
-
self.CylinderMethod = self._CylinderMethod(self, "CylinderMethod", service, rules, path)
|
|
4965
5027
|
self.CylinderLength = self._CylinderLength(self, "CylinderLength", service, rules, path)
|
|
4966
5028
|
self.GeometryToolsProperties = self._GeometryToolsProperties(self, "GeometryToolsProperties", service, rules, path)
|
|
4967
5029
|
|
|
@@ -5033,7 +5095,7 @@ class Root(PyMenu):
|
|
|
5033
5095
|
def __init__(self, parent, attr, service, rules, path):
|
|
5034
5096
|
super().__init__(parent, attr, service, rules, path)
|
|
5035
5097
|
self.SizeRelativeLength = self._SizeRelativeLength(self, "SizeRelativeLength", service, rules, path)
|
|
5036
|
-
self.
|
|
5098
|
+
self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
|
|
5037
5099
|
self.XminRatio = self._XminRatio(self, "XminRatio", service, rules, path)
|
|
5038
5100
|
self.YminRatio = self._YminRatio(self, "YminRatio", service, rules, path)
|
|
5039
5101
|
self.Zmin = self._Zmin(self, "Zmin", service, rules, path)
|
|
@@ -5044,16 +5106,16 @@ class Root(PyMenu):
|
|
|
5044
5106
|
self.Xmin = self._Xmin(self, "Xmin", service, rules, path)
|
|
5045
5107
|
self.YmaxRatio = self._YmaxRatio(self, "YmaxRatio", service, rules, path)
|
|
5046
5108
|
self.ZmaxRatio = self._ZmaxRatio(self, "ZmaxRatio", service, rules, path)
|
|
5047
|
-
self.
|
|
5109
|
+
self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
|
|
5048
5110
|
|
|
5049
5111
|
class _SizeRelativeLength(PyTextualCommandArgumentsSubItem):
|
|
5050
5112
|
"""
|
|
5051
5113
|
Argument SizeRelativeLength.
|
|
5052
5114
|
"""
|
|
5053
5115
|
|
|
5054
|
-
class
|
|
5116
|
+
class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
|
|
5055
5117
|
"""
|
|
5056
|
-
|
|
5118
|
+
Argument XmaxRatio.
|
|
5057
5119
|
"""
|
|
5058
5120
|
|
|
5059
5121
|
class _XminRatio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5106,9 +5168,9 @@ class Root(PyMenu):
|
|
|
5106
5168
|
Argument ZmaxRatio.
|
|
5107
5169
|
"""
|
|
5108
5170
|
|
|
5109
|
-
class
|
|
5171
|
+
class _Xmax(PyNumericalCommandArgumentsSubItem):
|
|
5110
5172
|
"""
|
|
5111
|
-
|
|
5173
|
+
Specify the x-coordinate of the offset collar mesh.
|
|
5112
5174
|
"""
|
|
5113
5175
|
|
|
5114
5176
|
class _OffsetObject(PySingletonCommandArgumentsSubItem):
|
|
@@ -5124,15 +5186,15 @@ class Root(PyMenu):
|
|
|
5124
5186
|
self.Y = self._Y(self, "Y", service, rules, path)
|
|
5125
5187
|
self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
|
|
5126
5188
|
self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
|
|
5127
|
-
self.
|
|
5128
|
-
self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
|
|
5189
|
+
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
|
|
5129
5190
|
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
5191
|
+
self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
|
|
5130
5192
|
self.FlowDirection = self._FlowDirection(self, "FlowDirection", service, rules, path)
|
|
5131
5193
|
self.MptMethodType = self._MptMethodType(self, "MptMethodType", service, rules, path)
|
|
5132
5194
|
self.EdgeSelectionList = self._EdgeSelectionList(self, "EdgeSelectionList", service, rules, path)
|
|
5133
|
-
self.
|
|
5134
|
-
self.X = self._X(self, "X", service, rules, path)
|
|
5195
|
+
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
5135
5196
|
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
5197
|
+
self.X = self._X(self, "X", service, rules, path)
|
|
5136
5198
|
self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
|
|
5137
5199
|
self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
|
|
5138
5200
|
self.FirstHeight = self._FirstHeight(self, "FirstHeight", service, rules, path)
|
|
@@ -5169,19 +5231,19 @@ class Root(PyMenu):
|
|
|
5169
5231
|
Argument BoundaryLayerLevels.
|
|
5170
5232
|
"""
|
|
5171
5233
|
|
|
5172
|
-
class
|
|
5234
|
+
class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
|
|
5173
5235
|
"""
|
|
5174
|
-
Argument
|
|
5236
|
+
Argument WakeGrowthFactor.
|
|
5175
5237
|
"""
|
|
5176
5238
|
|
|
5177
|
-
class
|
|
5239
|
+
class _Rate(PyNumericalCommandArgumentsSubItem):
|
|
5178
5240
|
"""
|
|
5179
|
-
Argument
|
|
5241
|
+
Argument Rate.
|
|
5180
5242
|
"""
|
|
5181
5243
|
|
|
5182
|
-
class
|
|
5244
|
+
class _AspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
5183
5245
|
"""
|
|
5184
|
-
Argument
|
|
5246
|
+
Argument AspectRatio.
|
|
5185
5247
|
"""
|
|
5186
5248
|
|
|
5187
5249
|
class _FlowDirection(PyTextualCommandArgumentsSubItem):
|
|
@@ -5199,19 +5261,19 @@ class Root(PyMenu):
|
|
|
5199
5261
|
Choose a single edge zone from the list below for your edge-based collar mesh. Use the Filter Text field to provide text and/or regular expressions in filtering the list. The matching list item(s) are automatically displayed in the list. Use ^, |, and & in your expression to indicate boolean operations for NOT, OR, and AND, respectively. More...
|
|
5200
5262
|
"""
|
|
5201
5263
|
|
|
5202
|
-
class
|
|
5264
|
+
class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
|
|
5203
5265
|
"""
|
|
5204
|
-
Argument
|
|
5266
|
+
Argument NumberOfLayers.
|
|
5205
5267
|
"""
|
|
5206
5268
|
|
|
5207
|
-
class
|
|
5269
|
+
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
5208
5270
|
"""
|
|
5209
|
-
|
|
5271
|
+
Argument LastRatioPercentage.
|
|
5210
5272
|
"""
|
|
5211
5273
|
|
|
5212
|
-
class
|
|
5274
|
+
class _X(PyNumericalCommandArgumentsSubItem):
|
|
5213
5275
|
"""
|
|
5214
|
-
|
|
5276
|
+
Specify the x-coordinate of the offset collar mesh.
|
|
5215
5277
|
"""
|
|
5216
5278
|
|
|
5217
5279
|
class _OffsetMethodType(PyTextualCommandArgumentsSubItem):
|
|
@@ -5239,9 +5301,14 @@ class Root(PyMenu):
|
|
|
5239
5301
|
Argument CrossWakeGrowthFactor.
|
|
5240
5302
|
"""
|
|
5241
5303
|
|
|
5242
|
-
class
|
|
5304
|
+
class _CylinderMethod(PyTextualCommandArgumentsSubItem):
|
|
5243
5305
|
"""
|
|
5244
|
-
Argument
|
|
5306
|
+
Argument CylinderMethod.
|
|
5307
|
+
"""
|
|
5308
|
+
|
|
5309
|
+
class _CylinderObject(PySingletonCommandArgumentsSubItem):
|
|
5310
|
+
"""
|
|
5311
|
+
Argument CylinderObject.
|
|
5245
5312
|
"""
|
|
5246
5313
|
|
|
5247
5314
|
def __init__(self, parent, attr, service, rules, path):
|
|
@@ -5259,8 +5326,8 @@ class Root(PyMenu):
|
|
|
5259
5326
|
self.Y2 = self._Y2(self, "Y2", service, rules, path)
|
|
5260
5327
|
self.Node3 = self._Node3(self, "Node3", service, rules, path)
|
|
5261
5328
|
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
5262
|
-
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
5263
5329
|
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
5330
|
+
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
5264
5331
|
self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
|
|
5265
5332
|
self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
|
|
5266
5333
|
|
|
@@ -5329,14 +5396,14 @@ class Root(PyMenu):
|
|
|
5329
5396
|
Argument X2.
|
|
5330
5397
|
"""
|
|
5331
5398
|
|
|
5332
|
-
class
|
|
5399
|
+
class _Node2(PyTextualCommandArgumentsSubItem):
|
|
5333
5400
|
"""
|
|
5334
|
-
Argument
|
|
5401
|
+
Argument Node2.
|
|
5335
5402
|
"""
|
|
5336
5403
|
|
|
5337
|
-
class
|
|
5404
|
+
class _Y_Offset(PyNumericalCommandArgumentsSubItem):
|
|
5338
5405
|
"""
|
|
5339
|
-
Argument
|
|
5406
|
+
Argument Y-Offset.
|
|
5340
5407
|
"""
|
|
5341
5408
|
|
|
5342
5409
|
class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5380,11 +5447,6 @@ class Root(PyMenu):
|
|
|
5380
5447
|
Specify the type of mesh cell to use to fill the collar mesh. Available options are tetrahedral, hexcore, poly, or poly-hexcore. .
|
|
5381
5448
|
"""
|
|
5382
5449
|
|
|
5383
|
-
class _CylinderMethod(PyTextualCommandArgumentsSubItem):
|
|
5384
|
-
"""
|
|
5385
|
-
Argument CylinderMethod.
|
|
5386
|
-
"""
|
|
5387
|
-
|
|
5388
5450
|
class _CylinderLength(PyNumericalCommandArgumentsSubItem):
|
|
5389
5451
|
"""
|
|
5390
5452
|
Argument CylinderLength.
|
|
@@ -5397,21 +5459,39 @@ class Root(PyMenu):
|
|
|
5397
5459
|
|
|
5398
5460
|
def __init__(self, parent, attr, service, rules, path):
|
|
5399
5461
|
super().__init__(parent, attr, service, rules, path)
|
|
5400
|
-
self.
|
|
5401
|
-
self.BoxCenterZ = self._BoxCenterZ(self, "BoxCenterZ", service, rules, path)
|
|
5402
|
-
self.BoxZLength = self._BoxZLength(self, "BoxZLength", service, rules, path)
|
|
5403
|
-
self.BoxCenterY = self._BoxCenterY(self, "BoxCenterY", service, rules, path)
|
|
5462
|
+
self.CylinderZ2 = self._CylinderZ2(self, "CylinderZ2", service, rules, path)
|
|
5404
5463
|
self.BoxYLength = self._BoxYLength(self, "BoxYLength", service, rules, path)
|
|
5464
|
+
self.CylinderX2 = self._CylinderX2(self, "CylinderX2", service, rules, path)
|
|
5465
|
+
self.CylinderX1 = self._CylinderX1(self, "CylinderX1", service, rules, path)
|
|
5466
|
+
self.BoxZLength = self._BoxZLength(self, "BoxZLength", service, rules, path)
|
|
5467
|
+
self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
|
|
5405
5468
|
self.BoxXLength = self._BoxXLength(self, "BoxXLength", service, rules, path)
|
|
5469
|
+
self.BoxCenterY = self._BoxCenterY(self, "BoxCenterY", service, rules, path)
|
|
5470
|
+
self.CylinderZ1 = self._CylinderZ1(self, "CylinderZ1", service, rules, path)
|
|
5471
|
+
self.CylinderRadius1 = self._CylinderRadius1(self, "CylinderRadius1", service, rules, path)
|
|
5472
|
+
self.BoxCenterX = self._BoxCenterX(self, "BoxCenterX", service, rules, path)
|
|
5473
|
+
self.CylinderRadius2 = self._CylinderRadius2(self, "CylinderRadius2", service, rules, path)
|
|
5474
|
+
self.BoxCenterZ = self._BoxCenterZ(self, "BoxCenterZ", service, rules, path)
|
|
5475
|
+
self.CylinderY2 = self._CylinderY2(self, "CylinderY2", service, rules, path)
|
|
5406
5476
|
|
|
5407
|
-
class
|
|
5477
|
+
class _CylinderZ2(PyNumericalCommandArgumentsSubItem):
|
|
5408
5478
|
"""
|
|
5409
|
-
|
|
5479
|
+
Argument CylinderZ2.
|
|
5410
5480
|
"""
|
|
5411
5481
|
|
|
5412
|
-
class
|
|
5482
|
+
class _BoxYLength(PyNumericalCommandArgumentsSubItem):
|
|
5413
5483
|
"""
|
|
5414
|
-
|
|
5484
|
+
Argument BoxYLength.
|
|
5485
|
+
"""
|
|
5486
|
+
|
|
5487
|
+
class _CylinderX2(PyNumericalCommandArgumentsSubItem):
|
|
5488
|
+
"""
|
|
5489
|
+
Argument CylinderX2.
|
|
5490
|
+
"""
|
|
5491
|
+
|
|
5492
|
+
class _CylinderX1(PyNumericalCommandArgumentsSubItem):
|
|
5493
|
+
"""
|
|
5494
|
+
Argument CylinderX1.
|
|
5415
5495
|
"""
|
|
5416
5496
|
|
|
5417
5497
|
class _BoxZLength(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5419,19 +5499,49 @@ class Root(PyMenu):
|
|
|
5419
5499
|
Argument BoxZLength.
|
|
5420
5500
|
"""
|
|
5421
5501
|
|
|
5502
|
+
class _CylinderY1(PyNumericalCommandArgumentsSubItem):
|
|
5503
|
+
"""
|
|
5504
|
+
Argument CylinderY1.
|
|
5505
|
+
"""
|
|
5506
|
+
|
|
5507
|
+
class _BoxXLength(PyNumericalCommandArgumentsSubItem):
|
|
5508
|
+
"""
|
|
5509
|
+
Argument BoxXLength.
|
|
5510
|
+
"""
|
|
5511
|
+
|
|
5422
5512
|
class _BoxCenterY(PyNumericalCommandArgumentsSubItem):
|
|
5423
5513
|
"""
|
|
5424
5514
|
Specify the y-coordinate of the offset collar mesh.
|
|
5425
5515
|
"""
|
|
5426
5516
|
|
|
5427
|
-
class
|
|
5517
|
+
class _CylinderZ1(PyNumericalCommandArgumentsSubItem):
|
|
5428
5518
|
"""
|
|
5429
|
-
Argument
|
|
5519
|
+
Argument CylinderZ1.
|
|
5430
5520
|
"""
|
|
5431
5521
|
|
|
5432
|
-
class
|
|
5522
|
+
class _CylinderRadius1(PyNumericalCommandArgumentsSubItem):
|
|
5433
5523
|
"""
|
|
5434
|
-
Argument
|
|
5524
|
+
Argument CylinderRadius1.
|
|
5525
|
+
"""
|
|
5526
|
+
|
|
5527
|
+
class _BoxCenterX(PyNumericalCommandArgumentsSubItem):
|
|
5528
|
+
"""
|
|
5529
|
+
Specify the x-coordinate of the offset collar mesh.
|
|
5530
|
+
"""
|
|
5531
|
+
|
|
5532
|
+
class _CylinderRadius2(PyNumericalCommandArgumentsSubItem):
|
|
5533
|
+
"""
|
|
5534
|
+
Argument CylinderRadius2.
|
|
5535
|
+
"""
|
|
5536
|
+
|
|
5537
|
+
class _BoxCenterZ(PyNumericalCommandArgumentsSubItem):
|
|
5538
|
+
"""
|
|
5539
|
+
Specify the z-coordinate of the offset collar mesh.
|
|
5540
|
+
"""
|
|
5541
|
+
|
|
5542
|
+
class _CylinderY2(PyNumericalCommandArgumentsSubItem):
|
|
5543
|
+
"""
|
|
5544
|
+
Argument CylinderY2.
|
|
5435
5545
|
"""
|
|
5436
5546
|
|
|
5437
5547
|
def create_instance(self) -> _CreateCollarMeshCommandArguments:
|
|
@@ -5469,11 +5579,11 @@ class Root(PyMenu):
|
|
|
5469
5579
|
BoundingBoxObject : dict[str, Any]
|
|
5470
5580
|
View the extents of the bounding box.
|
|
5471
5581
|
OffsetObject : dict[str, Any]
|
|
5582
|
+
CylinderMethod : str
|
|
5472
5583
|
CylinderObject : dict[str, Any]
|
|
5473
5584
|
Axis : dict[str, Any]
|
|
5474
5585
|
VolumeFill : str
|
|
5475
5586
|
Specify the type of mesh cell to use to fill the component mesh. Available options are tetrahedral, hexcore, poly, or poly-hexcore. .
|
|
5476
|
-
CylinderMethod : str
|
|
5477
5587
|
CylinderLength : float
|
|
5478
5588
|
GeometryToolsProperties : dict[str, Any]
|
|
5479
5589
|
|
|
@@ -5498,10 +5608,10 @@ class Root(PyMenu):
|
|
|
5498
5608
|
self.TopologyList = self._TopologyList(self, "TopologyList", service, rules, path)
|
|
5499
5609
|
self.BoundingBoxObject = self._BoundingBoxObject(self, "BoundingBoxObject", service, rules, path)
|
|
5500
5610
|
self.OffsetObject = self._OffsetObject(self, "OffsetObject", service, rules, path)
|
|
5611
|
+
self.CylinderMethod = self._CylinderMethod(self, "CylinderMethod", service, rules, path)
|
|
5501
5612
|
self.CylinderObject = self._CylinderObject(self, "CylinderObject", service, rules, path)
|
|
5502
5613
|
self.Axis = self._Axis(self, "Axis", service, rules, path)
|
|
5503
5614
|
self.VolumeFill = self._VolumeFill(self, "VolumeFill", service, rules, path)
|
|
5504
|
-
self.CylinderMethod = self._CylinderMethod(self, "CylinderMethod", service, rules, path)
|
|
5505
5615
|
self.CylinderLength = self._CylinderLength(self, "CylinderLength", service, rules, path)
|
|
5506
5616
|
self.GeometryToolsProperties = self._GeometryToolsProperties(self, "GeometryToolsProperties", service, rules, path)
|
|
5507
5617
|
|
|
@@ -5663,18 +5773,18 @@ class Root(PyMenu):
|
|
|
5663
5773
|
self.ShowCoordinates = self._ShowCoordinates(self, "ShowCoordinates", service, rules, path)
|
|
5664
5774
|
self.Y = self._Y(self, "Y", service, rules, path)
|
|
5665
5775
|
self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
|
|
5666
|
-
self.
|
|
5776
|
+
self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
|
|
5667
5777
|
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
5668
|
-
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
|
|
5669
5778
|
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
5779
|
+
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
|
|
5670
5780
|
self.FlowDirection = self._FlowDirection(self, "FlowDirection", service, rules, path)
|
|
5671
5781
|
self.MptMethodType = self._MptMethodType(self, "MptMethodType", service, rules, path)
|
|
5672
5782
|
self.EdgeSelectionList = self._EdgeSelectionList(self, "EdgeSelectionList", service, rules, path)
|
|
5673
|
-
self.
|
|
5674
|
-
self.X = self._X(self, "X", service, rules, path)
|
|
5783
|
+
self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
|
|
5675
5784
|
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
5676
|
-
self.
|
|
5785
|
+
self.X = self._X(self, "X", service, rules, path)
|
|
5677
5786
|
self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
|
|
5787
|
+
self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
|
|
5678
5788
|
self.FirstHeight = self._FirstHeight(self, "FirstHeight", service, rules, path)
|
|
5679
5789
|
self.BoundaryLayerHeight = self._BoundaryLayerHeight(self, "BoundaryLayerHeight", service, rules, path)
|
|
5680
5790
|
self.CrossWakeGrowthFactor = self._CrossWakeGrowthFactor(self, "CrossWakeGrowthFactor", service, rules, path)
|
|
@@ -5704,9 +5814,9 @@ class Root(PyMenu):
|
|
|
5704
5814
|
Argument DefeaturingSize.
|
|
5705
5815
|
"""
|
|
5706
5816
|
|
|
5707
|
-
class
|
|
5817
|
+
class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
|
|
5708
5818
|
"""
|
|
5709
|
-
|
|
5819
|
+
Argument BoundaryLayerLevels.
|
|
5710
5820
|
"""
|
|
5711
5821
|
|
|
5712
5822
|
class _Rate(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5714,14 +5824,14 @@ class Root(PyMenu):
|
|
|
5714
5824
|
Specify the rate of growth of the boundary layer.
|
|
5715
5825
|
"""
|
|
5716
5826
|
|
|
5717
|
-
class
|
|
5827
|
+
class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
|
|
5718
5828
|
"""
|
|
5719
|
-
|
|
5829
|
+
Select the number of boundary layers to be generated.
|
|
5720
5830
|
"""
|
|
5721
5831
|
|
|
5722
|
-
class
|
|
5832
|
+
class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
|
|
5723
5833
|
"""
|
|
5724
|
-
|
|
5834
|
+
Argument WakeGrowthFactor.
|
|
5725
5835
|
"""
|
|
5726
5836
|
|
|
5727
5837
|
class _FlowDirection(PyTextualCommandArgumentsSubItem):
|
|
@@ -5739,14 +5849,9 @@ class Root(PyMenu):
|
|
|
5739
5849
|
Argument EdgeSelectionList.
|
|
5740
5850
|
"""
|
|
5741
5851
|
|
|
5742
|
-
class
|
|
5743
|
-
"""
|
|
5744
|
-
Argument BoundaryLayerLevels.
|
|
5745
|
-
"""
|
|
5746
|
-
|
|
5747
|
-
class _X(PyNumericalCommandArgumentsSubItem):
|
|
5852
|
+
class _AspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
5748
5853
|
"""
|
|
5749
|
-
|
|
5854
|
+
Specify the ratio of the prism base length to the prism layer height.
|
|
5750
5855
|
"""
|
|
5751
5856
|
|
|
5752
5857
|
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5754,9 +5859,9 @@ class Root(PyMenu):
|
|
|
5754
5859
|
Specify the offset height of the last layer as a percentage of the local base mesh size.
|
|
5755
5860
|
"""
|
|
5756
5861
|
|
|
5757
|
-
class
|
|
5862
|
+
class _X(PyNumericalCommandArgumentsSubItem):
|
|
5758
5863
|
"""
|
|
5759
|
-
|
|
5864
|
+
Argument X.
|
|
5760
5865
|
"""
|
|
5761
5866
|
|
|
5762
5867
|
class _FlipDirection(PyParameterCommandArgumentsSubItem):
|
|
@@ -5764,6 +5869,11 @@ class Root(PyMenu):
|
|
|
5764
5869
|
Argument FlipDirection.
|
|
5765
5870
|
"""
|
|
5766
5871
|
|
|
5872
|
+
class _OffsetMethodType(PyTextualCommandArgumentsSubItem):
|
|
5873
|
+
"""
|
|
5874
|
+
Choose the method that will be used to create the boundary layer, or prism, controls.
|
|
5875
|
+
"""
|
|
5876
|
+
|
|
5767
5877
|
class _FirstHeight(PyNumericalCommandArgumentsSubItem):
|
|
5768
5878
|
"""
|
|
5769
5879
|
Specify the height of the first layer of cells in the boundary layer.
|
|
@@ -5779,6 +5889,11 @@ class Root(PyMenu):
|
|
|
5779
5889
|
Argument CrossWakeGrowthFactor.
|
|
5780
5890
|
"""
|
|
5781
5891
|
|
|
5892
|
+
class _CylinderMethod(PyTextualCommandArgumentsSubItem):
|
|
5893
|
+
"""
|
|
5894
|
+
Argument CylinderMethod.
|
|
5895
|
+
"""
|
|
5896
|
+
|
|
5782
5897
|
class _CylinderObject(PySingletonCommandArgumentsSubItem):
|
|
5783
5898
|
"""
|
|
5784
5899
|
Argument CylinderObject.
|
|
@@ -5792,14 +5907,14 @@ class Root(PyMenu):
|
|
|
5792
5907
|
self.X1 = self._X1(self, "X1", service, rules, path)
|
|
5793
5908
|
self.Y1 = self._Y1(self, "Y1", service, rules, path)
|
|
5794
5909
|
self.Z_Offset = self._Z_Offset(self, "Z-Offset", service, rules, path)
|
|
5795
|
-
self.Z2 = self._Z2(self, "Z2", service, rules, path)
|
|
5796
|
-
self.Node1 = self._Node1(self, "Node1", service, rules, path)
|
|
5797
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)
|
|
5798
5913
|
self.Radius2 = self._Radius2(self, "Radius2", service, rules, path)
|
|
5799
5914
|
self.Y2 = self._Y2(self, "Y2", service, rules, path)
|
|
5800
5915
|
self.Node3 = self._Node3(self, "Node3", service, rules, path)
|
|
5801
|
-
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
5802
5916
|
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
5917
|
+
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
5803
5918
|
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
5804
5919
|
self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
|
|
5805
5920
|
self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
|
|
@@ -5834,9 +5949,9 @@ class Root(PyMenu):
|
|
|
5834
5949
|
Argument Z-Offset.
|
|
5835
5950
|
"""
|
|
5836
5951
|
|
|
5837
|
-
class
|
|
5952
|
+
class _Z1(PyNumericalCommandArgumentsSubItem):
|
|
5838
5953
|
"""
|
|
5839
|
-
Argument
|
|
5954
|
+
Argument Z1.
|
|
5840
5955
|
"""
|
|
5841
5956
|
|
|
5842
5957
|
class _Node1(PyTextualCommandArgumentsSubItem):
|
|
@@ -5844,9 +5959,9 @@ class Root(PyMenu):
|
|
|
5844
5959
|
Argument Node1.
|
|
5845
5960
|
"""
|
|
5846
5961
|
|
|
5847
|
-
class
|
|
5962
|
+
class _Z2(PyNumericalCommandArgumentsSubItem):
|
|
5848
5963
|
"""
|
|
5849
|
-
Argument
|
|
5964
|
+
Argument Z2.
|
|
5850
5965
|
"""
|
|
5851
5966
|
|
|
5852
5967
|
class _Radius2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5864,14 +5979,14 @@ class Root(PyMenu):
|
|
|
5864
5979
|
Argument Node3.
|
|
5865
5980
|
"""
|
|
5866
5981
|
|
|
5867
|
-
class
|
|
5982
|
+
class _X2(PyNumericalCommandArgumentsSubItem):
|
|
5868
5983
|
"""
|
|
5869
|
-
Argument
|
|
5984
|
+
Argument X2.
|
|
5870
5985
|
"""
|
|
5871
5986
|
|
|
5872
|
-
class
|
|
5987
|
+
class _Node2(PyTextualCommandArgumentsSubItem):
|
|
5873
5988
|
"""
|
|
5874
|
-
Argument
|
|
5989
|
+
Argument Node2.
|
|
5875
5990
|
"""
|
|
5876
5991
|
|
|
5877
5992
|
class _Y_Offset(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5920,11 +6035,6 @@ class Root(PyMenu):
|
|
|
5920
6035
|
Specify the type of mesh cell to use to fill the component mesh. Available options are tetrahedral, hexcore, poly, or poly-hexcore. .
|
|
5921
6036
|
"""
|
|
5922
6037
|
|
|
5923
|
-
class _CylinderMethod(PyTextualCommandArgumentsSubItem):
|
|
5924
|
-
"""
|
|
5925
|
-
Argument CylinderMethod.
|
|
5926
|
-
"""
|
|
5927
|
-
|
|
5928
6038
|
class _CylinderLength(PyNumericalCommandArgumentsSubItem):
|
|
5929
6039
|
"""
|
|
5930
6040
|
Argument CylinderLength.
|
|
@@ -5937,16 +6047,29 @@ class Root(PyMenu):
|
|
|
5937
6047
|
|
|
5938
6048
|
def __init__(self, parent, attr, service, rules, path):
|
|
5939
6049
|
super().__init__(parent, attr, service, rules, path)
|
|
5940
|
-
self.
|
|
6050
|
+
self.CylinderZ2 = self._CylinderZ2(self, "CylinderZ2", service, rules, path)
|
|
6051
|
+
self.CylinderX2 = self._CylinderX2(self, "CylinderX2", service, rules, path)
|
|
5941
6052
|
self.BoxYLength = self._BoxYLength(self, "BoxYLength", service, rules, path)
|
|
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)
|
|
5942
6056
|
self.BoxXLength = self._BoxXLength(self, "BoxXLength", service, rules, path)
|
|
5943
6057
|
self.BoxCenterY = self._BoxCenterY(self, "BoxCenterY", service, rules, path)
|
|
6058
|
+
self.CylinderZ1 = self._CylinderZ1(self, "CylinderZ1", service, rules, path)
|
|
6059
|
+
self.CylinderRadius1 = self._CylinderRadius1(self, "CylinderRadius1", service, rules, path)
|
|
6060
|
+
self.BoxCenterX = self._BoxCenterX(self, "BoxCenterX", service, rules, path)
|
|
5944
6061
|
self.BoxCenterZ = self._BoxCenterZ(self, "BoxCenterZ", service, rules, path)
|
|
5945
|
-
self.
|
|
6062
|
+
self.CylinderRadius2 = self._CylinderRadius2(self, "CylinderRadius2", service, rules, path)
|
|
6063
|
+
self.CylinderY2 = self._CylinderY2(self, "CylinderY2", service, rules, path)
|
|
5946
6064
|
|
|
5947
|
-
class
|
|
6065
|
+
class _CylinderZ2(PyNumericalCommandArgumentsSubItem):
|
|
5948
6066
|
"""
|
|
5949
|
-
Argument
|
|
6067
|
+
Argument CylinderZ2.
|
|
6068
|
+
"""
|
|
6069
|
+
|
|
6070
|
+
class _CylinderX2(PyNumericalCommandArgumentsSubItem):
|
|
6071
|
+
"""
|
|
6072
|
+
Argument CylinderX2.
|
|
5950
6073
|
"""
|
|
5951
6074
|
|
|
5952
6075
|
class _BoxYLength(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5954,6 +6077,21 @@ class Root(PyMenu):
|
|
|
5954
6077
|
Argument BoxYLength.
|
|
5955
6078
|
"""
|
|
5956
6079
|
|
|
6080
|
+
class _CylinderX1(PyNumericalCommandArgumentsSubItem):
|
|
6081
|
+
"""
|
|
6082
|
+
Argument CylinderX1.
|
|
6083
|
+
"""
|
|
6084
|
+
|
|
6085
|
+
class _BoxZLength(PyNumericalCommandArgumentsSubItem):
|
|
6086
|
+
"""
|
|
6087
|
+
Argument BoxZLength.
|
|
6088
|
+
"""
|
|
6089
|
+
|
|
6090
|
+
class _CylinderY1(PyNumericalCommandArgumentsSubItem):
|
|
6091
|
+
"""
|
|
6092
|
+
Argument CylinderY1.
|
|
6093
|
+
"""
|
|
6094
|
+
|
|
5957
6095
|
class _BoxXLength(PyNumericalCommandArgumentsSubItem):
|
|
5958
6096
|
"""
|
|
5959
6097
|
Argument BoxXLength.
|
|
@@ -5964,14 +6102,34 @@ class Root(PyMenu):
|
|
|
5964
6102
|
Argument BoxCenterY.
|
|
5965
6103
|
"""
|
|
5966
6104
|
|
|
6105
|
+
class _CylinderZ1(PyNumericalCommandArgumentsSubItem):
|
|
6106
|
+
"""
|
|
6107
|
+
Argument CylinderZ1.
|
|
6108
|
+
"""
|
|
6109
|
+
|
|
6110
|
+
class _CylinderRadius1(PyNumericalCommandArgumentsSubItem):
|
|
6111
|
+
"""
|
|
6112
|
+
Argument CylinderRadius1.
|
|
6113
|
+
"""
|
|
6114
|
+
|
|
6115
|
+
class _BoxCenterX(PyNumericalCommandArgumentsSubItem):
|
|
6116
|
+
"""
|
|
6117
|
+
Argument BoxCenterX.
|
|
6118
|
+
"""
|
|
6119
|
+
|
|
5967
6120
|
class _BoxCenterZ(PyNumericalCommandArgumentsSubItem):
|
|
5968
6121
|
"""
|
|
5969
6122
|
Argument BoxCenterZ.
|
|
5970
6123
|
"""
|
|
5971
6124
|
|
|
5972
|
-
class
|
|
6125
|
+
class _CylinderRadius2(PyNumericalCommandArgumentsSubItem):
|
|
5973
6126
|
"""
|
|
5974
|
-
Argument
|
|
6127
|
+
Argument CylinderRadius2.
|
|
6128
|
+
"""
|
|
6129
|
+
|
|
6130
|
+
class _CylinderY2(PyNumericalCommandArgumentsSubItem):
|
|
6131
|
+
"""
|
|
6132
|
+
Argument CylinderY2.
|
|
5975
6133
|
"""
|
|
5976
6134
|
|
|
5977
6135
|
def create_instance(self) -> _CreateComponentMeshCommandArguments:
|
|
@@ -6481,6 +6639,124 @@ class Root(PyMenu):
|
|
|
6481
6639
|
if args is not None:
|
|
6482
6640
|
return self._CreateGroupCommandArguments(*args)
|
|
6483
6641
|
|
|
6642
|
+
class CreateLeakShield(PyCommand):
|
|
6643
|
+
"""
|
|
6644
|
+
Command CreateLeakShield.
|
|
6645
|
+
|
|
6646
|
+
Parameters
|
|
6647
|
+
----------
|
|
6648
|
+
LeakShieldName : str
|
|
6649
|
+
UseSizeField : str
|
|
6650
|
+
SizeFieldFileName : str
|
|
6651
|
+
MaxHoleSize : float
|
|
6652
|
+
MinHoleSize : float
|
|
6653
|
+
SpecifyObj : bool
|
|
6654
|
+
SpecifyLive : bool
|
|
6655
|
+
SpecifyDead : bool
|
|
6656
|
+
ObjectSelectionList : list[str]
|
|
6657
|
+
LiveMptSelectionList : list[str]
|
|
6658
|
+
DeadRegionsList : list[str]
|
|
6659
|
+
PatchAtLive : str
|
|
6660
|
+
PromptForCleanup : str
|
|
6661
|
+
MergePatches : str
|
|
6662
|
+
|
|
6663
|
+
Returns
|
|
6664
|
+
-------
|
|
6665
|
+
bool
|
|
6666
|
+
"""
|
|
6667
|
+
class _CreateLeakShieldCommandArguments(PyCommandArguments):
|
|
6668
|
+
def __init__(self, service, rules, command, path, id):
|
|
6669
|
+
super().__init__(service, rules, command, path, id)
|
|
6670
|
+
self.LeakShieldName = self._LeakShieldName(self, "LeakShieldName", service, rules, path)
|
|
6671
|
+
self.UseSizeField = self._UseSizeField(self, "UseSizeField", service, rules, path)
|
|
6672
|
+
self.SizeFieldFileName = self._SizeFieldFileName(self, "SizeFieldFileName", service, rules, path)
|
|
6673
|
+
self.MaxHoleSize = self._MaxHoleSize(self, "MaxHoleSize", service, rules, path)
|
|
6674
|
+
self.MinHoleSize = self._MinHoleSize(self, "MinHoleSize", service, rules, path)
|
|
6675
|
+
self.SpecifyObj = self._SpecifyObj(self, "SpecifyObj", service, rules, path)
|
|
6676
|
+
self.SpecifyLive = self._SpecifyLive(self, "SpecifyLive", service, rules, path)
|
|
6677
|
+
self.SpecifyDead = self._SpecifyDead(self, "SpecifyDead", service, rules, path)
|
|
6678
|
+
self.ObjectSelectionList = self._ObjectSelectionList(self, "ObjectSelectionList", service, rules, path)
|
|
6679
|
+
self.LiveMptSelectionList = self._LiveMptSelectionList(self, "LiveMptSelectionList", service, rules, path)
|
|
6680
|
+
self.DeadRegionsList = self._DeadRegionsList(self, "DeadRegionsList", service, rules, path)
|
|
6681
|
+
self.PatchAtLive = self._PatchAtLive(self, "PatchAtLive", service, rules, path)
|
|
6682
|
+
self.PromptForCleanup = self._PromptForCleanup(self, "PromptForCleanup", service, rules, path)
|
|
6683
|
+
self.MergePatches = self._MergePatches(self, "MergePatches", service, rules, path)
|
|
6684
|
+
|
|
6685
|
+
class _LeakShieldName(PyTextualCommandArgumentsSubItem):
|
|
6686
|
+
"""
|
|
6687
|
+
Argument LeakShieldName.
|
|
6688
|
+
"""
|
|
6689
|
+
|
|
6690
|
+
class _UseSizeField(PyTextualCommandArgumentsSubItem):
|
|
6691
|
+
"""
|
|
6692
|
+
Argument UseSizeField.
|
|
6693
|
+
"""
|
|
6694
|
+
|
|
6695
|
+
class _SizeFieldFileName(PyTextualCommandArgumentsSubItem):
|
|
6696
|
+
"""
|
|
6697
|
+
Argument SizeFieldFileName.
|
|
6698
|
+
"""
|
|
6699
|
+
|
|
6700
|
+
class _MaxHoleSize(PyNumericalCommandArgumentsSubItem):
|
|
6701
|
+
"""
|
|
6702
|
+
Argument MaxHoleSize.
|
|
6703
|
+
"""
|
|
6704
|
+
|
|
6705
|
+
class _MinHoleSize(PyNumericalCommandArgumentsSubItem):
|
|
6706
|
+
"""
|
|
6707
|
+
Argument MinHoleSize.
|
|
6708
|
+
"""
|
|
6709
|
+
|
|
6710
|
+
class _SpecifyObj(PyParameterCommandArgumentsSubItem):
|
|
6711
|
+
"""
|
|
6712
|
+
Argument SpecifyObj.
|
|
6713
|
+
"""
|
|
6714
|
+
|
|
6715
|
+
class _SpecifyLive(PyParameterCommandArgumentsSubItem):
|
|
6716
|
+
"""
|
|
6717
|
+
Argument SpecifyLive.
|
|
6718
|
+
"""
|
|
6719
|
+
|
|
6720
|
+
class _SpecifyDead(PyParameterCommandArgumentsSubItem):
|
|
6721
|
+
"""
|
|
6722
|
+
Argument SpecifyDead.
|
|
6723
|
+
"""
|
|
6724
|
+
|
|
6725
|
+
class _ObjectSelectionList(PyTextualCommandArgumentsSubItem):
|
|
6726
|
+
"""
|
|
6727
|
+
Argument ObjectSelectionList.
|
|
6728
|
+
"""
|
|
6729
|
+
|
|
6730
|
+
class _LiveMptSelectionList(PyTextualCommandArgumentsSubItem):
|
|
6731
|
+
"""
|
|
6732
|
+
Argument LiveMptSelectionList.
|
|
6733
|
+
"""
|
|
6734
|
+
|
|
6735
|
+
class _DeadRegionsList(PyTextualCommandArgumentsSubItem):
|
|
6736
|
+
"""
|
|
6737
|
+
Argument DeadRegionsList.
|
|
6738
|
+
"""
|
|
6739
|
+
|
|
6740
|
+
class _PatchAtLive(PyTextualCommandArgumentsSubItem):
|
|
6741
|
+
"""
|
|
6742
|
+
Argument PatchAtLive.
|
|
6743
|
+
"""
|
|
6744
|
+
|
|
6745
|
+
class _PromptForCleanup(PyTextualCommandArgumentsSubItem):
|
|
6746
|
+
"""
|
|
6747
|
+
Argument PromptForCleanup.
|
|
6748
|
+
"""
|
|
6749
|
+
|
|
6750
|
+
class _MergePatches(PyTextualCommandArgumentsSubItem):
|
|
6751
|
+
"""
|
|
6752
|
+
Argument MergePatches.
|
|
6753
|
+
"""
|
|
6754
|
+
|
|
6755
|
+
def create_instance(self) -> _CreateLeakShieldCommandArguments:
|
|
6756
|
+
args = self._get_create_instance_args()
|
|
6757
|
+
if args is not None:
|
|
6758
|
+
return self._CreateLeakShieldCommandArguments(*args)
|
|
6759
|
+
|
|
6484
6760
|
class CreateLocalRefinementRegions(PyCommand):
|
|
6485
6761
|
"""
|
|
6486
6762
|
Define a more refined region, or body of influence (BOI) when simulating flow within or around your geometry. You can manually create a body of influence using a bounding box or by using an offset surface. This body surrounds the relevant aspects of your geometry, such as the wake region behind a vehicle. More...
|
|
@@ -6510,11 +6786,11 @@ class Root(PyMenu):
|
|
|
6510
6786
|
View the extents of the bounding box.
|
|
6511
6787
|
OffsetObject : dict[str, Any]
|
|
6512
6788
|
These fields contain parameters that define the characteristics of the refinements region (direction, thickness, levels, etc.)
|
|
6789
|
+
CylinderMethod : str
|
|
6790
|
+
Choose how the cylindrical refinement region will be defined. The Vector and Length option allows you to define the cylindrical refinement region based either on the location of selected object(s) or zone(s), or by coordinates. If you choose to select by object(s) or zone(s), the location of the cylindrical refinement region will be at the center point of the selected surface. The Two Positions option allows you to explicitly define the location and dimension of the cylindrical refinement region without having to select object(s) or zone(s).
|
|
6513
6791
|
CylinderObject : dict[str, Any]
|
|
6514
6792
|
Axis : dict[str, Any]
|
|
6515
6793
|
VolumeFill : str
|
|
6516
|
-
CylinderMethod : str
|
|
6517
|
-
Choose how the cylindrical refinement region will be defined. The Vector and Length option allows you to define the cylindrical refinement region based either on the location of selected object(s) or zone(s), or by coordinates. If you choose to select by object(s) or zone(s), the location of the cylindrical refinement region will be at the center point of the selected surface. The Two Positions option allows you to explicitly define the location and dimension of the cylindrical refinement region without having to select object(s) or zone(s).
|
|
6518
6794
|
CylinderLength : float
|
|
6519
6795
|
Specify the Length of the cylinder.
|
|
6520
6796
|
GeometryToolsProperties : dict[str, Any]
|
|
@@ -6540,10 +6816,10 @@ class Root(PyMenu):
|
|
|
6540
6816
|
self.TopologyList = self._TopologyList(self, "TopologyList", service, rules, path)
|
|
6541
6817
|
self.BoundingBoxObject = self._BoundingBoxObject(self, "BoundingBoxObject", service, rules, path)
|
|
6542
6818
|
self.OffsetObject = self._OffsetObject(self, "OffsetObject", service, rules, path)
|
|
6819
|
+
self.CylinderMethod = self._CylinderMethod(self, "CylinderMethod", service, rules, path)
|
|
6543
6820
|
self.CylinderObject = self._CylinderObject(self, "CylinderObject", service, rules, path)
|
|
6544
6821
|
self.Axis = self._Axis(self, "Axis", service, rules, path)
|
|
6545
6822
|
self.VolumeFill = self._VolumeFill(self, "VolumeFill", service, rules, path)
|
|
6546
|
-
self.CylinderMethod = self._CylinderMethod(self, "CylinderMethod", service, rules, path)
|
|
6547
6823
|
self.CylinderLength = self._CylinderLength(self, "CylinderLength", service, rules, path)
|
|
6548
6824
|
self.GeometryToolsProperties = self._GeometryToolsProperties(self, "GeometryToolsProperties", service, rules, path)
|
|
6549
6825
|
|
|
@@ -6615,7 +6891,7 @@ class Root(PyMenu):
|
|
|
6615
6891
|
def __init__(self, parent, attr, service, rules, path):
|
|
6616
6892
|
super().__init__(parent, attr, service, rules, path)
|
|
6617
6893
|
self.SizeRelativeLength = self._SizeRelativeLength(self, "SizeRelativeLength", service, rules, path)
|
|
6618
|
-
self.
|
|
6894
|
+
self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
|
|
6619
6895
|
self.XminRatio = self._XminRatio(self, "XminRatio", service, rules, path)
|
|
6620
6896
|
self.YminRatio = self._YminRatio(self, "YminRatio", service, rules, path)
|
|
6621
6897
|
self.Zmin = self._Zmin(self, "Zmin", service, rules, path)
|
|
@@ -6626,16 +6902,16 @@ class Root(PyMenu):
|
|
|
6626
6902
|
self.Xmin = self._Xmin(self, "Xmin", service, rules, path)
|
|
6627
6903
|
self.YmaxRatio = self._YmaxRatio(self, "YmaxRatio", service, rules, path)
|
|
6628
6904
|
self.ZmaxRatio = self._ZmaxRatio(self, "ZmaxRatio", service, rules, path)
|
|
6629
|
-
self.
|
|
6905
|
+
self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
|
|
6630
6906
|
|
|
6631
6907
|
class _SizeRelativeLength(PyTextualCommandArgumentsSubItem):
|
|
6632
6908
|
"""
|
|
6633
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.
|
|
6634
6910
|
"""
|
|
6635
6911
|
|
|
6636
|
-
class
|
|
6912
|
+
class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
|
|
6637
6913
|
"""
|
|
6638
|
-
|
|
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.
|
|
6639
6915
|
"""
|
|
6640
6916
|
|
|
6641
6917
|
class _XminRatio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -6688,9 +6964,9 @@ class Root(PyMenu):
|
|
|
6688
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.
|
|
6689
6965
|
"""
|
|
6690
6966
|
|
|
6691
|
-
class
|
|
6967
|
+
class _Xmax(PyNumericalCommandArgumentsSubItem):
|
|
6692
6968
|
"""
|
|
6693
|
-
|
|
6969
|
+
Specify the X-coordinate for the initial position of the cylindrical refinement region.
|
|
6694
6970
|
"""
|
|
6695
6971
|
|
|
6696
6972
|
class _OffsetObject(PySingletonCommandArgumentsSubItem):
|
|
@@ -6706,17 +6982,17 @@ class Root(PyMenu):
|
|
|
6706
6982
|
self.Y = self._Y(self, "Y", service, rules, path)
|
|
6707
6983
|
self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
|
|
6708
6984
|
self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
|
|
6709
|
-
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
|
|
6710
6985
|
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
6711
6986
|
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
6987
|
+
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
|
|
6712
6988
|
self.FlowDirection = self._FlowDirection(self, "FlowDirection", service, rules, path)
|
|
6713
6989
|
self.MptMethodType = self._MptMethodType(self, "MptMethodType", service, rules, path)
|
|
6714
6990
|
self.EdgeSelectionList = self._EdgeSelectionList(self, "EdgeSelectionList", service, rules, path)
|
|
6715
6991
|
self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
|
|
6716
6992
|
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
6717
6993
|
self.X = self._X(self, "X", service, rules, path)
|
|
6718
|
-
self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
|
|
6719
6994
|
self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
|
|
6995
|
+
self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
|
|
6720
6996
|
self.FirstHeight = self._FirstHeight(self, "FirstHeight", service, rules, path)
|
|
6721
6997
|
self.BoundaryLayerHeight = self._BoundaryLayerHeight(self, "BoundaryLayerHeight", service, rules, path)
|
|
6722
6998
|
self.CrossWakeGrowthFactor = self._CrossWakeGrowthFactor(self, "CrossWakeGrowthFactor", service, rules, path)
|
|
@@ -6746,14 +7022,9 @@ class Root(PyMenu):
|
|
|
6746
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.
|
|
6747
7023
|
"""
|
|
6748
7024
|
|
|
6749
|
-
class _AspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
6750
|
-
"""
|
|
6751
|
-
Argument AspectRatio.
|
|
6752
|
-
"""
|
|
6753
|
-
|
|
6754
|
-
class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
|
|
7025
|
+
class _AspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
6755
7026
|
"""
|
|
6756
|
-
|
|
7027
|
+
Argument AspectRatio.
|
|
6757
7028
|
"""
|
|
6758
7029
|
|
|
6759
7030
|
class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
|
|
@@ -6766,6 +7037,11 @@ class Root(PyMenu):
|
|
|
6766
7037
|
Argument Rate.
|
|
6767
7038
|
"""
|
|
6768
7039
|
|
|
7040
|
+
class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
|
|
7041
|
+
"""
|
|
7042
|
+
Specify the factor by which the refinement region expands in the wake of the flow direction.
|
|
7043
|
+
"""
|
|
7044
|
+
|
|
6769
7045
|
class _FlowDirection(PyTextualCommandArgumentsSubItem):
|
|
6770
7046
|
"""
|
|
6771
7047
|
Specify the direction that the flow through this refinement region.
|
|
@@ -6796,14 +7072,14 @@ class Root(PyMenu):
|
|
|
6796
7072
|
Specify the X-coordinate for the initial position of the cylindrical refinement region.
|
|
6797
7073
|
"""
|
|
6798
7074
|
|
|
6799
|
-
class
|
|
7075
|
+
class _OffsetMethodType(PyTextualCommandArgumentsSubItem):
|
|
6800
7076
|
"""
|
|
6801
|
-
|
|
7077
|
+
Argument OffsetMethodType.
|
|
6802
7078
|
"""
|
|
6803
7079
|
|
|
6804
|
-
class
|
|
7080
|
+
class _FlipDirection(PyParameterCommandArgumentsSubItem):
|
|
6805
7081
|
"""
|
|
6806
|
-
|
|
7082
|
+
Reverses the orientation of the refinement region.
|
|
6807
7083
|
"""
|
|
6808
7084
|
|
|
6809
7085
|
class _FirstHeight(PyNumericalCommandArgumentsSubItem):
|
|
@@ -6821,6 +7097,11 @@ class Root(PyMenu):
|
|
|
6821
7097
|
Specify the factor by which the refinement region expands in the rest of the directions.
|
|
6822
7098
|
"""
|
|
6823
7099
|
|
|
7100
|
+
class _CylinderMethod(PyTextualCommandArgumentsSubItem):
|
|
7101
|
+
"""
|
|
7102
|
+
Choose how the cylindrical refinement region will be defined. The Vector and Length option allows you to define the cylindrical refinement region based either on the location of selected object(s) or zone(s), or by coordinates. If you choose to select by object(s) or zone(s), the location of the cylindrical refinement region will be at the center point of the selected surface. The Two Positions option allows you to explicitly define the location and dimension of the cylindrical refinement region without having to select object(s) or zone(s).
|
|
7103
|
+
"""
|
|
7104
|
+
|
|
6824
7105
|
class _CylinderObject(PySingletonCommandArgumentsSubItem):
|
|
6825
7106
|
"""
|
|
6826
7107
|
Argument CylinderObject.
|
|
@@ -6962,11 +7243,6 @@ class Root(PyMenu):
|
|
|
6962
7243
|
Argument VolumeFill.
|
|
6963
7244
|
"""
|
|
6964
7245
|
|
|
6965
|
-
class _CylinderMethod(PyTextualCommandArgumentsSubItem):
|
|
6966
|
-
"""
|
|
6967
|
-
Choose how the cylindrical refinement region will be defined. The Vector and Length option allows you to define the cylindrical refinement region based either on the location of selected object(s) or zone(s), or by coordinates. If you choose to select by object(s) or zone(s), the location of the cylindrical refinement region will be at the center point of the selected surface. The Two Positions option allows you to explicitly define the location and dimension of the cylindrical refinement region without having to select object(s) or zone(s).
|
|
6968
|
-
"""
|
|
6969
|
-
|
|
6970
7246
|
class _CylinderLength(PyNumericalCommandArgumentsSubItem):
|
|
6971
7247
|
"""
|
|
6972
7248
|
Specify the Length of the cylinder.
|
|
@@ -6979,16 +7255,29 @@ class Root(PyMenu):
|
|
|
6979
7255
|
|
|
6980
7256
|
def __init__(self, parent, attr, service, rules, path):
|
|
6981
7257
|
super().__init__(parent, attr, service, rules, path)
|
|
6982
|
-
self.
|
|
7258
|
+
self.CylinderZ2 = self._CylinderZ2(self, "CylinderZ2", service, rules, path)
|
|
7259
|
+
self.CylinderX2 = self._CylinderX2(self, "CylinderX2", service, rules, path)
|
|
6983
7260
|
self.BoxYLength = self._BoxYLength(self, "BoxYLength", service, rules, path)
|
|
7261
|
+
self.CylinderX1 = self._CylinderX1(self, "CylinderX1", service, rules, path)
|
|
7262
|
+
self.BoxXLength = self._BoxXLength(self, "BoxXLength", service, rules, path)
|
|
7263
|
+
self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
|
|
6984
7264
|
self.BoxZLength = self._BoxZLength(self, "BoxZLength", service, rules, path)
|
|
6985
7265
|
self.BoxCenterY = self._BoxCenterY(self, "BoxCenterY", service, rules, path)
|
|
6986
|
-
self.
|
|
7266
|
+
self.CylinderZ1 = self._CylinderZ1(self, "CylinderZ1", service, rules, path)
|
|
7267
|
+
self.CylinderRadius1 = self._CylinderRadius1(self, "CylinderRadius1", service, rules, path)
|
|
6987
7268
|
self.BoxCenterX = self._BoxCenterX(self, "BoxCenterX", service, rules, path)
|
|
7269
|
+
self.CylinderRadius2 = self._CylinderRadius2(self, "CylinderRadius2", service, rules, path)
|
|
7270
|
+
self.BoxCenterZ = self._BoxCenterZ(self, "BoxCenterZ", service, rules, path)
|
|
7271
|
+
self.CylinderY2 = self._CylinderY2(self, "CylinderY2", service, rules, path)
|
|
6988
7272
|
|
|
6989
|
-
class
|
|
7273
|
+
class _CylinderZ2(PyNumericalCommandArgumentsSubItem):
|
|
6990
7274
|
"""
|
|
6991
|
-
|
|
7275
|
+
Specify the Z-coordinate of the second position of the cylinder.
|
|
7276
|
+
"""
|
|
7277
|
+
|
|
7278
|
+
class _CylinderX2(PyNumericalCommandArgumentsSubItem):
|
|
7279
|
+
"""
|
|
7280
|
+
Specify the X-coordinate of the second position of the cylinder.
|
|
6992
7281
|
"""
|
|
6993
7282
|
|
|
6994
7283
|
class _BoxYLength(PyNumericalCommandArgumentsSubItem):
|
|
@@ -6996,6 +7285,21 @@ class Root(PyMenu):
|
|
|
6996
7285
|
Argument BoxYLength.
|
|
6997
7286
|
"""
|
|
6998
7287
|
|
|
7288
|
+
class _CylinderX1(PyNumericalCommandArgumentsSubItem):
|
|
7289
|
+
"""
|
|
7290
|
+
Specify the X-coordinate of the first position of the cylinder.
|
|
7291
|
+
"""
|
|
7292
|
+
|
|
7293
|
+
class _BoxXLength(PyNumericalCommandArgumentsSubItem):
|
|
7294
|
+
"""
|
|
7295
|
+
Argument BoxXLength.
|
|
7296
|
+
"""
|
|
7297
|
+
|
|
7298
|
+
class _CylinderY1(PyNumericalCommandArgumentsSubItem):
|
|
7299
|
+
"""
|
|
7300
|
+
Specify the Y-coordinate of the first position of the cylinder.
|
|
7301
|
+
"""
|
|
7302
|
+
|
|
6999
7303
|
class _BoxZLength(PyNumericalCommandArgumentsSubItem):
|
|
7000
7304
|
"""
|
|
7001
7305
|
Argument BoxZLength.
|
|
@@ -7006,9 +7310,14 @@ class Root(PyMenu):
|
|
|
7006
7310
|
Specify the Y-coordinate for the initial position of the cylindrical refinement region.
|
|
7007
7311
|
"""
|
|
7008
7312
|
|
|
7009
|
-
class
|
|
7313
|
+
class _CylinderZ1(PyNumericalCommandArgumentsSubItem):
|
|
7010
7314
|
"""
|
|
7011
|
-
Specify the Z-coordinate
|
|
7315
|
+
Specify the Z-coordinate of the first position of the cylinder.
|
|
7316
|
+
"""
|
|
7317
|
+
|
|
7318
|
+
class _CylinderRadius1(PyNumericalCommandArgumentsSubItem):
|
|
7319
|
+
"""
|
|
7320
|
+
Specify the radius of the cylinder at the initial position.
|
|
7012
7321
|
"""
|
|
7013
7322
|
|
|
7014
7323
|
class _BoxCenterX(PyNumericalCommandArgumentsSubItem):
|
|
@@ -7016,6 +7325,21 @@ class Root(PyMenu):
|
|
|
7016
7325
|
Specify the X-coordinate for the initial position of the cylindrical refinement region.
|
|
7017
7326
|
"""
|
|
7018
7327
|
|
|
7328
|
+
class _CylinderRadius2(PyNumericalCommandArgumentsSubItem):
|
|
7329
|
+
"""
|
|
7330
|
+
Specify the radius of the cylinder at the second position.
|
|
7331
|
+
"""
|
|
7332
|
+
|
|
7333
|
+
class _BoxCenterZ(PyNumericalCommandArgumentsSubItem):
|
|
7334
|
+
"""
|
|
7335
|
+
Specify the Z-coordinate for the initial position of the cylindrical refinement region.
|
|
7336
|
+
"""
|
|
7337
|
+
|
|
7338
|
+
class _CylinderY2(PyNumericalCommandArgumentsSubItem):
|
|
7339
|
+
"""
|
|
7340
|
+
Specify the Y-coordinate of the second position of the cylinder.
|
|
7341
|
+
"""
|
|
7342
|
+
|
|
7019
7343
|
def create_instance(self) -> _CreateLocalRefinementRegionsCommandArguments:
|
|
7020
7344
|
args = self._get_create_instance_args()
|
|
7021
7345
|
if args is not None:
|
|
@@ -7213,12 +7537,12 @@ class Root(PyMenu):
|
|
|
7213
7537
|
def __init__(self, parent, attr, service, rules, path):
|
|
7214
7538
|
super().__init__(parent, attr, service, rules, path)
|
|
7215
7539
|
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
7540
|
+
self.LabelSelectionList = self._LabelSelectionList(self, "LabelSelectionList", service, rules, path)
|
|
7541
|
+
self.ZoneSelectionList = self._ZoneSelectionList(self, "ZoneSelectionList", service, rules, path)
|
|
7216
7542
|
self.Thickness = self._Thickness(self, "Thickness", service, rules, path)
|
|
7217
7543
|
self.SelectionType = self._SelectionType(self, "SelectionType", service, rules, path)
|
|
7218
|
-
self.ZoneSelectionList = self._ZoneSelectionList(self, "ZoneSelectionList", service, rules, path)
|
|
7219
|
-
self.LabelSelectionList = self._LabelSelectionList(self, "LabelSelectionList", service, rules, path)
|
|
7220
|
-
self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
|
|
7221
7544
|
self.MeshSize = self._MeshSize(self, "MeshSize", service, rules, path)
|
|
7545
|
+
self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
|
|
7222
7546
|
self.BufferSize = self._BufferSize(self, "BufferSize", service, rules, path)
|
|
7223
7547
|
self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
|
|
7224
7548
|
self.NonRectangularBufferSize = self._NonRectangularBufferSize(self, "NonRectangularBufferSize", service, rules, path)
|
|
@@ -7229,14 +7553,9 @@ class Root(PyMenu):
|
|
|
7229
7553
|
Specify the number of layers, or divisions, along the thickness of the porous region.
|
|
7230
7554
|
"""
|
|
7231
7555
|
|
|
7232
|
-
class
|
|
7233
|
-
"""
|
|
7234
|
-
Specify the thickness (or the total height) of the porous region.
|
|
7235
|
-
"""
|
|
7236
|
-
|
|
7237
|
-
class _SelectionType(PyTextualCommandArgumentsSubItem):
|
|
7556
|
+
class _LabelSelectionList(PyTextualCommandArgumentsSubItem):
|
|
7238
7557
|
"""
|
|
7239
|
-
|
|
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...
|
|
7240
7559
|
"""
|
|
7241
7560
|
|
|
7242
7561
|
class _ZoneSelectionList(PyTextualCommandArgumentsSubItem):
|
|
@@ -7244,14 +7563,14 @@ class Root(PyMenu):
|
|
|
7244
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...
|
|
7245
7564
|
"""
|
|
7246
7565
|
|
|
7247
|
-
class
|
|
7566
|
+
class _Thickness(PyNumericalCommandArgumentsSubItem):
|
|
7248
7567
|
"""
|
|
7249
|
-
|
|
7568
|
+
Specify the thickness (or the total height) of the porous region.
|
|
7250
7569
|
"""
|
|
7251
7570
|
|
|
7252
|
-
class
|
|
7571
|
+
class _SelectionType(PyTextualCommandArgumentsSubItem):
|
|
7253
7572
|
"""
|
|
7254
|
-
|
|
7573
|
+
Choose how you want to make your selection (by object, zone, or label).
|
|
7255
7574
|
"""
|
|
7256
7575
|
|
|
7257
7576
|
class _MeshSize(PyNumericalCommandArgumentsSubItem):
|
|
@@ -7259,6 +7578,11 @@ class Root(PyMenu):
|
|
|
7259
7578
|
Specify the cell size for the porous region mesh.
|
|
7260
7579
|
"""
|
|
7261
7580
|
|
|
7581
|
+
class _FeatureAngle(PyNumericalCommandArgumentsSubItem):
|
|
7582
|
+
"""
|
|
7583
|
+
Specify the angle at which features will be extracted for the porous region.
|
|
7584
|
+
"""
|
|
7585
|
+
|
|
7262
7586
|
class _BufferSize(PyNumericalCommandArgumentsSubItem):
|
|
7263
7587
|
"""
|
|
7264
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.
|
|
@@ -7341,6 +7665,7 @@ class Root(PyMenu):
|
|
|
7341
7665
|
ScopeProximityTo : str
|
|
7342
7666
|
Mesher : str
|
|
7343
7667
|
PrimeSizeControlIds : list[int]
|
|
7668
|
+
ReverseEdgeZoneOrientationforPersistent : list[int]
|
|
7344
7669
|
EnableMultiThreading : bool
|
|
7345
7670
|
NumberOfMultiThreads : int
|
|
7346
7671
|
|
|
@@ -7360,6 +7685,7 @@ class Root(PyMenu):
|
|
|
7360
7685
|
self.ScopeProximityTo = self._ScopeProximityTo(self, "ScopeProximityTo", service, rules, path)
|
|
7361
7686
|
self.Mesher = self._Mesher(self, "Mesher", service, rules, path)
|
|
7362
7687
|
self.PrimeSizeControlIds = self._PrimeSizeControlIds(self, "PrimeSizeControlIds", service, rules, path)
|
|
7688
|
+
self.ReverseEdgeZoneOrientationforPersistent = self._ReverseEdgeZoneOrientationforPersistent(self, "ReverseEdgeZoneOrientationforPersistent", service, rules, path)
|
|
7363
7689
|
self.EnableMultiThreading = self._EnableMultiThreading(self, "EnableMultiThreading", service, rules, path)
|
|
7364
7690
|
self.NumberOfMultiThreads = self._NumberOfMultiThreads(self, "NumberOfMultiThreads", service, rules, path)
|
|
7365
7691
|
|
|
@@ -7408,6 +7734,11 @@ class Root(PyMenu):
|
|
|
7408
7734
|
Argument PrimeSizeControlIds.
|
|
7409
7735
|
"""
|
|
7410
7736
|
|
|
7737
|
+
class _ReverseEdgeZoneOrientationforPersistent(PyNumericalCommandArgumentsSubItem):
|
|
7738
|
+
"""
|
|
7739
|
+
Argument ReverseEdgeZoneOrientationforPersistent.
|
|
7740
|
+
"""
|
|
7741
|
+
|
|
7411
7742
|
class _EnableMultiThreading(PyParameterCommandArgumentsSubItem):
|
|
7412
7743
|
"""
|
|
7413
7744
|
Argument EnableMultiThreading.
|
|
@@ -7580,10 +7911,10 @@ class Root(PyMenu):
|
|
|
7580
7911
|
def __init__(self, parent, attr, service, rules, path):
|
|
7581
7912
|
super().__init__(parent, attr, service, rules, path)
|
|
7582
7913
|
self.PorousRegions = self._PorousRegions(self, "PorousRegions", service, rules, path)
|
|
7583
|
-
self.
|
|
7914
|
+
self.CloseLeakages = self._CloseLeakages(self, "CloseLeakages", service, rules, path)
|
|
7584
7915
|
self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
|
|
7585
7916
|
self.CloseLeakges = self._CloseLeakges(self, "CloseLeakges", service, rules, path)
|
|
7586
|
-
self.
|
|
7917
|
+
self.ZeroThickness = self._ZeroThickness(self, "ZeroThickness", service, rules, path)
|
|
7587
7918
|
self.ExtractEdgeFeatures = self._ExtractEdgeFeatures(self, "ExtractEdgeFeatures", service, rules, path)
|
|
7588
7919
|
self.MovingObjects = self._MovingObjects(self, "MovingObjects", service, rules, path)
|
|
7589
7920
|
self.EnablePrimeWrapper = self._EnablePrimeWrapper(self, "EnablePrimeWrapper", service, rules, path)
|
|
@@ -7595,9 +7926,9 @@ class Root(PyMenu):
|
|
|
7595
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:
|
|
7596
7927
|
"""
|
|
7597
7928
|
|
|
7598
|
-
class
|
|
7929
|
+
class _CloseLeakages(PyTextualCommandArgumentsSubItem):
|
|
7599
7930
|
"""
|
|
7600
|
-
|
|
7931
|
+
Argument CloseLeakages.
|
|
7601
7932
|
"""
|
|
7602
7933
|
|
|
7603
7934
|
class _AdvancedOptions(PyParameterCommandArgumentsSubItem):
|
|
@@ -7610,9 +7941,9 @@ class Root(PyMenu):
|
|
|
7610
7941
|
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.
|
|
7611
7942
|
"""
|
|
7612
7943
|
|
|
7613
|
-
class
|
|
7944
|
+
class _ZeroThickness(PyTextualCommandArgumentsSubItem):
|
|
7614
7945
|
"""
|
|
7615
|
-
|
|
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.
|
|
7616
7947
|
"""
|
|
7617
7948
|
|
|
7618
7949
|
class _ExtractEdgeFeatures(PyTextualCommandArgumentsSubItem):
|
|
@@ -7956,16 +8287,16 @@ class Root(PyMenu):
|
|
|
7956
8287
|
|
|
7957
8288
|
def __init__(self, parent, attr, service, rules, path):
|
|
7958
8289
|
super().__init__(parent, attr, service, rules, path)
|
|
7959
|
-
self.MaxLayerHeight = self._MaxLayerHeight(self, "MaxLayerHeight", service, rules, path)
|
|
7960
|
-
self.MidSpanLength = self._MidSpanLength(self, "MidSpanLength", service, rules, path)
|
|
7961
8290
|
self.BiasMethod = self._BiasMethod(self, "BiasMethod", service, rules, path)
|
|
7962
|
-
self.
|
|
8291
|
+
self.MidSpanLength = self._MidSpanLength(self, "MidSpanLength", service, rules, path)
|
|
8292
|
+
self.MaxLayerHeight = self._MaxLayerHeight(self, "MaxLayerHeight", service, rules, path)
|
|
7963
8293
|
self.BiasMethodControl = self._BiasMethodControl(self, "BiasMethodControl", service, rules, path)
|
|
8294
|
+
self.MergeCellZones = self._MergeCellZones(self, "MergeCellZones", service, rules, path)
|
|
7964
8295
|
self.ShowVMExtrudePreferences = self._ShowVMExtrudePreferences(self, "ShowVMExtrudePreferences", service, rules, path)
|
|
7965
8296
|
|
|
7966
|
-
class
|
|
8297
|
+
class _BiasMethod(PyTextualCommandArgumentsSubItem):
|
|
7967
8298
|
"""
|
|
7968
|
-
|
|
8299
|
+
Select from a choice of patterns that you want to apply to your volume mesh extrusion.
|
|
7969
8300
|
"""
|
|
7970
8301
|
|
|
7971
8302
|
class _MidSpanLength(PyNumericalCommandArgumentsSubItem):
|
|
@@ -7973,19 +8304,19 @@ class Root(PyMenu):
|
|
|
7973
8304
|
Argument MidSpanLength.
|
|
7974
8305
|
"""
|
|
7975
8306
|
|
|
7976
|
-
class
|
|
8307
|
+
class _MaxLayerHeight(PyNumericalCommandArgumentsSubItem):
|
|
7977
8308
|
"""
|
|
7978
|
-
|
|
8309
|
+
Argument MaxLayerHeight.
|
|
7979
8310
|
"""
|
|
7980
8311
|
|
|
7981
|
-
class
|
|
8312
|
+
class _BiasMethodControl(PyTextualCommandArgumentsSubItem):
|
|
7982
8313
|
"""
|
|
7983
|
-
|
|
8314
|
+
Argument BiasMethodControl.
|
|
7984
8315
|
"""
|
|
7985
8316
|
|
|
7986
|
-
class
|
|
8317
|
+
class _MergeCellZones(PyParameterCommandArgumentsSubItem):
|
|
7987
8318
|
"""
|
|
7988
|
-
|
|
8319
|
+
Indicate whether or not you want to merge the extruded layers with any adjacent regions.
|
|
7989
8320
|
"""
|
|
7990
8321
|
|
|
7991
8322
|
class _ShowVMExtrudePreferences(PyParameterCommandArgumentsSubItem):
|
|
@@ -8063,9 +8394,9 @@ class Root(PyMenu):
|
|
|
8063
8394
|
self.RemeshGrowthRate = self._RemeshGrowthRate(self, "RemeshGrowthRate", service, rules, path)
|
|
8064
8395
|
self.LocalRemesh = self._LocalRemesh(self, "LocalRemesh", service, rules, path)
|
|
8065
8396
|
self.GapFactor = self._GapFactor(self, "GapFactor", service, rules, path)
|
|
8066
|
-
self.ShowPrism2DPreferences = self._ShowPrism2DPreferences(self, "ShowPrism2DPreferences", service, rules, path)
|
|
8067
8397
|
self.RefineStretchedQuads = self._RefineStretchedQuads(self, "RefineStretchedQuads", service, rules, path)
|
|
8068
8398
|
self.MaxFaceSkew = self._MaxFaceSkew(self, "MaxFaceSkew", service, rules, path)
|
|
8399
|
+
self.ShowPrism2DPreferences = self._ShowPrism2DPreferences(self, "ShowPrism2DPreferences", service, rules, path)
|
|
8069
8400
|
self.nOrthogonalLayers = self._nOrthogonalLayers(self, "nOrthogonalLayers", service, rules, path)
|
|
8070
8401
|
|
|
8071
8402
|
class _SplitQuads(PyTextualCommandArgumentsSubItem):
|
|
@@ -8098,11 +8429,6 @@ class Root(PyMenu):
|
|
|
8098
8429
|
Argument GapFactor.
|
|
8099
8430
|
"""
|
|
8100
8431
|
|
|
8101
|
-
class _ShowPrism2DPreferences(PyParameterCommandArgumentsSubItem):
|
|
8102
|
-
"""
|
|
8103
|
-
Argument ShowPrism2DPreferences.
|
|
8104
|
-
"""
|
|
8105
|
-
|
|
8106
8432
|
class _RefineStretchedQuads(PyTextualCommandArgumentsSubItem):
|
|
8107
8433
|
"""
|
|
8108
8434
|
Argument RefineStretchedQuads.
|
|
@@ -8113,6 +8439,11 @@ class Root(PyMenu):
|
|
|
8113
8439
|
Argument MaxFaceSkew.
|
|
8114
8440
|
"""
|
|
8115
8441
|
|
|
8442
|
+
class _ShowPrism2DPreferences(PyParameterCommandArgumentsSubItem):
|
|
8443
|
+
"""
|
|
8444
|
+
Argument ShowPrism2DPreferences.
|
|
8445
|
+
"""
|
|
8446
|
+
|
|
8116
8447
|
class _nOrthogonalLayers(PyNumericalCommandArgumentsSubItem):
|
|
8117
8448
|
"""
|
|
8118
8449
|
Argument nOrthogonalLayers.
|
|
@@ -8449,13 +8780,14 @@ class Root(PyMenu):
|
|
|
8449
8780
|
self.SaveSizeFieldFile = self._SaveSizeFieldFile(self, "SaveSizeFieldFile", service, rules, path)
|
|
8450
8781
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
8451
8782
|
self.ScopeProximityTo = self._ScopeProximityTo(self, "ScopeProximityTo", service, rules, path)
|
|
8452
|
-
self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
|
|
8453
8783
|
self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
|
|
8784
|
+
self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
|
|
8454
8785
|
self.SaveSizeField = self._SaveSizeField(self, "SaveSizeField", service, rules, path)
|
|
8455
8786
|
self.UseSizeFiles = self._UseSizeFiles(self, "UseSizeFiles", service, rules, path)
|
|
8456
8787
|
self.AutoCreateScopedSizing = self._AutoCreateScopedSizing(self, "AutoCreateScopedSizing", service, rules, path)
|
|
8457
8788
|
self.MinSize = self._MinSize(self, "MinSize", service, rules, path)
|
|
8458
8789
|
self.SizeFunctions = self._SizeFunctions(self, "SizeFunctions", service, rules, path)
|
|
8790
|
+
self.SurfaceMeshMethod = self._SurfaceMeshMethod(self, "SurfaceMeshMethod", service, rules, path)
|
|
8459
8791
|
self.SizeFieldFile = self._SizeFieldFile(self, "SizeFieldFile", service, rules, path)
|
|
8460
8792
|
self.DrawSizeControl = self._DrawSizeControl(self, "DrawSizeControl", service, rules, path)
|
|
8461
8793
|
self.CellsPerGap = self._CellsPerGap(self, "CellsPerGap", service, rules, path)
|
|
@@ -8479,14 +8811,14 @@ class Root(PyMenu):
|
|
|
8479
8811
|
Argument ScopeProximityTo.
|
|
8480
8812
|
"""
|
|
8481
8813
|
|
|
8482
|
-
class
|
|
8814
|
+
class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
|
|
8483
8815
|
"""
|
|
8484
|
-
Argument
|
|
8816
|
+
Argument PreviewSizefield.
|
|
8485
8817
|
"""
|
|
8486
8818
|
|
|
8487
|
-
class
|
|
8819
|
+
class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
8488
8820
|
"""
|
|
8489
|
-
Argument
|
|
8821
|
+
Argument CurvatureNormalAngle.
|
|
8490
8822
|
"""
|
|
8491
8823
|
|
|
8492
8824
|
class _SaveSizeField(PyParameterCommandArgumentsSubItem):
|
|
@@ -8514,6 +8846,11 @@ class Root(PyMenu):
|
|
|
8514
8846
|
Argument SizeFunctions.
|
|
8515
8847
|
"""
|
|
8516
8848
|
|
|
8849
|
+
class _SurfaceMeshMethod(PyTextualCommandArgumentsSubItem):
|
|
8850
|
+
"""
|
|
8851
|
+
Argument SurfaceMeshMethod.
|
|
8852
|
+
"""
|
|
8853
|
+
|
|
8517
8854
|
class _SizeFieldFile(PyTextualCommandArgumentsSubItem):
|
|
8518
8855
|
"""
|
|
8519
8856
|
Argument SizeFieldFile.
|
|
@@ -8588,6 +8925,7 @@ class Root(PyMenu):
|
|
|
8588
8925
|
Select Yes if you want to have the final surface mesh to be viewed as separated zones.
|
|
8589
8926
|
UseSizeFieldForPrimeWrap : str
|
|
8590
8927
|
LeakShield : str
|
|
8928
|
+
AutoRegionBetweenPorous : str
|
|
8591
8929
|
AutoPairing : str
|
|
8592
8930
|
Specify whether or not you want to separate contact pairs between fluids and solids.
|
|
8593
8931
|
MergeWrapperAtSolidConacts : str
|
|
@@ -8630,6 +8968,7 @@ class Root(PyMenu):
|
|
|
8630
8968
|
self.SeparateSurface = self._SeparateSurface(self, "SeparateSurface", service, rules, path)
|
|
8631
8969
|
self.UseSizeFieldForPrimeWrap = self._UseSizeFieldForPrimeWrap(self, "UseSizeFieldForPrimeWrap", service, rules, path)
|
|
8632
8970
|
self.LeakShield = self._LeakShield(self, "LeakShield", service, rules, path)
|
|
8971
|
+
self.AutoRegionBetweenPorous = self._AutoRegionBetweenPorous(self, "AutoRegionBetweenPorous", service, rules, path)
|
|
8633
8972
|
self.AutoPairing = self._AutoPairing(self, "AutoPairing", service, rules, path)
|
|
8634
8973
|
self.MergeWrapperAtSolidConacts = self._MergeWrapperAtSolidConacts(self, "MergeWrapperAtSolidConacts", service, rules, path)
|
|
8635
8974
|
self.ParallelSerialOption = self._ParallelSerialOption(self, "ParallelSerialOption", service, rules, path)
|
|
@@ -8684,6 +9023,11 @@ class Root(PyMenu):
|
|
|
8684
9023
|
Argument LeakShield.
|
|
8685
9024
|
"""
|
|
8686
9025
|
|
|
9026
|
+
class _AutoRegionBetweenPorous(PyTextualCommandArgumentsSubItem):
|
|
9027
|
+
"""
|
|
9028
|
+
Argument AutoRegionBetweenPorous.
|
|
9029
|
+
"""
|
|
9030
|
+
|
|
8687
9031
|
class _AutoPairing(PyTextualCommandArgumentsSubItem):
|
|
8688
9032
|
"""
|
|
8689
9033
|
Specify whether or not you want to separate contact pairs between fluids and solids.
|
|
@@ -8831,6 +9175,7 @@ class Root(PyMenu):
|
|
|
8831
9175
|
self.AutoCreateScopedSizing = self._AutoCreateScopedSizing(self, "AutoCreateScopedSizing", service, rules, path)
|
|
8832
9176
|
self.MinSize = self._MinSize(self, "MinSize", service, rules, path)
|
|
8833
9177
|
self.SizeFunctions = self._SizeFunctions(self, "SizeFunctions", service, rules, path)
|
|
9178
|
+
self.SurfaceMeshMethod = self._SurfaceMeshMethod(self, "SurfaceMeshMethod", service, rules, path)
|
|
8834
9179
|
self.SizeFieldFile = self._SizeFieldFile(self, "SizeFieldFile", service, rules, path)
|
|
8835
9180
|
self.DrawSizeControl = self._DrawSizeControl(self, "DrawSizeControl", service, rules, path)
|
|
8836
9181
|
self.CellsPerGap = self._CellsPerGap(self, "CellsPerGap", service, rules, path)
|
|
@@ -8889,6 +9234,11 @@ class Root(PyMenu):
|
|
|
8889
9234
|
Choose the type of size function that you want to apply to the surface mesh: based on curvature, proximity, or both.
|
|
8890
9235
|
"""
|
|
8891
9236
|
|
|
9237
|
+
class _SurfaceMeshMethod(PyTextualCommandArgumentsSubItem):
|
|
9238
|
+
"""
|
|
9239
|
+
Argument SurfaceMeshMethod.
|
|
9240
|
+
"""
|
|
9241
|
+
|
|
8892
9242
|
class _SizeFieldFile(PyTextualCommandArgumentsSubItem):
|
|
8893
9243
|
"""
|
|
8894
9244
|
Specify a size field file that contains the size function definitions based on specified parameters.
|
|
@@ -8959,16 +9309,16 @@ class Root(PyMenu):
|
|
|
8959
9309
|
self.SMQualityCollapseLimit = self._SMQualityCollapseLimit(self, "SMQualityCollapseLimit", service, rules, path)
|
|
8960
9310
|
self.AutoMerge = self._AutoMerge(self, "AutoMerge", service, rules, path)
|
|
8961
9311
|
self.SMQualityImprove = self._SMQualityImprove(self, "SMQualityImprove", service, rules, path)
|
|
8962
|
-
self.
|
|
9312
|
+
self.SMSeparationAngle = self._SMSeparationAngle(self, "SMSeparationAngle", service, rules, path)
|
|
8963
9313
|
self.SMSeparation = self._SMSeparation(self, "SMSeparation", service, rules, path)
|
|
8964
|
-
self.
|
|
9314
|
+
self.ShowSurfaceMeshPreferences = self._ShowSurfaceMeshPreferences(self, "ShowSurfaceMeshPreferences", service, rules, path)
|
|
8965
9315
|
self.TVMAutoControlCreation = self._TVMAutoControlCreation(self, "TVMAutoControlCreation", service, rules, path)
|
|
8966
|
-
self.
|
|
9316
|
+
self.FoldFaceLimit = self._FoldFaceLimit(self, "FoldFaceLimit", service, rules, path)
|
|
8967
9317
|
self.SMRemoveStep = self._SMRemoveStep(self, "SMRemoveStep", service, rules, path)
|
|
8968
9318
|
self.SMStepWidth = self._SMStepWidth(self, "SMStepWidth", service, rules, path)
|
|
8969
|
-
self.VolumeMeshMaxSize = self._VolumeMeshMaxSize(self, "VolumeMeshMaxSize", service, rules, path)
|
|
8970
|
-
self.AutoAssignZoneTypes = self._AutoAssignZoneTypes(self, "AutoAssignZoneTypes", service, rules, path)
|
|
8971
9319
|
self.SMQualityMaxAngle = self._SMQualityMaxAngle(self, "SMQualityMaxAngle", service, rules, path)
|
|
9320
|
+
self.AutoAssignZoneTypes = self._AutoAssignZoneTypes(self, "AutoAssignZoneTypes", service, rules, path)
|
|
9321
|
+
self.VolumeMeshMaxSize = self._VolumeMeshMaxSize(self, "VolumeMeshMaxSize", service, rules, path)
|
|
8972
9322
|
self.SelfIntersectCheck = self._SelfIntersectCheck(self, "SelfIntersectCheck", service, rules, path)
|
|
8973
9323
|
self.AutoSurfaceRemesh = self._AutoSurfaceRemesh(self, "AutoSurfaceRemesh", service, rules, path)
|
|
8974
9324
|
self.SMQualityImproveLimit = self._SMQualityImproveLimit(self, "SMQualityImproveLimit", service, rules, path)
|
|
@@ -8989,9 +9339,9 @@ class Root(PyMenu):
|
|
|
8989
9339
|
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.
|
|
8990
9340
|
"""
|
|
8991
9341
|
|
|
8992
|
-
class
|
|
9342
|
+
class _SMSeparationAngle(PyNumericalCommandArgumentsSubItem):
|
|
8993
9343
|
"""
|
|
8994
|
-
|
|
9344
|
+
Specify a desired angle for determining separation. Assigning a smaller separation angle will produce more zones.
|
|
8995
9345
|
"""
|
|
8996
9346
|
|
|
8997
9347
|
class _SMSeparation(PyTextualCommandArgumentsSubItem):
|
|
@@ -8999,9 +9349,9 @@ class Root(PyMenu):
|
|
|
8999
9349
|
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.
|
|
9000
9350
|
"""
|
|
9001
9351
|
|
|
9002
|
-
class
|
|
9352
|
+
class _ShowSurfaceMeshPreferences(PyParameterCommandArgumentsSubItem):
|
|
9003
9353
|
"""
|
|
9004
|
-
|
|
9354
|
+
Display advanced options that you may want to apply to the task.
|
|
9005
9355
|
"""
|
|
9006
9356
|
|
|
9007
9357
|
class _TVMAutoControlCreation(PyTextualCommandArgumentsSubItem):
|
|
@@ -9009,9 +9359,9 @@ class Root(PyMenu):
|
|
|
9009
9359
|
If your geometry contains small edges, you can choose to extract these edge features when generating the surface mesh by selecting yes. Note that selecting yes , will always extract small edge features regardless of your selection for the Auto Remesh to Remove Clustering? option.
|
|
9010
9360
|
"""
|
|
9011
9361
|
|
|
9012
|
-
class
|
|
9362
|
+
class _FoldFaceLimit(PyNumericalCommandArgumentsSubItem):
|
|
9013
9363
|
"""
|
|
9014
|
-
Specify
|
|
9364
|
+
Specify the value limiting when folded faces are smoothed or resolved. Folded faces are resolved while under this limit. Set this value to 0 if the number of free nodes (due to a zero-thickness wall such as a baffle for instance) falls below 10.
|
|
9015
9365
|
"""
|
|
9016
9366
|
|
|
9017
9367
|
class _SMRemoveStep(PyTextualCommandArgumentsSubItem):
|
|
@@ -9024,9 +9374,9 @@ class Root(PyMenu):
|
|
|
9024
9374
|
Specify the width of the step that you wish to remove.
|
|
9025
9375
|
"""
|
|
9026
9376
|
|
|
9027
|
-
class
|
|
9377
|
+
class _SMQualityMaxAngle(PyNumericalCommandArgumentsSubItem):
|
|
9028
9378
|
"""
|
|
9029
|
-
Specify the maximum
|
|
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.
|
|
9030
9380
|
"""
|
|
9031
9381
|
|
|
9032
9382
|
class _AutoAssignZoneTypes(PyTextualCommandArgumentsSubItem):
|
|
@@ -9034,9 +9384,9 @@ class Root(PyMenu):
|
|
|
9034
9384
|
Choose whether or not to automatically assign boundary types to zones.
|
|
9035
9385
|
"""
|
|
9036
9386
|
|
|
9037
|
-
class
|
|
9387
|
+
class _VolumeMeshMaxSize(PyNumericalCommandArgumentsSubItem):
|
|
9038
9388
|
"""
|
|
9039
|
-
Specify the maximum
|
|
9389
|
+
Specify the maximum size of the elements for the surface mesh.
|
|
9040
9390
|
"""
|
|
9041
9391
|
|
|
9042
9392
|
class _SelfIntersectCheck(PyTextualCommandArgumentsSubItem):
|
|
@@ -9145,9 +9495,9 @@ class Root(PyMenu):
|
|
|
9145
9495
|
self.OneZonePer = self._OneZonePer(self, "OneZonePer", service, rules, path)
|
|
9146
9496
|
self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
|
|
9147
9497
|
self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
|
|
9148
|
-
self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
|
|
9149
|
-
self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
|
|
9150
9498
|
self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
|
|
9499
|
+
self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
|
|
9500
|
+
self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
|
|
9151
9501
|
|
|
9152
9502
|
class _SavePMDBIntermediateFile(PyParameterCommandArgumentsSubItem):
|
|
9153
9503
|
"""
|
|
@@ -9189,9 +9539,9 @@ class Root(PyMenu):
|
|
|
9189
9539
|
Argument ExtractFeatures.
|
|
9190
9540
|
"""
|
|
9191
9541
|
|
|
9192
|
-
class
|
|
9542
|
+
class _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
|
|
9193
9543
|
"""
|
|
9194
|
-
Argument
|
|
9544
|
+
Argument UsePartOrBodyAsSuffix.
|
|
9195
9545
|
"""
|
|
9196
9546
|
|
|
9197
9547
|
class _ImportPartNames(PyParameterCommandArgumentsSubItem):
|
|
@@ -9199,9 +9549,9 @@ class Root(PyMenu):
|
|
|
9199
9549
|
Argument ImportPartNames.
|
|
9200
9550
|
"""
|
|
9201
9551
|
|
|
9202
|
-
class
|
|
9552
|
+
class _ImportNamedSelections(PyParameterCommandArgumentsSubItem):
|
|
9203
9553
|
"""
|
|
9204
|
-
Argument
|
|
9554
|
+
Argument ImportNamedSelections.
|
|
9205
9555
|
"""
|
|
9206
9556
|
|
|
9207
9557
|
class _ShareTopologyPreferences(PySingletonCommandArgumentsSubItem):
|
|
@@ -9682,9 +10032,9 @@ class Root(PyMenu):
|
|
|
9682
10032
|
def __init__(self, parent, attr, service, rules, path):
|
|
9683
10033
|
super().__init__(parent, attr, service, rules, path)
|
|
9684
10034
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
9685
|
-
self.HexMinCellLength = self._HexMinCellLength(self, "HexMinCellLength", service, rules, path)
|
|
9686
|
-
self.TetPolyMaxCellLength = self._TetPolyMaxCellLength(self, "TetPolyMaxCellLength", service, rules, path)
|
|
9687
10035
|
self.PeelLayers = self._PeelLayers(self, "PeelLayers", service, rules, path)
|
|
10036
|
+
self.TetPolyMaxCellLength = self._TetPolyMaxCellLength(self, "TetPolyMaxCellLength", service, rules, path)
|
|
10037
|
+
self.HexMinCellLength = self._HexMinCellLength(self, "HexMinCellLength", service, rules, path)
|
|
9688
10038
|
self.Type = self._Type(self, "Type", service, rules, path)
|
|
9689
10039
|
self.CellSizing = self._CellSizing(self, "CellSizing", service, rules, path)
|
|
9690
10040
|
self.HexMaxSize = self._HexMaxSize(self, "HexMaxSize", service, rules, path)
|
|
@@ -9697,9 +10047,9 @@ class Root(PyMenu):
|
|
|
9697
10047
|
Argument MaxSize.
|
|
9698
10048
|
"""
|
|
9699
10049
|
|
|
9700
|
-
class
|
|
10050
|
+
class _PeelLayers(PyNumericalCommandArgumentsSubItem):
|
|
9701
10051
|
"""
|
|
9702
|
-
|
|
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.
|
|
9703
10053
|
"""
|
|
9704
10054
|
|
|
9705
10055
|
class _TetPolyMaxCellLength(PyNumericalCommandArgumentsSubItem):
|
|
@@ -9707,9 +10057,9 @@ class Root(PyMenu):
|
|
|
9707
10057
|
The maximum cell length for either the tetrahedron, polyhedron, or poly-hexcore volume fill types.
|
|
9708
10058
|
"""
|
|
9709
10059
|
|
|
9710
|
-
class
|
|
10060
|
+
class _HexMinCellLength(PyNumericalCommandArgumentsSubItem):
|
|
9711
10061
|
"""
|
|
9712
|
-
|
|
10062
|
+
The minimum cell length for the hexcore or poly-hexcore volume fill types.
|
|
9713
10063
|
"""
|
|
9714
10064
|
|
|
9715
10065
|
class _Type(PyTextualCommandArgumentsSubItem):
|
|
@@ -9765,11 +10115,11 @@ class Root(PyMenu):
|
|
|
9765
10115
|
def __init__(self, parent, attr, service, rules, path):
|
|
9766
10116
|
super().__init__(parent, attr, service, rules, path)
|
|
9767
10117
|
self.UseSizeFieldInSolids = self._UseSizeFieldInSolids(self, "UseSizeFieldInSolids", service, rules, path)
|
|
9768
|
-
self.
|
|
10118
|
+
self.PolyFeatureAngle = self._PolyFeatureAngle(self, "PolyFeatureAngle", service, rules, path)
|
|
9769
10119
|
self.MinPolySize = self._MinPolySize(self, "MinPolySize", service, rules, path)
|
|
10120
|
+
self.QualityMethod = self._QualityMethod(self, "QualityMethod", service, rules, path)
|
|
9770
10121
|
self.MergeBodyLabels = self._MergeBodyLabels(self, "MergeBodyLabels", service, rules, path)
|
|
9771
10122
|
self.UseSizeField = self._UseSizeField(self, "UseSizeField", service, rules, path)
|
|
9772
|
-
self.PolyFeatureAngle = self._PolyFeatureAngle(self, "PolyFeatureAngle", service, rules, path)
|
|
9773
10123
|
self.PolyInSolids = self._PolyInSolids(self, "PolyInSolids", service, rules, path)
|
|
9774
10124
|
self.MinEdgeLength = self._MinEdgeLength(self, "MinEdgeLength", service, rules, path)
|
|
9775
10125
|
self.AddMultipleQualityMethods = self._AddMultipleQualityMethods(self, "AddMultipleQualityMethods", service, rules, path)
|
|
@@ -9778,10 +10128,10 @@ class Root(PyMenu):
|
|
|
9778
10128
|
self.PrepareZoneNames = self._PrepareZoneNames(self, "PrepareZoneNames", service, rules, path)
|
|
9779
10129
|
self.CheckSelfProximity = self._CheckSelfProximity(self, "CheckSelfProximity", service, rules, path)
|
|
9780
10130
|
self.Avoid1_8Transition = self._Avoid1_8Transition(self, "Avoid1_8Transition", service, rules, path)
|
|
9781
|
-
self.MinFaceArea = self._MinFaceArea(self, "MinFaceArea", service, rules, path)
|
|
9782
10131
|
self.ShowVolumeMeshPreferences = self._ShowVolumeMeshPreferences(self, "ShowVolumeMeshPreferences", service, rules, path)
|
|
9783
|
-
self.SolidGrowthRate = self._SolidGrowthRate(self, "SolidGrowthRate", service, rules, path)
|
|
9784
10132
|
self.TetInSolids = self._TetInSolids(self, "TetInSolids", service, rules, path)
|
|
10133
|
+
self.SolidGrowthRate = self._SolidGrowthRate(self, "SolidGrowthRate", service, rules, path)
|
|
10134
|
+
self.MinFaceArea = self._MinFaceArea(self, "MinFaceArea", service, rules, path)
|
|
9785
10135
|
self.QualityWarningLimit = self._QualityWarningLimit(self, "QualityWarningLimit", service, rules, path)
|
|
9786
10136
|
|
|
9787
10137
|
class _UseSizeFieldInSolids(PyTextualCommandArgumentsSubItem):
|
|
@@ -9789,9 +10139,9 @@ class Root(PyMenu):
|
|
|
9789
10139
|
This option is available when both the Use Size Field? and Fill Polyhedra in Solids? options are enabled for the poly-hexcore fill method. By default this option is set to no, which specifies growth-rate-based sizing for polyhedra regions during poly-hexcore generation. Selecting yes for this option specifies the sizing for polyhedra regions to be size-field based and is recommended when BOI(s) or body sizing have been defined that include the polyhedra region.
|
|
9790
10140
|
"""
|
|
9791
10141
|
|
|
9792
|
-
class
|
|
10142
|
+
class _PolyFeatureAngle(PyNumericalCommandArgumentsSubItem):
|
|
9793
10143
|
"""
|
|
9794
|
-
|
|
10144
|
+
Specify the angle to preserve features when using a polyhedral-based mesh.
|
|
9795
10145
|
"""
|
|
9796
10146
|
|
|
9797
10147
|
class _MinPolySize(PyNumericalCommandArgumentsSubItem):
|
|
@@ -9799,6 +10149,11 @@ class Root(PyMenu):
|
|
|
9799
10149
|
Argument MinPolySize.
|
|
9800
10150
|
"""
|
|
9801
10151
|
|
|
10152
|
+
class _QualityMethod(PyTextualCommandArgumentsSubItem):
|
|
10153
|
+
"""
|
|
10154
|
+
Choose from several different types of mesh quality controls (skewness, aspect ratio, change in size, and so on). Choices include Orthogonal (the default for the workflows), Enhanced Orthogonal, and Skewness. For more information, see More... .
|
|
10155
|
+
"""
|
|
10156
|
+
|
|
9802
10157
|
class _MergeBodyLabels(PyTextualCommandArgumentsSubItem):
|
|
9803
10158
|
"""
|
|
9804
10159
|
Determine whether or not you would like to merge bodies that contain multiple body labels when generating the volume mesh (the default is yes)
|
|
@@ -9809,11 +10164,6 @@ class Root(PyMenu):
|
|
|
9809
10164
|
Specify whether or not to use size fields as part of generating the volume mesh. By default, this is set to yes when a BOI or body sizing has been defined in the Add Local Sizing task, however, for large cases, it can be turned off for the hexcore and poly-hexcore volume fill methods.
|
|
9810
10165
|
"""
|
|
9811
10166
|
|
|
9812
|
-
class _PolyFeatureAngle(PyNumericalCommandArgumentsSubItem):
|
|
9813
|
-
"""
|
|
9814
|
-
Specify the angle to preserve features when using a polyhedral-based mesh.
|
|
9815
|
-
"""
|
|
9816
|
-
|
|
9817
10167
|
class _PolyInSolids(PyTextualCommandArgumentsSubItem):
|
|
9818
10168
|
"""
|
|
9819
10169
|
Indicate whether or not to fill only polyhedra cells in all solid regions during volume meshing using the poly-hexcore volume fill method. The default value is no. Setting this to yes may improve meshing efficiency.
|
|
@@ -9854,14 +10204,14 @@ class Root(PyMenu):
|
|
|
9854
10204
|
Indicate whether or not you want to avoid any potential 1:8 cell transition in the hexcore region of the volume mesh, replacing any abrupt change in the cell size with polyhedral cells to improve solver performance in such transitional areas.
|
|
9855
10205
|
"""
|
|
9856
10206
|
|
|
9857
|
-
class
|
|
10207
|
+
class _ShowVolumeMeshPreferences(PyParameterCommandArgumentsSubItem):
|
|
9858
10208
|
"""
|
|
9859
|
-
|
|
10209
|
+
Display advanced options that you may want to apply to the task.
|
|
9860
10210
|
"""
|
|
9861
10211
|
|
|
9862
|
-
class
|
|
10212
|
+
class _TetInSolids(PyTextualCommandArgumentsSubItem):
|
|
9863
10213
|
"""
|
|
9864
|
-
|
|
10214
|
+
Argument TetInSolids.
|
|
9865
10215
|
"""
|
|
9866
10216
|
|
|
9867
10217
|
class _SolidGrowthRate(PyNumericalCommandArgumentsSubItem):
|
|
@@ -9869,9 +10219,9 @@ class Root(PyMenu):
|
|
|
9869
10219
|
Specify the rate of growth for a tetrahedron or polyhedron mesh.
|
|
9870
10220
|
"""
|
|
9871
10221
|
|
|
9872
|
-
class
|
|
10222
|
+
class _MinFaceArea(PyNumericalCommandArgumentsSubItem):
|
|
9873
10223
|
"""
|
|
9874
|
-
Argument
|
|
10224
|
+
Argument MinFaceArea.
|
|
9875
10225
|
"""
|
|
9876
10226
|
|
|
9877
10227
|
class _QualityWarningLimit(PyNumericalCommandArgumentsSubItem):
|
|
@@ -9893,8 +10243,8 @@ class Root(PyMenu):
|
|
|
9893
10243
|
self.PrismGapFactor = self._PrismGapFactor(self, "PrismGapFactor", service, rules, path)
|
|
9894
10244
|
self.IgnoreInflation = self._IgnoreInflation(self, "IgnoreInflation", service, rules, path)
|
|
9895
10245
|
self.MergeBoundaryLayers = self._MergeBoundaryLayers(self, "MergeBoundaryLayers", service, rules, path)
|
|
9896
|
-
self.NormalSmoothRelaxationFactor = self._NormalSmoothRelaxationFactor(self, "NormalSmoothRelaxationFactor", service, rules, path)
|
|
9897
10246
|
self.ShowPrismPreferences = self._ShowPrismPreferences(self, "ShowPrismPreferences", service, rules, path)
|
|
10247
|
+
self.NormalSmoothRelaxationFactor = self._NormalSmoothRelaxationFactor(self, "NormalSmoothRelaxationFactor", service, rules, path)
|
|
9898
10248
|
self.PrismMinAspectRatio = self._PrismMinAspectRatio(self, "PrismMinAspectRatio", service, rules, path)
|
|
9899
10249
|
self.StairstepExposedQuads = self._StairstepExposedQuads(self, "StairstepExposedQuads", service, rules, path)
|
|
9900
10250
|
self.PrismAdjacentAngle = self._PrismAdjacentAngle(self, "PrismAdjacentAngle", service, rules, path)
|
|
@@ -9934,14 +10284,14 @@ class Root(PyMenu):
|
|
|
9934
10284
|
Choose whether or not you want to have the boundary layer mesh merged into the bulk mesh.
|
|
9935
10285
|
"""
|
|
9936
10286
|
|
|
9937
|
-
class
|
|
10287
|
+
class _ShowPrismPreferences(PyParameterCommandArgumentsSubItem):
|
|
9938
10288
|
"""
|
|
9939
|
-
|
|
10289
|
+
Display global settings for your boundary layers. Note that these settings are not applied for Multizone boundary layers
|
|
9940
10290
|
"""
|
|
9941
10291
|
|
|
9942
|
-
class
|
|
10292
|
+
class _NormalSmoothRelaxationFactor(PyNumericalCommandArgumentsSubItem):
|
|
9943
10293
|
"""
|
|
9944
|
-
|
|
10294
|
+
Specify the smoothness factor for normal prism layers. Increasing this value will generate more prism layers especially near sharp corners.
|
|
9945
10295
|
"""
|
|
9946
10296
|
|
|
9947
10297
|
class _PrismMinAspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -9966,19 +10316,19 @@ class Root(PyMenu):
|
|
|
9966
10316
|
|
|
9967
10317
|
def __init__(self, parent, attr, service, rules, path):
|
|
9968
10318
|
super().__init__(parent, attr, service, rules, path)
|
|
9969
|
-
self.MinAspectRatio = self._MinAspectRatio(self, "MinAspectRatio", service, rules, path)
|
|
9970
10319
|
self.AutoOrderControls = self._AutoOrderControls(self, "AutoOrderControls", service, rules, path)
|
|
10320
|
+
self.MinAspectRatio = self._MinAspectRatio(self, "MinAspectRatio", service, rules, path)
|
|
9971
10321
|
self.StairStep = self._StairStep(self, "StairStep", service, rules, path)
|
|
9972
10322
|
self.ShowGlobalThinVolumePreferences = self._ShowGlobalThinVolumePreferences(self, "ShowGlobalThinVolumePreferences", service, rules, path)
|
|
9973
10323
|
|
|
9974
|
-
class
|
|
10324
|
+
class _AutoOrderControls(PyTextualCommandArgumentsSubItem):
|
|
9975
10325
|
"""
|
|
9976
|
-
|
|
10326
|
+
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.
|
|
9977
10327
|
"""
|
|
9978
10328
|
|
|
9979
|
-
class
|
|
10329
|
+
class _MinAspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
9980
10330
|
"""
|
|
9981
|
-
|
|
10331
|
+
Controls the minimum aspect ratio for cells at the boundary of the thin volume mesh regions. By default, this option is set to 0.3, other than for Stacked Plates, where it is set to 0.1. For flat parallel plates (not including stacked plates), it is recommended to use a value of 0.1 to produce a high quality thin volume mesh.
|
|
9982
10332
|
"""
|
|
9983
10333
|
|
|
9984
10334
|
class _StairStep(PyTextualCommandArgumentsSubItem):
|
|
@@ -10138,13 +10488,14 @@ class Root(PyMenu):
|
|
|
10138
10488
|
self.SaveSizeFieldFile = self._SaveSizeFieldFile(self, "SaveSizeFieldFile", service, rules, path)
|
|
10139
10489
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
10140
10490
|
self.ScopeProximityTo = self._ScopeProximityTo(self, "ScopeProximityTo", service, rules, path)
|
|
10141
|
-
self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
|
|
10142
10491
|
self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
|
|
10492
|
+
self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
|
|
10143
10493
|
self.SaveSizeField = self._SaveSizeField(self, "SaveSizeField", service, rules, path)
|
|
10144
10494
|
self.UseSizeFiles = self._UseSizeFiles(self, "UseSizeFiles", service, rules, path)
|
|
10145
10495
|
self.AutoCreateScopedSizing = self._AutoCreateScopedSizing(self, "AutoCreateScopedSizing", service, rules, path)
|
|
10146
10496
|
self.MinSize = self._MinSize(self, "MinSize", service, rules, path)
|
|
10147
10497
|
self.SizeFunctions = self._SizeFunctions(self, "SizeFunctions", service, rules, path)
|
|
10498
|
+
self.SurfaceMeshMethod = self._SurfaceMeshMethod(self, "SurfaceMeshMethod", service, rules, path)
|
|
10148
10499
|
self.SizeFieldFile = self._SizeFieldFile(self, "SizeFieldFile", service, rules, path)
|
|
10149
10500
|
self.DrawSizeControl = self._DrawSizeControl(self, "DrawSizeControl", service, rules, path)
|
|
10150
10501
|
self.CellsPerGap = self._CellsPerGap(self, "CellsPerGap", service, rules, path)
|
|
@@ -10168,14 +10519,14 @@ class Root(PyMenu):
|
|
|
10168
10519
|
Argument ScopeProximityTo.
|
|
10169
10520
|
"""
|
|
10170
10521
|
|
|
10171
|
-
class
|
|
10522
|
+
class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
|
|
10172
10523
|
"""
|
|
10173
|
-
Argument
|
|
10524
|
+
Argument PreviewSizefield.
|
|
10174
10525
|
"""
|
|
10175
10526
|
|
|
10176
|
-
class
|
|
10527
|
+
class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
10177
10528
|
"""
|
|
10178
|
-
Argument
|
|
10529
|
+
Argument CurvatureNormalAngle.
|
|
10179
10530
|
"""
|
|
10180
10531
|
|
|
10181
10532
|
class _SaveSizeField(PyParameterCommandArgumentsSubItem):
|
|
@@ -10203,6 +10554,11 @@ class Root(PyMenu):
|
|
|
10203
10554
|
Argument SizeFunctions.
|
|
10204
10555
|
"""
|
|
10205
10556
|
|
|
10557
|
+
class _SurfaceMeshMethod(PyTextualCommandArgumentsSubItem):
|
|
10558
|
+
"""
|
|
10559
|
+
Argument SurfaceMeshMethod.
|
|
10560
|
+
"""
|
|
10561
|
+
|
|
10206
10562
|
class _SizeFieldFile(PyTextualCommandArgumentsSubItem):
|
|
10207
10563
|
"""
|
|
10208
10564
|
Argument SizeFieldFile.
|
|
@@ -10387,10 +10743,10 @@ class Root(PyMenu):
|
|
|
10387
10743
|
self.SIQualityIterations = self._SIQualityIterations(self, "SIQualityIterations", service, rules, path)
|
|
10388
10744
|
self.SIQualityMaxAngle = self._SIQualityMaxAngle(self, "SIQualityMaxAngle", service, rules, path)
|
|
10389
10745
|
self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
|
|
10390
|
-
self.
|
|
10746
|
+
self.ShowSMImprovePreferences = self._ShowSMImprovePreferences(self, "ShowSMImprovePreferences", service, rules, path)
|
|
10391
10747
|
self.AdvancedImprove = self._AdvancedImprove(self, "AdvancedImprove", service, rules, path)
|
|
10392
10748
|
self.SIStepWidth = self._SIStepWidth(self, "SIStepWidth", service, rules, path)
|
|
10393
|
-
self.
|
|
10749
|
+
self.SIRemoveStep = self._SIRemoveStep(self, "SIRemoveStep", service, rules, path)
|
|
10394
10750
|
|
|
10395
10751
|
class _SIStepQualityLimit(PyNumericalCommandArgumentsSubItem):
|
|
10396
10752
|
"""
|
|
@@ -10417,9 +10773,9 @@ class Root(PyMenu):
|
|
|
10417
10773
|
Argument AllowDefeaturing.
|
|
10418
10774
|
"""
|
|
10419
10775
|
|
|
10420
|
-
class
|
|
10776
|
+
class _ShowSMImprovePreferences(PyParameterCommandArgumentsSubItem):
|
|
10421
10777
|
"""
|
|
10422
|
-
Argument
|
|
10778
|
+
Argument ShowSMImprovePreferences.
|
|
10423
10779
|
"""
|
|
10424
10780
|
|
|
10425
10781
|
class _AdvancedImprove(PyTextualCommandArgumentsSubItem):
|
|
@@ -10432,9 +10788,9 @@ class Root(PyMenu):
|
|
|
10432
10788
|
Argument SIStepWidth.
|
|
10433
10789
|
"""
|
|
10434
10790
|
|
|
10435
|
-
class
|
|
10791
|
+
class _SIRemoveStep(PyTextualCommandArgumentsSubItem):
|
|
10436
10792
|
"""
|
|
10437
|
-
Argument
|
|
10793
|
+
Argument SIRemoveStep.
|
|
10438
10794
|
"""
|
|
10439
10795
|
|
|
10440
10796
|
def create_instance(self) -> _GeometrySetupCommandArguments:
|
|
@@ -10643,8 +10999,8 @@ class Root(PyMenu):
|
|
|
10643
10999
|
|
|
10644
11000
|
def __init__(self, parent, attr, service, rules, path):
|
|
10645
11001
|
super().__init__(parent, attr, service, rules, path)
|
|
10646
|
-
self.HeightNode = self._HeightNode(self, "HeightNode", service, rules, path)
|
|
10647
11002
|
self.X_Offset = self._X_Offset(self, "X-Offset", service, rules, path)
|
|
11003
|
+
self.HeightNode = self._HeightNode(self, "HeightNode", service, rules, path)
|
|
10648
11004
|
self.HeightBackInc = self._HeightBackInc(self, "HeightBackInc", service, rules, path)
|
|
10649
11005
|
self.X1 = self._X1(self, "X1", service, rules, path)
|
|
10650
11006
|
self.Y1 = self._Y1(self, "Y1", service, rules, path)
|
|
@@ -10655,20 +11011,20 @@ class Root(PyMenu):
|
|
|
10655
11011
|
self.Radius2 = self._Radius2(self, "Radius2", service, rules, path)
|
|
10656
11012
|
self.Y2 = self._Y2(self, "Y2", service, rules, path)
|
|
10657
11013
|
self.Node3 = self._Node3(self, "Node3", service, rules, path)
|
|
10658
|
-
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
10659
|
-
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
10660
11014
|
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
11015
|
+
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
11016
|
+
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
10661
11017
|
self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
|
|
10662
11018
|
self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
|
|
10663
11019
|
|
|
10664
|
-
class
|
|
11020
|
+
class _X_Offset(PyNumericalCommandArgumentsSubItem):
|
|
10665
11021
|
"""
|
|
10666
|
-
Argument
|
|
11022
|
+
Argument X-Offset.
|
|
10667
11023
|
"""
|
|
10668
11024
|
|
|
10669
|
-
class
|
|
11025
|
+
class _HeightNode(PyTextualCommandArgumentsSubItem):
|
|
10670
11026
|
"""
|
|
10671
|
-
Argument
|
|
11027
|
+
Argument HeightNode.
|
|
10672
11028
|
"""
|
|
10673
11029
|
|
|
10674
11030
|
class _HeightBackInc(PyNumericalCommandArgumentsSubItem):
|
|
@@ -10721,9 +11077,9 @@ class Root(PyMenu):
|
|
|
10721
11077
|
Argument Node3.
|
|
10722
11078
|
"""
|
|
10723
11079
|
|
|
10724
|
-
class
|
|
11080
|
+
class _Y_Offset(PyNumericalCommandArgumentsSubItem):
|
|
10725
11081
|
"""
|
|
10726
|
-
Argument
|
|
11082
|
+
Argument Y-Offset.
|
|
10727
11083
|
"""
|
|
10728
11084
|
|
|
10729
11085
|
class _X2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -10731,9 +11087,9 @@ class Root(PyMenu):
|
|
|
10731
11087
|
Argument X2.
|
|
10732
11088
|
"""
|
|
10733
11089
|
|
|
10734
|
-
class
|
|
11090
|
+
class _Node2(PyTextualCommandArgumentsSubItem):
|
|
10735
11091
|
"""
|
|
10736
|
-
Argument
|
|
11092
|
+
Argument Node2.
|
|
10737
11093
|
"""
|
|
10738
11094
|
|
|
10739
11095
|
class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
|
|
@@ -10759,7 +11115,7 @@ class Root(PyMenu):
|
|
|
10759
11115
|
def __init__(self, parent, attr, service, rules, path):
|
|
10760
11116
|
super().__init__(parent, attr, service, rules, path)
|
|
10761
11117
|
self.SizeRelativeLength = self._SizeRelativeLength(self, "SizeRelativeLength", service, rules, path)
|
|
10762
|
-
self.
|
|
11118
|
+
self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
|
|
10763
11119
|
self.XminRatio = self._XminRatio(self, "XminRatio", service, rules, path)
|
|
10764
11120
|
self.YminRatio = self._YminRatio(self, "YminRatio", service, rules, path)
|
|
10765
11121
|
self.Zmin = self._Zmin(self, "Zmin", service, rules, path)
|
|
@@ -10770,16 +11126,16 @@ class Root(PyMenu):
|
|
|
10770
11126
|
self.Xmin = self._Xmin(self, "Xmin", service, rules, path)
|
|
10771
11127
|
self.YmaxRatio = self._YmaxRatio(self, "YmaxRatio", service, rules, path)
|
|
10772
11128
|
self.ZmaxRatio = self._ZmaxRatio(self, "ZmaxRatio", service, rules, path)
|
|
10773
|
-
self.
|
|
11129
|
+
self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
|
|
10774
11130
|
|
|
10775
11131
|
class _SizeRelativeLength(PyTextualCommandArgumentsSubItem):
|
|
10776
11132
|
"""
|
|
10777
11133
|
Determine if you would like to specify the bounding box for the construction surface as a ratio of the geometry length, or by specifying a specific location for the minimum and maximum coordinates.
|
|
10778
11134
|
"""
|
|
10779
11135
|
|
|
10780
|
-
class
|
|
11136
|
+
class _Xmax(PyNumericalCommandArgumentsSubItem):
|
|
10781
11137
|
"""
|
|
10782
|
-
Extends the maximum size of the bounding box in the X direction by the specified value.
|
|
11138
|
+
Extends the maximum size of the bounding box in the X direction by the specified value.
|
|
10783
11139
|
"""
|
|
10784
11140
|
|
|
10785
11141
|
class _XminRatio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -10832,9 +11188,9 @@ class Root(PyMenu):
|
|
|
10832
11188
|
Extends the maximum size of the bounding box in the Z direction by the specified value. The value is the ratio relative to the geometry size in the Z direction.
|
|
10833
11189
|
"""
|
|
10834
11190
|
|
|
10835
|
-
class
|
|
11191
|
+
class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
|
|
10836
11192
|
"""
|
|
10837
|
-
Extends the maximum size of the bounding box in the X direction by the specified value.
|
|
11193
|
+
Extends the maximum size of the bounding box in the X direction by the specified value. The value is the ratio relative to the geometry size in the X direction.
|
|
10838
11194
|
"""
|
|
10839
11195
|
|
|
10840
11196
|
def create_instance(self) -> _IdentifyConstructionSurfacesCommandArguments:
|
|
@@ -11267,9 +11623,9 @@ class Root(PyMenu):
|
|
|
11267
11623
|
self.OneZonePer = self._OneZonePer(self, "OneZonePer", service, rules, path)
|
|
11268
11624
|
self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
|
|
11269
11625
|
self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
|
|
11270
|
-
self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
|
|
11271
|
-
self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
|
|
11272
11626
|
self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
|
|
11627
|
+
self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
|
|
11628
|
+
self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
|
|
11273
11629
|
|
|
11274
11630
|
class _SavePMDBIntermediateFile(PyParameterCommandArgumentsSubItem):
|
|
11275
11631
|
"""
|
|
@@ -11311,9 +11667,9 @@ class Root(PyMenu):
|
|
|
11311
11667
|
Argument ExtractFeatures.
|
|
11312
11668
|
"""
|
|
11313
11669
|
|
|
11314
|
-
class
|
|
11670
|
+
class _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
|
|
11315
11671
|
"""
|
|
11316
|
-
Argument
|
|
11672
|
+
Argument UsePartOrBodyAsSuffix.
|
|
11317
11673
|
"""
|
|
11318
11674
|
|
|
11319
11675
|
class _ImportPartNames(PyParameterCommandArgumentsSubItem):
|
|
@@ -11321,9 +11677,9 @@ class Root(PyMenu):
|
|
|
11321
11677
|
Argument ImportPartNames.
|
|
11322
11678
|
"""
|
|
11323
11679
|
|
|
11324
|
-
class
|
|
11680
|
+
class _ImportNamedSelections(PyParameterCommandArgumentsSubItem):
|
|
11325
11681
|
"""
|
|
11326
|
-
Argument
|
|
11682
|
+
Argument ImportNamedSelections.
|
|
11327
11683
|
"""
|
|
11328
11684
|
|
|
11329
11685
|
def create_instance(self) -> _ImportBodyOfInfluenceGeometryCommandArguments:
|
|
@@ -11413,21 +11769,21 @@ class Root(PyMenu):
|
|
|
11413
11769
|
|
|
11414
11770
|
def __init__(self, parent, attr, service, rules, path):
|
|
11415
11771
|
super().__init__(parent, attr, service, rules, path)
|
|
11416
|
-
self.
|
|
11772
|
+
self.CITolerence = self._CITolerence(self, "CITolerence", service, rules, path)
|
|
11417
11773
|
self.FacetedBodies = self._FacetedBodies(self, "FacetedBodies", service, rules, path)
|
|
11418
11774
|
self.CISeparation = self._CISeparation(self, "CISeparation", service, rules, path)
|
|
11419
|
-
self.
|
|
11775
|
+
self.ExtractAngle = self._ExtractAngle(self, "ExtractAngle", service, rules, path)
|
|
11420
11776
|
self.CIRefaceting = self._CIRefaceting(self, "CIRefaceting", service, rules, path)
|
|
11421
11777
|
self.AutomaticObjectCreation = self._AutomaticObjectCreation(self, "AutomaticObjectCreation", service, rules, path)
|
|
11422
11778
|
self.ShowImportCadPreferences = self._ShowImportCadPreferences(self, "ShowImportCadPreferences", service, rules, path)
|
|
11423
11779
|
self.MaxFacetLength = self._MaxFacetLength(self, "MaxFacetLength", service, rules, path)
|
|
11424
|
-
self.
|
|
11780
|
+
self.MergeNodes = self._MergeNodes(self, "MergeNodes", service, rules, path)
|
|
11425
11781
|
self.CISeparationAngle = self._CISeparationAngle(self, "CISeparationAngle", service, rules, path)
|
|
11426
11782
|
self.EdgeLabel = self._EdgeLabel(self, "EdgeLabel", service, rules, path)
|
|
11427
11783
|
|
|
11428
|
-
class
|
|
11784
|
+
class _CITolerence(PyNumericalCommandArgumentsSubItem):
|
|
11429
11785
|
"""
|
|
11430
|
-
|
|
11786
|
+
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.
|
|
11431
11787
|
"""
|
|
11432
11788
|
|
|
11433
11789
|
class _FacetedBodies(PyTextualCommandArgumentsSubItem):
|
|
@@ -11440,9 +11796,9 @@ class Root(PyMenu):
|
|
|
11440
11796
|
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.
|
|
11441
11797
|
"""
|
|
11442
11798
|
|
|
11443
|
-
class
|
|
11799
|
+
class _ExtractAngle(PyNumericalCommandArgumentsSubItem):
|
|
11444
11800
|
"""
|
|
11445
|
-
|
|
11801
|
+
Argument ExtractAngle.
|
|
11446
11802
|
"""
|
|
11447
11803
|
|
|
11448
11804
|
class _CIRefaceting(PyParameterCommandArgumentsSubItem):
|
|
@@ -11465,9 +11821,9 @@ class Root(PyMenu):
|
|
|
11465
11821
|
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.
|
|
11466
11822
|
"""
|
|
11467
11823
|
|
|
11468
|
-
class
|
|
11824
|
+
class _MergeNodes(PyTextualCommandArgumentsSubItem):
|
|
11469
11825
|
"""
|
|
11470
|
-
Argument
|
|
11826
|
+
Argument MergeNodes.
|
|
11471
11827
|
"""
|
|
11472
11828
|
|
|
11473
11829
|
class _CISeparationAngle(PyNumericalCommandArgumentsSubItem):
|
|
@@ -11528,11 +11884,11 @@ class Root(PyMenu):
|
|
|
11528
11884
|
self.CreateCADAssemblies = self._CreateCADAssemblies(self, "CreateCADAssemblies", service, rules, path)
|
|
11529
11885
|
self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
|
|
11530
11886
|
self.OneZonePer = self._OneZonePer(self, "OneZonePer", service, rules, path)
|
|
11531
|
-
self.
|
|
11887
|
+
self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
|
|
11532
11888
|
self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
|
|
11533
|
-
self.
|
|
11889
|
+
self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
|
|
11534
11890
|
self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
|
|
11535
|
-
self.
|
|
11891
|
+
self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
|
|
11536
11892
|
|
|
11537
11893
|
class _SavePMDBIntermediateFile(PyParameterCommandArgumentsSubItem):
|
|
11538
11894
|
"""
|
|
@@ -11564,9 +11920,9 @@ class Root(PyMenu):
|
|
|
11564
11920
|
Argument OneZonePer.
|
|
11565
11921
|
"""
|
|
11566
11922
|
|
|
11567
|
-
class
|
|
11923
|
+
class _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
|
|
11568
11924
|
"""
|
|
11569
|
-
Argument
|
|
11925
|
+
Argument UsePartOrBodyAsSuffix.
|
|
11570
11926
|
"""
|
|
11571
11927
|
|
|
11572
11928
|
class _ImportNamedSelections(PyParameterCommandArgumentsSubItem):
|
|
@@ -11574,9 +11930,9 @@ class Root(PyMenu):
|
|
|
11574
11930
|
Argument ImportNamedSelections.
|
|
11575
11931
|
"""
|
|
11576
11932
|
|
|
11577
|
-
class
|
|
11933
|
+
class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
|
|
11578
11934
|
"""
|
|
11579
|
-
Argument
|
|
11935
|
+
Argument ImportCurvatureDataFromCAD.
|
|
11580
11936
|
"""
|
|
11581
11937
|
|
|
11582
11938
|
class _ImportPartNames(PyParameterCommandArgumentsSubItem):
|
|
@@ -11584,9 +11940,9 @@ class Root(PyMenu):
|
|
|
11584
11940
|
Argument ImportPartNames.
|
|
11585
11941
|
"""
|
|
11586
11942
|
|
|
11587
|
-
class
|
|
11943
|
+
class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
|
|
11588
11944
|
"""
|
|
11589
|
-
Argument
|
|
11945
|
+
Argument ExtractFeatures.
|
|
11590
11946
|
"""
|
|
11591
11947
|
|
|
11592
11948
|
def create_instance(self) -> _ImportGeometryCommandArguments:
|
|
@@ -11651,10 +12007,10 @@ class Root(PyMenu):
|
|
|
11651
12007
|
self.SIQualityIterations = self._SIQualityIterations(self, "SIQualityIterations", service, rules, path)
|
|
11652
12008
|
self.SIQualityMaxAngle = self._SIQualityMaxAngle(self, "SIQualityMaxAngle", service, rules, path)
|
|
11653
12009
|
self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
|
|
11654
|
-
self.
|
|
12010
|
+
self.SIRemoveStep = self._SIRemoveStep(self, "SIRemoveStep", service, rules, path)
|
|
11655
12011
|
self.AdvancedImprove = self._AdvancedImprove(self, "AdvancedImprove", service, rules, path)
|
|
11656
12012
|
self.SIStepWidth = self._SIStepWidth(self, "SIStepWidth", service, rules, path)
|
|
11657
|
-
self.
|
|
12013
|
+
self.ShowSMImprovePreferences = self._ShowSMImprovePreferences(self, "ShowSMImprovePreferences", service, rules, path)
|
|
11658
12014
|
|
|
11659
12015
|
class _SIStepQualityLimit(PyNumericalCommandArgumentsSubItem):
|
|
11660
12016
|
"""
|
|
@@ -11681,9 +12037,9 @@ class Root(PyMenu):
|
|
|
11681
12037
|
Argument AllowDefeaturing.
|
|
11682
12038
|
"""
|
|
11683
12039
|
|
|
11684
|
-
class
|
|
12040
|
+
class _SIRemoveStep(PyTextualCommandArgumentsSubItem):
|
|
11685
12041
|
"""
|
|
11686
|
-
|
|
12042
|
+
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.
|
|
11687
12043
|
"""
|
|
11688
12044
|
|
|
11689
12045
|
class _AdvancedImprove(PyTextualCommandArgumentsSubItem):
|
|
@@ -11696,9 +12052,9 @@ class Root(PyMenu):
|
|
|
11696
12052
|
Specify the width of the step that you wish to remove.
|
|
11697
12053
|
"""
|
|
11698
12054
|
|
|
11699
|
-
class
|
|
12055
|
+
class _ShowSMImprovePreferences(PyParameterCommandArgumentsSubItem):
|
|
11700
12056
|
"""
|
|
11701
|
-
|
|
12057
|
+
Display advanced options that you may want to apply to the task.
|
|
11702
12058
|
"""
|
|
11703
12059
|
|
|
11704
12060
|
def create_instance(self) -> _ImproveSurfaceMeshCommandArguments:
|
|
@@ -12022,9 +12378,9 @@ class Root(PyMenu):
|
|
|
12022
12378
|
super().__init__(parent, attr, service, rules, path)
|
|
12023
12379
|
self.FacetMaxEdgeLength = self._FacetMaxEdgeLength(self, "FacetMaxEdgeLength", service, rules, path)
|
|
12024
12380
|
self.FacetResolution = self._FacetResolution(self, "FacetResolution", service, rules, path)
|
|
12381
|
+
self.MaxEdgeLengthFactor = self._MaxEdgeLengthFactor(self, "MaxEdgeLengthFactor", service, rules, path)
|
|
12025
12382
|
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
12026
12383
|
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
12027
|
-
self.MaxEdgeLengthFactor = self._MaxEdgeLengthFactor(self, "MaxEdgeLengthFactor", service, rules, path)
|
|
12028
12384
|
self.MaxEdgeLength = self._MaxEdgeLength(self, "MaxEdgeLength", service, rules, path)
|
|
12029
12385
|
self.CustomNormalAngle = self._CustomNormalAngle(self, "CustomNormalAngle", service, rules, path)
|
|
12030
12386
|
self.CustomDeviation = self._CustomDeviation(self, "CustomDeviation", service, rules, path)
|
|
@@ -12040,6 +12396,11 @@ class Root(PyMenu):
|
|
|
12040
12396
|
Argument FacetResolution.
|
|
12041
12397
|
"""
|
|
12042
12398
|
|
|
12399
|
+
class _MaxEdgeLengthFactor(PyNumericalCommandArgumentsSubItem):
|
|
12400
|
+
"""
|
|
12401
|
+
Argument MaxEdgeLengthFactor.
|
|
12402
|
+
"""
|
|
12403
|
+
|
|
12043
12404
|
class _Deviation(PyNumericalCommandArgumentsSubItem):
|
|
12044
12405
|
"""
|
|
12045
12406
|
Argument Deviation.
|
|
@@ -12050,11 +12411,6 @@ class Root(PyMenu):
|
|
|
12050
12411
|
Argument NormalAngle.
|
|
12051
12412
|
"""
|
|
12052
12413
|
|
|
12053
|
-
class _MaxEdgeLengthFactor(PyNumericalCommandArgumentsSubItem):
|
|
12054
|
-
"""
|
|
12055
|
-
Argument MaxEdgeLengthFactor.
|
|
12056
|
-
"""
|
|
12057
|
-
|
|
12058
12414
|
class _MaxEdgeLength(PyNumericalCommandArgumentsSubItem):
|
|
12059
12415
|
"""
|
|
12060
12416
|
Argument MaxEdgeLength.
|
|
@@ -12180,8 +12536,8 @@ class Root(PyMenu):
|
|
|
12180
12536
|
self.WrapMax = self._WrapMax(self, "WrapMax", service, rules, path)
|
|
12181
12537
|
self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
|
|
12182
12538
|
self.SizingType = self._SizingType(self, "SizingType", service, rules, path)
|
|
12183
|
-
self.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", service, rules, path)
|
|
12184
12539
|
self.InitialSizeControl = self._InitialSizeControl(self, "InitialSizeControl", service, rules, path)
|
|
12540
|
+
self.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", service, rules, path)
|
|
12185
12541
|
self.CellsPerGap = self._CellsPerGap(self, "CellsPerGap", service, rules, path)
|
|
12186
12542
|
self.WrapCurvatureNormalAngle = self._WrapCurvatureNormalAngle(self, "WrapCurvatureNormalAngle", service, rules, path)
|
|
12187
12543
|
self.TargetSizeControl = self._TargetSizeControl(self, "TargetSizeControl", service, rules, path)
|
|
@@ -12237,14 +12593,14 @@ class Root(PyMenu):
|
|
|
12237
12593
|
Choose the type of sizing control (curvature, proximity, soft, or boi).
|
|
12238
12594
|
"""
|
|
12239
12595
|
|
|
12240
|
-
class
|
|
12596
|
+
class _InitialSizeControl(PyParameterCommandArgumentsSubItem):
|
|
12241
12597
|
"""
|
|
12242
|
-
|
|
12598
|
+
Enable this field to display the initial size control in the graphics window.
|
|
12243
12599
|
"""
|
|
12244
12600
|
|
|
12245
|
-
class
|
|
12601
|
+
class _WrapGrowthRate(PyNumericalCommandArgumentsSubItem):
|
|
12246
12602
|
"""
|
|
12247
|
-
|
|
12603
|
+
Specify the increase in element edge length with each succeeding layer of elements.
|
|
12248
12604
|
"""
|
|
12249
12605
|
|
|
12250
12606
|
class _CellsPerGap(PyNumericalCommandArgumentsSubItem):
|
|
@@ -12638,13 +12994,14 @@ class Root(PyMenu):
|
|
|
12638
12994
|
self.SaveSizeFieldFile = self._SaveSizeFieldFile(self, "SaveSizeFieldFile", service, rules, path)
|
|
12639
12995
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
12640
12996
|
self.ScopeProximityTo = self._ScopeProximityTo(self, "ScopeProximityTo", service, rules, path)
|
|
12641
|
-
self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
|
|
12642
12997
|
self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
|
|
12998
|
+
self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
|
|
12643
12999
|
self.SaveSizeField = self._SaveSizeField(self, "SaveSizeField", service, rules, path)
|
|
12644
13000
|
self.UseSizeFiles = self._UseSizeFiles(self, "UseSizeFiles", service, rules, path)
|
|
12645
13001
|
self.AutoCreateScopedSizing = self._AutoCreateScopedSizing(self, "AutoCreateScopedSizing", service, rules, path)
|
|
12646
13002
|
self.MinSize = self._MinSize(self, "MinSize", service, rules, path)
|
|
12647
13003
|
self.SizeFunctions = self._SizeFunctions(self, "SizeFunctions", service, rules, path)
|
|
13004
|
+
self.SurfaceMeshMethod = self._SurfaceMeshMethod(self, "SurfaceMeshMethod", service, rules, path)
|
|
12648
13005
|
self.SizeFieldFile = self._SizeFieldFile(self, "SizeFieldFile", service, rules, path)
|
|
12649
13006
|
self.DrawSizeControl = self._DrawSizeControl(self, "DrawSizeControl", service, rules, path)
|
|
12650
13007
|
self.CellsPerGap = self._CellsPerGap(self, "CellsPerGap", service, rules, path)
|
|
@@ -12668,14 +13025,14 @@ class Root(PyMenu):
|
|
|
12668
13025
|
Argument ScopeProximityTo.
|
|
12669
13026
|
"""
|
|
12670
13027
|
|
|
12671
|
-
class
|
|
13028
|
+
class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
|
|
12672
13029
|
"""
|
|
12673
|
-
Argument
|
|
13030
|
+
Argument PreviewSizefield.
|
|
12674
13031
|
"""
|
|
12675
13032
|
|
|
12676
|
-
class
|
|
13033
|
+
class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
12677
13034
|
"""
|
|
12678
|
-
Argument
|
|
13035
|
+
Argument CurvatureNormalAngle.
|
|
12679
13036
|
"""
|
|
12680
13037
|
|
|
12681
13038
|
class _SaveSizeField(PyParameterCommandArgumentsSubItem):
|
|
@@ -12703,6 +13060,11 @@ class Root(PyMenu):
|
|
|
12703
13060
|
Argument SizeFunctions.
|
|
12704
13061
|
"""
|
|
12705
13062
|
|
|
13063
|
+
class _SurfaceMeshMethod(PyTextualCommandArgumentsSubItem):
|
|
13064
|
+
"""
|
|
13065
|
+
Argument SurfaceMeshMethod.
|
|
13066
|
+
"""
|
|
13067
|
+
|
|
12706
13068
|
class _SizeFieldFile(PyTextualCommandArgumentsSubItem):
|
|
12707
13069
|
"""
|
|
12708
13070
|
Argument SizeFieldFile.
|
|
@@ -12952,10 +13314,10 @@ class Root(PyMenu):
|
|
|
12952
13314
|
super().__init__(parent, attr, service, rules, path)
|
|
12953
13315
|
self.FacetMaxEdgeLength = self._FacetMaxEdgeLength(self, "FacetMaxEdgeLength", service, rules, path)
|
|
12954
13316
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
13317
|
+
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
12955
13318
|
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
12956
|
-
self.MaxEdgeLengthFactor = self._MaxEdgeLengthFactor(self, "MaxEdgeLengthFactor", service, rules, path)
|
|
12957
13319
|
self.Refacet = self._Refacet(self, "Refacet", service, rules, path)
|
|
12958
|
-
self.
|
|
13320
|
+
self.MaxEdgeLengthFactor = self._MaxEdgeLengthFactor(self, "MaxEdgeLengthFactor", service, rules, path)
|
|
12959
13321
|
|
|
12960
13322
|
class _FacetMaxEdgeLength(PyTextualCommandArgumentsSubItem):
|
|
12961
13323
|
"""
|
|
@@ -12967,14 +13329,14 @@ class Root(PyMenu):
|
|
|
12967
13329
|
Specify a maximum element size for the imported model to avoid very large facets during the file import.
|
|
12968
13330
|
"""
|
|
12969
13331
|
|
|
12970
|
-
class
|
|
13332
|
+
class _NormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
12971
13333
|
"""
|
|
12972
|
-
Specify
|
|
13334
|
+
Specify a rotational angle (in degrees) of transformation.
|
|
12973
13335
|
"""
|
|
12974
13336
|
|
|
12975
|
-
class
|
|
13337
|
+
class _Deviation(PyNumericalCommandArgumentsSubItem):
|
|
12976
13338
|
"""
|
|
12977
|
-
|
|
13339
|
+
Specify the distance between facet edges and the geometry edges. Decreasing this value will result in more facets along curved edges.
|
|
12978
13340
|
"""
|
|
12979
13341
|
|
|
12980
13342
|
class _Refacet(PyParameterCommandArgumentsSubItem):
|
|
@@ -12982,9 +13344,9 @@ class Root(PyMenu):
|
|
|
12982
13344
|
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...
|
|
12983
13345
|
"""
|
|
12984
13346
|
|
|
12985
|
-
class
|
|
13347
|
+
class _MaxEdgeLengthFactor(PyNumericalCommandArgumentsSubItem):
|
|
12986
13348
|
"""
|
|
12987
|
-
|
|
13349
|
+
Specifies the maximum size of the facets relative to the bounding box of the geometry.
|
|
12988
13350
|
"""
|
|
12989
13351
|
|
|
12990
13352
|
class _IgnoreSolidNames(PyParameterCommandArgumentsSubItem):
|
|
@@ -13047,8 +13409,8 @@ class Root(PyMenu):
|
|
|
13047
13409
|
super().__init__(parent, attr, service, rules, path)
|
|
13048
13410
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
13049
13411
|
self.RefacetDuringLoad = self._RefacetDuringLoad(self, "RefacetDuringLoad", service, rules, path)
|
|
13050
|
-
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
13051
13412
|
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
13413
|
+
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
13052
13414
|
|
|
13053
13415
|
class _MaxSize(PyNumericalCommandArgumentsSubItem):
|
|
13054
13416
|
"""
|
|
@@ -13060,14 +13422,14 @@ class Root(PyMenu):
|
|
|
13060
13422
|
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.
|
|
13061
13423
|
"""
|
|
13062
13424
|
|
|
13063
|
-
class
|
|
13425
|
+
class _Deviation(PyNumericalCommandArgumentsSubItem):
|
|
13064
13426
|
"""
|
|
13065
|
-
Specify
|
|
13427
|
+
Specify the distance between facet edges and the geometry edges. Decreasing this value will result in more facets along curved edges.
|
|
13066
13428
|
"""
|
|
13067
13429
|
|
|
13068
|
-
class
|
|
13430
|
+
class _NormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
13069
13431
|
"""
|
|
13070
|
-
Specify
|
|
13432
|
+
Specify a rotational angle (in degrees) of transformation.
|
|
13071
13433
|
"""
|
|
13072
13434
|
|
|
13073
13435
|
def create_instance(self) -> _PartManagementCommandArguments:
|
|
@@ -13663,9 +14025,9 @@ class Root(PyMenu):
|
|
|
13663
14025
|
self.Operation = self._Operation(self, "Operation", service, rules, path)
|
|
13664
14026
|
self.ShareTopologyAngle = self._ShareTopologyAngle(self, "ShareTopologyAngle", service, rules, path)
|
|
13665
14027
|
self.STToleranceIncrement = self._STToleranceIncrement(self, "STToleranceIncrement", service, rules, path)
|
|
13666
|
-
self.IntfLabelList = self._IntfLabelList(self, "IntfLabelList", service, rules, path)
|
|
13667
|
-
self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
|
|
13668
14028
|
self.ShowShareTopologyPreferences = self._ShowShareTopologyPreferences(self, "ShowShareTopologyPreferences", service, rules, path)
|
|
14029
|
+
self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
|
|
14030
|
+
self.IntfLabelList = self._IntfLabelList(self, "IntfLabelList", service, rules, path)
|
|
13669
14031
|
self.AdvancedImprove = self._AdvancedImprove(self, "AdvancedImprove", service, rules, path)
|
|
13670
14032
|
self.NumberOfJoinTries = self._NumberOfJoinTries(self, "NumberOfJoinTries", service, rules, path)
|
|
13671
14033
|
|
|
@@ -13719,9 +14081,9 @@ class Root(PyMenu):
|
|
|
13719
14081
|
Specify the increment by which the tolerance changes for each attempt to join face pairs.
|
|
13720
14082
|
"""
|
|
13721
14083
|
|
|
13722
|
-
class
|
|
14084
|
+
class _ShowShareTopologyPreferences(PyParameterCommandArgumentsSubItem):
|
|
13723
14085
|
"""
|
|
13724
|
-
|
|
14086
|
+
Display advanced options that you may want to apply to the task.
|
|
13725
14087
|
"""
|
|
13726
14088
|
|
|
13727
14089
|
class _PerLabelList(PyTextualCommandArgumentsSubItem):
|
|
@@ -13729,9 +14091,9 @@ class Root(PyMenu):
|
|
|
13729
14091
|
Argument PerLabelList.
|
|
13730
14092
|
"""
|
|
13731
14093
|
|
|
13732
|
-
class
|
|
14094
|
+
class _IntfLabelList(PyTextualCommandArgumentsSubItem):
|
|
13733
14095
|
"""
|
|
13734
|
-
|
|
14096
|
+
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...
|
|
13735
14097
|
"""
|
|
13736
14098
|
|
|
13737
14099
|
class _AdvancedImprove(PyTextualCommandArgumentsSubItem):
|
|
@@ -13816,16 +14178,16 @@ class Root(PyMenu):
|
|
|
13816
14178
|
self.SMQualityCollapseLimit = self._SMQualityCollapseLimit(self, "SMQualityCollapseLimit", service, rules, path)
|
|
13817
14179
|
self.AutoMerge = self._AutoMerge(self, "AutoMerge", service, rules, path)
|
|
13818
14180
|
self.SMQualityImprove = self._SMQualityImprove(self, "SMQualityImprove", service, rules, path)
|
|
13819
|
-
self.SMSeparationAngle = self._SMSeparationAngle(self, "SMSeparationAngle", service, rules, path)
|
|
13820
|
-
self.FoldFaceLimit = self._FoldFaceLimit(self, "FoldFaceLimit", service, rules, path)
|
|
13821
14181
|
self.ShowSurfaceMeshPreferences = self._ShowSurfaceMeshPreferences(self, "ShowSurfaceMeshPreferences", service, rules, path)
|
|
13822
|
-
self.TVMAutoControlCreation = self._TVMAutoControlCreation(self, "TVMAutoControlCreation", service, rules, path)
|
|
13823
14182
|
self.SMSeparation = self._SMSeparation(self, "SMSeparation", service, rules, path)
|
|
14183
|
+
self.FoldFaceLimit = self._FoldFaceLimit(self, "FoldFaceLimit", service, rules, path)
|
|
14184
|
+
self.TVMAutoControlCreation = self._TVMAutoControlCreation(self, "TVMAutoControlCreation", service, rules, path)
|
|
14185
|
+
self.SMSeparationAngle = self._SMSeparationAngle(self, "SMSeparationAngle", service, rules, path)
|
|
13824
14186
|
self.SMRemoveStep = self._SMRemoveStep(self, "SMRemoveStep", service, rules, path)
|
|
13825
14187
|
self.SMStepWidth = self._SMStepWidth(self, "SMStepWidth", service, rules, path)
|
|
13826
|
-
self.VolumeMeshMaxSize = self._VolumeMeshMaxSize(self, "VolumeMeshMaxSize", service, rules, path)
|
|
13827
|
-
self.AutoAssignZoneTypes = self._AutoAssignZoneTypes(self, "AutoAssignZoneTypes", service, rules, path)
|
|
13828
14188
|
self.SMQualityMaxAngle = self._SMQualityMaxAngle(self, "SMQualityMaxAngle", service, rules, path)
|
|
14189
|
+
self.AutoAssignZoneTypes = self._AutoAssignZoneTypes(self, "AutoAssignZoneTypes", service, rules, path)
|
|
14190
|
+
self.VolumeMeshMaxSize = self._VolumeMeshMaxSize(self, "VolumeMeshMaxSize", service, rules, path)
|
|
13829
14191
|
self.SMQualityImproveLimit = self._SMQualityImproveLimit(self, "SMQualityImproveLimit", service, rules, path)
|
|
13830
14192
|
self.AutoSurfaceRemesh = self._AutoSurfaceRemesh(self, "AutoSurfaceRemesh", service, rules, path)
|
|
13831
14193
|
self.SelfIntersectCheck = self._SelfIntersectCheck(self, "SelfIntersectCheck", service, rules, path)
|
|
@@ -13846,19 +14208,19 @@ class Root(PyMenu):
|
|
|
13846
14208
|
Argument SMQualityImprove.
|
|
13847
14209
|
"""
|
|
13848
14210
|
|
|
13849
|
-
class
|
|
14211
|
+
class _ShowSurfaceMeshPreferences(PyParameterCommandArgumentsSubItem):
|
|
13850
14212
|
"""
|
|
13851
|
-
Argument
|
|
14213
|
+
Argument ShowSurfaceMeshPreferences.
|
|
13852
14214
|
"""
|
|
13853
14215
|
|
|
13854
|
-
class
|
|
14216
|
+
class _SMSeparation(PyTextualCommandArgumentsSubItem):
|
|
13855
14217
|
"""
|
|
13856
|
-
Argument
|
|
14218
|
+
Argument SMSeparation.
|
|
13857
14219
|
"""
|
|
13858
14220
|
|
|
13859
|
-
class
|
|
14221
|
+
class _FoldFaceLimit(PyNumericalCommandArgumentsSubItem):
|
|
13860
14222
|
"""
|
|
13861
|
-
Argument
|
|
14223
|
+
Argument FoldFaceLimit.
|
|
13862
14224
|
"""
|
|
13863
14225
|
|
|
13864
14226
|
class _TVMAutoControlCreation(PyTextualCommandArgumentsSubItem):
|
|
@@ -13866,9 +14228,9 @@ class Root(PyMenu):
|
|
|
13866
14228
|
Argument TVMAutoControlCreation.
|
|
13867
14229
|
"""
|
|
13868
14230
|
|
|
13869
|
-
class
|
|
14231
|
+
class _SMSeparationAngle(PyNumericalCommandArgumentsSubItem):
|
|
13870
14232
|
"""
|
|
13871
|
-
Argument
|
|
14233
|
+
Argument SMSeparationAngle.
|
|
13872
14234
|
"""
|
|
13873
14235
|
|
|
13874
14236
|
class _SMRemoveStep(PyTextualCommandArgumentsSubItem):
|
|
@@ -13881,9 +14243,9 @@ class Root(PyMenu):
|
|
|
13881
14243
|
Argument SMStepWidth.
|
|
13882
14244
|
"""
|
|
13883
14245
|
|
|
13884
|
-
class
|
|
14246
|
+
class _SMQualityMaxAngle(PyNumericalCommandArgumentsSubItem):
|
|
13885
14247
|
"""
|
|
13886
|
-
Argument
|
|
14248
|
+
Argument SMQualityMaxAngle.
|
|
13887
14249
|
"""
|
|
13888
14250
|
|
|
13889
14251
|
class _AutoAssignZoneTypes(PyTextualCommandArgumentsSubItem):
|
|
@@ -13891,9 +14253,9 @@ class Root(PyMenu):
|
|
|
13891
14253
|
Argument AutoAssignZoneTypes.
|
|
13892
14254
|
"""
|
|
13893
14255
|
|
|
13894
|
-
class
|
|
14256
|
+
class _VolumeMeshMaxSize(PyNumericalCommandArgumentsSubItem):
|
|
13895
14257
|
"""
|
|
13896
|
-
Argument
|
|
14258
|
+
Argument VolumeMeshMaxSize.
|
|
13897
14259
|
"""
|
|
13898
14260
|
|
|
13899
14261
|
class _SMQualityImproveLimit(PyNumericalCommandArgumentsSubItem):
|
|
@@ -13998,9 +14360,9 @@ class Root(PyMenu):
|
|
|
13998
14360
|
def __init__(self, parent, attr, service, rules, path):
|
|
13999
14361
|
super().__init__(parent, attr, service, rules, path)
|
|
14000
14362
|
self.NewLabelObjects = self._NewLabelObjects(self, "NewLabelObjects", service, rules, path)
|
|
14001
|
-
self.NewLabelResolution = self._NewLabelResolution(self, "NewLabelResolution", service, rules, path)
|
|
14002
|
-
self.NewLabelType = self._NewLabelType(self, "NewLabelType", service, rules, path)
|
|
14003
14363
|
self.NewLabelCells = self._NewLabelCells(self, "NewLabelCells", service, rules, path)
|
|
14364
|
+
self.NewLabelType = self._NewLabelType(self, "NewLabelType", service, rules, path)
|
|
14365
|
+
self.NewLabelResolution = self._NewLabelResolution(self, "NewLabelResolution", service, rules, path)
|
|
14004
14366
|
self.NewLabels = self._NewLabels(self, "NewLabels", service, rules, path)
|
|
14005
14367
|
self.NewLabelMax = self._NewLabelMax(self, "NewLabelMax", service, rules, path)
|
|
14006
14368
|
self.NewZoneType = self._NewZoneType(self, "NewZoneType", service, rules, path)
|
|
@@ -14012,9 +14374,9 @@ class Root(PyMenu):
|
|
|
14012
14374
|
Argument NewLabelObjects.
|
|
14013
14375
|
"""
|
|
14014
14376
|
|
|
14015
|
-
class
|
|
14377
|
+
class _NewLabelCells(PyTextualCommandArgumentsSubItem):
|
|
14016
14378
|
"""
|
|
14017
|
-
Argument
|
|
14379
|
+
Argument NewLabelCells.
|
|
14018
14380
|
"""
|
|
14019
14381
|
|
|
14020
14382
|
class _NewLabelType(PyTextualCommandArgumentsSubItem):
|
|
@@ -14022,9 +14384,9 @@ class Root(PyMenu):
|
|
|
14022
14384
|
Argument NewLabelType.
|
|
14023
14385
|
"""
|
|
14024
14386
|
|
|
14025
|
-
class
|
|
14387
|
+
class _NewLabelResolution(PyTextualCommandArgumentsSubItem):
|
|
14026
14388
|
"""
|
|
14027
|
-
Argument
|
|
14389
|
+
Argument NewLabelResolution.
|
|
14028
14390
|
"""
|
|
14029
14391
|
|
|
14030
14392
|
class _NewLabels(PyTextualCommandArgumentsSubItem):
|