ansys-fluent-core 0.31.dev1__py3-none-any.whl → 0.32.dev0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of ansys-fluent-core might be problematic. Click here for more details.
- 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 +20 -20
- ansys/fluent/core/generated/datamodel_231/meshing.py +228 -228
- ansys/fluent/core/generated/datamodel_232/flicing.py +40 -40
- ansys/fluent/core/generated/datamodel_232/meshing.py +203 -203
- ansys/fluent/core/generated/datamodel_241/flicing.py +20 -20
- ansys/fluent/core/generated/datamodel_241/meshing.py +303 -303
- ansys/fluent/core/generated/datamodel_242/flicing.py +35 -35
- ansys/fluent/core/generated/datamodel_242/meshing.py +334 -334
- ansys/fluent/core/generated/datamodel_242/part_management.py +6 -6
- ansys/fluent/core/generated/datamodel_251/flicing.py +40 -40
- ansys/fluent/core/generated/datamodel_251/meshing.py +366 -366
- ansys/fluent/core/generated/datamodel_251/part_management.py +6 -6
- ansys/fluent/core/generated/datamodel_252/flicing.py +30 -30
- ansys/fluent/core/generated/datamodel_252/meshing.py +816 -454
- 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/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 +126 -2
- ansys/fluent/core/launcher/container_launcher.py +39 -8
- ansys/fluent/core/launcher/fluent_container.py +60 -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/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.32.dev0.dist-info}/METADATA +7 -5
- {ansys_fluent_core-0.31.dev1.dist-info → ansys_fluent_core-0.32.dev0.dist-info}/RECORD +57 -51
- {ansys_fluent_core-0.31.dev1.dist-info → ansys_fluent_core-0.32.dev0.dist-info}/LICENSE +0 -0
- {ansys_fluent_core-0.31.dev1.dist-info → ansys_fluent_core-0.32.dev0.dist-info}/WHEEL +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.
|
|
@@ -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):
|
|
@@ -1764,9 +1772,9 @@ class Root(PyMenu):
|
|
|
1764
1772
|
self.SplitPrism = self._SplitPrism(self, "SplitPrism", service, rules, path)
|
|
1765
1773
|
self.ModifyAtInvalidNormals = self._ModifyAtInvalidNormals(self, "ModifyAtInvalidNormals", 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
1775
|
self.NumberOfSplitLayers = self._NumberOfSplitLayers(self, "NumberOfSplitLayers", service, rules, path)
|
|
1769
1776
|
self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", 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)
|
|
@@ -1811,11 +1819,6 @@ class Root(PyMenu):
|
|
|
1811
1819
|
Argument InvalidNormalMethod.
|
|
1812
1820
|
"""
|
|
1813
1821
|
|
|
1814
|
-
class _ShowLocalPrismPreferences(PyParameterCommandArgumentsSubItem):
|
|
1815
|
-
"""
|
|
1816
|
-
Display advanced options that you may want to apply to this task.
|
|
1817
|
-
"""
|
|
1818
|
-
|
|
1819
1822
|
class _NumberOfSplitLayers(PyNumericalCommandArgumentsSubItem):
|
|
1820
1823
|
"""
|
|
1821
1824
|
Indicate the number of split prism layers you wish to apply to each layer that you specified for the boundary layer definition.
|
|
@@ -1826,6 +1829,11 @@ class Root(PyMenu):
|
|
|
1826
1829
|
Argument LastRatioNumLayers.
|
|
1827
1830
|
"""
|
|
1828
1831
|
|
|
1832
|
+
class _ShowLocalPrismPreferences(PyParameterCommandArgumentsSubItem):
|
|
1833
|
+
"""
|
|
1834
|
+
Display advanced options that you may want to apply to this task.
|
|
1835
|
+
"""
|
|
1836
|
+
|
|
1829
1837
|
class _AllowedTangencyAtInvalidNormals(PyNumericalCommandArgumentsSubItem):
|
|
1830
1838
|
"""
|
|
1831
1839
|
Controls the tangency of the invalid normal faces. An invalid normal location with all 90 degree angles has a tangency of 1. So, faces are still treated as an invalid normal even if the angle deviates slightly from 90 degrees (resulting in a tangency of 0.98).
|
|
@@ -2082,11 +2090,11 @@ class Root(PyMenu):
|
|
|
2082
2090
|
self.SphereRadiusFactorAtInvalidNormals = self._SphereRadiusFactorAtInvalidNormals(self, "SphereRadiusFactorAtInvalidNormals", service, rules, path)
|
|
2083
2091
|
self.SmoothRingsAtInvalidNormals = self._SmoothRingsAtInvalidNormals(self, "SmoothRingsAtInvalidNormals", service, rules, path)
|
|
2084
2092
|
self.Continuous = self._Continuous(self, "Continuous", service, rules, path)
|
|
2085
|
-
self.ModifyAtInvalidNormals = self._ModifyAtInvalidNormals(self, "ModifyAtInvalidNormals", service, rules, path)
|
|
2086
2093
|
self.SplitPrism = self._SplitPrism(self, "SplitPrism", service, rules, path)
|
|
2094
|
+
self.ModifyAtInvalidNormals = self._ModifyAtInvalidNormals(self, "ModifyAtInvalidNormals", service, rules, path)
|
|
2087
2095
|
self.InvalidNormalMethod = self._InvalidNormalMethod(self, "InvalidNormalMethod", service, rules, path)
|
|
2088
|
-
self.NumberOfSplitLayers = self._NumberOfSplitLayers(self, "NumberOfSplitLayers", service, rules, path)
|
|
2089
2096
|
self.ShowLocalPrismPreferences = self._ShowLocalPrismPreferences(self, "ShowLocalPrismPreferences", service, rules, path)
|
|
2097
|
+
self.NumberOfSplitLayers = self._NumberOfSplitLayers(self, "NumberOfSplitLayers", service, rules, path)
|
|
2090
2098
|
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)
|
|
@@ -2117,14 +2125,14 @@ class Root(PyMenu):
|
|
|
2117
2125
|
Specify how you would like to improve the generated boundary layer: as a continuous or stair-stepped boundary layer in the specified area(s).
|
|
2118
2126
|
"""
|
|
2119
2127
|
|
|
2120
|
-
class
|
|
2128
|
+
class _SplitPrism(PyTextualCommandArgumentsSubItem):
|
|
2121
2129
|
"""
|
|
2122
|
-
|
|
2130
|
+
Choose whether or not to add split prisms to each layer along the boundary. Not available when the Offset Method Type is set to last-ratio.
|
|
2123
2131
|
"""
|
|
2124
2132
|
|
|
2125
|
-
class
|
|
2133
|
+
class _ModifyAtInvalidNormals(PyTextualCommandArgumentsSubItem):
|
|
2126
2134
|
"""
|
|
2127
|
-
|
|
2135
|
+
Specify whether to automatically change the surface mesh where invalid normal faces are detected. To grow the boundary layer mesh in the proper direction (away from the boundary), normal vectors (valid) are required at the boundary face nodes of the surface mesh. More...
|
|
2128
2136
|
"""
|
|
2129
2137
|
|
|
2130
2138
|
class _InvalidNormalMethod(PyTextualCommandArgumentsSubItem):
|
|
@@ -2132,14 +2140,14 @@ class Root(PyMenu):
|
|
|
2132
2140
|
Argument InvalidNormalMethod.
|
|
2133
2141
|
"""
|
|
2134
2142
|
|
|
2135
|
-
class
|
|
2143
|
+
class _ShowLocalPrismPreferences(PyParameterCommandArgumentsSubItem):
|
|
2136
2144
|
"""
|
|
2137
|
-
|
|
2145
|
+
Display advanced options that you may want to apply to this task.
|
|
2138
2146
|
"""
|
|
2139
2147
|
|
|
2140
|
-
class
|
|
2148
|
+
class _NumberOfSplitLayers(PyNumericalCommandArgumentsSubItem):
|
|
2141
2149
|
"""
|
|
2142
|
-
|
|
2150
|
+
Indicate the number of split prism layers you wish to apply to each layer that you specified for the boundary layer definition.
|
|
2143
2151
|
"""
|
|
2144
2152
|
|
|
2145
2153
|
class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
|
|
@@ -2388,8 +2396,8 @@ class Root(PyMenu):
|
|
|
2388
2396
|
self.WrapMax = self._WrapMax(self, "WrapMax", service, rules, path)
|
|
2389
2397
|
self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
|
|
2390
2398
|
self.SizingType = self._SizingType(self, "SizingType", service, rules, path)
|
|
2391
|
-
self.InitialSizeControl = self._InitialSizeControl(self, "InitialSizeControl", service, rules, path)
|
|
2392
2399
|
self.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", service, rules, path)
|
|
2400
|
+
self.InitialSizeControl = self._InitialSizeControl(self, "InitialSizeControl", service, rules, path)
|
|
2393
2401
|
self.WrapCurvatureNormalAngle = self._WrapCurvatureNormalAngle(self, "WrapCurvatureNormalAngle", service, rules, path)
|
|
2394
2402
|
self.CellsPerGap = self._CellsPerGap(self, "CellsPerGap", service, rules, path)
|
|
2395
2403
|
self.TargetSizeControl = self._TargetSizeControl(self, "TargetSizeControl", service, rules, path)
|
|
@@ -2445,14 +2453,14 @@ class Root(PyMenu):
|
|
|
2445
2453
|
Choose the type of sizing control (curvature, proximity, soft, or boi).
|
|
2446
2454
|
"""
|
|
2447
2455
|
|
|
2448
|
-
class
|
|
2456
|
+
class _WrapGrowthRate(PyNumericalCommandArgumentsSubItem):
|
|
2449
2457
|
"""
|
|
2450
|
-
|
|
2458
|
+
Specify the increase in element edge length with each succeeding layer of elements.
|
|
2451
2459
|
"""
|
|
2452
2460
|
|
|
2453
|
-
class
|
|
2461
|
+
class _InitialSizeControl(PyParameterCommandArgumentsSubItem):
|
|
2454
2462
|
"""
|
|
2455
|
-
|
|
2463
|
+
Enable this field to display the initial size control in the graphics window.
|
|
2456
2464
|
"""
|
|
2457
2465
|
|
|
2458
2466
|
class _WrapCurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
@@ -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.
|
|
@@ -3235,23 +3249,23 @@ class Root(PyMenu):
|
|
|
3235
3249
|
|
|
3236
3250
|
def __init__(self, parent, attr, service, rules, path):
|
|
3237
3251
|
super().__init__(parent, attr, service, rules, path)
|
|
3238
|
-
self.ShowShellBLAdvancedOptions = self._ShowShellBLAdvancedOptions(self, "ShowShellBLAdvancedOptions", service, rules, path)
|
|
3239
3252
|
self.ExposeSide = self._ExposeSide(self, "ExposeSide", service, rules, path)
|
|
3253
|
+
self.ShowShellBLAdvancedOptions = self._ShowShellBLAdvancedOptions(self, "ShowShellBLAdvancedOptions", service, rules, path)
|
|
3240
3254
|
self.MaxAspectRatio = self._MaxAspectRatio(self, "MaxAspectRatio", service, rules, path)
|
|
3241
3255
|
self.MinAspectRatio = self._MinAspectRatio(self, "MinAspectRatio", service, rules, path)
|
|
3242
|
-
self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
|
|
3243
3256
|
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
3257
|
+
self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
|
|
3244
3258
|
self.GapFactor = self._GapFactor(self, "GapFactor", service, rules, path)
|
|
3245
3259
|
self.AdjacentAttachAngle = self._AdjacentAttachAngle(self, "AdjacentAttachAngle", service, rules, path)
|
|
3246
3260
|
|
|
3247
|
-
class
|
|
3261
|
+
class _ExposeSide(PyTextualCommandArgumentsSubItem):
|
|
3248
3262
|
"""
|
|
3249
|
-
Argument
|
|
3263
|
+
Argument ExposeSide.
|
|
3250
3264
|
"""
|
|
3251
3265
|
|
|
3252
|
-
class
|
|
3266
|
+
class _ShowShellBLAdvancedOptions(PyParameterCommandArgumentsSubItem):
|
|
3253
3267
|
"""
|
|
3254
|
-
Argument
|
|
3268
|
+
Argument ShowShellBLAdvancedOptions.
|
|
3255
3269
|
"""
|
|
3256
3270
|
|
|
3257
3271
|
class _MaxAspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -3264,14 +3278,14 @@ class Root(PyMenu):
|
|
|
3264
3278
|
Argument MinAspectRatio.
|
|
3265
3279
|
"""
|
|
3266
3280
|
|
|
3267
|
-
class
|
|
3281
|
+
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
3268
3282
|
"""
|
|
3269
|
-
Argument
|
|
3283
|
+
Argument LastRatioPercentage.
|
|
3270
3284
|
"""
|
|
3271
3285
|
|
|
3272
|
-
class
|
|
3286
|
+
class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
|
|
3273
3287
|
"""
|
|
3274
|
-
Argument
|
|
3288
|
+
Argument LastRatioNumLayers.
|
|
3275
3289
|
"""
|
|
3276
3290
|
|
|
3277
3291
|
class _GapFactor(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4155,9 +4169,9 @@ class Root(PyMenu):
|
|
|
4155
4169
|
self.BoundaryLayers = self._BoundaryLayers(self, "BoundaryLayers", service, rules, path)
|
|
4156
4170
|
self.EdgeProximityComputation = self._EdgeProximityComputation(self, "EdgeProximityComputation", service, rules, path)
|
|
4157
4171
|
self.WrapTargetBothOptions = self._WrapTargetBothOptions(self, "WrapTargetBothOptions", service, rules, path)
|
|
4158
|
-
self.SolidFluidRatio = self._SolidFluidRatio(self, "SolidFluidRatio", service, rules, path)
|
|
4159
|
-
self.TargetSizeFieldFileName = self._TargetSizeFieldFileName(self, "TargetSizeFieldFileName", service, rules, path)
|
|
4160
4172
|
self.ExistingSizeField = self._ExistingSizeField(self, "ExistingSizeField", service, rules, path)
|
|
4173
|
+
self.TargetSizeFieldFileName = self._TargetSizeFieldFileName(self, "TargetSizeFieldFileName", service, rules, path)
|
|
4174
|
+
self.SolidFluidRatio = self._SolidFluidRatio(self, "SolidFluidRatio", service, rules, path)
|
|
4161
4175
|
self.WrapSizeFieldFileName = self._WrapSizeFieldFileName(self, "WrapSizeFieldFileName", service, rules, path)
|
|
4162
4176
|
self.WrapTargetRatio = self._WrapTargetRatio(self, "WrapTargetRatio", service, rules, path)
|
|
4163
4177
|
self.WrapTargetRaio = self._WrapTargetRaio(self, "WrapTargetRaio", service, rules, path)
|
|
@@ -4197,9 +4211,9 @@ class Root(PyMenu):
|
|
|
4197
4211
|
Determine how the size controls are calculated in the Add Local Sizing task: using Both Wrap and Target values, by Target Only (the default), or by Wrap Only. For complex models, computational expense can be lowered by choosing one of the other options. If either Wrap Only or Target Only is selected, then the other values are determined using the Wrap/Target Size Ratio value.
|
|
4198
4212
|
"""
|
|
4199
4213
|
|
|
4200
|
-
class
|
|
4214
|
+
class _ExistingSizeField(PyTextualCommandArgumentsSubItem):
|
|
4201
4215
|
"""
|
|
4202
|
-
|
|
4216
|
+
Determine which existing size field files will be used: Both Wrap and Target (the default), Target Only, or Wrap Only. For complex models, computational expense can be lowered by choosing one of the other options. If either Wrap Only or Target Only is selected, then the other values are determined using the Wrap/Target Size Ratio value.
|
|
4203
4217
|
"""
|
|
4204
4218
|
|
|
4205
4219
|
class _TargetSizeFieldFileName(PyTextualCommandArgumentsSubItem):
|
|
@@ -4207,9 +4221,9 @@ class Root(PyMenu):
|
|
|
4207
4221
|
Argument TargetSizeFieldFileName.
|
|
4208
4222
|
"""
|
|
4209
4223
|
|
|
4210
|
-
class
|
|
4224
|
+
class _SolidFluidRatio(PyNumericalCommandArgumentsSubItem):
|
|
4211
4225
|
"""
|
|
4212
|
-
|
|
4226
|
+
Argument SolidFluidRatio.
|
|
4213
4227
|
"""
|
|
4214
4228
|
|
|
4215
4229
|
class _WrapSizeFieldFileName(PyTextualCommandArgumentsSubItem):
|
|
@@ -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
|
|
|
@@ -4494,7 +4508,7 @@ class Root(PyMenu):
|
|
|
4494
4508
|
def __init__(self, parent, attr, service, rules, path):
|
|
4495
4509
|
super().__init__(parent, attr, service, rules, path)
|
|
4496
4510
|
self.SizeRelativeLength = self._SizeRelativeLength(self, "SizeRelativeLength", service, rules, path)
|
|
4497
|
-
self.
|
|
4511
|
+
self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
|
|
4498
4512
|
self.XminRatio = self._XminRatio(self, "XminRatio", service, rules, path)
|
|
4499
4513
|
self.YminRatio = self._YminRatio(self, "YminRatio", service, rules, path)
|
|
4500
4514
|
self.Zmin = self._Zmin(self, "Zmin", service, rules, path)
|
|
@@ -4505,16 +4519,16 @@ class Root(PyMenu):
|
|
|
4505
4519
|
self.Xmin = self._Xmin(self, "Xmin", service, rules, path)
|
|
4506
4520
|
self.YmaxRatio = self._YmaxRatio(self, "YmaxRatio", service, rules, path)
|
|
4507
4521
|
self.ZmaxRatio = self._ZmaxRatio(self, "ZmaxRatio", service, rules, path)
|
|
4508
|
-
self.
|
|
4522
|
+
self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
|
|
4509
4523
|
|
|
4510
4524
|
class _SizeRelativeLength(PyTextualCommandArgumentsSubItem):
|
|
4511
4525
|
"""
|
|
4512
4526
|
Argument SizeRelativeLength.
|
|
4513
4527
|
"""
|
|
4514
4528
|
|
|
4515
|
-
class
|
|
4529
|
+
class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
|
|
4516
4530
|
"""
|
|
4517
|
-
Argument
|
|
4531
|
+
Argument XmaxRatio.
|
|
4518
4532
|
"""
|
|
4519
4533
|
|
|
4520
4534
|
class _XminRatio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4567,9 +4581,9 @@ class Root(PyMenu):
|
|
|
4567
4581
|
Argument ZmaxRatio.
|
|
4568
4582
|
"""
|
|
4569
4583
|
|
|
4570
|
-
class
|
|
4584
|
+
class _Xmax(PyNumericalCommandArgumentsSubItem):
|
|
4571
4585
|
"""
|
|
4572
|
-
Argument
|
|
4586
|
+
Argument Xmax.
|
|
4573
4587
|
"""
|
|
4574
4588
|
|
|
4575
4589
|
class _OffsetObject(PySingletonCommandArgumentsSubItem):
|
|
@@ -4584,18 +4598,18 @@ 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)
|
|
4601
|
+
self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
|
|
4602
|
+
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
|
|
4587
4603
|
self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
|
|
4588
|
-
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
4589
4604
|
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
4590
|
-
self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", 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)
|
|
4594
|
-
self.
|
|
4595
|
-
self.X = self._X(self, "X", service, rules, path)
|
|
4608
|
+
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
4596
4609
|
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
4597
|
-
self.
|
|
4610
|
+
self.X = self._X(self, "X", service, rules, path)
|
|
4598
4611
|
self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
|
|
4612
|
+
self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
|
|
4599
4613
|
self.FirstHeight = self._FirstHeight(self, "FirstHeight", service, rules, path)
|
|
4600
4614
|
self.BoundaryLayerHeight = self._BoundaryLayerHeight(self, "BoundaryLayerHeight", service, rules, path)
|
|
4601
4615
|
self.CrossWakeGrowthFactor = self._CrossWakeGrowthFactor(self, "CrossWakeGrowthFactor", 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 _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
|
|
4634
4648
|
"""
|
|
4635
|
-
Argument
|
|
4649
|
+
Argument WakeGrowthFactor.
|
|
4636
4650
|
"""
|
|
4637
4651
|
|
|
4638
|
-
class
|
|
4652
|
+
class _AspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
4639
4653
|
"""
|
|
4640
|
-
Argument
|
|
4654
|
+
Argument AspectRatio.
|
|
4641
4655
|
"""
|
|
4642
4656
|
|
|
4643
|
-
class
|
|
4657
|
+
class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
|
|
4644
4658
|
"""
|
|
4645
|
-
Argument
|
|
4659
|
+
Argument NumberOfLayers.
|
|
4646
4660
|
"""
|
|
4647
4661
|
|
|
4648
4662
|
class _FlowDirection(PyTextualCommandArgumentsSubItem):
|
|
@@ -4660,14 +4674,9 @@ class Root(PyMenu):
|
|
|
4660
4674
|
Argument EdgeSelectionList.
|
|
4661
4675
|
"""
|
|
4662
4676
|
|
|
4663
|
-
class
|
|
4664
|
-
"""
|
|
4665
|
-
Argument WakeGrowthFactor.
|
|
4666
|
-
"""
|
|
4667
|
-
|
|
4668
|
-
class _X(PyNumericalCommandArgumentsSubItem):
|
|
4677
|
+
class _Rate(PyNumericalCommandArgumentsSubItem):
|
|
4669
4678
|
"""
|
|
4670
|
-
Argument
|
|
4679
|
+
Argument Rate.
|
|
4671
4680
|
"""
|
|
4672
4681
|
|
|
4673
4682
|
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4675,9 +4684,9 @@ class Root(PyMenu):
|
|
|
4675
4684
|
Argument LastRatioPercentage.
|
|
4676
4685
|
"""
|
|
4677
4686
|
|
|
4678
|
-
class
|
|
4687
|
+
class _X(PyNumericalCommandArgumentsSubItem):
|
|
4679
4688
|
"""
|
|
4680
|
-
Argument
|
|
4689
|
+
Argument X.
|
|
4681
4690
|
"""
|
|
4682
4691
|
|
|
4683
4692
|
class _OffsetMethodType(PyTextualCommandArgumentsSubItem):
|
|
@@ -4685,6 +4694,11 @@ class Root(PyMenu):
|
|
|
4685
4694
|
Argument OffsetMethodType.
|
|
4686
4695
|
"""
|
|
4687
4696
|
|
|
4697
|
+
class _FlipDirection(PyParameterCommandArgumentsSubItem):
|
|
4698
|
+
"""
|
|
4699
|
+
Argument FlipDirection.
|
|
4700
|
+
"""
|
|
4701
|
+
|
|
4688
4702
|
class _FirstHeight(PyNumericalCommandArgumentsSubItem):
|
|
4689
4703
|
"""
|
|
4690
4704
|
Argument FirstHeight.
|
|
@@ -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.
|
|
@@ -4713,14 +4732,14 @@ class Root(PyMenu):
|
|
|
4713
4732
|
self.X1 = self._X1(self, "X1", service, rules, path)
|
|
4714
4733
|
self.Y1 = self._Y1(self, "Y1", service, rules, path)
|
|
4715
4734
|
self.Z_Offset = self._Z_Offset(self, "Z-Offset", service, rules, path)
|
|
4716
|
-
self.Z2 = self._Z2(self, "Z2", service, rules, path)
|
|
4717
|
-
self.Node1 = self._Node1(self, "Node1", service, rules, path)
|
|
4718
4735
|
self.Z1 = self._Z1(self, "Z1", service, rules, path)
|
|
4736
|
+
self.Node1 = self._Node1(self, "Node1", service, rules, path)
|
|
4737
|
+
self.Z2 = self._Z2(self, "Z2", service, rules, path)
|
|
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)
|
|
4742
|
+
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
4724
4743
|
self.X2 = self._X2(self, "X2", 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)
|
|
@@ -4755,9 +4774,9 @@ class Root(PyMenu):
|
|
|
4755
4774
|
Argument Z-Offset.
|
|
4756
4775
|
"""
|
|
4757
4776
|
|
|
4758
|
-
class
|
|
4777
|
+
class _Z1(PyNumericalCommandArgumentsSubItem):
|
|
4759
4778
|
"""
|
|
4760
|
-
Argument
|
|
4779
|
+
Argument Z1.
|
|
4761
4780
|
"""
|
|
4762
4781
|
|
|
4763
4782
|
class _Node1(PyTextualCommandArgumentsSubItem):
|
|
@@ -4765,9 +4784,9 @@ class Root(PyMenu):
|
|
|
4765
4784
|
Argument Node1.
|
|
4766
4785
|
"""
|
|
4767
4786
|
|
|
4768
|
-
class
|
|
4787
|
+
class _Z2(PyNumericalCommandArgumentsSubItem):
|
|
4769
4788
|
"""
|
|
4770
|
-
Argument
|
|
4789
|
+
Argument Z2.
|
|
4771
4790
|
"""
|
|
4772
4791
|
|
|
4773
4792
|
class _Radius2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4785,14 +4804,14 @@ class Root(PyMenu):
|
|
|
4785
4804
|
Argument Node3.
|
|
4786
4805
|
"""
|
|
4787
4806
|
|
|
4788
|
-
class
|
|
4807
|
+
class _Node2(PyTextualCommandArgumentsSubItem):
|
|
4789
4808
|
"""
|
|
4790
|
-
Argument
|
|
4809
|
+
Argument Node2.
|
|
4791
4810
|
"""
|
|
4792
4811
|
|
|
4793
|
-
class
|
|
4812
|
+
class _Y_Offset(PyNumericalCommandArgumentsSubItem):
|
|
4794
4813
|
"""
|
|
4795
|
-
Argument
|
|
4814
|
+
Argument Y-Offset.
|
|
4796
4815
|
"""
|
|
4797
4816
|
|
|
4798
4817
|
class _X2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -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)
|
|
4886
|
+
self.CylinderRadius2 = self._CylinderRadius2(self, "CylinderRadius2", service, rules, path)
|
|
4866
4887
|
self.BoxCenterZ = self._BoxCenterZ(self, "BoxCenterZ", 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
|
+
|
|
4945
|
+
class _CylinderRadius2(PyNumericalCommandArgumentsSubItem):
|
|
4946
|
+
"""
|
|
4947
|
+
Argument CylinderRadius2.
|
|
4948
|
+
"""
|
|
4949
|
+
|
|
4893
4950
|
class _BoxCenterZ(PyNumericalCommandArgumentsSubItem):
|
|
4894
4951
|
"""
|
|
4895
4952
|
Argument BoxCenterZ.
|
|
4896
4953
|
"""
|
|
4897
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):
|
|
@@ -5123,18 +5185,18 @@ class Root(PyMenu):
|
|
|
5123
5185
|
self.ShowCoordinates = self._ShowCoordinates(self, "ShowCoordinates", service, rules, path)
|
|
5124
5186
|
self.Y = self._Y(self, "Y", service, rules, path)
|
|
5125
5187
|
self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
|
|
5126
|
-
self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
|
|
5127
|
-
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
5128
5188
|
self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
|
|
5189
|
+
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
5190
|
+
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
|
|
5129
5191
|
self.Rate = self._Rate(self, "Rate", 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.
|
|
5195
|
+
self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
|
|
5134
5196
|
self.X = self._X(self, "X", service, rules, path)
|
|
5135
5197
|
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
5136
|
-
self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
|
|
5137
5198
|
self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
|
|
5199
|
+
self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
|
|
5138
5200
|
self.FirstHeight = self._FirstHeight(self, "FirstHeight", service, rules, path)
|
|
5139
5201
|
self.BoundaryLayerHeight = self._BoundaryLayerHeight(self, "BoundaryLayerHeight", service, rules, path)
|
|
5140
5202
|
self.CrossWakeGrowthFactor = self._CrossWakeGrowthFactor(self, "CrossWakeGrowthFactor", service, rules, path)
|
|
@@ -5164,9 +5226,9 @@ class Root(PyMenu):
|
|
|
5164
5226
|
Argument DefeaturingSize.
|
|
5165
5227
|
"""
|
|
5166
5228
|
|
|
5167
|
-
class
|
|
5229
|
+
class _AspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
5168
5230
|
"""
|
|
5169
|
-
Argument
|
|
5231
|
+
Argument AspectRatio.
|
|
5170
5232
|
"""
|
|
5171
5233
|
|
|
5172
5234
|
class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5174,9 +5236,9 @@ class Root(PyMenu):
|
|
|
5174
5236
|
Argument NumberOfLayers.
|
|
5175
5237
|
"""
|
|
5176
5238
|
|
|
5177
|
-
class
|
|
5239
|
+
class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
|
|
5178
5240
|
"""
|
|
5179
|
-
Argument
|
|
5241
|
+
Argument WakeGrowthFactor.
|
|
5180
5242
|
"""
|
|
5181
5243
|
|
|
5182
5244
|
class _Rate(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5199,9 +5261,9 @@ 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 _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
|
|
5203
5265
|
"""
|
|
5204
|
-
Argument
|
|
5266
|
+
Argument BoundaryLayerLevels.
|
|
5205
5267
|
"""
|
|
5206
5268
|
|
|
5207
5269
|
class _X(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5214,14 +5276,14 @@ class Root(PyMenu):
|
|
|
5214
5276
|
Argument LastRatioPercentage.
|
|
5215
5277
|
"""
|
|
5216
5278
|
|
|
5217
|
-
class
|
|
5279
|
+
class _FlipDirection(PyParameterCommandArgumentsSubItem):
|
|
5218
5280
|
"""
|
|
5219
|
-
Argument
|
|
5281
|
+
Argument FlipDirection.
|
|
5220
5282
|
"""
|
|
5221
5283
|
|
|
5222
|
-
class
|
|
5284
|
+
class _OffsetMethodType(PyTextualCommandArgumentsSubItem):
|
|
5223
5285
|
"""
|
|
5224
|
-
Argument
|
|
5286
|
+
Argument OffsetMethodType.
|
|
5225
5287
|
"""
|
|
5226
5288
|
|
|
5227
5289
|
class _FirstHeight(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5239,6 +5301,11 @@ class Root(PyMenu):
|
|
|
5239
5301
|
Argument CrossWakeGrowthFactor.
|
|
5240
5302
|
"""
|
|
5241
5303
|
|
|
5304
|
+
class _CylinderMethod(PyTextualCommandArgumentsSubItem):
|
|
5305
|
+
"""
|
|
5306
|
+
Argument CylinderMethod.
|
|
5307
|
+
"""
|
|
5308
|
+
|
|
5242
5309
|
class _CylinderObject(PySingletonCommandArgumentsSubItem):
|
|
5243
5310
|
"""
|
|
5244
5311
|
Argument CylinderObject.
|
|
@@ -5258,9 +5325,9 @@ class Root(PyMenu):
|
|
|
5258
5325
|
self.Radius2 = self._Radius2(self, "Radius2", service, rules, path)
|
|
5259
5326
|
self.Y2 = self._Y2(self, "Y2", service, rules, path)
|
|
5260
5327
|
self.Node3 = self._Node3(self, "Node3", service, rules, path)
|
|
5261
|
-
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
5262
5328
|
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.X2 = self._X2(self, "X2", 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
|
|
|
@@ -5324,11 +5391,6 @@ class Root(PyMenu):
|
|
|
5324
5391
|
Argument Node3.
|
|
5325
5392
|
"""
|
|
5326
5393
|
|
|
5327
|
-
class _X2(PyNumericalCommandArgumentsSubItem):
|
|
5328
|
-
"""
|
|
5329
|
-
Argument X2.
|
|
5330
|
-
"""
|
|
5331
|
-
|
|
5332
5394
|
class _Y_Offset(PyNumericalCommandArgumentsSubItem):
|
|
5333
5395
|
"""
|
|
5334
5396
|
Argument Y-Offset.
|
|
@@ -5339,6 +5401,11 @@ class Root(PyMenu):
|
|
|
5339
5401
|
Argument Node2.
|
|
5340
5402
|
"""
|
|
5341
5403
|
|
|
5404
|
+
class _X2(PyNumericalCommandArgumentsSubItem):
|
|
5405
|
+
"""
|
|
5406
|
+
Argument X2.
|
|
5407
|
+
"""
|
|
5408
|
+
|
|
5342
5409
|
class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
|
|
5343
5410
|
"""
|
|
5344
5411
|
Argument HeightFrontInc.
|
|
@@ -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,49 @@ 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.
|
|
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)
|
|
5463
|
+
self.CylinderX2 = self._CylinderX2(self, "CylinderX2", service, rules, path)
|
|
5404
5464
|
self.BoxYLength = self._BoxYLength(self, "BoxYLength", service, rules, path)
|
|
5465
|
+
self.CylinderX1 = self._CylinderX1(self, "CylinderX1", service, rules, path)
|
|
5405
5466
|
self.BoxXLength = self._BoxXLength(self, "BoxXLength", service, rules, path)
|
|
5467
|
+
self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
|
|
5468
|
+
self.BoxZLength = self._BoxZLength(self, "BoxZLength", 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 _CylinderX2(PyNumericalCommandArgumentsSubItem):
|
|
5413
5483
|
"""
|
|
5414
|
-
|
|
5484
|
+
Argument CylinderX2.
|
|
5485
|
+
"""
|
|
5486
|
+
|
|
5487
|
+
class _BoxYLength(PyNumericalCommandArgumentsSubItem):
|
|
5488
|
+
"""
|
|
5489
|
+
Argument BoxYLength.
|
|
5490
|
+
"""
|
|
5491
|
+
|
|
5492
|
+
class _CylinderX1(PyNumericalCommandArgumentsSubItem):
|
|
5493
|
+
"""
|
|
5494
|
+
Argument CylinderX1.
|
|
5495
|
+
"""
|
|
5496
|
+
|
|
5497
|
+
class _BoxXLength(PyNumericalCommandArgumentsSubItem):
|
|
5498
|
+
"""
|
|
5499
|
+
Argument BoxXLength.
|
|
5500
|
+
"""
|
|
5501
|
+
|
|
5502
|
+
class _CylinderY1(PyNumericalCommandArgumentsSubItem):
|
|
5503
|
+
"""
|
|
5504
|
+
Argument CylinderY1.
|
|
5415
5505
|
"""
|
|
5416
5506
|
|
|
5417
5507
|
class _BoxZLength(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5424,14 +5514,34 @@ class Root(PyMenu):
|
|
|
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
|
|
|
@@ -5573,7 +5683,7 @@ class Root(PyMenu):
|
|
|
5573
5683
|
def __init__(self, parent, attr, service, rules, path):
|
|
5574
5684
|
super().__init__(parent, attr, service, rules, path)
|
|
5575
5685
|
self.SizeRelativeLength = self._SizeRelativeLength(self, "SizeRelativeLength", service, rules, path)
|
|
5576
|
-
self.
|
|
5686
|
+
self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
|
|
5577
5687
|
self.XminRatio = self._XminRatio(self, "XminRatio", service, rules, path)
|
|
5578
5688
|
self.YminRatio = self._YminRatio(self, "YminRatio", service, rules, path)
|
|
5579
5689
|
self.Zmin = self._Zmin(self, "Zmin", service, rules, path)
|
|
@@ -5584,16 +5694,16 @@ class Root(PyMenu):
|
|
|
5584
5694
|
self.Xmin = self._Xmin(self, "Xmin", service, rules, path)
|
|
5585
5695
|
self.YmaxRatio = self._YmaxRatio(self, "YmaxRatio", service, rules, path)
|
|
5586
5696
|
self.ZmaxRatio = self._ZmaxRatio(self, "ZmaxRatio", service, rules, path)
|
|
5587
|
-
self.
|
|
5697
|
+
self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
|
|
5588
5698
|
|
|
5589
5699
|
class _SizeRelativeLength(PyTextualCommandArgumentsSubItem):
|
|
5590
5700
|
"""
|
|
5591
5701
|
Determine if you would like to specify the bounding box for the component mesh as a ratio of the geometry length, or by specifying a specific location for the minimum and maximum coordinates.
|
|
5592
5702
|
"""
|
|
5593
5703
|
|
|
5594
|
-
class
|
|
5704
|
+
class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
|
|
5595
5705
|
"""
|
|
5596
|
-
Extends the maximum size of the bounding box in the X direction by the specified value.
|
|
5706
|
+
Extends the maximum size of the bounding box in the X direction by the specified value. The value is the ratio relative to the geometry size in the X direction.
|
|
5597
5707
|
"""
|
|
5598
5708
|
|
|
5599
5709
|
class _XminRatio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5646,9 +5756,9 @@ class Root(PyMenu):
|
|
|
5646
5756
|
Extends the maximum size of the bounding box in the Z direction by the specified value. The value is the ratio relative to the geometry size in the Z direction.
|
|
5647
5757
|
"""
|
|
5648
5758
|
|
|
5649
|
-
class
|
|
5759
|
+
class _Xmax(PyNumericalCommandArgumentsSubItem):
|
|
5650
5760
|
"""
|
|
5651
|
-
Extends the maximum size of the bounding box in the X direction by the specified value.
|
|
5761
|
+
Extends the maximum size of the bounding box in the X direction by the specified value.
|
|
5652
5762
|
"""
|
|
5653
5763
|
|
|
5654
5764
|
class _OffsetObject(PySingletonCommandArgumentsSubItem):
|
|
@@ -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.
|
|
5667
|
-
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
5668
|
-
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
|
|
5776
|
+
self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
|
|
5669
5777
|
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
5778
|
+
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
|
|
5779
|
+
self.Rate = self._Rate(self, "Rate", 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,14 +5814,14 @@ 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
|
-
class
|
|
5822
|
+
class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
|
|
5713
5823
|
"""
|
|
5714
|
-
|
|
5824
|
+
Select the number of boundary layers to be generated.
|
|
5715
5825
|
"""
|
|
5716
5826
|
|
|
5717
5827
|
class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5719,9 +5829,9 @@ class Root(PyMenu):
|
|
|
5719
5829
|
Argument WakeGrowthFactor.
|
|
5720
5830
|
"""
|
|
5721
5831
|
|
|
5722
|
-
class
|
|
5832
|
+
class _Rate(PyNumericalCommandArgumentsSubItem):
|
|
5723
5833
|
"""
|
|
5724
|
-
|
|
5834
|
+
Specify the rate of growth of the boundary layer.
|
|
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.
|
|
@@ -5798,9 +5913,9 @@ class Root(PyMenu):
|
|
|
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)
|
|
5803
5917
|
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
5918
|
+
self.Node2 = self._Node2(self, "Node2", 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)
|
|
5806
5921
|
|
|
@@ -5864,11 +5979,6 @@ class Root(PyMenu):
|
|
|
5864
5979
|
Argument Node3.
|
|
5865
5980
|
"""
|
|
5866
5981
|
|
|
5867
|
-
class _Node2(PyTextualCommandArgumentsSubItem):
|
|
5868
|
-
"""
|
|
5869
|
-
Argument Node2.
|
|
5870
|
-
"""
|
|
5871
|
-
|
|
5872
5982
|
class _X2(PyNumericalCommandArgumentsSubItem):
|
|
5873
5983
|
"""
|
|
5874
5984
|
Argument X2.
|
|
@@ -5879,6 +5989,11 @@ class Root(PyMenu):
|
|
|
5879
5989
|
Argument Y-Offset.
|
|
5880
5990
|
"""
|
|
5881
5991
|
|
|
5992
|
+
class _Node2(PyTextualCommandArgumentsSubItem):
|
|
5993
|
+
"""
|
|
5994
|
+
Argument Node2.
|
|
5995
|
+
"""
|
|
5996
|
+
|
|
5882
5997
|
class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
|
|
5883
5998
|
"""
|
|
5884
5999
|
Argument HeightFrontInc.
|
|
@@ -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,24 @@ 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)
|
|
5941
6051
|
self.BoxYLength = self._BoxYLength(self, "BoxYLength", service, rules, path)
|
|
6052
|
+
self.CylinderX2 = self._CylinderX2(self, "CylinderX2", service, rules, path)
|
|
6053
|
+
self.CylinderX1 = self._CylinderX1(self, "CylinderX1", service, rules, path)
|
|
5942
6054
|
self.BoxXLength = self._BoxXLength(self, "BoxXLength", service, rules, path)
|
|
6055
|
+
self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
|
|
6056
|
+
self.BoxZLength = self._BoxZLength(self, "BoxZLength", service, rules, path)
|
|
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)
|
|
6061
|
+
self.CylinderRadius2 = self._CylinderRadius2(self, "CylinderRadius2", service, rules, path)
|
|
5944
6062
|
self.BoxCenterZ = self._BoxCenterZ(self, "BoxCenterZ", service, rules, path)
|
|
5945
|
-
self.
|
|
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.
|
|
5950
6068
|
"""
|
|
5951
6069
|
|
|
5952
6070
|
class _BoxYLength(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5954,24 +6072,64 @@ class Root(PyMenu):
|
|
|
5954
6072
|
Argument BoxYLength.
|
|
5955
6073
|
"""
|
|
5956
6074
|
|
|
6075
|
+
class _CylinderX2(PyNumericalCommandArgumentsSubItem):
|
|
6076
|
+
"""
|
|
6077
|
+
Argument CylinderX2.
|
|
6078
|
+
"""
|
|
6079
|
+
|
|
6080
|
+
class _CylinderX1(PyNumericalCommandArgumentsSubItem):
|
|
6081
|
+
"""
|
|
6082
|
+
Argument CylinderX1.
|
|
6083
|
+
"""
|
|
6084
|
+
|
|
5957
6085
|
class _BoxXLength(PyNumericalCommandArgumentsSubItem):
|
|
5958
6086
|
"""
|
|
5959
6087
|
Argument BoxXLength.
|
|
5960
6088
|
"""
|
|
5961
6089
|
|
|
6090
|
+
class _CylinderY1(PyNumericalCommandArgumentsSubItem):
|
|
6091
|
+
"""
|
|
6092
|
+
Argument CylinderY1.
|
|
6093
|
+
"""
|
|
6094
|
+
|
|
6095
|
+
class _BoxZLength(PyNumericalCommandArgumentsSubItem):
|
|
6096
|
+
"""
|
|
6097
|
+
Argument BoxZLength.
|
|
6098
|
+
"""
|
|
6099
|
+
|
|
5962
6100
|
class _BoxCenterY(PyNumericalCommandArgumentsSubItem):
|
|
5963
6101
|
"""
|
|
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
|
+
|
|
6120
|
+
class _CylinderRadius2(PyNumericalCommandArgumentsSubItem):
|
|
6121
|
+
"""
|
|
6122
|
+
Argument CylinderRadius2.
|
|
6123
|
+
"""
|
|
6124
|
+
|
|
5967
6125
|
class _BoxCenterZ(PyNumericalCommandArgumentsSubItem):
|
|
5968
6126
|
"""
|
|
5969
6127
|
Argument BoxCenterZ.
|
|
5970
6128
|
"""
|
|
5971
6129
|
|
|
5972
|
-
class
|
|
6130
|
+
class _CylinderY2(PyNumericalCommandArgumentsSubItem):
|
|
5973
6131
|
"""
|
|
5974
|
-
Argument
|
|
6132
|
+
Argument CylinderY2.
|
|
5975
6133
|
"""
|
|
5976
6134
|
|
|
5977
6135
|
def create_instance(self) -> _CreateComponentMeshCommandArguments:
|
|
@@ -6212,7 +6370,7 @@ class Root(PyMenu):
|
|
|
6212
6370
|
def __init__(self, parent, attr, service, rules, path):
|
|
6213
6371
|
super().__init__(parent, attr, service, rules, path)
|
|
6214
6372
|
self.SizeRelativeLength = self._SizeRelativeLength(self, "SizeRelativeLength", service, rules, path)
|
|
6215
|
-
self.
|
|
6373
|
+
self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
|
|
6216
6374
|
self.XminRatio = self._XminRatio(self, "XminRatio", service, rules, path)
|
|
6217
6375
|
self.YminRatio = self._YminRatio(self, "YminRatio", service, rules, path)
|
|
6218
6376
|
self.Zmin = self._Zmin(self, "Zmin", service, rules, path)
|
|
@@ -6223,16 +6381,16 @@ class Root(PyMenu):
|
|
|
6223
6381
|
self.Xmin = self._Xmin(self, "Xmin", service, rules, path)
|
|
6224
6382
|
self.YmaxRatio = self._YmaxRatio(self, "YmaxRatio", service, rules, path)
|
|
6225
6383
|
self.ZmaxRatio = self._ZmaxRatio(self, "ZmaxRatio", service, rules, path)
|
|
6226
|
-
self.
|
|
6384
|
+
self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
|
|
6227
6385
|
|
|
6228
6386
|
class _SizeRelativeLength(PyTextualCommandArgumentsSubItem):
|
|
6229
6387
|
"""
|
|
6230
6388
|
Determine if you would like to specify the bounding box as a ratio of the geometry length, or by specifying a specific location for the minimum and maximum coordinates.
|
|
6231
6389
|
"""
|
|
6232
6390
|
|
|
6233
|
-
class
|
|
6391
|
+
class _Xmax(PyNumericalCommandArgumentsSubItem):
|
|
6234
6392
|
"""
|
|
6235
|
-
Extends the maximum size of the bounding box in the X direction by the specified value.
|
|
6393
|
+
Extends the maximum size of the bounding box in the X direction by the specified value.
|
|
6236
6394
|
"""
|
|
6237
6395
|
|
|
6238
6396
|
class _XminRatio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -6285,9 +6443,9 @@ class Root(PyMenu):
|
|
|
6285
6443
|
Extends the maximum size of the bounding box in the Z direction by the specified value. The value is the ratio relative to the geometry size in the Z direction.
|
|
6286
6444
|
"""
|
|
6287
6445
|
|
|
6288
|
-
class
|
|
6446
|
+
class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
|
|
6289
6447
|
"""
|
|
6290
|
-
Extends the maximum size of the bounding box in the X direction by the specified value.
|
|
6448
|
+
Extends the maximum size of the bounding box in the X direction by the specified value. The value is the ratio relative to the geometry size in the X direction.
|
|
6291
6449
|
"""
|
|
6292
6450
|
|
|
6293
6451
|
def create_instance(self) -> _CreateExternalFlowBoundariesCommandArguments:
|
|
@@ -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):
|
|
@@ -6705,18 +6981,18 @@ class Root(PyMenu):
|
|
|
6705
6981
|
self.ShowCoordinates = self._ShowCoordinates(self, "ShowCoordinates", service, rules, path)
|
|
6706
6982
|
self.Y = self._Y(self, "Y", service, rules, path)
|
|
6707
6983
|
self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
|
|
6708
|
-
self.
|
|
6709
|
-
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
|
|
6984
|
+
self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
|
|
6710
6985
|
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
6986
|
+
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
|
|
6711
6987
|
self.Rate = self._Rate(self, "Rate", 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
|
-
self.
|
|
6716
|
-
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
6991
|
+
self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
|
|
6717
6992
|
self.X = self._X(self, "X", service, rules, path)
|
|
6718
|
-
self.
|
|
6993
|
+
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", 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,19 +7022,19 @@ 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
|
|
7025
|
+
class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
|
|
6750
7026
|
"""
|
|
6751
|
-
|
|
7027
|
+
Specify the number of boundary layers that are to be captured in the refinement region.
|
|
6752
7028
|
"""
|
|
6753
7029
|
|
|
6754
|
-
class
|
|
7030
|
+
class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
|
|
6755
7031
|
"""
|
|
6756
|
-
|
|
7032
|
+
Argument NumberOfLayers.
|
|
6757
7033
|
"""
|
|
6758
7034
|
|
|
6759
|
-
class
|
|
7035
|
+
class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
|
|
6760
7036
|
"""
|
|
6761
|
-
|
|
7037
|
+
Specify the factor by which the refinement region expands in the wake of the flow direction.
|
|
6762
7038
|
"""
|
|
6763
7039
|
|
|
6764
7040
|
class _Rate(PyNumericalCommandArgumentsSubItem):
|
|
@@ -6781,14 +7057,9 @@ class Root(PyMenu):
|
|
|
6781
7057
|
Argument EdgeSelectionList.
|
|
6782
7058
|
"""
|
|
6783
7059
|
|
|
6784
|
-
class
|
|
6785
|
-
"""
|
|
6786
|
-
Specify the number of boundary layers that are to be captured in the refinement region.
|
|
6787
|
-
"""
|
|
6788
|
-
|
|
6789
|
-
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
7060
|
+
class _AspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
6790
7061
|
"""
|
|
6791
|
-
Argument
|
|
7062
|
+
Argument AspectRatio.
|
|
6792
7063
|
"""
|
|
6793
7064
|
|
|
6794
7065
|
class _X(PyNumericalCommandArgumentsSubItem):
|
|
@@ -6796,9 +7067,9 @@ class Root(PyMenu):
|
|
|
6796
7067
|
Specify the X-coordinate for the initial position of the cylindrical refinement region.
|
|
6797
7068
|
"""
|
|
6798
7069
|
|
|
6799
|
-
class
|
|
7070
|
+
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
6800
7071
|
"""
|
|
6801
|
-
|
|
7072
|
+
Argument LastRatioPercentage.
|
|
6802
7073
|
"""
|
|
6803
7074
|
|
|
6804
7075
|
class _OffsetMethodType(PyTextualCommandArgumentsSubItem):
|
|
@@ -6806,6 +7077,11 @@ class Root(PyMenu):
|
|
|
6806
7077
|
Argument OffsetMethodType.
|
|
6807
7078
|
"""
|
|
6808
7079
|
|
|
7080
|
+
class _FlipDirection(PyParameterCommandArgumentsSubItem):
|
|
7081
|
+
"""
|
|
7082
|
+
Reverses the orientation of the refinement region.
|
|
7083
|
+
"""
|
|
7084
|
+
|
|
6809
7085
|
class _FirstHeight(PyNumericalCommandArgumentsSubItem):
|
|
6810
7086
|
"""
|
|
6811
7087
|
Argument FirstHeight.
|
|
@@ -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.
|
|
@@ -6828,8 +7109,8 @@ class Root(PyMenu):
|
|
|
6828
7109
|
|
|
6829
7110
|
def __init__(self, parent, attr, service, rules, path):
|
|
6830
7111
|
super().__init__(parent, attr, service, rules, path)
|
|
6831
|
-
self.HeightNode = self._HeightNode(self, "HeightNode", service, rules, path)
|
|
6832
7112
|
self.X_Offset = self._X_Offset(self, "X-Offset", service, rules, path)
|
|
7113
|
+
self.HeightNode = self._HeightNode(self, "HeightNode", service, rules, path)
|
|
6833
7114
|
self.HeightBackInc = self._HeightBackInc(self, "HeightBackInc", service, rules, path)
|
|
6834
7115
|
self.X1 = self._X1(self, "X1", service, rules, path)
|
|
6835
7116
|
self.Y1 = self._Y1(self, "Y1", service, rules, path)
|
|
@@ -6841,19 +7122,19 @@ class Root(PyMenu):
|
|
|
6841
7122
|
self.Y2 = self._Y2(self, "Y2", service, rules, path)
|
|
6842
7123
|
self.Node3 = self._Node3(self, "Node3", service, rules, path)
|
|
6843
7124
|
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
6844
|
-
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
6845
7125
|
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
7126
|
+
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
6846
7127
|
self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
|
|
6847
7128
|
self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
|
|
6848
7129
|
|
|
6849
|
-
class
|
|
7130
|
+
class _X_Offset(PyNumericalCommandArgumentsSubItem):
|
|
6850
7131
|
"""
|
|
6851
|
-
|
|
7132
|
+
Specify the X-coordinate for the offset of the initial position of the cylinder.
|
|
6852
7133
|
"""
|
|
6853
7134
|
|
|
6854
|
-
class
|
|
7135
|
+
class _HeightNode(PyTextualCommandArgumentsSubItem):
|
|
6855
7136
|
"""
|
|
6856
|
-
|
|
7137
|
+
Argument HeightNode.
|
|
6857
7138
|
"""
|
|
6858
7139
|
|
|
6859
7140
|
class _HeightBackInc(PyNumericalCommandArgumentsSubItem):
|
|
@@ -6911,14 +7192,14 @@ class Root(PyMenu):
|
|
|
6911
7192
|
Specify the Y-coordinate for the offset of the initial position of the cylinder.
|
|
6912
7193
|
"""
|
|
6913
7194
|
|
|
6914
|
-
class
|
|
7195
|
+
class _Node2(PyTextualCommandArgumentsSubItem):
|
|
6915
7196
|
"""
|
|
6916
|
-
|
|
7197
|
+
Argument Node2.
|
|
6917
7198
|
"""
|
|
6918
7199
|
|
|
6919
|
-
class
|
|
7200
|
+
class _X2(PyNumericalCommandArgumentsSubItem):
|
|
6920
7201
|
"""
|
|
6921
|
-
|
|
7202
|
+
Specify the X-coordinate of the second position of the cylinder.
|
|
6922
7203
|
"""
|
|
6923
7204
|
|
|
6924
7205
|
class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
|
|
@@ -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,24 @@ 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)
|
|
6983
7259
|
self.BoxYLength = self._BoxYLength(self, "BoxYLength", service, rules, path)
|
|
7260
|
+
self.CylinderX2 = self._CylinderX2(self, "CylinderX2", 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.
|
|
6992
7276
|
"""
|
|
6993
7277
|
|
|
6994
7278
|
class _BoxYLength(PyNumericalCommandArgumentsSubItem):
|
|
@@ -6996,6 +7280,26 @@ class Root(PyMenu):
|
|
|
6996
7280
|
Argument BoxYLength.
|
|
6997
7281
|
"""
|
|
6998
7282
|
|
|
7283
|
+
class _CylinderX2(PyNumericalCommandArgumentsSubItem):
|
|
7284
|
+
"""
|
|
7285
|
+
Specify the X-coordinate of the second position of the cylinder.
|
|
7286
|
+
"""
|
|
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:
|
|
@@ -7215,10 +7539,10 @@ class Root(PyMenu):
|
|
|
7215
7539
|
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
7216
7540
|
self.Thickness = self._Thickness(self, "Thickness", service, rules, path)
|
|
7217
7541
|
self.SelectionType = self._SelectionType(self, "SelectionType", service, rules, path)
|
|
7218
|
-
self.ZoneSelectionList = self._ZoneSelectionList(self, "ZoneSelectionList", service, rules, path)
|
|
7219
7542
|
self.LabelSelectionList = self._LabelSelectionList(self, "LabelSelectionList", service, rules, path)
|
|
7220
|
-
self.
|
|
7543
|
+
self.ZoneSelectionList = self._ZoneSelectionList(self, "ZoneSelectionList", 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)
|
|
@@ -7239,19 +7563,14 @@ class Root(PyMenu):
|
|
|
7239
7563
|
Choose how you want to make your selection (by object, zone, or label).
|
|
7240
7564
|
"""
|
|
7241
7565
|
|
|
7242
|
-
class _ZoneSelectionList(PyTextualCommandArgumentsSubItem):
|
|
7243
|
-
"""
|
|
7244
|
-
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
|
-
"""
|
|
7246
|
-
|
|
7247
7566
|
class _LabelSelectionList(PyTextualCommandArgumentsSubItem):
|
|
7248
7567
|
"""
|
|
7249
7568
|
Select a single label that will correspond to the porous region. Use the Filter Text field to provide text and/or regular expressions in filtering the list. The matching list item(s) are automatically displayed in the list. Use ^, |, and & in your expression to indicate boolean operations for NOT, OR, and AND, respectively. More...
|
|
7250
7569
|
"""
|
|
7251
7570
|
|
|
7252
|
-
class
|
|
7571
|
+
class _ZoneSelectionList(PyTextualCommandArgumentsSubItem):
|
|
7253
7572
|
"""
|
|
7254
|
-
|
|
7573
|
+
Choose a single face zone from the list below. Use the Filter Text field to provide text and/or regular expressions in filtering the list. The matching list item(s) are automatically displayed in the list. Use ^, |, and & in your expression to indicate boolean operations for NOT, OR, and AND, respectively. More...
|
|
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):
|
|
@@ -8060,12 +8391,12 @@ class Root(PyMenu):
|
|
|
8060
8391
|
self.SplitQuads = self._SplitQuads(self, "SplitQuads", service, rules, path)
|
|
8061
8392
|
self.MaxAspectRatio = self._MaxAspectRatio(self, "MaxAspectRatio", service, rules, path)
|
|
8062
8393
|
self.MinAspectRatio = self._MinAspectRatio(self, "MinAspectRatio", service, rules, path)
|
|
8063
|
-
self.RemeshGrowthRate = self._RemeshGrowthRate(self, "RemeshGrowthRate", service, rules, path)
|
|
8064
8394
|
self.LocalRemesh = self._LocalRemesh(self, "LocalRemesh", service, rules, path)
|
|
8395
|
+
self.RemeshGrowthRate = self._RemeshGrowthRate(self, "RemeshGrowthRate", service, rules, path)
|
|
8065
8396
|
self.GapFactor = self._GapFactor(self, "GapFactor", service, rules, path)
|
|
8066
8397
|
self.ShowPrism2DPreferences = self._ShowPrism2DPreferences(self, "ShowPrism2DPreferences", service, rules, path)
|
|
8067
|
-
self.RefineStretchedQuads = self._RefineStretchedQuads(self, "RefineStretchedQuads", service, rules, path)
|
|
8068
8398
|
self.MaxFaceSkew = self._MaxFaceSkew(self, "MaxFaceSkew", service, rules, path)
|
|
8399
|
+
self.RefineStretchedQuads = self._RefineStretchedQuads(self, "RefineStretchedQuads", service, rules, path)
|
|
8069
8400
|
self.nOrthogonalLayers = self._nOrthogonalLayers(self, "nOrthogonalLayers", service, rules, path)
|
|
8070
8401
|
|
|
8071
8402
|
class _SplitQuads(PyTextualCommandArgumentsSubItem):
|
|
@@ -8083,14 +8414,14 @@ class Root(PyMenu):
|
|
|
8083
8414
|
Argument MinAspectRatio.
|
|
8084
8415
|
"""
|
|
8085
8416
|
|
|
8086
|
-
class
|
|
8417
|
+
class _LocalRemesh(PyTextualCommandArgumentsSubItem):
|
|
8087
8418
|
"""
|
|
8088
|
-
Argument
|
|
8419
|
+
Argument LocalRemesh.
|
|
8089
8420
|
"""
|
|
8090
8421
|
|
|
8091
|
-
class
|
|
8422
|
+
class _RemeshGrowthRate(PyNumericalCommandArgumentsSubItem):
|
|
8092
8423
|
"""
|
|
8093
|
-
Argument
|
|
8424
|
+
Argument RemeshGrowthRate.
|
|
8094
8425
|
"""
|
|
8095
8426
|
|
|
8096
8427
|
class _GapFactor(PyNumericalCommandArgumentsSubItem):
|
|
@@ -8103,14 +8434,14 @@ class Root(PyMenu):
|
|
|
8103
8434
|
Argument ShowPrism2DPreferences.
|
|
8104
8435
|
"""
|
|
8105
8436
|
|
|
8106
|
-
class
|
|
8437
|
+
class _MaxFaceSkew(PyNumericalCommandArgumentsSubItem):
|
|
8107
8438
|
"""
|
|
8108
|
-
Argument
|
|
8439
|
+
Argument MaxFaceSkew.
|
|
8109
8440
|
"""
|
|
8110
8441
|
|
|
8111
|
-
class
|
|
8442
|
+
class _RefineStretchedQuads(PyTextualCommandArgumentsSubItem):
|
|
8112
8443
|
"""
|
|
8113
|
-
Argument
|
|
8444
|
+
Argument RefineStretchedQuads.
|
|
8114
8445
|
"""
|
|
8115
8446
|
|
|
8116
8447
|
class _nOrthogonalLayers(PyNumericalCommandArgumentsSubItem):
|
|
@@ -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.
|
|
@@ -8958,17 +9308,17 @@ class Root(PyMenu):
|
|
|
8958
9308
|
super().__init__(parent, attr, service, rules, path)
|
|
8959
9309
|
self.SMQualityCollapseLimit = self._SMQualityCollapseLimit(self, "SMQualityCollapseLimit", service, rules, path)
|
|
8960
9310
|
self.AutoMerge = self._AutoMerge(self, "AutoMerge", service, rules, path)
|
|
8961
|
-
self.SMQualityImprove = self._SMQualityImprove(self, "SMQualityImprove", service, rules, path)
|
|
8962
|
-
self.ShowSurfaceMeshPreferences = self._ShowSurfaceMeshPreferences(self, "ShowSurfaceMeshPreferences", service, rules, path)
|
|
8963
9311
|
self.SMSeparation = self._SMSeparation(self, "SMSeparation", service, rules, path)
|
|
9312
|
+
self.ShowSurfaceMeshPreferences = self._ShowSurfaceMeshPreferences(self, "ShowSurfaceMeshPreferences", service, rules, path)
|
|
9313
|
+
self.SMSeparationAngle = self._SMSeparationAngle(self, "SMSeparationAngle", service, rules, path)
|
|
8964
9314
|
self.FoldFaceLimit = self._FoldFaceLimit(self, "FoldFaceLimit", service, rules, path)
|
|
8965
9315
|
self.TVMAutoControlCreation = self._TVMAutoControlCreation(self, "TVMAutoControlCreation", service, rules, path)
|
|
8966
|
-
self.
|
|
9316
|
+
self.SMQualityImprove = self._SMQualityImprove(self, "SMQualityImprove", 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)
|
|
@@ -8984,9 +9334,9 @@ class Root(PyMenu):
|
|
|
8984
9334
|
Argument AutoMerge.
|
|
8985
9335
|
"""
|
|
8986
9336
|
|
|
8987
|
-
class
|
|
9337
|
+
class _SMSeparation(PyTextualCommandArgumentsSubItem):
|
|
8988
9338
|
"""
|
|
8989
|
-
Choose whether or not to
|
|
9339
|
+
Choose whether or not to separate zones. This is required to select faces for capping. If Named Selections have already been defined at these locations, then separation is not needed. Performance may be improved if this is disabled.
|
|
8990
9340
|
"""
|
|
8991
9341
|
|
|
8992
9342
|
class _ShowSurfaceMeshPreferences(PyParameterCommandArgumentsSubItem):
|
|
@@ -8994,9 +9344,9 @@ class Root(PyMenu):
|
|
|
8994
9344
|
Display advanced options that you may want to apply to the task.
|
|
8995
9345
|
"""
|
|
8996
9346
|
|
|
8997
|
-
class
|
|
9347
|
+
class _SMSeparationAngle(PyNumericalCommandArgumentsSubItem):
|
|
8998
9348
|
"""
|
|
8999
|
-
|
|
9349
|
+
Specify a desired angle for determining separation. Assigning a smaller separation angle will produce more zones.
|
|
9000
9350
|
"""
|
|
9001
9351
|
|
|
9002
9352
|
class _FoldFaceLimit(PyNumericalCommandArgumentsSubItem):
|
|
@@ -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 _SMQualityImprove(PyTextualCommandArgumentsSubItem):
|
|
9013
9363
|
"""
|
|
9014
|
-
|
|
9364
|
+
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.
|
|
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):
|
|
@@ -9143,11 +9493,11 @@ class Root(PyMenu):
|
|
|
9143
9493
|
self.CreateCADAssemblies = self._CreateCADAssemblies(self, "CreateCADAssemblies", service, rules, path)
|
|
9144
9494
|
self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
|
|
9145
9495
|
self.OneZonePer = self._OneZonePer(self, "OneZonePer", service, rules, path)
|
|
9146
|
-
self.
|
|
9496
|
+
self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
|
|
9147
9497
|
self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
|
|
9148
9498
|
self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
|
|
9149
9499
|
self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
|
|
9150
|
-
self.
|
|
9500
|
+
self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
|
|
9151
9501
|
|
|
9152
9502
|
class _SavePMDBIntermediateFile(PyParameterCommandArgumentsSubItem):
|
|
9153
9503
|
"""
|
|
@@ -9179,9 +9529,9 @@ class Root(PyMenu):
|
|
|
9179
9529
|
Argument OneZonePer.
|
|
9180
9530
|
"""
|
|
9181
9531
|
|
|
9182
|
-
class
|
|
9532
|
+
class _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
|
|
9183
9533
|
"""
|
|
9184
|
-
Argument
|
|
9534
|
+
Argument UsePartOrBodyAsSuffix.
|
|
9185
9535
|
"""
|
|
9186
9536
|
|
|
9187
9537
|
class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
|
|
@@ -9199,9 +9549,9 @@ class Root(PyMenu):
|
|
|
9199
9549
|
Argument ImportPartNames.
|
|
9200
9550
|
"""
|
|
9201
9551
|
|
|
9202
|
-
class
|
|
9552
|
+
class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
|
|
9203
9553
|
"""
|
|
9204
|
-
Argument
|
|
9554
|
+
Argument ImportCurvatureDataFromCAD.
|
|
9205
9555
|
"""
|
|
9206
9556
|
|
|
9207
9557
|
class _ShareTopologyPreferences(PySingletonCommandArgumentsSubItem):
|
|
@@ -9216,10 +9566,10 @@ class Root(PyMenu):
|
|
|
9216
9566
|
self.ConnectLabelWildcard = self._ConnectLabelWildcard(self, "ConnectLabelWildcard", service, rules, path)
|
|
9217
9567
|
self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
|
|
9218
9568
|
self.RelativeShareTopologyTolerance = self._RelativeShareTopologyTolerance(self, "RelativeShareTopologyTolerance", service, rules, path)
|
|
9219
|
-
self.
|
|
9569
|
+
self.ShareTopologyAngle = self._ShareTopologyAngle(self, "ShareTopologyAngle", service, rules, path)
|
|
9220
9570
|
self.ExecuteJoinIntersect = self._ExecuteJoinIntersect(self, "ExecuteJoinIntersect", service, rules, path)
|
|
9221
9571
|
self.Operation = self._Operation(self, "Operation", service, rules, path)
|
|
9222
|
-
self.
|
|
9572
|
+
self.FluidLabelWildcard = self._FluidLabelWildcard(self, "FluidLabelWildcard", service, rules, path)
|
|
9223
9573
|
self.STToleranceIncrement = self._STToleranceIncrement(self, "STToleranceIncrement", service, rules, path)
|
|
9224
9574
|
self.IntfLabelList = self._IntfLabelList(self, "IntfLabelList", service, rules, path)
|
|
9225
9575
|
self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
|
|
@@ -9252,9 +9602,9 @@ class Root(PyMenu):
|
|
|
9252
9602
|
Specify the relative tolerance for joining or intersecting face pairs, or the relative tolerance for connecting edge and face pairs.
|
|
9253
9603
|
"""
|
|
9254
9604
|
|
|
9255
|
-
class
|
|
9605
|
+
class _ShareTopologyAngle(PyNumericalCommandArgumentsSubItem):
|
|
9256
9606
|
"""
|
|
9257
|
-
|
|
9607
|
+
Specify the threshold angle for joining face pairs.
|
|
9258
9608
|
"""
|
|
9259
9609
|
|
|
9260
9610
|
class _ExecuteJoinIntersect(PyTextualCommandArgumentsSubItem):
|
|
@@ -9267,9 +9617,9 @@ class Root(PyMenu):
|
|
|
9267
9617
|
Choose whether to apply share topology using the Join-Intersect method where you join and/or intersect the problematic faces, or using the Interface Connect method where you connect edges of overlapping face pairs. Note that imprinting of overlapping faces in SCDM/Discovery is highly recommended for the Interface Connect method.
|
|
9268
9618
|
"""
|
|
9269
9619
|
|
|
9270
|
-
class
|
|
9620
|
+
class _FluidLabelWildcard(PyTextualCommandArgumentsSubItem):
|
|
9271
9621
|
"""
|
|
9272
|
-
|
|
9622
|
+
Argument FluidLabelWildcard.
|
|
9273
9623
|
"""
|
|
9274
9624
|
|
|
9275
9625
|
class _STToleranceIncrement(PyNumericalCommandArgumentsSubItem):
|
|
@@ -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,23 +10115,23 @@ 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)
|
|
9770
|
-
self.MergeBodyLabels = self._MergeBodyLabels(self, "MergeBodyLabels", service, rules, path)
|
|
9771
10120
|
self.UseSizeField = self._UseSizeField(self, "UseSizeField", service, rules, path)
|
|
9772
|
-
self.
|
|
10121
|
+
self.MergeBodyLabels = self._MergeBodyLabels(self, "MergeBodyLabels", service, rules, path)
|
|
10122
|
+
self.QualityMethod = self._QualityMethod(self, "QualityMethod", 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)
|
|
9776
10126
|
self.MaxCellSizeChange = self._MaxCellSizeChange(self, "MaxCellSizeChange", service, rules, path)
|
|
9777
10127
|
self.WritePrismControlFile = self._WritePrismControlFile(self, "WritePrismControlFile", service, rules, path)
|
|
9778
|
-
self.PrepareZoneNames = self._PrepareZoneNames(self, "PrepareZoneNames", service, rules, path)
|
|
9779
|
-
self.CheckSelfProximity = self._CheckSelfProximity(self, "CheckSelfProximity", service, rules, path)
|
|
9780
|
-
self.Avoid1_8Transition = self._Avoid1_8Transition(self, "Avoid1_8Transition", service, rules, path)
|
|
9781
10128
|
self.MinFaceArea = self._MinFaceArea(self, "MinFaceArea", service, rules, path)
|
|
9782
|
-
self.
|
|
9783
|
-
self.
|
|
10129
|
+
self.CheckSelfProximity = self._CheckSelfProximity(self, "CheckSelfProximity", service, rules, path)
|
|
10130
|
+
self.Avoid1_8Transition = self._Avoid1_8Transition(self, "Avoid1_8Transition", service, rules, path)
|
|
9784
10131
|
self.TetInSolids = self._TetInSolids(self, "TetInSolids", service, rules, path)
|
|
10132
|
+
self.PrepareZoneNames = self._PrepareZoneNames(self, "PrepareZoneNames", service, rules, path)
|
|
10133
|
+
self.SolidGrowthRate = self._SolidGrowthRate(self, "SolidGrowthRate", service, rules, path)
|
|
10134
|
+
self.ShowVolumeMeshPreferences = self._ShowVolumeMeshPreferences(self, "ShowVolumeMeshPreferences", 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,19 +10149,19 @@ class Root(PyMenu):
|
|
|
9799
10149
|
Argument MinPolySize.
|
|
9800
10150
|
"""
|
|
9801
10151
|
|
|
9802
|
-
class
|
|
10152
|
+
class _UseSizeField(PyTextualCommandArgumentsSubItem):
|
|
9803
10153
|
"""
|
|
9804
|
-
|
|
10154
|
+
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.
|
|
9805
10155
|
"""
|
|
9806
10156
|
|
|
9807
|
-
class
|
|
10157
|
+
class _MergeBodyLabels(PyTextualCommandArgumentsSubItem):
|
|
9808
10158
|
"""
|
|
9809
|
-
|
|
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)
|
|
9810
10160
|
"""
|
|
9811
10161
|
|
|
9812
|
-
class
|
|
10162
|
+
class _QualityMethod(PyTextualCommandArgumentsSubItem):
|
|
9813
10163
|
"""
|
|
9814
|
-
|
|
10164
|
+
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... .
|
|
9815
10165
|
"""
|
|
9816
10166
|
|
|
9817
10167
|
class _PolyInSolids(PyTextualCommandArgumentsSubItem):
|
|
@@ -9839,9 +10189,9 @@ class Root(PyMenu):
|
|
|
9839
10189
|
Indicate whether or not you want to save a .pzmcontrol file to your working folder that will contain the boundary (prism) layer specifications.
|
|
9840
10190
|
"""
|
|
9841
10191
|
|
|
9842
|
-
class
|
|
10192
|
+
class _MinFaceArea(PyNumericalCommandArgumentsSubItem):
|
|
9843
10193
|
"""
|
|
9844
|
-
|
|
10194
|
+
Argument MinFaceArea.
|
|
9845
10195
|
"""
|
|
9846
10196
|
|
|
9847
10197
|
class _CheckSelfProximity(PyTextualCommandArgumentsSubItem):
|
|
@@ -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 _TetInSolids(PyTextualCommandArgumentsSubItem):
|
|
9858
10208
|
"""
|
|
9859
|
-
Argument
|
|
10209
|
+
Argument TetInSolids.
|
|
9860
10210
|
"""
|
|
9861
10211
|
|
|
9862
|
-
class
|
|
10212
|
+
class _PrepareZoneNames(PyTextualCommandArgumentsSubItem):
|
|
9863
10213
|
"""
|
|
9864
|
-
|
|
10214
|
+
Indicate whether or not you want to persistently rename volume mesh components. This will make zone names equivalent to region names, and will make cell and face zone names unique. Using this field is highly recommended for any parametric study. Persistent renaming only works if all body names are unique.
|
|
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 _ShowVolumeMeshPreferences(PyParameterCommandArgumentsSubItem):
|
|
9873
10223
|
"""
|
|
9874
|
-
|
|
10224
|
+
Display advanced options that you may want to apply to the task.
|
|
9875
10225
|
"""
|
|
9876
10226
|
|
|
9877
10227
|
class _QualityWarningLimit(PyNumericalCommandArgumentsSubItem):
|
|
@@ -9895,8 +10245,8 @@ class Root(PyMenu):
|
|
|
9895
10245
|
self.MergeBoundaryLayers = self._MergeBoundaryLayers(self, "MergeBoundaryLayers", service, rules, path)
|
|
9896
10246
|
self.NormalSmoothRelaxationFactor = self._NormalSmoothRelaxationFactor(self, "NormalSmoothRelaxationFactor", service, rules, path)
|
|
9897
10247
|
self.ShowPrismPreferences = self._ShowPrismPreferences(self, "ShowPrismPreferences", service, rules, path)
|
|
9898
|
-
self.PrismMinAspectRatio = self._PrismMinAspectRatio(self, "PrismMinAspectRatio", service, rules, path)
|
|
9899
10248
|
self.StairstepExposedQuads = self._StairstepExposedQuads(self, "StairstepExposedQuads", service, rules, path)
|
|
10249
|
+
self.PrismMinAspectRatio = self._PrismMinAspectRatio(self, "PrismMinAspectRatio", service, rules, path)
|
|
9900
10250
|
self.PrismAdjacentAngle = self._PrismAdjacentAngle(self, "PrismAdjacentAngle", service, rules, path)
|
|
9901
10251
|
|
|
9902
10252
|
class _PrismKeepFirstLayer(PyTextualCommandArgumentsSubItem):
|
|
@@ -9944,14 +10294,14 @@ class Root(PyMenu):
|
|
|
9944
10294
|
Display global settings for your boundary layers. Note that these settings are not applied for Multizone boundary layers
|
|
9945
10295
|
"""
|
|
9946
10296
|
|
|
9947
|
-
class
|
|
10297
|
+
class _StairstepExposedQuads(PyTextualCommandArgumentsSubItem):
|
|
9948
10298
|
"""
|
|
9949
|
-
|
|
10299
|
+
This option can be used when generating a tetrahedral mesh with prism cells and is set to No by default. Selecting Yes for this option will enable stair-stepping for exposed quadrilateral faces (exposed quads) on prism cells. Stair-stepping will prevent pyramids from being created on these exposed quads, which generally would lead to poor quality in the exposed quad location.
|
|
9950
10300
|
"""
|
|
9951
10301
|
|
|
9952
|
-
class
|
|
10302
|
+
class _PrismMinAspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
9953
10303
|
"""
|
|
9954
|
-
|
|
10304
|
+
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.
|
|
9955
10305
|
"""
|
|
9956
10306
|
|
|
9957
10307
|
class _PrismAdjacentAngle(PyNumericalCommandArgumentsSubItem):
|
|
@@ -9967,18 +10317,18 @@ class Root(PyMenu):
|
|
|
9967
10317
|
def __init__(self, parent, attr, service, rules, path):
|
|
9968
10318
|
super().__init__(parent, attr, service, rules, path)
|
|
9969
10319
|
self.MinAspectRatio = self._MinAspectRatio(self, "MinAspectRatio", service, rules, path)
|
|
9970
|
-
self.AutoOrderControls = self._AutoOrderControls(self, "AutoOrderControls", service, rules, path)
|
|
9971
|
-
self.StairStep = self._StairStep(self, "StairStep", service, rules, path)
|
|
9972
10320
|
self.ShowGlobalThinVolumePreferences = self._ShowGlobalThinVolumePreferences(self, "ShowGlobalThinVolumePreferences", service, rules, path)
|
|
10321
|
+
self.StairStep = self._StairStep(self, "StairStep", service, rules, path)
|
|
10322
|
+
self.AutoOrderControls = self._AutoOrderControls(self, "AutoOrderControls", service, rules, path)
|
|
9973
10323
|
|
|
9974
10324
|
class _MinAspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
9975
10325
|
"""
|
|
9976
10326
|
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.
|
|
9977
10327
|
"""
|
|
9978
10328
|
|
|
9979
|
-
class
|
|
10329
|
+
class _ShowGlobalThinVolumePreferences(PyParameterCommandArgumentsSubItem):
|
|
9980
10330
|
"""
|
|
9981
|
-
|
|
10331
|
+
Display global settings for thin volume meshing.
|
|
9982
10332
|
"""
|
|
9983
10333
|
|
|
9984
10334
|
class _StairStep(PyTextualCommandArgumentsSubItem):
|
|
@@ -9986,9 +10336,9 @@ class Root(PyMenu):
|
|
|
9986
10336
|
Use this option to invoke stair-stepping at thin volume mesh regions.
|
|
9987
10337
|
"""
|
|
9988
10338
|
|
|
9989
|
-
class
|
|
10339
|
+
class _AutoOrderControls(PyTextualCommandArgumentsSubItem):
|
|
9990
10340
|
"""
|
|
9991
|
-
|
|
10341
|
+
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.
|
|
9992
10342
|
"""
|
|
9993
10343
|
|
|
9994
10344
|
class _InvokePrimsControl(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.
|
|
@@ -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):
|
|
@@ -11265,11 +11621,11 @@ class Root(PyMenu):
|
|
|
11265
11621
|
self.CreateCADAssemblies = self._CreateCADAssemblies(self, "CreateCADAssemblies", service, rules, path)
|
|
11266
11622
|
self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
|
|
11267
11623
|
self.OneZonePer = self._OneZonePer(self, "OneZonePer", service, rules, path)
|
|
11268
|
-
self.
|
|
11624
|
+
self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
|
|
11269
11625
|
self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
|
|
11270
|
-
self.
|
|
11626
|
+
self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
|
|
11271
11627
|
self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
|
|
11272
|
-
self.
|
|
11628
|
+
self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
|
|
11273
11629
|
|
|
11274
11630
|
class _SavePMDBIntermediateFile(PyParameterCommandArgumentsSubItem):
|
|
11275
11631
|
"""
|
|
@@ -11301,9 +11657,9 @@ class Root(PyMenu):
|
|
|
11301
11657
|
Argument OneZonePer.
|
|
11302
11658
|
"""
|
|
11303
11659
|
|
|
11304
|
-
class
|
|
11660
|
+
class _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
|
|
11305
11661
|
"""
|
|
11306
|
-
Argument
|
|
11662
|
+
Argument UsePartOrBodyAsSuffix.
|
|
11307
11663
|
"""
|
|
11308
11664
|
|
|
11309
11665
|
class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
|
|
@@ -11311,9 +11667,9 @@ class Root(PyMenu):
|
|
|
11311
11667
|
Argument ExtractFeatures.
|
|
11312
11668
|
"""
|
|
11313
11669
|
|
|
11314
|
-
class
|
|
11670
|
+
class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
|
|
11315
11671
|
"""
|
|
11316
|
-
Argument
|
|
11672
|
+
Argument ImportCurvatureDataFromCAD.
|
|
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:
|
|
@@ -11416,14 +11772,14 @@ class Root(PyMenu):
|
|
|
11416
11772
|
self.MergeNodes = self._MergeNodes(self, "MergeNodes", 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.EdgeLabel = self._EdgeLabel(self, "EdgeLabel", 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
11780
|
self.ExtractAngle = self._ExtractAngle(self, "ExtractAngle", service, rules, path)
|
|
11425
11781
|
self.CISeparationAngle = self._CISeparationAngle(self, "CISeparationAngle", service, rules, path)
|
|
11426
|
-
self.
|
|
11782
|
+
self.CITolerence = self._CITolerence(self, "CITolerence", service, rules, path)
|
|
11427
11783
|
|
|
11428
11784
|
class _MergeNodes(PyTextualCommandArgumentsSubItem):
|
|
11429
11785
|
"""
|
|
@@ -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 _EdgeLabel(PyTextualCommandArgumentsSubItem):
|
|
11444
11800
|
"""
|
|
11445
|
-
Specify
|
|
11801
|
+
Specify whether or not the imported CAD geometry already includes specific edges with assigned names (named selections). These named edges can be available later in the workflow when you are adding local size controls.
|
|
11446
11802
|
"""
|
|
11447
11803
|
|
|
11448
11804
|
class _CIRefaceting(PyParameterCommandArgumentsSubItem):
|
|
@@ -11475,9 +11831,9 @@ class Root(PyMenu):
|
|
|
11475
11831
|
Specify the angle at which features will be extracted from the CAD model on import. Assigning a smaller separation angle will produce more zones.
|
|
11476
11832
|
"""
|
|
11477
11833
|
|
|
11478
|
-
class
|
|
11834
|
+
class _CITolerence(PyNumericalCommandArgumentsSubItem):
|
|
11479
11835
|
"""
|
|
11480
|
-
Specify
|
|
11836
|
+
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.
|
|
11481
11837
|
"""
|
|
11482
11838
|
|
|
11483
11839
|
class _FileName(PyTextualCommandArgumentsSubItem):
|
|
@@ -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
11889
|
self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
|
|
11534
11890
|
self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
|
|
11535
|
-
self.
|
|
11891
|
+
self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", 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):
|
|
@@ -11584,9 +11940,9 @@ class Root(PyMenu):
|
|
|
11584
11940
|
Argument ImportPartNames.
|
|
11585
11941
|
"""
|
|
11586
11942
|
|
|
11587
|
-
class
|
|
11943
|
+
class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
|
|
11588
11944
|
"""
|
|
11589
|
-
Argument
|
|
11945
|
+
Argument ImportCurvatureDataFromCAD.
|
|
11590
11946
|
"""
|
|
11591
11947
|
|
|
11592
11948
|
def create_instance(self) -> _ImportGeometryCommandArguments:
|
|
@@ -11912,8 +12268,8 @@ class Root(PyMenu):
|
|
|
11912
12268
|
def __init__(self, parent, attr, service, rules, path):
|
|
11913
12269
|
super().__init__(parent, attr, service, rules, path)
|
|
11914
12270
|
self.FirstNumber = self._FirstNumber(self, "FirstNumber", service, rules, path)
|
|
11915
|
-
self.CustomPatternString = self._CustomPatternString(self, "CustomPatternString", service, rules, path)
|
|
11916
12271
|
self.NbCellsPerUnit = self._NbCellsPerUnit(self, "NbCellsPerUnit", service, rules, path)
|
|
12272
|
+
self.CustomPatternString = self._CustomPatternString(self, "CustomPatternString", service, rules, path)
|
|
11917
12273
|
self.InvokeBatteryModelingOptions = self._InvokeBatteryModelingOptions(self, "InvokeBatteryModelingOptions", service, rules, path)
|
|
11918
12274
|
self.UseCustomPattern = self._UseCustomPattern(self, "UseCustomPattern", service, rules, path)
|
|
11919
12275
|
|
|
@@ -11922,14 +12278,14 @@ class Root(PyMenu):
|
|
|
11922
12278
|
Specify the numerical value that will be appended to the name of the first unit associated with the meshing pattern object. This value also dictates the labeling for mesh objects associated with this mesh pattern. More...
|
|
11923
12279
|
"""
|
|
11924
12280
|
|
|
11925
|
-
class
|
|
12281
|
+
class _NbCellsPerUnit(PyNumericalCommandArgumentsSubItem):
|
|
11926
12282
|
"""
|
|
11927
|
-
|
|
12283
|
+
Specify the numerical value that will be appended to the name of the first unit associated with the meshing pattern object. This value also dictates the labeling for mesh objects associated with this mesh pattern. More...
|
|
11928
12284
|
"""
|
|
11929
12285
|
|
|
11930
|
-
class
|
|
12286
|
+
class _CustomPatternString(PyTextualCommandArgumentsSubItem):
|
|
11931
12287
|
"""
|
|
11932
|
-
|
|
12288
|
+
Argument CustomPatternString.
|
|
11933
12289
|
"""
|
|
11934
12290
|
|
|
11935
12291
|
class _InvokeBatteryModelingOptions(PyTextualCommandArgumentsSubItem):
|
|
@@ -12022,8 +12378,8 @@ 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)
|
|
12025
|
-
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
12026
12381
|
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
12382
|
+
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
12027
12383
|
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)
|
|
@@ -12040,14 +12396,14 @@ class Root(PyMenu):
|
|
|
12040
12396
|
Argument FacetResolution.
|
|
12041
12397
|
"""
|
|
12042
12398
|
|
|
12043
|
-
class
|
|
12399
|
+
class _NormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
12044
12400
|
"""
|
|
12045
|
-
Argument
|
|
12401
|
+
Argument NormalAngle.
|
|
12046
12402
|
"""
|
|
12047
12403
|
|
|
12048
|
-
class
|
|
12404
|
+
class _Deviation(PyNumericalCommandArgumentsSubItem):
|
|
12049
12405
|
"""
|
|
12050
|
-
Argument
|
|
12406
|
+
Argument Deviation.
|
|
12051
12407
|
"""
|
|
12052
12408
|
|
|
12053
12409
|
class _MaxEdgeLengthFactor(PyNumericalCommandArgumentsSubItem):
|
|
@@ -12179,11 +12535,11 @@ class Root(PyMenu):
|
|
|
12179
12535
|
self.MinSize = self._MinSize(self, "MinSize", service, rules, path)
|
|
12180
12536
|
self.WrapMax = self._WrapMax(self, "WrapMax", service, rules, path)
|
|
12181
12537
|
self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
|
|
12182
|
-
self.SizingType = self._SizingType(self, "SizingType", service, rules, path)
|
|
12183
12538
|
self.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", service, rules, path)
|
|
12184
12539
|
self.InitialSizeControl = self._InitialSizeControl(self, "InitialSizeControl", service, rules, path)
|
|
12185
|
-
self.
|
|
12540
|
+
self.SizingType = self._SizingType(self, "SizingType", service, rules, path)
|
|
12186
12541
|
self.WrapCurvatureNormalAngle = self._WrapCurvatureNormalAngle(self, "WrapCurvatureNormalAngle", service, rules, path)
|
|
12542
|
+
self.CellsPerGap = self._CellsPerGap(self, "CellsPerGap", service, rules, path)
|
|
12187
12543
|
self.TargetSizeControl = self._TargetSizeControl(self, "TargetSizeControl", service, rules, path)
|
|
12188
12544
|
self.GrowthRate = self._GrowthRate(self, "GrowthRate", service, rules, path)
|
|
12189
12545
|
|
|
@@ -12232,11 +12588,6 @@ class Root(PyMenu):
|
|
|
12232
12588
|
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.
|
|
12233
12589
|
"""
|
|
12234
12590
|
|
|
12235
|
-
class _SizingType(PyTextualCommandArgumentsSubItem):
|
|
12236
|
-
"""
|
|
12237
|
-
Choose the type of sizing control (curvature, proximity, soft, or boi).
|
|
12238
|
-
"""
|
|
12239
|
-
|
|
12240
12591
|
class _WrapGrowthRate(PyNumericalCommandArgumentsSubItem):
|
|
12241
12592
|
"""
|
|
12242
12593
|
Specify the increase in element edge length with each succeeding layer of elements.
|
|
@@ -12247,9 +12598,9 @@ class Root(PyMenu):
|
|
|
12247
12598
|
Enable this field to display the initial size control in the graphics window.
|
|
12248
12599
|
"""
|
|
12249
12600
|
|
|
12250
|
-
class
|
|
12601
|
+
class _SizingType(PyTextualCommandArgumentsSubItem):
|
|
12251
12602
|
"""
|
|
12252
|
-
|
|
12603
|
+
Choose the type of sizing control (curvature, proximity, soft, or boi).
|
|
12253
12604
|
"""
|
|
12254
12605
|
|
|
12255
12606
|
class _WrapCurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
@@ -12257,6 +12608,11 @@ class Root(PyMenu):
|
|
|
12257
12608
|
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.
|
|
12258
12609
|
"""
|
|
12259
12610
|
|
|
12611
|
+
class _CellsPerGap(PyNumericalCommandArgumentsSubItem):
|
|
12612
|
+
"""
|
|
12613
|
+
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.
|
|
12614
|
+
"""
|
|
12615
|
+
|
|
12260
12616
|
class _TargetSizeControl(PyParameterCommandArgumentsSubItem):
|
|
12261
12617
|
"""
|
|
12262
12618
|
Enable this field to display the target size control in the graphics window.
|
|
@@ -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,8 +13314,8 @@ 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)
|
|
12955
|
-
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
12956
13317
|
self.MaxEdgeLengthFactor = self._MaxEdgeLengthFactor(self, "MaxEdgeLengthFactor", service, rules, path)
|
|
13318
|
+
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
12957
13319
|
self.Refacet = self._Refacet(self, "Refacet", service, rules, path)
|
|
12958
13320
|
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
12959
13321
|
|
|
@@ -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 _MaxEdgeLengthFactor(PyNumericalCommandArgumentsSubItem):
|
|
12971
13333
|
"""
|
|
12972
|
-
|
|
13334
|
+
Specifies the maximum size of the facets relative to the bounding box of the geometry.
|
|
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):
|
|
@@ -13658,14 +14020,14 @@ class Root(PyMenu):
|
|
|
13658
14020
|
self.ConnectLabelWildcard = self._ConnectLabelWildcard(self, "ConnectLabelWildcard", service, rules, path)
|
|
13659
14021
|
self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
|
|
13660
14022
|
self.RelativeShareTopologyTolerance = self._RelativeShareTopologyTolerance(self, "RelativeShareTopologyTolerance", service, rules, path)
|
|
13661
|
-
self.
|
|
14023
|
+
self.ShareTopologyAngle = self._ShareTopologyAngle(self, "ShareTopologyAngle", service, rules, path)
|
|
13662
14024
|
self.ExecuteJoinIntersect = self._ExecuteJoinIntersect(self, "ExecuteJoinIntersect", service, rules, path)
|
|
13663
14025
|
self.Operation = self._Operation(self, "Operation", service, rules, path)
|
|
13664
|
-
self.
|
|
14026
|
+
self.FluidLabelWildcard = self._FluidLabelWildcard(self, "FluidLabelWildcard", 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
|
|
|
@@ -13694,9 +14056,9 @@ class Root(PyMenu):
|
|
|
13694
14056
|
Specify the relative tolerance for joining or intersecting face pairs, or the relative tolerance for connecting edge and face pairs.
|
|
13695
14057
|
"""
|
|
13696
14058
|
|
|
13697
|
-
class
|
|
14059
|
+
class _ShareTopologyAngle(PyNumericalCommandArgumentsSubItem):
|
|
13698
14060
|
"""
|
|
13699
|
-
|
|
14061
|
+
Specify the threshold angle for joining face pairs.
|
|
13700
14062
|
"""
|
|
13701
14063
|
|
|
13702
14064
|
class _ExecuteJoinIntersect(PyTextualCommandArgumentsSubItem):
|
|
@@ -13709,9 +14071,9 @@ class Root(PyMenu):
|
|
|
13709
14071
|
Choose whether to apply share topology using the Join-Intersect method where you join and/or intersect the problematic faces, or using the Interface Connect method where you connect edges of overlapping face pairs. Note that imprinting of overlapping faces in SCDM/Discovery is highly recommended for the Interface Connect method.
|
|
13710
14072
|
"""
|
|
13711
14073
|
|
|
13712
|
-
class
|
|
14074
|
+
class _FluidLabelWildcard(PyTextualCommandArgumentsSubItem):
|
|
13713
14075
|
"""
|
|
13714
|
-
|
|
14076
|
+
Argument FluidLabelWildcard.
|
|
13715
14077
|
"""
|
|
13716
14078
|
|
|
13717
14079
|
class _STToleranceIncrement(PyNumericalCommandArgumentsSubItem):
|
|
@@ -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):
|
|
@@ -13823,12 +14185,12 @@ class Root(PyMenu):
|
|
|
13823
14185
|
self.SMSeparation = self._SMSeparation(self, "SMSeparation", 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)
|
|
13829
|
-
self.
|
|
13830
|
-
self.
|
|
14189
|
+
self.AutoAssignZoneTypes = self._AutoAssignZoneTypes(self, "AutoAssignZoneTypes", service, rules, path)
|
|
14190
|
+
self.VolumeMeshMaxSize = self._VolumeMeshMaxSize(self, "VolumeMeshMaxSize", service, rules, path)
|
|
13831
14191
|
self.SelfIntersectCheck = self._SelfIntersectCheck(self, "SelfIntersectCheck", service, rules, path)
|
|
14192
|
+
self.AutoSurfaceRemesh = self._AutoSurfaceRemesh(self, "AutoSurfaceRemesh", service, rules, path)
|
|
14193
|
+
self.SMQualityImproveLimit = self._SMQualityImproveLimit(self, "SMQualityImproveLimit", service, rules, path)
|
|
13832
14194
|
self.SetVolumeMeshMaxSize = self._SetVolumeMeshMaxSize(self, "SetVolumeMeshMaxSize", service, rules, path)
|
|
13833
14195
|
|
|
13834
14196
|
class _SMQualityCollapseLimit(PyNumericalCommandArgumentsSubItem):
|
|
@@ -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,14 +14253,14 @@ 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
|
-
class
|
|
14261
|
+
class _SelfIntersectCheck(PyTextualCommandArgumentsSubItem):
|
|
13900
14262
|
"""
|
|
13901
|
-
Argument
|
|
14263
|
+
Argument SelfIntersectCheck.
|
|
13902
14264
|
"""
|
|
13903
14265
|
|
|
13904
14266
|
class _AutoSurfaceRemesh(PyTextualCommandArgumentsSubItem):
|
|
@@ -13906,9 +14268,9 @@ class Root(PyMenu):
|
|
|
13906
14268
|
Argument AutoSurfaceRemesh.
|
|
13907
14269
|
"""
|
|
13908
14270
|
|
|
13909
|
-
class
|
|
14271
|
+
class _SMQualityImproveLimit(PyNumericalCommandArgumentsSubItem):
|
|
13910
14272
|
"""
|
|
13911
|
-
Argument
|
|
14273
|
+
Argument SMQualityImproveLimit.
|
|
13912
14274
|
"""
|
|
13913
14275
|
|
|
13914
14276
|
class _SetVolumeMeshMaxSize(PyTextualCommandArgumentsSubItem):
|
|
@@ -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):
|