ansys-fluent-core 0.35.dev0__py3-none-any.whl → 0.36.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 +2 -2
- ansys/fluent/core/codegen/__init__.py +1 -0
- ansys/fluent/core/codegen/builtin_settingsgen.py +4 -0
- ansys/fluent/core/codegen/datamodelgen.py +13 -2
- ansys/fluent/core/codegen/settingsgen.py +7 -0
- ansys/fluent/core/docker/docker_compose.py +30 -1
- ansys/fluent/core/examples/downloads.py +3 -4
- ansys/fluent/core/fluent_connection.py +2 -3
- 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 +236 -236
- ansys/fluent/core/generated/datamodel_232/flicing.py +50 -50
- ansys/fluent/core/generated/datamodel_232/meshing.py +187 -187
- ansys/fluent/core/generated/datamodel_241/flicing.py +45 -45
- ansys/fluent/core/generated/datamodel_241/meshing.py +229 -229
- ansys/fluent/core/generated/datamodel_242/flicing.py +50 -50
- ansys/fluent/core/generated/datamodel_242/meshing.py +275 -275
- ansys/fluent/core/generated/datamodel_242/part_management.py +3 -3
- ansys/fluent/core/generated/datamodel_251/flicing.py +45 -45
- ansys/fluent/core/generated/datamodel_251/meshing.py +417 -417
- ansys/fluent/core/generated/datamodel_251/part_management.py +9 -9
- ansys/fluent/core/generated/datamodel_252/flicing.py +30 -30
- ansys/fluent/core/generated/datamodel_252/meshing.py +418 -418
- ansys/fluent/core/generated/datamodel_252/part_management.py +5 -5
- ansys/fluent/core/generated/datamodel_261/flicing.py +35 -35
- ansys/fluent/core/generated/datamodel_261/meshing.py +481 -425
- ansys/fluent/core/generated/datamodel_261/meshing_utilities.py +296 -616
- ansys/fluent/core/generated/datamodel_261/meshing_workflow.py +61694 -0
- ansys/fluent/core/generated/datamodel_261/part_management.py +10 -10
- ansys/fluent/core/generated/datamodel_261/preferences.py +56 -0
- ansys/fluent/core/generated/datamodel_261/solver_workflow.py +14 -0
- ansys/fluent/core/generated/fluent_version_261.py +3 -3
- ansys/fluent/core/generated/meshing/tui_261.py +408 -10
- ansys/fluent/core/generated/solver/settings_261.py +15135 -5725
- ansys/fluent/core/generated/solver/settings_261.pyi +10252 -3619
- ansys/fluent/core/generated/solver/tui_261.py +2632 -834
- ansys/fluent/core/launcher/container_launcher.py +12 -3
- ansys/fluent/core/launcher/fluent_container.py +7 -1
- ansys/fluent/core/launcher/launch_options.py +2 -2
- ansys/fluent/core/launcher/launcher.py +2 -6
- ansys/fluent/core/launcher/pim_launcher.py +76 -3
- ansys/fluent/core/launcher/process_launch_string.py +1 -2
- ansys/fluent/core/launcher/slurm_launcher.py +4 -3
- ansys/fluent/core/launcher/standalone_launcher.py +3 -2
- ansys/fluent/core/module_config.py +10 -10
- ansys/fluent/core/report.py +1 -1
- ansys/fluent/core/search.py +12 -0
- ansys/fluent/core/services/__init__.py +2 -0
- ansys/fluent/core/services/datamodel_se.py +4 -1
- ansys/fluent/core/services/field_data.py +24 -0
- ansys/fluent/core/services/reduction.py +2 -0
- ansys/fluent/core/services/settings.py +1 -1
- ansys/fluent/core/services/solution_variables.py +92 -0
- ansys/fluent/core/session.py +1 -2
- ansys/fluent/core/session_base_meshing.py +8 -0
- ansys/fluent/core/session_meshing.py +5 -0
- ansys/fluent/core/session_pure_meshing.py +6 -0
- ansys/fluent/core/session_pure_meshing.pyi +5 -0
- ansys/fluent/core/session_solver.py +5 -4
- ansys/fluent/core/session_utilities.py +8 -5
- ansys/fluent/core/solver/flobject.py +19 -0
- ansys/fluent/core/solver/flunits.py +2 -0
- ansys/fluent/core/solver/function/reduction.py +2 -0
- ansys/fluent/core/ui/__init__.py +64 -0
- ansys/fluent/core/ui/jupyter_ui.py +203 -0
- ansys/fluent/core/ui/standalone_web_ui.py +296 -0
- ansys/fluent/core/ui/utils.py +173 -0
- ansys/fluent/core/utils/deprecate.py +1 -0
- ansys/fluent/core/utils/networking.py +11 -2
- {ansys_fluent_core-0.35.dev0.dist-info → ansys_fluent_core-0.36.dev0.dist-info}/METADATA +29 -22
- {ansys_fluent_core-0.35.dev0.dist-info → ansys_fluent_core-0.36.dev0.dist-info}/RECORD +73 -68
- {ansys_fluent_core-0.35.dev0.dist-info → ansys_fluent_core-0.36.dev0.dist-info}/WHEEL +1 -1
- {ansys_fluent_core-0.35.dev0.dist-info → ansys_fluent_core-0.36.dev0.dist-info/licenses}/LICENSE +0 -0
|
@@ -96,6 +96,7 @@ class Root(PyMenu):
|
|
|
96
96
|
self.ModifyMeshRefinement = self.__class__.ModifyMeshRefinement(service, rules, "ModifyMeshRefinement", path)
|
|
97
97
|
self.PartManagement = self.__class__.PartManagement(service, rules, "PartManagement", path)
|
|
98
98
|
self.PartReplacementSettings = self.__class__.PartReplacementSettings(service, rules, "PartReplacementSettings", path)
|
|
99
|
+
self.PrepareForVolumeMeshing = self.__class__.PrepareForVolumeMeshing(service, rules, "PrepareForVolumeMeshing", path)
|
|
99
100
|
self.RemeshSurface = self.__class__.RemeshSurface(service, rules, "RemeshSurface", path)
|
|
100
101
|
self.RunCustomJournal = self.__class__.RunCustomJournal(service, rules, "RunCustomJournal", path)
|
|
101
102
|
self.SeparateContacts = self.__class__.SeparateContacts(service, rules, "SeparateContacts", path)
|
|
@@ -1302,14 +1303,14 @@ class Root(PyMenu):
|
|
|
1302
1303
|
self.ConnectLabelWildcard = self._ConnectLabelWildcard(self, "ConnectLabelWildcard", service, rules, path)
|
|
1303
1304
|
self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
|
|
1304
1305
|
self.RelativeShareTopologyTolerance = self._RelativeShareTopologyTolerance(self, "RelativeShareTopologyTolerance", service, rules, path)
|
|
1305
|
-
self.
|
|
1306
|
+
self.ShareTopologyAngle = self._ShareTopologyAngle(self, "ShareTopologyAngle", service, rules, path)
|
|
1306
1307
|
self.ExecuteJoinIntersect = self._ExecuteJoinIntersect(self, "ExecuteJoinIntersect", service, rules, path)
|
|
1307
1308
|
self.Operation = self._Operation(self, "Operation", service, rules, path)
|
|
1308
|
-
self.
|
|
1309
|
+
self.FluidLabelWildcard = self._FluidLabelWildcard(self, "FluidLabelWildcard", service, rules, path)
|
|
1309
1310
|
self.STToleranceIncrement = self._STToleranceIncrement(self, "STToleranceIncrement", service, rules, path)
|
|
1310
|
-
self.ShowShareTopologyPreferences = self._ShowShareTopologyPreferences(self, "ShowShareTopologyPreferences", service, rules, path)
|
|
1311
|
-
self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
|
|
1312
1311
|
self.IntfLabelList = self._IntfLabelList(self, "IntfLabelList", service, rules, path)
|
|
1312
|
+
self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
|
|
1313
|
+
self.ShowShareTopologyPreferences = self._ShowShareTopologyPreferences(self, "ShowShareTopologyPreferences", service, rules, path)
|
|
1313
1314
|
self.AdvancedImprove = self._AdvancedImprove(self, "AdvancedImprove", service, rules, path)
|
|
1314
1315
|
self.NumberOfJoinTries = self._NumberOfJoinTries(self, "NumberOfJoinTries", service, rules, path)
|
|
1315
1316
|
|
|
@@ -1338,9 +1339,9 @@ class Root(PyMenu):
|
|
|
1338
1339
|
Specify the relative tolerance for joining or intersecting face pairs, or the relative tolerance for connecting edge and face pairs.
|
|
1339
1340
|
"""
|
|
1340
1341
|
|
|
1341
|
-
class
|
|
1342
|
+
class _ShareTopologyAngle(PyNumericalCommandArgumentsSubItem):
|
|
1342
1343
|
"""
|
|
1343
|
-
|
|
1344
|
+
Specify the threshold angle for joining face pairs.
|
|
1344
1345
|
"""
|
|
1345
1346
|
|
|
1346
1347
|
class _ExecuteJoinIntersect(PyTextualCommandArgumentsSubItem):
|
|
@@ -1353,9 +1354,9 @@ class Root(PyMenu):
|
|
|
1353
1354
|
Choose whether to apply share topology using the Join-Intersect method where you join and/or intersect the problematic faces, or using the Interface Connect method where you connect edges of overlapping face pairs. Note that imprinting of overlapping faces in SCDM/Discovery is highly recommended for the Interface Connect method.
|
|
1354
1355
|
"""
|
|
1355
1356
|
|
|
1356
|
-
class
|
|
1357
|
+
class _FluidLabelWildcard(PyTextualCommandArgumentsSubItem):
|
|
1357
1358
|
"""
|
|
1358
|
-
|
|
1359
|
+
Argument FluidLabelWildcard.
|
|
1359
1360
|
"""
|
|
1360
1361
|
|
|
1361
1362
|
class _STToleranceIncrement(PyNumericalCommandArgumentsSubItem):
|
|
@@ -1363,9 +1364,9 @@ class Root(PyMenu):
|
|
|
1363
1364
|
Specify the increment by which the tolerance changes for each attempt to join face pairs.
|
|
1364
1365
|
"""
|
|
1365
1366
|
|
|
1366
|
-
class
|
|
1367
|
+
class _IntfLabelList(PyTextualCommandArgumentsSubItem):
|
|
1367
1368
|
"""
|
|
1368
|
-
|
|
1369
|
+
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...
|
|
1369
1370
|
"""
|
|
1370
1371
|
|
|
1371
1372
|
class _PerLabelList(PyTextualCommandArgumentsSubItem):
|
|
@@ -1373,9 +1374,9 @@ class Root(PyMenu):
|
|
|
1373
1374
|
Argument PerLabelList.
|
|
1374
1375
|
"""
|
|
1375
1376
|
|
|
1376
|
-
class
|
|
1377
|
+
class _ShowShareTopologyPreferences(PyParameterCommandArgumentsSubItem):
|
|
1377
1378
|
"""
|
|
1378
|
-
|
|
1379
|
+
Display advanced options that you may want to apply to the task.
|
|
1379
1380
|
"""
|
|
1380
1381
|
|
|
1381
1382
|
class _AdvancedImprove(PyTextualCommandArgumentsSubItem):
|
|
@@ -1522,23 +1523,23 @@ class Root(PyMenu):
|
|
|
1522
1523
|
|
|
1523
1524
|
def __init__(self, parent, attr, service, rules, path):
|
|
1524
1525
|
super().__init__(parent, attr, service, rules, path)
|
|
1525
|
-
self.ShowShellBLAdvancedOptions = self._ShowShellBLAdvancedOptions(self, "ShowShellBLAdvancedOptions", service, rules, path)
|
|
1526
1526
|
self.ExposeSide = self._ExposeSide(self, "ExposeSide", service, rules, path)
|
|
1527
|
+
self.ShowShellBLAdvancedOptions = self._ShowShellBLAdvancedOptions(self, "ShowShellBLAdvancedOptions", service, rules, path)
|
|
1527
1528
|
self.MaxAspectRatio = self._MaxAspectRatio(self, "MaxAspectRatio", service, rules, path)
|
|
1528
1529
|
self.MinAspectRatio = self._MinAspectRatio(self, "MinAspectRatio", service, rules, path)
|
|
1529
|
-
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
1530
1530
|
self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
|
|
1531
|
+
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
1531
1532
|
self.GapFactor = self._GapFactor(self, "GapFactor", service, rules, path)
|
|
1532
1533
|
self.AdjacentAttachAngle = self._AdjacentAttachAngle(self, "AdjacentAttachAngle", service, rules, path)
|
|
1533
1534
|
|
|
1534
|
-
class
|
|
1535
|
+
class _ExposeSide(PyTextualCommandArgumentsSubItem):
|
|
1535
1536
|
"""
|
|
1536
|
-
Argument
|
|
1537
|
+
Argument ExposeSide.
|
|
1537
1538
|
"""
|
|
1538
1539
|
|
|
1539
|
-
class
|
|
1540
|
+
class _ShowShellBLAdvancedOptions(PyParameterCommandArgumentsSubItem):
|
|
1540
1541
|
"""
|
|
1541
|
-
Argument
|
|
1542
|
+
Argument ShowShellBLAdvancedOptions.
|
|
1542
1543
|
"""
|
|
1543
1544
|
|
|
1544
1545
|
class _MaxAspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -1551,14 +1552,14 @@ class Root(PyMenu):
|
|
|
1551
1552
|
Argument MinAspectRatio.
|
|
1552
1553
|
"""
|
|
1553
1554
|
|
|
1554
|
-
class
|
|
1555
|
+
class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
|
|
1555
1556
|
"""
|
|
1556
|
-
Argument
|
|
1557
|
+
Argument LastRatioNumLayers.
|
|
1557
1558
|
"""
|
|
1558
1559
|
|
|
1559
|
-
class
|
|
1560
|
+
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
1560
1561
|
"""
|
|
1561
|
-
Argument
|
|
1562
|
+
Argument LastRatioPercentage.
|
|
1562
1563
|
"""
|
|
1563
1564
|
|
|
1564
1565
|
class _GapFactor(PyNumericalCommandArgumentsSubItem):
|
|
@@ -1769,12 +1770,12 @@ class Root(PyMenu):
|
|
|
1769
1770
|
self.SphereRadiusFactorAtInvalidNormals = self._SphereRadiusFactorAtInvalidNormals(self, "SphereRadiusFactorAtInvalidNormals", service, rules, path)
|
|
1770
1771
|
self.SmoothRingsAtInvalidNormals = self._SmoothRingsAtInvalidNormals(self, "SmoothRingsAtInvalidNormals", service, rules, path)
|
|
1771
1772
|
self.Continuous = self._Continuous(self, "Continuous", service, rules, path)
|
|
1772
|
-
self.ModifyAtInvalidNormals = self._ModifyAtInvalidNormals(self, "ModifyAtInvalidNormals", service, rules, path)
|
|
1773
1773
|
self.SplitPrism = self._SplitPrism(self, "SplitPrism", service, rules, path)
|
|
1774
|
+
self.ModifyAtInvalidNormals = self._ModifyAtInvalidNormals(self, "ModifyAtInvalidNormals", service, rules, path)
|
|
1774
1775
|
self.InvalidNormalMethod = self._InvalidNormalMethod(self, "InvalidNormalMethod", service, rules, path)
|
|
1775
|
-
self.NumberOfSplitLayers = self._NumberOfSplitLayers(self, "NumberOfSplitLayers", service, rules, path)
|
|
1776
|
-
self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
|
|
1777
1776
|
self.ShowLocalPrismPreferences = self._ShowLocalPrismPreferences(self, "ShowLocalPrismPreferences", service, rules, path)
|
|
1777
|
+
self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
|
|
1778
|
+
self.NumberOfSplitLayers = self._NumberOfSplitLayers(self, "NumberOfSplitLayers", service, rules, path)
|
|
1778
1779
|
self.AllowedTangencyAtInvalidNormals = self._AllowedTangencyAtInvalidNormals(self, "AllowedTangencyAtInvalidNormals", service, rules, path)
|
|
1779
1780
|
self.RemeshAtInvalidNormals = self._RemeshAtInvalidNormals(self, "RemeshAtInvalidNormals", service, rules, path)
|
|
1780
1781
|
self.IgnoreBoundaryLayers = self._IgnoreBoundaryLayers(self, "IgnoreBoundaryLayers", service, rules, path)
|
|
@@ -1804,14 +1805,14 @@ class Root(PyMenu):
|
|
|
1804
1805
|
Specify how you would like to improve the generated boundary layer: as a continuous or stair-stepped boundary layer in the specified area(s).
|
|
1805
1806
|
"""
|
|
1806
1807
|
|
|
1807
|
-
class
|
|
1808
|
+
class _SplitPrism(PyTextualCommandArgumentsSubItem):
|
|
1808
1809
|
"""
|
|
1809
|
-
|
|
1810
|
+
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.
|
|
1810
1811
|
"""
|
|
1811
1812
|
|
|
1812
|
-
class
|
|
1813
|
+
class _ModifyAtInvalidNormals(PyTextualCommandArgumentsSubItem):
|
|
1813
1814
|
"""
|
|
1814
|
-
|
|
1815
|
+
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...
|
|
1815
1816
|
"""
|
|
1816
1817
|
|
|
1817
1818
|
class _InvalidNormalMethod(PyTextualCommandArgumentsSubItem):
|
|
@@ -1819,9 +1820,9 @@ class Root(PyMenu):
|
|
|
1819
1820
|
Argument InvalidNormalMethod.
|
|
1820
1821
|
"""
|
|
1821
1822
|
|
|
1822
|
-
class
|
|
1823
|
+
class _ShowLocalPrismPreferences(PyParameterCommandArgumentsSubItem):
|
|
1823
1824
|
"""
|
|
1824
|
-
|
|
1825
|
+
Display advanced options that you may want to apply to this task.
|
|
1825
1826
|
"""
|
|
1826
1827
|
|
|
1827
1828
|
class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
|
|
@@ -1829,9 +1830,9 @@ class Root(PyMenu):
|
|
|
1829
1830
|
Argument LastRatioNumLayers.
|
|
1830
1831
|
"""
|
|
1831
1832
|
|
|
1832
|
-
class
|
|
1833
|
+
class _NumberOfSplitLayers(PyNumericalCommandArgumentsSubItem):
|
|
1833
1834
|
"""
|
|
1834
|
-
|
|
1835
|
+
Indicate the number of split prism layers you wish to apply to each layer that you specified for the boundary layer definition.
|
|
1835
1836
|
"""
|
|
1836
1837
|
|
|
1837
1838
|
class _AllowedTangencyAtInvalidNormals(PyNumericalCommandArgumentsSubItem):
|
|
@@ -2301,6 +2302,7 @@ class Root(PyMenu):
|
|
|
2301
2302
|
----------
|
|
2302
2303
|
LocalSettingsName : str
|
|
2303
2304
|
Specify a name for the size control or use the default value.
|
|
2305
|
+
ComputeForSolidOnly : str
|
|
2304
2306
|
SelectionType : str
|
|
2305
2307
|
Choose how you want to make your selection (by object, label, or zone name).
|
|
2306
2308
|
ObjectSelectionList : list[str]
|
|
@@ -2331,6 +2333,7 @@ class Root(PyMenu):
|
|
|
2331
2333
|
def __init__(self, service, rules, command, path, id):
|
|
2332
2334
|
super().__init__(service, rules, command, path, id)
|
|
2333
2335
|
self.LocalSettingsName = self._LocalSettingsName(self, "LocalSettingsName", service, rules, path)
|
|
2336
|
+
self.ComputeForSolidOnly = self._ComputeForSolidOnly(self, "ComputeForSolidOnly", service, rules, path)
|
|
2334
2337
|
self.SelectionType = self._SelectionType(self, "SelectionType", service, rules, path)
|
|
2335
2338
|
self.ObjectSelectionList = self._ObjectSelectionList(self, "ObjectSelectionList", service, rules, path)
|
|
2336
2339
|
self.LabelSelectionList = self._LabelSelectionList(self, "LabelSelectionList", service, rules, path)
|
|
@@ -2349,6 +2352,11 @@ class Root(PyMenu):
|
|
|
2349
2352
|
Specify a name for the size control or use the default value.
|
|
2350
2353
|
"""
|
|
2351
2354
|
|
|
2355
|
+
class _ComputeForSolidOnly(PyTextualCommandArgumentsSubItem):
|
|
2356
|
+
"""
|
|
2357
|
+
Argument ComputeForSolidOnly.
|
|
2358
|
+
"""
|
|
2359
|
+
|
|
2352
2360
|
class _SelectionType(PyTextualCommandArgumentsSubItem):
|
|
2353
2361
|
"""
|
|
2354
2362
|
Choose how you want to make your selection (by object, label, or zone name).
|
|
@@ -2395,11 +2403,11 @@ class Root(PyMenu):
|
|
|
2395
2403
|
self.MinSize = self._MinSize(self, "MinSize", service, rules, path)
|
|
2396
2404
|
self.WrapMax = self._WrapMax(self, "WrapMax", service, rules, path)
|
|
2397
2405
|
self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
|
|
2398
|
-
self.SizingType = self._SizingType(self, "SizingType", service, rules, path)
|
|
2399
2406
|
self.InitialSizeControl = self._InitialSizeControl(self, "InitialSizeControl", service, rules, path)
|
|
2407
|
+
self.SizingType = self._SizingType(self, "SizingType", service, rules, path)
|
|
2400
2408
|
self.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", service, rules, path)
|
|
2401
|
-
self.WrapCurvatureNormalAngle = self._WrapCurvatureNormalAngle(self, "WrapCurvatureNormalAngle", service, rules, path)
|
|
2402
2409
|
self.CellsPerGap = self._CellsPerGap(self, "CellsPerGap", service, rules, path)
|
|
2410
|
+
self.WrapCurvatureNormalAngle = self._WrapCurvatureNormalAngle(self, "WrapCurvatureNormalAngle", service, rules, path)
|
|
2403
2411
|
self.TargetSizeControl = self._TargetSizeControl(self, "TargetSizeControl", service, rules, path)
|
|
2404
2412
|
self.GrowthRate = self._GrowthRate(self, "GrowthRate", service, rules, path)
|
|
2405
2413
|
|
|
@@ -2448,14 +2456,14 @@ class Root(PyMenu):
|
|
|
2448
2456
|
Display advanced wrap-specific options that are also applied to the task. See this description for more information about wrap (and target) mesh size controls.
|
|
2449
2457
|
"""
|
|
2450
2458
|
|
|
2451
|
-
class
|
|
2459
|
+
class _InitialSizeControl(PyParameterCommandArgumentsSubItem):
|
|
2452
2460
|
"""
|
|
2453
|
-
|
|
2461
|
+
Enable this field to display the initial size control in the graphics window.
|
|
2454
2462
|
"""
|
|
2455
2463
|
|
|
2456
|
-
class
|
|
2464
|
+
class _SizingType(PyTextualCommandArgumentsSubItem):
|
|
2457
2465
|
"""
|
|
2458
|
-
|
|
2466
|
+
Choose the type of sizing control (curvature, proximity, soft, or boi).
|
|
2459
2467
|
"""
|
|
2460
2468
|
|
|
2461
2469
|
class _WrapGrowthRate(PyNumericalCommandArgumentsSubItem):
|
|
@@ -2463,14 +2471,14 @@ class Root(PyMenu):
|
|
|
2463
2471
|
Specify the increase in element edge length with each succeeding layer of elements.
|
|
2464
2472
|
"""
|
|
2465
2473
|
|
|
2466
|
-
class
|
|
2474
|
+
class _CellsPerGap(PyNumericalCommandArgumentsSubItem):
|
|
2467
2475
|
"""
|
|
2468
|
-
Specify the
|
|
2476
|
+
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.
|
|
2469
2477
|
"""
|
|
2470
2478
|
|
|
2471
|
-
class
|
|
2479
|
+
class _WrapCurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
2472
2480
|
"""
|
|
2473
|
-
Specify the
|
|
2481
|
+
Specify the maximum allowable angle (from 0 to 180 degrees) that one element edge is allowed to span given a particular geometry curvature. You can use this field to limit the number of elements that are generated along a curve or surface if the minimum size is too small for that particular curve.
|
|
2474
2482
|
"""
|
|
2475
2483
|
|
|
2476
2484
|
class _TargetSizeControl(PyParameterCommandArgumentsSubItem):
|
|
@@ -2546,6 +2554,7 @@ class Root(PyMenu):
|
|
|
2546
2554
|
Set curvature or proximity based refinement. The edges option considers edge-to-edge proximity, while faces considers face-to-face proximity, and faces and edges considers both. The edge labels option considers edge sizing based on edge labels. Note that when you use the edges or the faces and edges options, you can only select face zones or face labels. Also, saving a size control file after using either of these two options will not be persistent.
|
|
2547
2555
|
IgnoreOrientation : str
|
|
2548
2556
|
Specify whether or not you need to apply additional refinement in and around thin areas (such as between plates), without over-refinement. This ignores face proximity within voids and will not allow you to refine in thin voids, but will allow refinement in gaps. This should be used in predominantly fluid regions with no thin solid regions.
|
|
2557
|
+
IgnoreProximityAcrossObjects : str
|
|
2549
2558
|
BOIZoneorLabel : str
|
|
2550
2559
|
Choose how you want to select your surface (by label or by zone).
|
|
2551
2560
|
BOIFaceLabelList : list[str]
|
|
@@ -2592,6 +2601,7 @@ class Root(PyMenu):
|
|
|
2592
2601
|
self.BOICellsPerGap = self._BOICellsPerGap(self, "BOICellsPerGap", service, rules, path)
|
|
2593
2602
|
self.BOIScopeTo = self._BOIScopeTo(self, "BOIScopeTo", service, rules, path)
|
|
2594
2603
|
self.IgnoreOrientation = self._IgnoreOrientation(self, "IgnoreOrientation", service, rules, path)
|
|
2604
|
+
self.IgnoreProximityAcrossObjects = self._IgnoreProximityAcrossObjects(self, "IgnoreProximityAcrossObjects", service, rules, path)
|
|
2595
2605
|
self.BOIZoneorLabel = self._BOIZoneorLabel(self, "BOIZoneorLabel", service, rules, path)
|
|
2596
2606
|
self.BOIFaceLabelList = self._BOIFaceLabelList(self, "BOIFaceLabelList", service, rules, path)
|
|
2597
2607
|
self.BOIFaceZoneList = self._BOIFaceZoneList(self, "BOIFaceZoneList", service, rules, path)
|
|
@@ -2694,6 +2704,11 @@ class Root(PyMenu):
|
|
|
2694
2704
|
Specify whether or not you need to apply additional refinement in and around thin areas (such as between plates), without over-refinement. This ignores face proximity within voids and will not allow you to refine in thin voids, but will allow refinement in gaps. This should be used in predominantly fluid regions with no thin solid regions.
|
|
2695
2705
|
"""
|
|
2696
2706
|
|
|
2707
|
+
class _IgnoreProximityAcrossObjects(PyTextualCommandArgumentsSubItem):
|
|
2708
|
+
"""
|
|
2709
|
+
Argument IgnoreProximityAcrossObjects.
|
|
2710
|
+
"""
|
|
2711
|
+
|
|
2697
2712
|
class _BOIZoneorLabel(PyTextualCommandArgumentsSubItem):
|
|
2698
2713
|
"""
|
|
2699
2714
|
Choose how you want to select your surface (by label or by zone).
|
|
@@ -3249,8 +3264,8 @@ class Root(PyMenu):
|
|
|
3249
3264
|
|
|
3250
3265
|
def __init__(self, parent, attr, service, rules, path):
|
|
3251
3266
|
super().__init__(parent, attr, service, rules, path)
|
|
3252
|
-
self.ShowShellBLAdvancedOptions = self._ShowShellBLAdvancedOptions(self, "ShowShellBLAdvancedOptions", service, rules, path)
|
|
3253
3267
|
self.ExposeSide = self._ExposeSide(self, "ExposeSide", service, rules, path)
|
|
3268
|
+
self.ShowShellBLAdvancedOptions = self._ShowShellBLAdvancedOptions(self, "ShowShellBLAdvancedOptions", service, rules, path)
|
|
3254
3269
|
self.MaxAspectRatio = self._MaxAspectRatio(self, "MaxAspectRatio", service, rules, path)
|
|
3255
3270
|
self.MinAspectRatio = self._MinAspectRatio(self, "MinAspectRatio", service, rules, path)
|
|
3256
3271
|
self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
|
|
@@ -3258,14 +3273,14 @@ class Root(PyMenu):
|
|
|
3258
3273
|
self.GapFactor = self._GapFactor(self, "GapFactor", service, rules, path)
|
|
3259
3274
|
self.AdjacentAttachAngle = self._AdjacentAttachAngle(self, "AdjacentAttachAngle", service, rules, path)
|
|
3260
3275
|
|
|
3261
|
-
class
|
|
3276
|
+
class _ExposeSide(PyTextualCommandArgumentsSubItem):
|
|
3262
3277
|
"""
|
|
3263
|
-
Argument
|
|
3278
|
+
Argument ExposeSide.
|
|
3264
3279
|
"""
|
|
3265
3280
|
|
|
3266
|
-
class
|
|
3281
|
+
class _ShowShellBLAdvancedOptions(PyParameterCommandArgumentsSubItem):
|
|
3267
3282
|
"""
|
|
3268
|
-
Argument
|
|
3283
|
+
Argument ShowShellBLAdvancedOptions.
|
|
3269
3284
|
"""
|
|
3270
3285
|
|
|
3271
3286
|
class _MaxAspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4164,11 +4179,11 @@ class Root(PyMenu):
|
|
|
4164
4179
|
super().__init__(parent, attr, service, rules, path)
|
|
4165
4180
|
self.TargeSizeFieldFileName = self._TargeSizeFieldFileName(self, "TargeSizeFieldFileName", service, rules, path)
|
|
4166
4181
|
self.WrapTargetSizeFieldRatio = self._WrapTargetSizeFieldRatio(self, "WrapTargetSizeFieldRatio", service, rules, path)
|
|
4167
|
-
self.
|
|
4182
|
+
self.WrapTargetBothOptions = self._WrapTargetBothOptions(self, "WrapTargetBothOptions", service, rules, path)
|
|
4168
4183
|
self.SolidFluidRaio = self._SolidFluidRaio(self, "SolidFluidRaio", service, rules, path)
|
|
4169
4184
|
self.BoundaryLayers = self._BoundaryLayers(self, "BoundaryLayers", service, rules, path)
|
|
4170
4185
|
self.EdgeProximityComputation = self._EdgeProximityComputation(self, "EdgeProximityComputation", service, rules, path)
|
|
4171
|
-
self.
|
|
4186
|
+
self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
|
|
4172
4187
|
self.SolidFluidRatio = self._SolidFluidRatio(self, "SolidFluidRatio", service, rules, path)
|
|
4173
4188
|
self.TargetSizeFieldFileName = self._TargetSizeFieldFileName(self, "TargetSizeFieldFileName", service, rules, path)
|
|
4174
4189
|
self.ExistingSizeField = self._ExistingSizeField(self, "ExistingSizeField", service, rules, path)
|
|
@@ -4186,9 +4201,9 @@ class Root(PyMenu):
|
|
|
4186
4201
|
The ratio of the initial wrap size field and the local target size field.
|
|
4187
4202
|
"""
|
|
4188
4203
|
|
|
4189
|
-
class
|
|
4204
|
+
class _WrapTargetBothOptions(PyTextualCommandArgumentsSubItem):
|
|
4190
4205
|
"""
|
|
4191
|
-
|
|
4206
|
+
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.
|
|
4192
4207
|
"""
|
|
4193
4208
|
|
|
4194
4209
|
class _SolidFluidRaio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4206,9 +4221,9 @@ class Root(PyMenu):
|
|
|
4206
4221
|
For geometries having a very large number of small feature edges, select Yes to speed up the calculation and reduce memory requirements when using a proximity size function.
|
|
4207
4222
|
"""
|
|
4208
4223
|
|
|
4209
|
-
class
|
|
4224
|
+
class _AdvancedOptions(PyParameterCommandArgumentsSubItem):
|
|
4210
4225
|
"""
|
|
4211
|
-
|
|
4226
|
+
Display advanced options that you may want to apply to the task.
|
|
4212
4227
|
"""
|
|
4213
4228
|
|
|
4214
4229
|
class _SolidFluidRatio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4599,13 +4614,13 @@ class Root(PyMenu):
|
|
|
4599
4614
|
self.Y = self._Y(self, "Y", service, rules, path)
|
|
4600
4615
|
self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
|
|
4601
4616
|
self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
|
|
4617
|
+
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
4602
4618
|
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
4603
|
-
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
|
|
4604
4619
|
self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
|
|
4605
4620
|
self.FlowDirection = self._FlowDirection(self, "FlowDirection", service, rules, path)
|
|
4606
4621
|
self.MptMethodType = self._MptMethodType(self, "MptMethodType", service, rules, path)
|
|
4607
4622
|
self.EdgeSelectionList = self._EdgeSelectionList(self, "EdgeSelectionList", service, rules, path)
|
|
4608
|
-
self.
|
|
4623
|
+
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
|
|
4609
4624
|
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
4610
4625
|
self.X = self._X(self, "X", service, rules, path)
|
|
4611
4626
|
self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
|
|
@@ -4644,14 +4659,14 @@ class Root(PyMenu):
|
|
|
4644
4659
|
Argument AspectRatio.
|
|
4645
4660
|
"""
|
|
4646
4661
|
|
|
4647
|
-
class
|
|
4662
|
+
class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
|
|
4648
4663
|
"""
|
|
4649
|
-
Argument
|
|
4664
|
+
Argument NumberOfLayers.
|
|
4650
4665
|
"""
|
|
4651
4666
|
|
|
4652
|
-
class
|
|
4667
|
+
class _Rate(PyNumericalCommandArgumentsSubItem):
|
|
4653
4668
|
"""
|
|
4654
|
-
Argument
|
|
4669
|
+
Argument Rate.
|
|
4655
4670
|
"""
|
|
4656
4671
|
|
|
4657
4672
|
class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4674,9 +4689,9 @@ class Root(PyMenu):
|
|
|
4674
4689
|
Argument EdgeSelectionList.
|
|
4675
4690
|
"""
|
|
4676
4691
|
|
|
4677
|
-
class
|
|
4692
|
+
class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
|
|
4678
4693
|
"""
|
|
4679
|
-
Argument
|
|
4694
|
+
Argument WakeGrowthFactor.
|
|
4680
4695
|
"""
|
|
4681
4696
|
|
|
4682
4697
|
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4873,18 +4888,18 @@ class Root(PyMenu):
|
|
|
4873
4888
|
def __init__(self, parent, attr, service, rules, path):
|
|
4874
4889
|
super().__init__(parent, attr, service, rules, path)
|
|
4875
4890
|
self.CylinderZ2 = self._CylinderZ2(self, "CylinderZ2", service, rules, path)
|
|
4876
|
-
self.CylinderX2 = self._CylinderX2(self, "CylinderX2", service, rules, path)
|
|
4877
4891
|
self.BoxYLength = self._BoxYLength(self, "BoxYLength", service, rules, path)
|
|
4892
|
+
self.CylinderX2 = self._CylinderX2(self, "CylinderX2", service, rules, path)
|
|
4878
4893
|
self.CylinderX1 = self._CylinderX1(self, "CylinderX1", service, rules, path)
|
|
4879
|
-
self.BoxXLength = self._BoxXLength(self, "BoxXLength", service, rules, path)
|
|
4880
|
-
self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
|
|
4881
4894
|
self.BoxZLength = self._BoxZLength(self, "BoxZLength", service, rules, path)
|
|
4895
|
+
self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
|
|
4896
|
+
self.BoxXLength = self._BoxXLength(self, "BoxXLength", service, rules, path)
|
|
4882
4897
|
self.BoxCenterY = self._BoxCenterY(self, "BoxCenterY", service, rules, path)
|
|
4883
4898
|
self.CylinderZ1 = self._CylinderZ1(self, "CylinderZ1", service, rules, path)
|
|
4884
4899
|
self.CylinderRadius1 = self._CylinderRadius1(self, "CylinderRadius1", service, rules, path)
|
|
4885
4900
|
self.BoxCenterX = self._BoxCenterX(self, "BoxCenterX", service, rules, path)
|
|
4886
|
-
self.CylinderRadius2 = self._CylinderRadius2(self, "CylinderRadius2", service, rules, path)
|
|
4887
4901
|
self.BoxCenterZ = self._BoxCenterZ(self, "BoxCenterZ", service, rules, path)
|
|
4902
|
+
self.CylinderRadius2 = self._CylinderRadius2(self, "CylinderRadius2", service, rules, path)
|
|
4888
4903
|
self.CylinderY2 = self._CylinderY2(self, "CylinderY2", service, rules, path)
|
|
4889
4904
|
|
|
4890
4905
|
class _CylinderZ2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4892,14 +4907,14 @@ class Root(PyMenu):
|
|
|
4892
4907
|
Argument CylinderZ2.
|
|
4893
4908
|
"""
|
|
4894
4909
|
|
|
4895
|
-
class
|
|
4910
|
+
class _BoxYLength(PyNumericalCommandArgumentsSubItem):
|
|
4896
4911
|
"""
|
|
4897
|
-
Argument
|
|
4912
|
+
Argument BoxYLength.
|
|
4898
4913
|
"""
|
|
4899
4914
|
|
|
4900
|
-
class
|
|
4915
|
+
class _CylinderX2(PyNumericalCommandArgumentsSubItem):
|
|
4901
4916
|
"""
|
|
4902
|
-
Argument
|
|
4917
|
+
Argument CylinderX2.
|
|
4903
4918
|
"""
|
|
4904
4919
|
|
|
4905
4920
|
class _CylinderX1(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4907,9 +4922,9 @@ class Root(PyMenu):
|
|
|
4907
4922
|
Argument CylinderX1.
|
|
4908
4923
|
"""
|
|
4909
4924
|
|
|
4910
|
-
class
|
|
4925
|
+
class _BoxZLength(PyNumericalCommandArgumentsSubItem):
|
|
4911
4926
|
"""
|
|
4912
|
-
Argument
|
|
4927
|
+
Argument BoxZLength.
|
|
4913
4928
|
"""
|
|
4914
4929
|
|
|
4915
4930
|
class _CylinderY1(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4917,9 +4932,9 @@ class Root(PyMenu):
|
|
|
4917
4932
|
Argument CylinderY1.
|
|
4918
4933
|
"""
|
|
4919
4934
|
|
|
4920
|
-
class
|
|
4935
|
+
class _BoxXLength(PyNumericalCommandArgumentsSubItem):
|
|
4921
4936
|
"""
|
|
4922
|
-
Argument
|
|
4937
|
+
Argument BoxXLength.
|
|
4923
4938
|
"""
|
|
4924
4939
|
|
|
4925
4940
|
class _BoxCenterY(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4942,14 +4957,14 @@ class Root(PyMenu):
|
|
|
4942
4957
|
Argument BoxCenterX.
|
|
4943
4958
|
"""
|
|
4944
4959
|
|
|
4945
|
-
class
|
|
4960
|
+
class _BoxCenterZ(PyNumericalCommandArgumentsSubItem):
|
|
4946
4961
|
"""
|
|
4947
|
-
Argument
|
|
4962
|
+
Argument BoxCenterZ.
|
|
4948
4963
|
"""
|
|
4949
4964
|
|
|
4950
|
-
class
|
|
4965
|
+
class _CylinderRadius2(PyNumericalCommandArgumentsSubItem):
|
|
4951
4966
|
"""
|
|
4952
|
-
Argument
|
|
4967
|
+
Argument CylinderRadius2.
|
|
4953
4968
|
"""
|
|
4954
4969
|
|
|
4955
4970
|
class _CylinderY2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5186,17 +5201,17 @@ class Root(PyMenu):
|
|
|
5186
5201
|
self.Y = self._Y(self, "Y", service, rules, path)
|
|
5187
5202
|
self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
|
|
5188
5203
|
self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
|
|
5189
|
-
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
5190
|
-
self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
|
|
5191
5204
|
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
|
|
5205
|
+
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
5206
|
+
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
5192
5207
|
self.FlowDirection = self._FlowDirection(self, "FlowDirection", service, rules, path)
|
|
5193
5208
|
self.MptMethodType = self._MptMethodType(self, "MptMethodType", service, rules, path)
|
|
5194
5209
|
self.EdgeSelectionList = self._EdgeSelectionList(self, "EdgeSelectionList", service, rules, path)
|
|
5195
|
-
self.
|
|
5196
|
-
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
5210
|
+
self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
|
|
5197
5211
|
self.X = self._X(self, "X", service, rules, path)
|
|
5198
|
-
self.
|
|
5212
|
+
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
5199
5213
|
self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
|
|
5214
|
+
self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
|
|
5200
5215
|
self.FirstHeight = self._FirstHeight(self, "FirstHeight", service, rules, path)
|
|
5201
5216
|
self.BoundaryLayerHeight = self._BoundaryLayerHeight(self, "BoundaryLayerHeight", service, rules, path)
|
|
5202
5217
|
self.CrossWakeGrowthFactor = self._CrossWakeGrowthFactor(self, "CrossWakeGrowthFactor", service, rules, path)
|
|
@@ -5231,19 +5246,19 @@ class Root(PyMenu):
|
|
|
5231
5246
|
Argument BoundaryLayerLevels.
|
|
5232
5247
|
"""
|
|
5233
5248
|
|
|
5234
|
-
class
|
|
5249
|
+
class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
|
|
5235
5250
|
"""
|
|
5236
|
-
Argument
|
|
5251
|
+
Argument WakeGrowthFactor.
|
|
5237
5252
|
"""
|
|
5238
5253
|
|
|
5239
|
-
class
|
|
5254
|
+
class _Rate(PyNumericalCommandArgumentsSubItem):
|
|
5240
5255
|
"""
|
|
5241
|
-
Argument
|
|
5256
|
+
Argument Rate.
|
|
5242
5257
|
"""
|
|
5243
5258
|
|
|
5244
|
-
class
|
|
5259
|
+
class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
|
|
5245
5260
|
"""
|
|
5246
|
-
Argument
|
|
5261
|
+
Argument NumberOfLayers.
|
|
5247
5262
|
"""
|
|
5248
5263
|
|
|
5249
5264
|
class _FlowDirection(PyTextualCommandArgumentsSubItem):
|
|
@@ -5261,14 +5276,9 @@ class Root(PyMenu):
|
|
|
5261
5276
|
Choose a single edge zone from the list below for your edge-based collar mesh. Use the Filter Text field to provide text and/or regular expressions in filtering the list. The matching list item(s) are automatically displayed in the list. Use ^, |, and & in your expression to indicate boolean operations for NOT, OR, and AND, respectively. More...
|
|
5262
5277
|
"""
|
|
5263
5278
|
|
|
5264
|
-
class
|
|
5265
|
-
"""
|
|
5266
|
-
Argument NumberOfLayers.
|
|
5267
|
-
"""
|
|
5268
|
-
|
|
5269
|
-
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
5279
|
+
class _AspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
5270
5280
|
"""
|
|
5271
|
-
Argument
|
|
5281
|
+
Argument AspectRatio.
|
|
5272
5282
|
"""
|
|
5273
5283
|
|
|
5274
5284
|
class _X(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5276,9 +5286,9 @@ class Root(PyMenu):
|
|
|
5276
5286
|
Specify the x-coordinate of the offset collar mesh.
|
|
5277
5287
|
"""
|
|
5278
5288
|
|
|
5279
|
-
class
|
|
5289
|
+
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
5280
5290
|
"""
|
|
5281
|
-
Argument
|
|
5291
|
+
Argument LastRatioPercentage.
|
|
5282
5292
|
"""
|
|
5283
5293
|
|
|
5284
5294
|
class _OffsetMethodType(PyTextualCommandArgumentsSubItem):
|
|
@@ -5286,6 +5296,11 @@ class Root(PyMenu):
|
|
|
5286
5296
|
Argument OffsetMethodType.
|
|
5287
5297
|
"""
|
|
5288
5298
|
|
|
5299
|
+
class _FlipDirection(PyParameterCommandArgumentsSubItem):
|
|
5300
|
+
"""
|
|
5301
|
+
Argument FlipDirection.
|
|
5302
|
+
"""
|
|
5303
|
+
|
|
5289
5304
|
class _FirstHeight(PyNumericalCommandArgumentsSubItem):
|
|
5290
5305
|
"""
|
|
5291
5306
|
Argument FirstHeight.
|
|
@@ -5319,15 +5334,15 @@ class Root(PyMenu):
|
|
|
5319
5334
|
self.X1 = self._X1(self, "X1", service, rules, path)
|
|
5320
5335
|
self.Y1 = self._Y1(self, "Y1", service, rules, path)
|
|
5321
5336
|
self.Z_Offset = self._Z_Offset(self, "Z-Offset", service, rules, path)
|
|
5322
|
-
self.Z1 = self._Z1(self, "Z1", service, rules, path)
|
|
5323
|
-
self.Node1 = self._Node1(self, "Node1", service, rules, path)
|
|
5324
5337
|
self.Z2 = self._Z2(self, "Z2", service, rules, path)
|
|
5338
|
+
self.Node1 = self._Node1(self, "Node1", service, rules, path)
|
|
5339
|
+
self.Z1 = self._Z1(self, "Z1", service, rules, path)
|
|
5325
5340
|
self.Radius2 = self._Radius2(self, "Radius2", service, rules, path)
|
|
5326
5341
|
self.Y2 = self._Y2(self, "Y2", service, rules, path)
|
|
5327
5342
|
self.Node3 = self._Node3(self, "Node3", service, rules, path)
|
|
5328
|
-
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
5329
|
-
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
5330
5343
|
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
5344
|
+
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
5345
|
+
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
5331
5346
|
self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
|
|
5332
5347
|
self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
|
|
5333
5348
|
|
|
@@ -5361,9 +5376,9 @@ class Root(PyMenu):
|
|
|
5361
5376
|
Argument Z-Offset.
|
|
5362
5377
|
"""
|
|
5363
5378
|
|
|
5364
|
-
class
|
|
5379
|
+
class _Z2(PyNumericalCommandArgumentsSubItem):
|
|
5365
5380
|
"""
|
|
5366
|
-
Argument
|
|
5381
|
+
Argument Z2.
|
|
5367
5382
|
"""
|
|
5368
5383
|
|
|
5369
5384
|
class _Node1(PyTextualCommandArgumentsSubItem):
|
|
@@ -5371,9 +5386,9 @@ class Root(PyMenu):
|
|
|
5371
5386
|
Argument Node1.
|
|
5372
5387
|
"""
|
|
5373
5388
|
|
|
5374
|
-
class
|
|
5389
|
+
class _Z1(PyNumericalCommandArgumentsSubItem):
|
|
5375
5390
|
"""
|
|
5376
|
-
Argument
|
|
5391
|
+
Argument Z1.
|
|
5377
5392
|
"""
|
|
5378
5393
|
|
|
5379
5394
|
class _Radius2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5391,9 +5406,9 @@ class Root(PyMenu):
|
|
|
5391
5406
|
Argument Node3.
|
|
5392
5407
|
"""
|
|
5393
5408
|
|
|
5394
|
-
class
|
|
5409
|
+
class _Node2(PyTextualCommandArgumentsSubItem):
|
|
5395
5410
|
"""
|
|
5396
|
-
Argument
|
|
5411
|
+
Argument Node2.
|
|
5397
5412
|
"""
|
|
5398
5413
|
|
|
5399
5414
|
class _X2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5401,9 +5416,9 @@ class Root(PyMenu):
|
|
|
5401
5416
|
Argument X2.
|
|
5402
5417
|
"""
|
|
5403
5418
|
|
|
5404
|
-
class
|
|
5419
|
+
class _Y_Offset(PyNumericalCommandArgumentsSubItem):
|
|
5405
5420
|
"""
|
|
5406
|
-
Argument
|
|
5421
|
+
Argument Y-Offset.
|
|
5407
5422
|
"""
|
|
5408
5423
|
|
|
5409
5424
|
class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5470,8 +5485,8 @@ class Root(PyMenu):
|
|
|
5470
5485
|
self.CylinderZ1 = self._CylinderZ1(self, "CylinderZ1", service, rules, path)
|
|
5471
5486
|
self.CylinderRadius1 = self._CylinderRadius1(self, "CylinderRadius1", service, rules, path)
|
|
5472
5487
|
self.BoxCenterX = self._BoxCenterX(self, "BoxCenterX", service, rules, path)
|
|
5473
|
-
self.BoxCenterZ = self._BoxCenterZ(self, "BoxCenterZ", service, rules, path)
|
|
5474
5488
|
self.CylinderRadius2 = self._CylinderRadius2(self, "CylinderRadius2", service, rules, path)
|
|
5489
|
+
self.BoxCenterZ = self._BoxCenterZ(self, "BoxCenterZ", service, rules, path)
|
|
5475
5490
|
self.CylinderY2 = self._CylinderY2(self, "CylinderY2", service, rules, path)
|
|
5476
5491
|
|
|
5477
5492
|
class _CylinderZ2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5529,14 +5544,14 @@ class Root(PyMenu):
|
|
|
5529
5544
|
Specify the x-coordinate of the offset collar mesh.
|
|
5530
5545
|
"""
|
|
5531
5546
|
|
|
5532
|
-
class
|
|
5547
|
+
class _CylinderRadius2(PyNumericalCommandArgumentsSubItem):
|
|
5533
5548
|
"""
|
|
5534
|
-
|
|
5549
|
+
Argument CylinderRadius2.
|
|
5535
5550
|
"""
|
|
5536
5551
|
|
|
5537
|
-
class
|
|
5552
|
+
class _BoxCenterZ(PyNumericalCommandArgumentsSubItem):
|
|
5538
5553
|
"""
|
|
5539
|
-
|
|
5554
|
+
Specify the z-coordinate of the offset collar mesh.
|
|
5540
5555
|
"""
|
|
5541
5556
|
|
|
5542
5557
|
class _CylinderY2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5683,7 +5698,7 @@ class Root(PyMenu):
|
|
|
5683
5698
|
def __init__(self, parent, attr, service, rules, path):
|
|
5684
5699
|
super().__init__(parent, attr, service, rules, path)
|
|
5685
5700
|
self.SizeRelativeLength = self._SizeRelativeLength(self, "SizeRelativeLength", service, rules, path)
|
|
5686
|
-
self.
|
|
5701
|
+
self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
|
|
5687
5702
|
self.XminRatio = self._XminRatio(self, "XminRatio", service, rules, path)
|
|
5688
5703
|
self.YminRatio = self._YminRatio(self, "YminRatio", service, rules, path)
|
|
5689
5704
|
self.Zmin = self._Zmin(self, "Zmin", service, rules, path)
|
|
@@ -5694,16 +5709,16 @@ class Root(PyMenu):
|
|
|
5694
5709
|
self.Xmin = self._Xmin(self, "Xmin", service, rules, path)
|
|
5695
5710
|
self.YmaxRatio = self._YmaxRatio(self, "YmaxRatio", service, rules, path)
|
|
5696
5711
|
self.ZmaxRatio = self._ZmaxRatio(self, "ZmaxRatio", service, rules, path)
|
|
5697
|
-
self.
|
|
5712
|
+
self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
|
|
5698
5713
|
|
|
5699
5714
|
class _SizeRelativeLength(PyTextualCommandArgumentsSubItem):
|
|
5700
5715
|
"""
|
|
5701
5716
|
Determine if you would like to specify the bounding box for the component mesh as a ratio of the geometry length, or by specifying a specific location for the minimum and maximum coordinates.
|
|
5702
5717
|
"""
|
|
5703
5718
|
|
|
5704
|
-
class
|
|
5719
|
+
class _Xmax(PyNumericalCommandArgumentsSubItem):
|
|
5705
5720
|
"""
|
|
5706
|
-
Extends the maximum size of the bounding box in the X direction by the specified value.
|
|
5721
|
+
Extends the maximum size of the bounding box in the X direction by the specified value.
|
|
5707
5722
|
"""
|
|
5708
5723
|
|
|
5709
5724
|
class _XminRatio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5756,9 +5771,9 @@ class Root(PyMenu):
|
|
|
5756
5771
|
Extends the maximum size of the bounding box in the Z direction by the specified value. The value is the ratio relative to the geometry size in the Z direction.
|
|
5757
5772
|
"""
|
|
5758
5773
|
|
|
5759
|
-
class
|
|
5774
|
+
class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
|
|
5760
5775
|
"""
|
|
5761
|
-
Extends the maximum size of the bounding box in the X direction by the specified value.
|
|
5776
|
+
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.
|
|
5762
5777
|
"""
|
|
5763
5778
|
|
|
5764
5779
|
class _OffsetObject(PySingletonCommandArgumentsSubItem):
|
|
@@ -5775,14 +5790,14 @@ class Root(PyMenu):
|
|
|
5775
5790
|
self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
|
|
5776
5791
|
self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
|
|
5777
5792
|
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
5778
|
-
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
|
|
5779
5793
|
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
5794
|
+
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
|
|
5780
5795
|
self.FlowDirection = self._FlowDirection(self, "FlowDirection", service, rules, path)
|
|
5781
5796
|
self.MptMethodType = self._MptMethodType(self, "MptMethodType", service, rules, path)
|
|
5782
5797
|
self.EdgeSelectionList = self._EdgeSelectionList(self, "EdgeSelectionList", service, rules, path)
|
|
5783
5798
|
self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
|
|
5784
|
-
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
5785
5799
|
self.X = self._X(self, "X", service, rules, path)
|
|
5800
|
+
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
5786
5801
|
self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
|
|
5787
5802
|
self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
|
|
5788
5803
|
self.FirstHeight = self._FirstHeight(self, "FirstHeight", service, rules, path)
|
|
@@ -5824,14 +5839,14 @@ class Root(PyMenu):
|
|
|
5824
5839
|
Select the number of boundary layers to be generated.
|
|
5825
5840
|
"""
|
|
5826
5841
|
|
|
5827
|
-
class
|
|
5842
|
+
class _Rate(PyNumericalCommandArgumentsSubItem):
|
|
5828
5843
|
"""
|
|
5829
|
-
|
|
5844
|
+
Specify the rate of growth of the boundary layer.
|
|
5830
5845
|
"""
|
|
5831
5846
|
|
|
5832
|
-
class
|
|
5847
|
+
class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
|
|
5833
5848
|
"""
|
|
5834
|
-
|
|
5849
|
+
Argument WakeGrowthFactor.
|
|
5835
5850
|
"""
|
|
5836
5851
|
|
|
5837
5852
|
class _FlowDirection(PyTextualCommandArgumentsSubItem):
|
|
@@ -5854,14 +5869,14 @@ class Root(PyMenu):
|
|
|
5854
5869
|
Argument BoundaryLayerLevels.
|
|
5855
5870
|
"""
|
|
5856
5871
|
|
|
5857
|
-
class
|
|
5872
|
+
class _X(PyNumericalCommandArgumentsSubItem):
|
|
5858
5873
|
"""
|
|
5859
|
-
|
|
5874
|
+
Argument X.
|
|
5860
5875
|
"""
|
|
5861
5876
|
|
|
5862
|
-
class
|
|
5877
|
+
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
5863
5878
|
"""
|
|
5864
|
-
|
|
5879
|
+
Specify the offset height of the last layer as a percentage of the local base mesh size.
|
|
5865
5880
|
"""
|
|
5866
5881
|
|
|
5867
5882
|
class _OffsetMethodType(PyTextualCommandArgumentsSubItem):
|
|
@@ -5907,14 +5922,14 @@ class Root(PyMenu):
|
|
|
5907
5922
|
self.X1 = self._X1(self, "X1", service, rules, path)
|
|
5908
5923
|
self.Y1 = self._Y1(self, "Y1", service, rules, path)
|
|
5909
5924
|
self.Z_Offset = self._Z_Offset(self, "Z-Offset", service, rules, path)
|
|
5910
|
-
self.Z2 = self._Z2(self, "Z2", service, rules, path)
|
|
5911
|
-
self.Node1 = self._Node1(self, "Node1", service, rules, path)
|
|
5912
5925
|
self.Z1 = self._Z1(self, "Z1", service, rules, path)
|
|
5926
|
+
self.Node1 = self._Node1(self, "Node1", service, rules, path)
|
|
5927
|
+
self.Z2 = self._Z2(self, "Z2", service, rules, path)
|
|
5913
5928
|
self.Radius2 = self._Radius2(self, "Radius2", service, rules, path)
|
|
5914
5929
|
self.Y2 = self._Y2(self, "Y2", service, rules, path)
|
|
5915
5930
|
self.Node3 = self._Node3(self, "Node3", service, rules, path)
|
|
5916
|
-
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
5917
5931
|
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
5932
|
+
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
5918
5933
|
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
5919
5934
|
self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
|
|
5920
5935
|
self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
|
|
@@ -5949,9 +5964,9 @@ class Root(PyMenu):
|
|
|
5949
5964
|
Argument Z-Offset.
|
|
5950
5965
|
"""
|
|
5951
5966
|
|
|
5952
|
-
class
|
|
5967
|
+
class _Z1(PyNumericalCommandArgumentsSubItem):
|
|
5953
5968
|
"""
|
|
5954
|
-
Argument
|
|
5969
|
+
Argument Z1.
|
|
5955
5970
|
"""
|
|
5956
5971
|
|
|
5957
5972
|
class _Node1(PyTextualCommandArgumentsSubItem):
|
|
@@ -5959,9 +5974,9 @@ class Root(PyMenu):
|
|
|
5959
5974
|
Argument Node1.
|
|
5960
5975
|
"""
|
|
5961
5976
|
|
|
5962
|
-
class
|
|
5977
|
+
class _Z2(PyNumericalCommandArgumentsSubItem):
|
|
5963
5978
|
"""
|
|
5964
|
-
Argument
|
|
5979
|
+
Argument Z2.
|
|
5965
5980
|
"""
|
|
5966
5981
|
|
|
5967
5982
|
class _Radius2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5979,14 +5994,14 @@ class Root(PyMenu):
|
|
|
5979
5994
|
Argument Node3.
|
|
5980
5995
|
"""
|
|
5981
5996
|
|
|
5982
|
-
class
|
|
5997
|
+
class _Y_Offset(PyNumericalCommandArgumentsSubItem):
|
|
5983
5998
|
"""
|
|
5984
|
-
Argument
|
|
5999
|
+
Argument Y-Offset.
|
|
5985
6000
|
"""
|
|
5986
6001
|
|
|
5987
|
-
class
|
|
6002
|
+
class _Node2(PyTextualCommandArgumentsSubItem):
|
|
5988
6003
|
"""
|
|
5989
|
-
Argument
|
|
6004
|
+
Argument Node2.
|
|
5990
6005
|
"""
|
|
5991
6006
|
|
|
5992
6007
|
class _X2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -6051,15 +6066,15 @@ class Root(PyMenu):
|
|
|
6051
6066
|
self.BoxYLength = self._BoxYLength(self, "BoxYLength", service, rules, path)
|
|
6052
6067
|
self.CylinderX2 = self._CylinderX2(self, "CylinderX2", service, rules, path)
|
|
6053
6068
|
self.CylinderX1 = self._CylinderX1(self, "CylinderX1", service, rules, path)
|
|
6054
|
-
self.BoxZLength = self._BoxZLength(self, "BoxZLength", service, rules, path)
|
|
6055
|
-
self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
|
|
6056
6069
|
self.BoxXLength = self._BoxXLength(self, "BoxXLength", service, rules, path)
|
|
6070
|
+
self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
|
|
6071
|
+
self.BoxZLength = self._BoxZLength(self, "BoxZLength", service, rules, path)
|
|
6057
6072
|
self.BoxCenterY = self._BoxCenterY(self, "BoxCenterY", service, rules, path)
|
|
6058
6073
|
self.CylinderZ1 = self._CylinderZ1(self, "CylinderZ1", service, rules, path)
|
|
6059
6074
|
self.CylinderRadius1 = self._CylinderRadius1(self, "CylinderRadius1", service, rules, path)
|
|
6060
6075
|
self.BoxCenterX = self._BoxCenterX(self, "BoxCenterX", service, rules, path)
|
|
6061
|
-
self.CylinderRadius2 = self._CylinderRadius2(self, "CylinderRadius2", service, rules, path)
|
|
6062
6076
|
self.BoxCenterZ = self._BoxCenterZ(self, "BoxCenterZ", service, rules, path)
|
|
6077
|
+
self.CylinderRadius2 = self._CylinderRadius2(self, "CylinderRadius2", service, rules, path)
|
|
6063
6078
|
self.CylinderY2 = self._CylinderY2(self, "CylinderY2", service, rules, path)
|
|
6064
6079
|
|
|
6065
6080
|
class _CylinderZ2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -6082,9 +6097,9 @@ class Root(PyMenu):
|
|
|
6082
6097
|
Argument CylinderX1.
|
|
6083
6098
|
"""
|
|
6084
6099
|
|
|
6085
|
-
class
|
|
6100
|
+
class _BoxXLength(PyNumericalCommandArgumentsSubItem):
|
|
6086
6101
|
"""
|
|
6087
|
-
Argument
|
|
6102
|
+
Argument BoxXLength.
|
|
6088
6103
|
"""
|
|
6089
6104
|
|
|
6090
6105
|
class _CylinderY1(PyNumericalCommandArgumentsSubItem):
|
|
@@ -6092,9 +6107,9 @@ class Root(PyMenu):
|
|
|
6092
6107
|
Argument CylinderY1.
|
|
6093
6108
|
"""
|
|
6094
6109
|
|
|
6095
|
-
class
|
|
6110
|
+
class _BoxZLength(PyNumericalCommandArgumentsSubItem):
|
|
6096
6111
|
"""
|
|
6097
|
-
Argument
|
|
6112
|
+
Argument BoxZLength.
|
|
6098
6113
|
"""
|
|
6099
6114
|
|
|
6100
6115
|
class _BoxCenterY(PyNumericalCommandArgumentsSubItem):
|
|
@@ -6117,14 +6132,14 @@ class Root(PyMenu):
|
|
|
6117
6132
|
Argument BoxCenterX.
|
|
6118
6133
|
"""
|
|
6119
6134
|
|
|
6120
|
-
class
|
|
6135
|
+
class _BoxCenterZ(PyNumericalCommandArgumentsSubItem):
|
|
6121
6136
|
"""
|
|
6122
|
-
Argument
|
|
6137
|
+
Argument BoxCenterZ.
|
|
6123
6138
|
"""
|
|
6124
6139
|
|
|
6125
|
-
class
|
|
6140
|
+
class _CylinderRadius2(PyNumericalCommandArgumentsSubItem):
|
|
6126
6141
|
"""
|
|
6127
|
-
Argument
|
|
6142
|
+
Argument CylinderRadius2.
|
|
6128
6143
|
"""
|
|
6129
6144
|
|
|
6130
6145
|
class _CylinderY2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -6370,7 +6385,7 @@ class Root(PyMenu):
|
|
|
6370
6385
|
def __init__(self, parent, attr, service, rules, path):
|
|
6371
6386
|
super().__init__(parent, attr, service, rules, path)
|
|
6372
6387
|
self.SizeRelativeLength = self._SizeRelativeLength(self, "SizeRelativeLength", service, rules, path)
|
|
6373
|
-
self.
|
|
6388
|
+
self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
|
|
6374
6389
|
self.XminRatio = self._XminRatio(self, "XminRatio", service, rules, path)
|
|
6375
6390
|
self.YminRatio = self._YminRatio(self, "YminRatio", service, rules, path)
|
|
6376
6391
|
self.Zmin = self._Zmin(self, "Zmin", service, rules, path)
|
|
@@ -6381,16 +6396,16 @@ class Root(PyMenu):
|
|
|
6381
6396
|
self.Xmin = self._Xmin(self, "Xmin", service, rules, path)
|
|
6382
6397
|
self.YmaxRatio = self._YmaxRatio(self, "YmaxRatio", service, rules, path)
|
|
6383
6398
|
self.ZmaxRatio = self._ZmaxRatio(self, "ZmaxRatio", service, rules, path)
|
|
6384
|
-
self.
|
|
6399
|
+
self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
|
|
6385
6400
|
|
|
6386
6401
|
class _SizeRelativeLength(PyTextualCommandArgumentsSubItem):
|
|
6387
6402
|
"""
|
|
6388
6403
|
Determine if you would like to specify the bounding box as a ratio of the geometry length, or by specifying a specific location for the minimum and maximum coordinates.
|
|
6389
6404
|
"""
|
|
6390
6405
|
|
|
6391
|
-
class
|
|
6406
|
+
class _Xmax(PyNumericalCommandArgumentsSubItem):
|
|
6392
6407
|
"""
|
|
6393
|
-
Extends the maximum size of the bounding box in the X direction by the specified value.
|
|
6408
|
+
Extends the maximum size of the bounding box in the X direction by the specified value.
|
|
6394
6409
|
"""
|
|
6395
6410
|
|
|
6396
6411
|
class _XminRatio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -6443,9 +6458,9 @@ class Root(PyMenu):
|
|
|
6443
6458
|
Extends the maximum size of the bounding box in the Z direction by the specified value. The value is the ratio relative to the geometry size in the Z direction.
|
|
6444
6459
|
"""
|
|
6445
6460
|
|
|
6446
|
-
class
|
|
6461
|
+
class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
|
|
6447
6462
|
"""
|
|
6448
|
-
Extends the maximum size of the bounding box in the X direction by the specified value.
|
|
6463
|
+
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.
|
|
6449
6464
|
"""
|
|
6450
6465
|
|
|
6451
6466
|
def create_instance(self) -> _CreateExternalFlowBoundariesCommandArguments:
|
|
@@ -6648,8 +6663,8 @@ class Root(PyMenu):
|
|
|
6648
6663
|
LeakShieldName : str
|
|
6649
6664
|
UseSizeField : str
|
|
6650
6665
|
SizeFieldFileName : str
|
|
6651
|
-
MaxHoleSize : float
|
|
6652
6666
|
MinHoleSize : float
|
|
6667
|
+
MaxHoleSize : float
|
|
6653
6668
|
SpecifyObj : bool
|
|
6654
6669
|
SpecifyLive : bool
|
|
6655
6670
|
SpecifyDead : bool
|
|
@@ -6670,8 +6685,8 @@ class Root(PyMenu):
|
|
|
6670
6685
|
self.LeakShieldName = self._LeakShieldName(self, "LeakShieldName", service, rules, path)
|
|
6671
6686
|
self.UseSizeField = self._UseSizeField(self, "UseSizeField", service, rules, path)
|
|
6672
6687
|
self.SizeFieldFileName = self._SizeFieldFileName(self, "SizeFieldFileName", service, rules, path)
|
|
6673
|
-
self.MaxHoleSize = self._MaxHoleSize(self, "MaxHoleSize", service, rules, path)
|
|
6674
6688
|
self.MinHoleSize = self._MinHoleSize(self, "MinHoleSize", service, rules, path)
|
|
6689
|
+
self.MaxHoleSize = self._MaxHoleSize(self, "MaxHoleSize", service, rules, path)
|
|
6675
6690
|
self.SpecifyObj = self._SpecifyObj(self, "SpecifyObj", service, rules, path)
|
|
6676
6691
|
self.SpecifyLive = self._SpecifyLive(self, "SpecifyLive", service, rules, path)
|
|
6677
6692
|
self.SpecifyDead = self._SpecifyDead(self, "SpecifyDead", service, rules, path)
|
|
@@ -6697,14 +6712,14 @@ class Root(PyMenu):
|
|
|
6697
6712
|
Argument SizeFieldFileName.
|
|
6698
6713
|
"""
|
|
6699
6714
|
|
|
6700
|
-
class
|
|
6715
|
+
class _MinHoleSize(PyNumericalCommandArgumentsSubItem):
|
|
6701
6716
|
"""
|
|
6702
|
-
Argument
|
|
6717
|
+
Argument MinHoleSize.
|
|
6703
6718
|
"""
|
|
6704
6719
|
|
|
6705
|
-
class
|
|
6720
|
+
class _MaxHoleSize(PyNumericalCommandArgumentsSubItem):
|
|
6706
6721
|
"""
|
|
6707
|
-
Argument
|
|
6722
|
+
Argument MaxHoleSize.
|
|
6708
6723
|
"""
|
|
6709
6724
|
|
|
6710
6725
|
class _SpecifyObj(PyParameterCommandArgumentsSubItem):
|
|
@@ -6981,16 +6996,16 @@ class Root(PyMenu):
|
|
|
6981
6996
|
self.ShowCoordinates = self._ShowCoordinates(self, "ShowCoordinates", service, rules, path)
|
|
6982
6997
|
self.Y = self._Y(self, "Y", service, rules, path)
|
|
6983
6998
|
self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
|
|
6984
|
-
self.
|
|
6985
|
-
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
6999
|
+
self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
|
|
6986
7000
|
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
6987
|
-
self.
|
|
7001
|
+
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
7002
|
+
self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
|
|
6988
7003
|
self.FlowDirection = self._FlowDirection(self, "FlowDirection", service, rules, path)
|
|
6989
7004
|
self.MptMethodType = self._MptMethodType(self, "MptMethodType", service, rules, path)
|
|
6990
7005
|
self.EdgeSelectionList = self._EdgeSelectionList(self, "EdgeSelectionList", service, rules, path)
|
|
6991
|
-
self.
|
|
6992
|
-
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
7006
|
+
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
|
|
6993
7007
|
self.X = self._X(self, "X", service, rules, path)
|
|
7008
|
+
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
6994
7009
|
self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
|
|
6995
7010
|
self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
|
|
6996
7011
|
self.FirstHeight = self._FirstHeight(self, "FirstHeight", service, rules, path)
|
|
@@ -7022,24 +7037,24 @@ class Root(PyMenu):
|
|
|
7022
7037
|
Specify a value that is used to obtain a rough shape of the selected object(s). The larger the value, the more approximate the shape.
|
|
7023
7038
|
"""
|
|
7024
7039
|
|
|
7025
|
-
class
|
|
7040
|
+
class _AspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
7026
7041
|
"""
|
|
7027
|
-
|
|
7042
|
+
Argument AspectRatio.
|
|
7028
7043
|
"""
|
|
7029
7044
|
|
|
7030
|
-
class
|
|
7045
|
+
class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
|
|
7031
7046
|
"""
|
|
7032
|
-
Argument
|
|
7047
|
+
Argument NumberOfLayers.
|
|
7033
7048
|
"""
|
|
7034
7049
|
|
|
7035
|
-
class
|
|
7050
|
+
class _Rate(PyNumericalCommandArgumentsSubItem):
|
|
7036
7051
|
"""
|
|
7037
|
-
Argument
|
|
7052
|
+
Argument Rate.
|
|
7038
7053
|
"""
|
|
7039
7054
|
|
|
7040
|
-
class
|
|
7055
|
+
class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
|
|
7041
7056
|
"""
|
|
7042
|
-
Specify the
|
|
7057
|
+
Specify the number of boundary layers that are to be captured in the refinement region.
|
|
7043
7058
|
"""
|
|
7044
7059
|
|
|
7045
7060
|
class _FlowDirection(PyTextualCommandArgumentsSubItem):
|
|
@@ -7057,19 +7072,19 @@ class Root(PyMenu):
|
|
|
7057
7072
|
Argument EdgeSelectionList.
|
|
7058
7073
|
"""
|
|
7059
7074
|
|
|
7060
|
-
class
|
|
7075
|
+
class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
|
|
7061
7076
|
"""
|
|
7062
|
-
|
|
7077
|
+
Specify the factor by which the refinement region expands in the wake of the flow direction.
|
|
7063
7078
|
"""
|
|
7064
7079
|
|
|
7065
|
-
class
|
|
7080
|
+
class _X(PyNumericalCommandArgumentsSubItem):
|
|
7066
7081
|
"""
|
|
7067
|
-
|
|
7082
|
+
Specify the X-coordinate for the initial position of the cylindrical refinement region.
|
|
7068
7083
|
"""
|
|
7069
7084
|
|
|
7070
|
-
class
|
|
7085
|
+
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
7071
7086
|
"""
|
|
7072
|
-
|
|
7087
|
+
Argument LastRatioPercentage.
|
|
7073
7088
|
"""
|
|
7074
7089
|
|
|
7075
7090
|
class _FlipDirection(PyParameterCommandArgumentsSubItem):
|
|
@@ -7115,15 +7130,15 @@ class Root(PyMenu):
|
|
|
7115
7130
|
self.X1 = self._X1(self, "X1", service, rules, path)
|
|
7116
7131
|
self.Y1 = self._Y1(self, "Y1", service, rules, path)
|
|
7117
7132
|
self.Z_Offset = self._Z_Offset(self, "Z-Offset", service, rules, path)
|
|
7118
|
-
self.Z1 = self._Z1(self, "Z1", service, rules, path)
|
|
7119
|
-
self.Node1 = self._Node1(self, "Node1", service, rules, path)
|
|
7120
7133
|
self.Z2 = self._Z2(self, "Z2", service, rules, path)
|
|
7134
|
+
self.Node1 = self._Node1(self, "Node1", service, rules, path)
|
|
7135
|
+
self.Z1 = self._Z1(self, "Z1", service, rules, path)
|
|
7121
7136
|
self.Radius2 = self._Radius2(self, "Radius2", service, rules, path)
|
|
7122
7137
|
self.Y2 = self._Y2(self, "Y2", service, rules, path)
|
|
7123
7138
|
self.Node3 = self._Node3(self, "Node3", service, rules, path)
|
|
7124
|
-
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
7125
7139
|
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
7126
7140
|
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
7141
|
+
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
7127
7142
|
self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
|
|
7128
7143
|
self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
|
|
7129
7144
|
|
|
@@ -7157,9 +7172,9 @@ class Root(PyMenu):
|
|
|
7157
7172
|
Specify the Z-coordinate for the offset of the initial position of the cylinder.
|
|
7158
7173
|
"""
|
|
7159
7174
|
|
|
7160
|
-
class
|
|
7175
|
+
class _Z2(PyNumericalCommandArgumentsSubItem):
|
|
7161
7176
|
"""
|
|
7162
|
-
Specify the Z-coordinate of the
|
|
7177
|
+
Specify the Z-coordinate of the second position of the cylinder.
|
|
7163
7178
|
"""
|
|
7164
7179
|
|
|
7165
7180
|
class _Node1(PyTextualCommandArgumentsSubItem):
|
|
@@ -7167,9 +7182,9 @@ class Root(PyMenu):
|
|
|
7167
7182
|
Argument Node1.
|
|
7168
7183
|
"""
|
|
7169
7184
|
|
|
7170
|
-
class
|
|
7185
|
+
class _Z1(PyNumericalCommandArgumentsSubItem):
|
|
7171
7186
|
"""
|
|
7172
|
-
Specify the Z-coordinate of the
|
|
7187
|
+
Specify the Z-coordinate of the first position of the cylinder.
|
|
7173
7188
|
"""
|
|
7174
7189
|
|
|
7175
7190
|
class _Radius2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -7187,11 +7202,6 @@ class Root(PyMenu):
|
|
|
7187
7202
|
Argument Node3.
|
|
7188
7203
|
"""
|
|
7189
7204
|
|
|
7190
|
-
class _X2(PyNumericalCommandArgumentsSubItem):
|
|
7191
|
-
"""
|
|
7192
|
-
Specify the X-coordinate of the second position of the cylinder.
|
|
7193
|
-
"""
|
|
7194
|
-
|
|
7195
7205
|
class _Y_Offset(PyNumericalCommandArgumentsSubItem):
|
|
7196
7206
|
"""
|
|
7197
7207
|
Specify the Y-coordinate for the offset of the initial position of the cylinder.
|
|
@@ -7202,6 +7212,11 @@ class Root(PyMenu):
|
|
|
7202
7212
|
Argument Node2.
|
|
7203
7213
|
"""
|
|
7204
7214
|
|
|
7215
|
+
class _X2(PyNumericalCommandArgumentsSubItem):
|
|
7216
|
+
"""
|
|
7217
|
+
Specify the X-coordinate of the second position of the cylinder.
|
|
7218
|
+
"""
|
|
7219
|
+
|
|
7205
7220
|
class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
|
|
7206
7221
|
"""
|
|
7207
7222
|
Argument HeightFrontInc.
|
|
@@ -7266,8 +7281,8 @@ class Root(PyMenu):
|
|
|
7266
7281
|
self.CylinderZ1 = self._CylinderZ1(self, "CylinderZ1", service, rules, path)
|
|
7267
7282
|
self.CylinderRadius1 = self._CylinderRadius1(self, "CylinderRadius1", service, rules, path)
|
|
7268
7283
|
self.BoxCenterX = self._BoxCenterX(self, "BoxCenterX", service, rules, path)
|
|
7269
|
-
self.CylinderRadius2 = self._CylinderRadius2(self, "CylinderRadius2", service, rules, path)
|
|
7270
7284
|
self.BoxCenterZ = self._BoxCenterZ(self, "BoxCenterZ", service, rules, path)
|
|
7285
|
+
self.CylinderRadius2 = self._CylinderRadius2(self, "CylinderRadius2", service, rules, path)
|
|
7271
7286
|
self.CylinderY2 = self._CylinderY2(self, "CylinderY2", service, rules, path)
|
|
7272
7287
|
|
|
7273
7288
|
class _CylinderZ2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -7325,14 +7340,14 @@ class Root(PyMenu):
|
|
|
7325
7340
|
Specify the X-coordinate for the initial position of the cylindrical refinement region.
|
|
7326
7341
|
"""
|
|
7327
7342
|
|
|
7328
|
-
class
|
|
7343
|
+
class _BoxCenterZ(PyNumericalCommandArgumentsSubItem):
|
|
7329
7344
|
"""
|
|
7330
|
-
Specify the
|
|
7345
|
+
Specify the Z-coordinate for the initial position of the cylindrical refinement region.
|
|
7331
7346
|
"""
|
|
7332
7347
|
|
|
7333
|
-
class
|
|
7348
|
+
class _CylinderRadius2(PyNumericalCommandArgumentsSubItem):
|
|
7334
7349
|
"""
|
|
7335
|
-
Specify the
|
|
7350
|
+
Specify the radius of the cylinder at the second position.
|
|
7336
7351
|
"""
|
|
7337
7352
|
|
|
7338
7353
|
class _CylinderY2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -7537,12 +7552,12 @@ class Root(PyMenu):
|
|
|
7537
7552
|
def __init__(self, parent, attr, service, rules, path):
|
|
7538
7553
|
super().__init__(parent, attr, service, rules, path)
|
|
7539
7554
|
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
7540
|
-
self.Thickness = self._Thickness(self, "Thickness", service, rules, path)
|
|
7541
|
-
self.SelectionType = self._SelectionType(self, "SelectionType", service, rules, path)
|
|
7542
7555
|
self.LabelSelectionList = self._LabelSelectionList(self, "LabelSelectionList", service, rules, path)
|
|
7543
7556
|
self.ZoneSelectionList = self._ZoneSelectionList(self, "ZoneSelectionList", service, rules, path)
|
|
7544
|
-
self.
|
|
7557
|
+
self.Thickness = self._Thickness(self, "Thickness", service, rules, path)
|
|
7558
|
+
self.SelectionType = self._SelectionType(self, "SelectionType", service, rules, path)
|
|
7545
7559
|
self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
|
|
7560
|
+
self.MeshSize = self._MeshSize(self, "MeshSize", service, rules, path)
|
|
7546
7561
|
self.BufferSize = self._BufferSize(self, "BufferSize", service, rules, path)
|
|
7547
7562
|
self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
|
|
7548
7563
|
self.NonRectangularBufferSize = self._NonRectangularBufferSize(self, "NonRectangularBufferSize", service, rules, path)
|
|
@@ -7553,16 +7568,6 @@ class Root(PyMenu):
|
|
|
7553
7568
|
Specify the number of layers, or divisions, along the thickness of the porous region.
|
|
7554
7569
|
"""
|
|
7555
7570
|
|
|
7556
|
-
class _Thickness(PyNumericalCommandArgumentsSubItem):
|
|
7557
|
-
"""
|
|
7558
|
-
Specify the thickness (or the total height) of the porous region.
|
|
7559
|
-
"""
|
|
7560
|
-
|
|
7561
|
-
class _SelectionType(PyTextualCommandArgumentsSubItem):
|
|
7562
|
-
"""
|
|
7563
|
-
Choose how you want to make your selection (by object, zone, or label).
|
|
7564
|
-
"""
|
|
7565
|
-
|
|
7566
7571
|
class _LabelSelectionList(PyTextualCommandArgumentsSubItem):
|
|
7567
7572
|
"""
|
|
7568
7573
|
Select a single label that will correspond to the porous region. Use the Filter Text field to provide text and/or regular expressions in filtering the list. The matching list item(s) are automatically displayed in the list. Use ^, |, and & in your expression to indicate boolean operations for NOT, OR, and AND, respectively. More...
|
|
@@ -7573,9 +7578,14 @@ class Root(PyMenu):
|
|
|
7573
7578
|
Choose a single face zone from the list below. Use the Filter Text field to provide text and/or regular expressions in filtering the list. The matching list item(s) are automatically displayed in the list. Use ^, |, and & in your expression to indicate boolean operations for NOT, OR, and AND, respectively. More...
|
|
7574
7579
|
"""
|
|
7575
7580
|
|
|
7576
|
-
class
|
|
7581
|
+
class _Thickness(PyNumericalCommandArgumentsSubItem):
|
|
7577
7582
|
"""
|
|
7578
|
-
Specify the
|
|
7583
|
+
Specify the thickness (or the total height) of the porous region.
|
|
7584
|
+
"""
|
|
7585
|
+
|
|
7586
|
+
class _SelectionType(PyTextualCommandArgumentsSubItem):
|
|
7587
|
+
"""
|
|
7588
|
+
Choose how you want to make your selection (by object, zone, or label).
|
|
7579
7589
|
"""
|
|
7580
7590
|
|
|
7581
7591
|
class _FeatureAngle(PyNumericalCommandArgumentsSubItem):
|
|
@@ -7583,6 +7593,11 @@ class Root(PyMenu):
|
|
|
7583
7593
|
Specify the angle at which features will be extracted for the porous region.
|
|
7584
7594
|
"""
|
|
7585
7595
|
|
|
7596
|
+
class _MeshSize(PyNumericalCommandArgumentsSubItem):
|
|
7597
|
+
"""
|
|
7598
|
+
Specify the cell size for the porous region mesh.
|
|
7599
|
+
"""
|
|
7600
|
+
|
|
7586
7601
|
class _BufferSize(PyNumericalCommandArgumentsSubItem):
|
|
7587
7602
|
"""
|
|
7588
7603
|
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.
|
|
@@ -7913,8 +7928,8 @@ class Root(PyMenu):
|
|
|
7913
7928
|
self.PorousRegions = self._PorousRegions(self, "PorousRegions", service, rules, path)
|
|
7914
7929
|
self.CloseLeakages = self._CloseLeakages(self, "CloseLeakages", service, rules, path)
|
|
7915
7930
|
self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
|
|
7916
|
-
self.ZeroThickness = self._ZeroThickness(self, "ZeroThickness", service, rules, path)
|
|
7917
7931
|
self.CloseLeakges = self._CloseLeakges(self, "CloseLeakges", service, rules, path)
|
|
7932
|
+
self.ZeroThickness = self._ZeroThickness(self, "ZeroThickness", service, rules, path)
|
|
7918
7933
|
self.ExtractEdgeFeatures = self._ExtractEdgeFeatures(self, "ExtractEdgeFeatures", service, rules, path)
|
|
7919
7934
|
self.MovingObjects = self._MovingObjects(self, "MovingObjects", service, rules, path)
|
|
7920
7935
|
self.EnablePrimeWrapper = self._EnablePrimeWrapper(self, "EnablePrimeWrapper", service, rules, path)
|
|
@@ -7936,14 +7951,14 @@ class Root(PyMenu):
|
|
|
7936
7951
|
Display advanced options that you may want to apply to the workflow.
|
|
7937
7952
|
"""
|
|
7938
7953
|
|
|
7939
|
-
class
|
|
7954
|
+
class _CloseLeakges(PyTextualCommandArgumentsSubItem):
|
|
7940
7955
|
"""
|
|
7941
|
-
Specify whether or not
|
|
7956
|
+
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.
|
|
7942
7957
|
"""
|
|
7943
7958
|
|
|
7944
|
-
class
|
|
7959
|
+
class _ZeroThickness(PyTextualCommandArgumentsSubItem):
|
|
7945
7960
|
"""
|
|
7946
|
-
Specify whether or not
|
|
7961
|
+
Specify whether or not you will need to account for any portions of your geometry with zero-thickness, and apply thickness to them for a more refined surface mesh. If so, then an Add Thickness task will be added to the workflow.
|
|
7947
7962
|
"""
|
|
7948
7963
|
|
|
7949
7964
|
class _ExtractEdgeFeatures(PyTextualCommandArgumentsSubItem):
|
|
@@ -8294,19 +8309,19 @@ class Root(PyMenu):
|
|
|
8294
8309
|
|
|
8295
8310
|
def __init__(self, parent, attr, service, rules, path):
|
|
8296
8311
|
super().__init__(parent, attr, service, rules, path)
|
|
8297
|
-
self.MaxLayerHeight = self._MaxLayerHeight(self, "MaxLayerHeight", service, rules, path)
|
|
8298
8312
|
self.BiasMethod = self._BiasMethod(self, "BiasMethod", service, rules, path)
|
|
8313
|
+
self.MaxLayerHeight = self._MaxLayerHeight(self, "MaxLayerHeight", service, rules, path)
|
|
8299
8314
|
self.MergeCellZones = self._MergeCellZones(self, "MergeCellZones", service, rules, path)
|
|
8300
8315
|
self.ShowVMExtrudePreferences = self._ShowVMExtrudePreferences(self, "ShowVMExtrudePreferences", service, rules, path)
|
|
8301
8316
|
|
|
8302
|
-
class
|
|
8317
|
+
class _BiasMethod(PyTextualCommandArgumentsSubItem):
|
|
8303
8318
|
"""
|
|
8304
|
-
|
|
8319
|
+
Select from a choice of patterns that you want to apply to your volume mesh extrusion.
|
|
8305
8320
|
"""
|
|
8306
8321
|
|
|
8307
|
-
class
|
|
8322
|
+
class _MaxLayerHeight(PyNumericalCommandArgumentsSubItem):
|
|
8308
8323
|
"""
|
|
8309
|
-
|
|
8324
|
+
Argument MaxLayerHeight.
|
|
8310
8325
|
"""
|
|
8311
8326
|
|
|
8312
8327
|
class _MergeCellZones(PyParameterCommandArgumentsSubItem):
|
|
@@ -8389,9 +8404,9 @@ class Root(PyMenu):
|
|
|
8389
8404
|
self.LocalRemesh = self._LocalRemesh(self, "LocalRemesh", service, rules, path)
|
|
8390
8405
|
self.RemeshGrowthRate = self._RemeshGrowthRate(self, "RemeshGrowthRate", service, rules, path)
|
|
8391
8406
|
self.GapFactor = self._GapFactor(self, "GapFactor", service, rules, path)
|
|
8392
|
-
self.RefineStretchedQuads = self._RefineStretchedQuads(self, "RefineStretchedQuads", service, rules, path)
|
|
8393
8407
|
self.ShowPrism2DPreferences = self._ShowPrism2DPreferences(self, "ShowPrism2DPreferences", service, rules, path)
|
|
8394
8408
|
self.MaxFaceSkew = self._MaxFaceSkew(self, "MaxFaceSkew", service, rules, path)
|
|
8409
|
+
self.RefineStretchedQuads = self._RefineStretchedQuads(self, "RefineStretchedQuads", service, rules, path)
|
|
8395
8410
|
self.nOrthogonalLayers = self._nOrthogonalLayers(self, "nOrthogonalLayers", service, rules, path)
|
|
8396
8411
|
|
|
8397
8412
|
class _SplitQuads(PyTextualCommandArgumentsSubItem):
|
|
@@ -8424,11 +8439,6 @@ class Root(PyMenu):
|
|
|
8424
8439
|
Argument GapFactor.
|
|
8425
8440
|
"""
|
|
8426
8441
|
|
|
8427
|
-
class _RefineStretchedQuads(PyTextualCommandArgumentsSubItem):
|
|
8428
|
-
"""
|
|
8429
|
-
Argument RefineStretchedQuads.
|
|
8430
|
-
"""
|
|
8431
|
-
|
|
8432
8442
|
class _ShowPrism2DPreferences(PyParameterCommandArgumentsSubItem):
|
|
8433
8443
|
"""
|
|
8434
8444
|
Argument ShowPrism2DPreferences.
|
|
@@ -8439,6 +8449,11 @@ class Root(PyMenu):
|
|
|
8439
8449
|
Argument MaxFaceSkew.
|
|
8440
8450
|
"""
|
|
8441
8451
|
|
|
8452
|
+
class _RefineStretchedQuads(PyTextualCommandArgumentsSubItem):
|
|
8453
|
+
"""
|
|
8454
|
+
Argument RefineStretchedQuads.
|
|
8455
|
+
"""
|
|
8456
|
+
|
|
8442
8457
|
class _nOrthogonalLayers(PyNumericalCommandArgumentsSubItem):
|
|
8443
8458
|
"""
|
|
8444
8459
|
Argument nOrthogonalLayers.
|
|
@@ -8775,8 +8790,8 @@ class Root(PyMenu):
|
|
|
8775
8790
|
self.SaveSizeFieldFile = self._SaveSizeFieldFile(self, "SaveSizeFieldFile", service, rules, path)
|
|
8776
8791
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
8777
8792
|
self.ScopeProximityTo = self._ScopeProximityTo(self, "ScopeProximityTo", service, rules, path)
|
|
8778
|
-
self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
|
|
8779
8793
|
self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
|
|
8794
|
+
self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
|
|
8780
8795
|
self.SaveSizeField = self._SaveSizeField(self, "SaveSizeField", service, rules, path)
|
|
8781
8796
|
self.UseSizeFiles = self._UseSizeFiles(self, "UseSizeFiles", service, rules, path)
|
|
8782
8797
|
self.AutoCreateScopedSizing = self._AutoCreateScopedSizing(self, "AutoCreateScopedSizing", service, rules, path)
|
|
@@ -8806,14 +8821,14 @@ class Root(PyMenu):
|
|
|
8806
8821
|
Argument ScopeProximityTo.
|
|
8807
8822
|
"""
|
|
8808
8823
|
|
|
8809
|
-
class
|
|
8824
|
+
class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
|
|
8810
8825
|
"""
|
|
8811
|
-
Argument
|
|
8826
|
+
Argument PreviewSizefield.
|
|
8812
8827
|
"""
|
|
8813
8828
|
|
|
8814
|
-
class
|
|
8829
|
+
class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
8815
8830
|
"""
|
|
8816
|
-
Argument
|
|
8831
|
+
Argument CurvatureNormalAngle.
|
|
8817
8832
|
"""
|
|
8818
8833
|
|
|
8819
8834
|
class _SaveSizeField(PyParameterCommandArgumentsSubItem):
|
|
@@ -9163,8 +9178,8 @@ class Root(PyMenu):
|
|
|
9163
9178
|
self.SaveSizeFieldFile = self._SaveSizeFieldFile(self, "SaveSizeFieldFile", service, rules, path)
|
|
9164
9179
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
9165
9180
|
self.ScopeProximityTo = self._ScopeProximityTo(self, "ScopeProximityTo", service, rules, path)
|
|
9166
|
-
self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
|
|
9167
9181
|
self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
|
|
9182
|
+
self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
|
|
9168
9183
|
self.SaveSizeField = self._SaveSizeField(self, "SaveSizeField", service, rules, path)
|
|
9169
9184
|
self.UseSizeFiles = self._UseSizeFiles(self, "UseSizeFiles", service, rules, path)
|
|
9170
9185
|
self.AutoCreateScopedSizing = self._AutoCreateScopedSizing(self, "AutoCreateScopedSizing", service, rules, path)
|
|
@@ -9194,14 +9209,14 @@ class Root(PyMenu):
|
|
|
9194
9209
|
Set proximity based refinement. Edges considers edge-to-edge proximity, while Faces considers face-to-face proximity, and Faces and Edges considers both. More...
|
|
9195
9210
|
"""
|
|
9196
9211
|
|
|
9197
|
-
class
|
|
9212
|
+
class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
9198
9213
|
"""
|
|
9199
|
-
|
|
9214
|
+
Specify the maximum allowable angle (from 0 to 180 degrees) that one element edge is allowed to span given a particular geometry curvature. You can use this field to limit the number of elements that are generated along a curve or surface if the minimum size is too small for that particular curve. More...
|
|
9200
9215
|
"""
|
|
9201
9216
|
|
|
9202
|
-
class
|
|
9217
|
+
class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
|
|
9203
9218
|
"""
|
|
9204
|
-
|
|
9219
|
+
Enable this option to visualize the size field in the graphics window.
|
|
9205
9220
|
"""
|
|
9206
9221
|
|
|
9207
9222
|
class _SaveSizeField(PyParameterCommandArgumentsSubItem):
|
|
@@ -9303,21 +9318,21 @@ class Root(PyMenu):
|
|
|
9303
9318
|
super().__init__(parent, attr, service, rules, path)
|
|
9304
9319
|
self.SMQualityCollapseLimit = self._SMQualityCollapseLimit(self, "SMQualityCollapseLimit", service, rules, path)
|
|
9305
9320
|
self.FoldFaceLimit = self._FoldFaceLimit(self, "FoldFaceLimit", service, rules, path)
|
|
9306
|
-
self.
|
|
9307
|
-
self.ShowSurfaceMeshPreferences = self._ShowSurfaceMeshPreferences(self, "ShowSurfaceMeshPreferences", service, rules, path)
|
|
9321
|
+
self.SMSeparation = self._SMSeparation(self, "SMSeparation", service, rules, path)
|
|
9308
9322
|
self.SMSeparationAngle = self._SMSeparationAngle(self, "SMSeparationAngle", service, rules, path)
|
|
9323
|
+
self.ShowSurfaceMeshPreferences = self._ShowSurfaceMeshPreferences(self, "ShowSurfaceMeshPreferences", service, rules, path)
|
|
9309
9324
|
self.AutoMerge = self._AutoMerge(self, "AutoMerge", service, rules, path)
|
|
9310
9325
|
self.TVMAutoControlCreation = self._TVMAutoControlCreation(self, "TVMAutoControlCreation", service, rules, path)
|
|
9311
|
-
self.
|
|
9326
|
+
self.SMQualityImprove = self._SMQualityImprove(self, "SMQualityImprove", service, rules, path)
|
|
9312
9327
|
self.SMRemoveStep = self._SMRemoveStep(self, "SMRemoveStep", service, rules, path)
|
|
9313
9328
|
self.ParallelRegionCompute = self._ParallelRegionCompute(self, "ParallelRegionCompute", service, rules, path)
|
|
9314
9329
|
self.SMStepWidth = self._SMStepWidth(self, "SMStepWidth", service, rules, path)
|
|
9315
|
-
self.VolumeMeshMaxSize = self._VolumeMeshMaxSize(self, "VolumeMeshMaxSize", service, rules, path)
|
|
9316
|
-
self.AutoAssignZoneTypes = self._AutoAssignZoneTypes(self, "AutoAssignZoneTypes", service, rules, path)
|
|
9317
9330
|
self.SMQualityMaxAngle = self._SMQualityMaxAngle(self, "SMQualityMaxAngle", service, rules, path)
|
|
9318
|
-
self.
|
|
9319
|
-
self.
|
|
9331
|
+
self.AutoAssignZoneTypes = self._AutoAssignZoneTypes(self, "AutoAssignZoneTypes", service, rules, path)
|
|
9332
|
+
self.VolumeMeshMaxSize = self._VolumeMeshMaxSize(self, "VolumeMeshMaxSize", service, rules, path)
|
|
9320
9333
|
self.SMQualityImproveLimit = self._SMQualityImproveLimit(self, "SMQualityImproveLimit", service, rules, path)
|
|
9334
|
+
self.AutoSurfaceRemesh = self._AutoSurfaceRemesh(self, "AutoSurfaceRemesh", service, rules, path)
|
|
9335
|
+
self.SelfIntersectCheck = self._SelfIntersectCheck(self, "SelfIntersectCheck", service, rules, path)
|
|
9321
9336
|
self.SetVolumeMeshMaxSize = self._SetVolumeMeshMaxSize(self, "SetVolumeMeshMaxSize", service, rules, path)
|
|
9322
9337
|
|
|
9323
9338
|
class _SMQualityCollapseLimit(PyNumericalCommandArgumentsSubItem):
|
|
@@ -9330,19 +9345,19 @@ class Root(PyMenu):
|
|
|
9330
9345
|
Specify the value limiting when folded faces are smoothed or resolved. Folded faces are resolved while under this limit. Set this value to 0 if the number of free nodes (due to a zero-thickness wall such as a baffle for instance) falls below 10.
|
|
9331
9346
|
"""
|
|
9332
9347
|
|
|
9333
|
-
class
|
|
9348
|
+
class _SMSeparation(PyTextualCommandArgumentsSubItem):
|
|
9334
9349
|
"""
|
|
9335
|
-
Choose whether or not to
|
|
9350
|
+
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.
|
|
9336
9351
|
"""
|
|
9337
9352
|
|
|
9338
|
-
class
|
|
9353
|
+
class _SMSeparationAngle(PyNumericalCommandArgumentsSubItem):
|
|
9339
9354
|
"""
|
|
9340
|
-
|
|
9355
|
+
Specify a desired angle for determining separation. Assigning a smaller separation angle will produce more zones.
|
|
9341
9356
|
"""
|
|
9342
9357
|
|
|
9343
|
-
class
|
|
9358
|
+
class _ShowSurfaceMeshPreferences(PyParameterCommandArgumentsSubItem):
|
|
9344
9359
|
"""
|
|
9345
|
-
|
|
9360
|
+
Display advanced options that you may want to apply to the task.
|
|
9346
9361
|
"""
|
|
9347
9362
|
|
|
9348
9363
|
class _AutoMerge(PyParameterCommandArgumentsSubItem):
|
|
@@ -9355,9 +9370,9 @@ class Root(PyMenu):
|
|
|
9355
9370
|
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.
|
|
9356
9371
|
"""
|
|
9357
9372
|
|
|
9358
|
-
class
|
|
9373
|
+
class _SMQualityImprove(PyTextualCommandArgumentsSubItem):
|
|
9359
9374
|
"""
|
|
9360
|
-
Choose whether or not to
|
|
9375
|
+
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.
|
|
9361
9376
|
"""
|
|
9362
9377
|
|
|
9363
9378
|
class _SMRemoveStep(PyTextualCommandArgumentsSubItem):
|
|
@@ -9375,9 +9390,9 @@ class Root(PyMenu):
|
|
|
9375
9390
|
Specify the width of the step that you wish to remove.
|
|
9376
9391
|
"""
|
|
9377
9392
|
|
|
9378
|
-
class
|
|
9393
|
+
class _SMQualityMaxAngle(PyNumericalCommandArgumentsSubItem):
|
|
9379
9394
|
"""
|
|
9380
|
-
Specify the maximum
|
|
9395
|
+
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.
|
|
9381
9396
|
"""
|
|
9382
9397
|
|
|
9383
9398
|
class _AutoAssignZoneTypes(PyTextualCommandArgumentsSubItem):
|
|
@@ -9385,14 +9400,14 @@ class Root(PyMenu):
|
|
|
9385
9400
|
Choose whether or not to automatically assign boundary types to zones.
|
|
9386
9401
|
"""
|
|
9387
9402
|
|
|
9388
|
-
class
|
|
9403
|
+
class _VolumeMeshMaxSize(PyNumericalCommandArgumentsSubItem):
|
|
9389
9404
|
"""
|
|
9390
|
-
Specify the maximum
|
|
9405
|
+
Specify the maximum size of the elements for the surface mesh.
|
|
9391
9406
|
"""
|
|
9392
9407
|
|
|
9393
|
-
class
|
|
9408
|
+
class _SMQualityImproveLimit(PyNumericalCommandArgumentsSubItem):
|
|
9394
9409
|
"""
|
|
9395
|
-
|
|
9410
|
+
Specify a limiting value for skewness to improve the quality of the surface mesh. Quality improvement is attempted on those triangles where the skewness is above this limit.
|
|
9396
9411
|
"""
|
|
9397
9412
|
|
|
9398
9413
|
class _AutoSurfaceRemesh(PyTextualCommandArgumentsSubItem):
|
|
@@ -9400,9 +9415,9 @@ class Root(PyMenu):
|
|
|
9400
9415
|
Choose whether or not to automatically remesh in order to remove excessive clustering of nodes. By default (auto), this is done if local sizing has been assigned or Share Topology is invoked, but skipped if not. Performance may be improved if this is disabled. In addition, you can choose to use the much faster refaceting technique as an alternative to automatic remeshing. When importing the mesh, remeshing is only performed if this option is set to yes and then all faces are remeshed; and the refaceting option is not available because the initial mesh cannot be refaceted.
|
|
9401
9416
|
"""
|
|
9402
9417
|
|
|
9403
|
-
class
|
|
9418
|
+
class _SelfIntersectCheck(PyTextualCommandArgumentsSubItem):
|
|
9404
9419
|
"""
|
|
9405
|
-
|
|
9420
|
+
Choose whether or not to check for self-intersecting faces. Performance may be improved if this is disabled.
|
|
9406
9421
|
"""
|
|
9407
9422
|
|
|
9408
9423
|
class _SetVolumeMeshMaxSize(PyTextualCommandArgumentsSubItem):
|
|
@@ -9495,8 +9510,8 @@ class Root(PyMenu):
|
|
|
9495
9510
|
self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
|
|
9496
9511
|
self.OneZonePer = self._OneZonePer(self, "OneZonePer", service, rules, path)
|
|
9497
9512
|
self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
|
|
9498
|
-
self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
|
|
9499
9513
|
self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
|
|
9514
|
+
self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
|
|
9500
9515
|
self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
|
|
9501
9516
|
self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
|
|
9502
9517
|
|
|
@@ -9535,14 +9550,14 @@ class Root(PyMenu):
|
|
|
9535
9550
|
Argument ImportCurvatureDataFromCAD.
|
|
9536
9551
|
"""
|
|
9537
9552
|
|
|
9538
|
-
class
|
|
9553
|
+
class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
|
|
9539
9554
|
"""
|
|
9540
|
-
Argument
|
|
9555
|
+
Argument ExtractFeatures.
|
|
9541
9556
|
"""
|
|
9542
9557
|
|
|
9543
|
-
class
|
|
9558
|
+
class _ImportNamedSelections(PyParameterCommandArgumentsSubItem):
|
|
9544
9559
|
"""
|
|
9545
|
-
Argument
|
|
9560
|
+
Argument ImportNamedSelections.
|
|
9546
9561
|
"""
|
|
9547
9562
|
|
|
9548
9563
|
class _ImportPartNames(PyParameterCommandArgumentsSubItem):
|
|
@@ -10115,35 +10130,35 @@ class Root(PyMenu):
|
|
|
10115
10130
|
|
|
10116
10131
|
def __init__(self, parent, attr, service, rules, path):
|
|
10117
10132
|
super().__init__(parent, attr, service, rules, path)
|
|
10118
|
-
self.
|
|
10119
|
-
self.QualityMethod = self._QualityMethod(self, "QualityMethod", service, rules, path)
|
|
10120
|
-
self.MinPolySize = self._MinPolySize(self, "MinPolySize", service, rules, path)
|
|
10133
|
+
self.UseSizeFieldInSolids = self._UseSizeFieldInSolids(self, "UseSizeFieldInSolids", service, rules, path)
|
|
10121
10134
|
self.PolyFeatureAngle = self._PolyFeatureAngle(self, "PolyFeatureAngle", service, rules, path)
|
|
10135
|
+
self.MinPolySize = self._MinPolySize(self, "MinPolySize", service, rules, path)
|
|
10136
|
+
self.UseSizeField = self._UseSizeField(self, "UseSizeField", service, rules, path)
|
|
10122
10137
|
self.SizeFieldPeriodicity = self._SizeFieldPeriodicity(self, "SizeFieldPeriodicity", service, rules, path)
|
|
10138
|
+
self.QualityMethod = self._QualityMethod(self, "QualityMethod", service, rules, path)
|
|
10123
10139
|
self.MergeBodyLabels = self._MergeBodyLabels(self, "MergeBodyLabels", service, rules, path)
|
|
10124
|
-
self.
|
|
10125
|
-
self.
|
|
10126
|
-
self.TetInSolids = self._TetInSolids(self, "TetInSolids", service, rules, path)
|
|
10140
|
+
self.PolyInSolids = self._PolyInSolids(self, "PolyInSolids", service, rules, path)
|
|
10141
|
+
self.MinEdgeLength = self._MinEdgeLength(self, "MinEdgeLength", service, rules, path)
|
|
10127
10142
|
self.AddMultipleQualityMethods = self._AddMultipleQualityMethods(self, "AddMultipleQualityMethods", service, rules, path)
|
|
10128
10143
|
self.MaxCellSizeChange = self._MaxCellSizeChange(self, "MaxCellSizeChange", service, rules, path)
|
|
10129
10144
|
self.WritePrismControlFile = self._WritePrismControlFile(self, "WritePrismControlFile", service, rules, path)
|
|
10130
|
-
self.
|
|
10145
|
+
self.MinFaceArea = self._MinFaceArea(self, "MinFaceArea", service, rules, path)
|
|
10131
10146
|
self.CheckSelfProximity = self._CheckSelfProximity(self, "CheckSelfProximity", service, rules, path)
|
|
10132
10147
|
self.Avoid1_8Transition = self._Avoid1_8Transition(self, "Avoid1_8Transition", service, rules, path)
|
|
10133
|
-
self.
|
|
10134
|
-
self.
|
|
10148
|
+
self.PrepareZoneNames = self._PrepareZoneNames(self, "PrepareZoneNames", service, rules, path)
|
|
10149
|
+
self.TetInSolids = self._TetInSolids(self, "TetInSolids", service, rules, path)
|
|
10135
10150
|
self.SolidGrowthRate = self._SolidGrowthRate(self, "SolidGrowthRate", service, rules, path)
|
|
10136
|
-
self.
|
|
10151
|
+
self.ShowVolumeMeshPreferences = self._ShowVolumeMeshPreferences(self, "ShowVolumeMeshPreferences", service, rules, path)
|
|
10137
10152
|
self.QualityWarningLimit = self._QualityWarningLimit(self, "QualityWarningLimit", service, rules, path)
|
|
10138
10153
|
|
|
10139
|
-
class
|
|
10154
|
+
class _UseSizeFieldInSolids(PyTextualCommandArgumentsSubItem):
|
|
10140
10155
|
"""
|
|
10141
|
-
|
|
10156
|
+
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.
|
|
10142
10157
|
"""
|
|
10143
10158
|
|
|
10144
|
-
class
|
|
10159
|
+
class _PolyFeatureAngle(PyNumericalCommandArgumentsSubItem):
|
|
10145
10160
|
"""
|
|
10146
|
-
|
|
10161
|
+
Specify the angle to preserve features when using a polyhedral-based mesh.
|
|
10147
10162
|
"""
|
|
10148
10163
|
|
|
10149
10164
|
class _MinPolySize(PyNumericalCommandArgumentsSubItem):
|
|
@@ -10151,9 +10166,9 @@ class Root(PyMenu):
|
|
|
10151
10166
|
Argument MinPolySize.
|
|
10152
10167
|
"""
|
|
10153
10168
|
|
|
10154
|
-
class
|
|
10169
|
+
class _UseSizeField(PyTextualCommandArgumentsSubItem):
|
|
10155
10170
|
"""
|
|
10156
|
-
Specify the
|
|
10171
|
+
Specify whether or not to use size fields as part of generating the volume mesh. By default, this is set to yes when a BOI or body sizing has been defined in the Add Local Sizing task, however, for large cases, it can be turned off for the hexcore and poly-hexcore volume fill methods.
|
|
10157
10172
|
"""
|
|
10158
10173
|
|
|
10159
10174
|
class _SizeFieldPeriodicity(PyTextualCommandArgumentsSubItem):
|
|
@@ -10161,24 +10176,24 @@ class Root(PyMenu):
|
|
|
10161
10176
|
Argument SizeFieldPeriodicity.
|
|
10162
10177
|
"""
|
|
10163
10178
|
|
|
10164
|
-
class
|
|
10179
|
+
class _QualityMethod(PyTextualCommandArgumentsSubItem):
|
|
10165
10180
|
"""
|
|
10166
|
-
|
|
10181
|
+
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... .
|
|
10167
10182
|
"""
|
|
10168
10183
|
|
|
10169
|
-
class
|
|
10184
|
+
class _MergeBodyLabels(PyTextualCommandArgumentsSubItem):
|
|
10170
10185
|
"""
|
|
10171
|
-
|
|
10186
|
+
Determine whether or not you would like to merge bodies that contain multiple body labels when generating the volume mesh (the default is yes)
|
|
10172
10187
|
"""
|
|
10173
10188
|
|
|
10174
|
-
class
|
|
10189
|
+
class _PolyInSolids(PyTextualCommandArgumentsSubItem):
|
|
10175
10190
|
"""
|
|
10176
|
-
|
|
10191
|
+
Indicate whether or not to fill only polyhedra cells in all solid regions during volume meshing using the poly-hexcore volume fill method. The default value is no. Setting this to yes may improve meshing efficiency.
|
|
10177
10192
|
"""
|
|
10178
10193
|
|
|
10179
|
-
class
|
|
10194
|
+
class _MinEdgeLength(PyNumericalCommandArgumentsSubItem):
|
|
10180
10195
|
"""
|
|
10181
|
-
Argument
|
|
10196
|
+
Argument MinEdgeLength.
|
|
10182
10197
|
"""
|
|
10183
10198
|
|
|
10184
10199
|
class _AddMultipleQualityMethods(PyTextualCommandArgumentsSubItem):
|
|
@@ -10196,9 +10211,9 @@ class Root(PyMenu):
|
|
|
10196
10211
|
Indicate whether or not you want to save a .pzmcontrol file to your working folder that will contain the boundary (prism) layer specifications.
|
|
10197
10212
|
"""
|
|
10198
10213
|
|
|
10199
|
-
class
|
|
10214
|
+
class _MinFaceArea(PyNumericalCommandArgumentsSubItem):
|
|
10200
10215
|
"""
|
|
10201
|
-
|
|
10216
|
+
Argument MinFaceArea.
|
|
10202
10217
|
"""
|
|
10203
10218
|
|
|
10204
10219
|
class _CheckSelfProximity(PyTextualCommandArgumentsSubItem):
|
|
@@ -10211,14 +10226,14 @@ class Root(PyMenu):
|
|
|
10211
10226
|
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.
|
|
10212
10227
|
"""
|
|
10213
10228
|
|
|
10214
|
-
class
|
|
10229
|
+
class _PrepareZoneNames(PyTextualCommandArgumentsSubItem):
|
|
10215
10230
|
"""
|
|
10216
|
-
Indicate whether or not to
|
|
10231
|
+
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.
|
|
10217
10232
|
"""
|
|
10218
10233
|
|
|
10219
|
-
class
|
|
10234
|
+
class _TetInSolids(PyTextualCommandArgumentsSubItem):
|
|
10220
10235
|
"""
|
|
10221
|
-
Argument
|
|
10236
|
+
Argument TetInSolids.
|
|
10222
10237
|
"""
|
|
10223
10238
|
|
|
10224
10239
|
class _SolidGrowthRate(PyNumericalCommandArgumentsSubItem):
|
|
@@ -10226,9 +10241,9 @@ class Root(PyMenu):
|
|
|
10226
10241
|
Specify the rate of growth for a tetrahedron or polyhedron mesh.
|
|
10227
10242
|
"""
|
|
10228
10243
|
|
|
10229
|
-
class
|
|
10244
|
+
class _ShowVolumeMeshPreferences(PyParameterCommandArgumentsSubItem):
|
|
10230
10245
|
"""
|
|
10231
|
-
|
|
10246
|
+
Display advanced options that you may want to apply to the task.
|
|
10232
10247
|
"""
|
|
10233
10248
|
|
|
10234
10249
|
class _QualityWarningLimit(PyNumericalCommandArgumentsSubItem):
|
|
@@ -10252,8 +10267,8 @@ class Root(PyMenu):
|
|
|
10252
10267
|
self.MergeBoundaryLayers = self._MergeBoundaryLayers(self, "MergeBoundaryLayers", service, rules, path)
|
|
10253
10268
|
self.NormalSmoothRelaxationFactor = self._NormalSmoothRelaxationFactor(self, "NormalSmoothRelaxationFactor", service, rules, path)
|
|
10254
10269
|
self.ShowPrismPreferences = self._ShowPrismPreferences(self, "ShowPrismPreferences", service, rules, path)
|
|
10255
|
-
self.StairstepExposedQuads = self._StairstepExposedQuads(self, "StairstepExposedQuads", service, rules, path)
|
|
10256
10270
|
self.PrismMinAspectRatio = self._PrismMinAspectRatio(self, "PrismMinAspectRatio", service, rules, path)
|
|
10271
|
+
self.StairstepExposedQuads = self._StairstepExposedQuads(self, "StairstepExposedQuads", service, rules, path)
|
|
10257
10272
|
self.PrismAdjacentAngle = self._PrismAdjacentAngle(self, "PrismAdjacentAngle", service, rules, path)
|
|
10258
10273
|
|
|
10259
10274
|
class _PrismKeepFirstLayer(PyTextualCommandArgumentsSubItem):
|
|
@@ -10301,14 +10316,14 @@ class Root(PyMenu):
|
|
|
10301
10316
|
Display global settings for your boundary layers. Note that these settings are not applied for Multizone boundary layers
|
|
10302
10317
|
"""
|
|
10303
10318
|
|
|
10304
|
-
class
|
|
10319
|
+
class _PrismMinAspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
10305
10320
|
"""
|
|
10306
|
-
|
|
10321
|
+
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.
|
|
10307
10322
|
"""
|
|
10308
10323
|
|
|
10309
|
-
class
|
|
10324
|
+
class _StairstepExposedQuads(PyTextualCommandArgumentsSubItem):
|
|
10310
10325
|
"""
|
|
10311
|
-
|
|
10326
|
+
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.
|
|
10312
10327
|
"""
|
|
10313
10328
|
|
|
10314
10329
|
class _PrismAdjacentAngle(PyNumericalCommandArgumentsSubItem):
|
|
@@ -10324,18 +10339,18 @@ class Root(PyMenu):
|
|
|
10324
10339
|
def __init__(self, parent, attr, service, rules, path):
|
|
10325
10340
|
super().__init__(parent, attr, service, rules, path)
|
|
10326
10341
|
self.ShowGlobalThinVolumePreferences = self._ShowGlobalThinVolumePreferences(self, "ShowGlobalThinVolumePreferences", service, rules, path)
|
|
10327
|
-
self.MinAspectRatio = self._MinAspectRatio(self, "MinAspectRatio", service, rules, path)
|
|
10328
|
-
self.StairStep = self._StairStep(self, "StairStep", service, rules, path)
|
|
10329
10342
|
self.AutoOrderControls = self._AutoOrderControls(self, "AutoOrderControls", service, rules, path)
|
|
10343
|
+
self.StairStep = self._StairStep(self, "StairStep", service, rules, path)
|
|
10344
|
+
self.MinAspectRatio = self._MinAspectRatio(self, "MinAspectRatio", service, rules, path)
|
|
10330
10345
|
|
|
10331
10346
|
class _ShowGlobalThinVolumePreferences(PyParameterCommandArgumentsSubItem):
|
|
10332
10347
|
"""
|
|
10333
10348
|
Display global settings for thin volume meshing.
|
|
10334
10349
|
"""
|
|
10335
10350
|
|
|
10336
|
-
class
|
|
10351
|
+
class _AutoOrderControls(PyTextualCommandArgumentsSubItem):
|
|
10337
10352
|
"""
|
|
10338
|
-
|
|
10353
|
+
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.
|
|
10339
10354
|
"""
|
|
10340
10355
|
|
|
10341
10356
|
class _StairStep(PyTextualCommandArgumentsSubItem):
|
|
@@ -10343,9 +10358,9 @@ class Root(PyMenu):
|
|
|
10343
10358
|
Use this option to invoke stair-stepping at thin volume mesh regions.
|
|
10344
10359
|
"""
|
|
10345
10360
|
|
|
10346
|
-
class
|
|
10361
|
+
class _MinAspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
10347
10362
|
"""
|
|
10348
|
-
|
|
10363
|
+
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.
|
|
10349
10364
|
"""
|
|
10350
10365
|
|
|
10351
10366
|
class _InvokePrimsControl(PyTextualCommandArgumentsSubItem):
|
|
@@ -10495,8 +10510,8 @@ class Root(PyMenu):
|
|
|
10495
10510
|
self.SaveSizeFieldFile = self._SaveSizeFieldFile(self, "SaveSizeFieldFile", service, rules, path)
|
|
10496
10511
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
10497
10512
|
self.ScopeProximityTo = self._ScopeProximityTo(self, "ScopeProximityTo", service, rules, path)
|
|
10498
|
-
self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
|
|
10499
10513
|
self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
|
|
10514
|
+
self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
|
|
10500
10515
|
self.SaveSizeField = self._SaveSizeField(self, "SaveSizeField", service, rules, path)
|
|
10501
10516
|
self.UseSizeFiles = self._UseSizeFiles(self, "UseSizeFiles", service, rules, path)
|
|
10502
10517
|
self.AutoCreateScopedSizing = self._AutoCreateScopedSizing(self, "AutoCreateScopedSizing", service, rules, path)
|
|
@@ -10526,14 +10541,14 @@ class Root(PyMenu):
|
|
|
10526
10541
|
Argument ScopeProximityTo.
|
|
10527
10542
|
"""
|
|
10528
10543
|
|
|
10529
|
-
class
|
|
10544
|
+
class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
|
|
10530
10545
|
"""
|
|
10531
|
-
Argument
|
|
10546
|
+
Argument PreviewSizefield.
|
|
10532
10547
|
"""
|
|
10533
10548
|
|
|
10534
|
-
class
|
|
10549
|
+
class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
10535
10550
|
"""
|
|
10536
|
-
Argument
|
|
10551
|
+
Argument CurvatureNormalAngle.
|
|
10537
10552
|
"""
|
|
10538
10553
|
|
|
10539
10554
|
class _SaveSizeField(PyParameterCommandArgumentsSubItem):
|
|
@@ -10750,10 +10765,10 @@ class Root(PyMenu):
|
|
|
10750
10765
|
self.SIQualityIterations = self._SIQualityIterations(self, "SIQualityIterations", service, rules, path)
|
|
10751
10766
|
self.SIQualityMaxAngle = self._SIQualityMaxAngle(self, "SIQualityMaxAngle", service, rules, path)
|
|
10752
10767
|
self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
|
|
10753
|
-
self.
|
|
10768
|
+
self.ShowSMImprovePreferences = self._ShowSMImprovePreferences(self, "ShowSMImprovePreferences", service, rules, path)
|
|
10754
10769
|
self.AdvancedImprove = self._AdvancedImprove(self, "AdvancedImprove", service, rules, path)
|
|
10755
10770
|
self.SIStepWidth = self._SIStepWidth(self, "SIStepWidth", service, rules, path)
|
|
10756
|
-
self.
|
|
10771
|
+
self.SIRemoveStep = self._SIRemoveStep(self, "SIRemoveStep", service, rules, path)
|
|
10757
10772
|
|
|
10758
10773
|
class _SIStepQualityLimit(PyNumericalCommandArgumentsSubItem):
|
|
10759
10774
|
"""
|
|
@@ -10780,9 +10795,9 @@ class Root(PyMenu):
|
|
|
10780
10795
|
Argument AllowDefeaturing.
|
|
10781
10796
|
"""
|
|
10782
10797
|
|
|
10783
|
-
class
|
|
10798
|
+
class _ShowSMImprovePreferences(PyParameterCommandArgumentsSubItem):
|
|
10784
10799
|
"""
|
|
10785
|
-
Argument
|
|
10800
|
+
Argument ShowSMImprovePreferences.
|
|
10786
10801
|
"""
|
|
10787
10802
|
|
|
10788
10803
|
class _AdvancedImprove(PyTextualCommandArgumentsSubItem):
|
|
@@ -10795,9 +10810,9 @@ class Root(PyMenu):
|
|
|
10795
10810
|
Argument SIStepWidth.
|
|
10796
10811
|
"""
|
|
10797
10812
|
|
|
10798
|
-
class
|
|
10813
|
+
class _SIRemoveStep(PyTextualCommandArgumentsSubItem):
|
|
10799
10814
|
"""
|
|
10800
|
-
Argument
|
|
10815
|
+
Argument SIRemoveStep.
|
|
10801
10816
|
"""
|
|
10802
10817
|
|
|
10803
10818
|
def create_instance(self) -> _GeometrySetupCommandArguments:
|
|
@@ -11012,15 +11027,15 @@ class Root(PyMenu):
|
|
|
11012
11027
|
self.X1 = self._X1(self, "X1", service, rules, path)
|
|
11013
11028
|
self.Y1 = self._Y1(self, "Y1", service, rules, path)
|
|
11014
11029
|
self.Z_Offset = self._Z_Offset(self, "Z-Offset", service, rules, path)
|
|
11015
|
-
self.Z1 = self._Z1(self, "Z1", service, rules, path)
|
|
11016
|
-
self.Node1 = self._Node1(self, "Node1", service, rules, path)
|
|
11017
11030
|
self.Z2 = self._Z2(self, "Z2", service, rules, path)
|
|
11031
|
+
self.Node1 = self._Node1(self, "Node1", service, rules, path)
|
|
11032
|
+
self.Z1 = self._Z1(self, "Z1", service, rules, path)
|
|
11018
11033
|
self.Radius2 = self._Radius2(self, "Radius2", service, rules, path)
|
|
11019
11034
|
self.Y2 = self._Y2(self, "Y2", service, rules, path)
|
|
11020
11035
|
self.Node3 = self._Node3(self, "Node3", service, rules, path)
|
|
11036
|
+
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
11021
11037
|
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
11022
11038
|
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
11023
|
-
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
11024
11039
|
self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
|
|
11025
11040
|
self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
|
|
11026
11041
|
|
|
@@ -11054,9 +11069,9 @@ class Root(PyMenu):
|
|
|
11054
11069
|
Argument Z-Offset.
|
|
11055
11070
|
"""
|
|
11056
11071
|
|
|
11057
|
-
class
|
|
11072
|
+
class _Z2(PyNumericalCommandArgumentsSubItem):
|
|
11058
11073
|
"""
|
|
11059
|
-
Argument
|
|
11074
|
+
Argument Z2.
|
|
11060
11075
|
"""
|
|
11061
11076
|
|
|
11062
11077
|
class _Node1(PyTextualCommandArgumentsSubItem):
|
|
@@ -11064,9 +11079,9 @@ class Root(PyMenu):
|
|
|
11064
11079
|
Argument Node1.
|
|
11065
11080
|
"""
|
|
11066
11081
|
|
|
11067
|
-
class
|
|
11082
|
+
class _Z1(PyNumericalCommandArgumentsSubItem):
|
|
11068
11083
|
"""
|
|
11069
|
-
Argument
|
|
11084
|
+
Argument Z1.
|
|
11070
11085
|
"""
|
|
11071
11086
|
|
|
11072
11087
|
class _Radius2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -11084,6 +11099,11 @@ class Root(PyMenu):
|
|
|
11084
11099
|
Argument Node3.
|
|
11085
11100
|
"""
|
|
11086
11101
|
|
|
11102
|
+
class _Node2(PyTextualCommandArgumentsSubItem):
|
|
11103
|
+
"""
|
|
11104
|
+
Argument Node2.
|
|
11105
|
+
"""
|
|
11106
|
+
|
|
11087
11107
|
class _Y_Offset(PyNumericalCommandArgumentsSubItem):
|
|
11088
11108
|
"""
|
|
11089
11109
|
Argument Y-Offset.
|
|
@@ -11094,11 +11114,6 @@ class Root(PyMenu):
|
|
|
11094
11114
|
Argument X2.
|
|
11095
11115
|
"""
|
|
11096
11116
|
|
|
11097
|
-
class _Node2(PyTextualCommandArgumentsSubItem):
|
|
11098
|
-
"""
|
|
11099
|
-
Argument Node2.
|
|
11100
|
-
"""
|
|
11101
|
-
|
|
11102
11117
|
class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
|
|
11103
11118
|
"""
|
|
11104
11119
|
Argument HeightFrontInc.
|
|
@@ -11122,7 +11137,7 @@ class Root(PyMenu):
|
|
|
11122
11137
|
def __init__(self, parent, attr, service, rules, path):
|
|
11123
11138
|
super().__init__(parent, attr, service, rules, path)
|
|
11124
11139
|
self.SizeRelativeLength = self._SizeRelativeLength(self, "SizeRelativeLength", service, rules, path)
|
|
11125
|
-
self.
|
|
11140
|
+
self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
|
|
11126
11141
|
self.XminRatio = self._XminRatio(self, "XminRatio", service, rules, path)
|
|
11127
11142
|
self.YminRatio = self._YminRatio(self, "YminRatio", service, rules, path)
|
|
11128
11143
|
self.Zmin = self._Zmin(self, "Zmin", service, rules, path)
|
|
@@ -11133,16 +11148,16 @@ class Root(PyMenu):
|
|
|
11133
11148
|
self.Xmin = self._Xmin(self, "Xmin", service, rules, path)
|
|
11134
11149
|
self.YmaxRatio = self._YmaxRatio(self, "YmaxRatio", service, rules, path)
|
|
11135
11150
|
self.ZmaxRatio = self._ZmaxRatio(self, "ZmaxRatio", service, rules, path)
|
|
11136
|
-
self.
|
|
11151
|
+
self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
|
|
11137
11152
|
|
|
11138
11153
|
class _SizeRelativeLength(PyTextualCommandArgumentsSubItem):
|
|
11139
11154
|
"""
|
|
11140
11155
|
Determine if you would like to specify the bounding box for the construction surface as a ratio of the geometry length, or by specifying a specific location for the minimum and maximum coordinates.
|
|
11141
11156
|
"""
|
|
11142
11157
|
|
|
11143
|
-
class
|
|
11158
|
+
class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
|
|
11144
11159
|
"""
|
|
11145
|
-
Extends the maximum size of the bounding box in the X direction by the specified value.
|
|
11160
|
+
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.
|
|
11146
11161
|
"""
|
|
11147
11162
|
|
|
11148
11163
|
class _XminRatio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -11195,9 +11210,9 @@ class Root(PyMenu):
|
|
|
11195
11210
|
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.
|
|
11196
11211
|
"""
|
|
11197
11212
|
|
|
11198
|
-
class
|
|
11213
|
+
class _Xmax(PyNumericalCommandArgumentsSubItem):
|
|
11199
11214
|
"""
|
|
11200
|
-
Extends the maximum size of the bounding box in the X direction by the specified value.
|
|
11215
|
+
Extends the maximum size of the bounding box in the X direction by the specified value.
|
|
11201
11216
|
"""
|
|
11202
11217
|
|
|
11203
11218
|
def create_instance(self) -> _IdentifyConstructionSurfacesCommandArguments:
|
|
@@ -11630,9 +11645,9 @@ class Root(PyMenu):
|
|
|
11630
11645
|
self.OneZonePer = self._OneZonePer(self, "OneZonePer", service, rules, path)
|
|
11631
11646
|
self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
|
|
11632
11647
|
self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
|
|
11633
|
-
self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
|
|
11634
|
-
self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
|
|
11635
11648
|
self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
|
|
11649
|
+
self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
|
|
11650
|
+
self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
|
|
11636
11651
|
|
|
11637
11652
|
class _SavePMDBIntermediateFile(PyParameterCommandArgumentsSubItem):
|
|
11638
11653
|
"""
|
|
@@ -11674,9 +11689,9 @@ class Root(PyMenu):
|
|
|
11674
11689
|
Argument ExtractFeatures.
|
|
11675
11690
|
"""
|
|
11676
11691
|
|
|
11677
|
-
class
|
|
11692
|
+
class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
|
|
11678
11693
|
"""
|
|
11679
|
-
Argument
|
|
11694
|
+
Argument ImportCurvatureDataFromCAD.
|
|
11680
11695
|
"""
|
|
11681
11696
|
|
|
11682
11697
|
class _ImportPartNames(PyParameterCommandArgumentsSubItem):
|
|
@@ -11684,9 +11699,9 @@ class Root(PyMenu):
|
|
|
11684
11699
|
Argument ImportPartNames.
|
|
11685
11700
|
"""
|
|
11686
11701
|
|
|
11687
|
-
class
|
|
11702
|
+
class _ImportNamedSelections(PyParameterCommandArgumentsSubItem):
|
|
11688
11703
|
"""
|
|
11689
|
-
Argument
|
|
11704
|
+
Argument ImportNamedSelections.
|
|
11690
11705
|
"""
|
|
11691
11706
|
|
|
11692
11707
|
def create_instance(self) -> _ImportBodyOfInfluenceGeometryCommandArguments:
|
|
@@ -11776,23 +11791,23 @@ class Root(PyMenu):
|
|
|
11776
11791
|
|
|
11777
11792
|
def __init__(self, parent, attr, service, rules, path):
|
|
11778
11793
|
super().__init__(parent, attr, service, rules, path)
|
|
11779
|
-
self.
|
|
11794
|
+
self.EdgeLabel = self._EdgeLabel(self, "EdgeLabel", service, rules, path)
|
|
11780
11795
|
self.MaxFacetLengthOption = self._MaxFacetLengthOption(self, "MaxFacetLengthOption", service, rules, path)
|
|
11781
11796
|
self.CISeparation = self._CISeparation(self, "CISeparation", service, rules, path)
|
|
11782
|
-
self.
|
|
11797
|
+
self.ExtractAngle = self._ExtractAngle(self, "ExtractAngle", service, rules, path)
|
|
11783
11798
|
self.CIRefaceting = self._CIRefaceting(self, "CIRefaceting", service, rules, path)
|
|
11784
|
-
self.
|
|
11799
|
+
self.FacetedBodies = self._FacetedBodies(self, "FacetedBodies", service, rules, path)
|
|
11785
11800
|
self.AutomaticObjectCreation = self._AutomaticObjectCreation(self, "AutomaticObjectCreation", service, rules, path)
|
|
11786
|
-
self.MaxFacetLength = self._MaxFacetLength(self, "MaxFacetLength", service, rules, path)
|
|
11787
11801
|
self.MaxFacetLengthRatio = self._MaxFacetLengthRatio(self, "MaxFacetLengthRatio", service, rules, path)
|
|
11788
11802
|
self.ShowImportCadPreferences = self._ShowImportCadPreferences(self, "ShowImportCadPreferences", service, rules, path)
|
|
11803
|
+
self.MaxFacetLength = self._MaxFacetLength(self, "MaxFacetLength", service, rules, path)
|
|
11789
11804
|
self.MergeNodes = self._MergeNodes(self, "MergeNodes", service, rules, path)
|
|
11790
11805
|
self.CISeparationAngle = self._CISeparationAngle(self, "CISeparationAngle", service, rules, path)
|
|
11791
|
-
self.
|
|
11806
|
+
self.CITolerence = self._CITolerence(self, "CITolerence", service, rules, path)
|
|
11792
11807
|
|
|
11793
|
-
class
|
|
11808
|
+
class _EdgeLabel(PyTextualCommandArgumentsSubItem):
|
|
11794
11809
|
"""
|
|
11795
|
-
|
|
11810
|
+
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.
|
|
11796
11811
|
"""
|
|
11797
11812
|
|
|
11798
11813
|
class _MaxFacetLengthOption(PyTextualCommandArgumentsSubItem):
|
|
@@ -11805,9 +11820,9 @@ class Root(PyMenu):
|
|
|
11805
11820
|
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.
|
|
11806
11821
|
"""
|
|
11807
11822
|
|
|
11808
|
-
class
|
|
11823
|
+
class _ExtractAngle(PyNumericalCommandArgumentsSubItem):
|
|
11809
11824
|
"""
|
|
11810
|
-
|
|
11825
|
+
Argument ExtractAngle.
|
|
11811
11826
|
"""
|
|
11812
11827
|
|
|
11813
11828
|
class _CIRefaceting(PyParameterCommandArgumentsSubItem):
|
|
@@ -11815,9 +11830,9 @@ class Root(PyMenu):
|
|
|
11815
11830
|
Enable this option to be able to set the Tolerance and the Max Facet Length custom faceting options for the imported geometry.
|
|
11816
11831
|
"""
|
|
11817
11832
|
|
|
11818
|
-
class
|
|
11833
|
+
class _FacetedBodies(PyTextualCommandArgumentsSubItem):
|
|
11819
11834
|
"""
|
|
11820
|
-
|
|
11835
|
+
When performing faceting and wrapping operations in your CAD tool lead to non-CAD geometries, set this option to yes to be able to use such geometries in the workflow. To ensure a relatively good quality surface mesh, you should shrink wrap any faceted bodies. In addition, each shrink-wrapped faceted body should be defined in its own unique component within the CAD environment.
|
|
11821
11836
|
"""
|
|
11822
11837
|
|
|
11823
11838
|
class _AutomaticObjectCreation(PyTextualCommandArgumentsSubItem):
|
|
@@ -11825,11 +11840,6 @@ class Root(PyMenu):
|
|
|
11825
11840
|
Determine whether or not mesh objects and labels are automatically created upon import, potentially and dramatically increasing the mesh import speed for very large cases. By default, this is set to yes however, if it is set to no, then no labels are created and a single mesh object is created employing all zones.
|
|
11826
11841
|
"""
|
|
11827
11842
|
|
|
11828
|
-
class _MaxFacetLength(PyNumericalCommandArgumentsSubItem):
|
|
11829
|
-
"""
|
|
11830
|
-
Enables you to specify a maximum facet size for the imported model to avoid very large facets during the file import. Depending on the CAD geometry, this may yield more accuracy.
|
|
11831
|
-
"""
|
|
11832
|
-
|
|
11833
11843
|
class _MaxFacetLengthRatio(PyNumericalCommandArgumentsSubItem):
|
|
11834
11844
|
"""
|
|
11835
11845
|
Argument MaxFacetLengthRatio.
|
|
@@ -11840,6 +11850,11 @@ class Root(PyMenu):
|
|
|
11840
11850
|
Display advanced options that you may want to apply to the task.
|
|
11841
11851
|
"""
|
|
11842
11852
|
|
|
11853
|
+
class _MaxFacetLength(PyNumericalCommandArgumentsSubItem):
|
|
11854
|
+
"""
|
|
11855
|
+
Enables you to specify a maximum facet size for the imported model to avoid very large facets during the file import. Depending on the CAD geometry, this may yield more accuracy.
|
|
11856
|
+
"""
|
|
11857
|
+
|
|
11843
11858
|
class _MergeNodes(PyTextualCommandArgumentsSubItem):
|
|
11844
11859
|
"""
|
|
11845
11860
|
Argument MergeNodes.
|
|
@@ -11850,9 +11865,9 @@ class Root(PyMenu):
|
|
|
11850
11865
|
Specify the angle at which features will be extracted from the CAD model on import. Assigning a smaller separation angle will produce more zones.
|
|
11851
11866
|
"""
|
|
11852
11867
|
|
|
11853
|
-
class
|
|
11868
|
+
class _CITolerence(PyNumericalCommandArgumentsSubItem):
|
|
11854
11869
|
"""
|
|
11855
|
-
Specify
|
|
11870
|
+
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.
|
|
11856
11871
|
"""
|
|
11857
11872
|
|
|
11858
11873
|
class _FileName(PyTextualCommandArgumentsSubItem):
|
|
@@ -11903,9 +11918,9 @@ class Root(PyMenu):
|
|
|
11903
11918
|
self.CreateCADAssemblies = self._CreateCADAssemblies(self, "CreateCADAssemblies", service, rules, path)
|
|
11904
11919
|
self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
|
|
11905
11920
|
self.OneZonePer = self._OneZonePer(self, "OneZonePer", service, rules, path)
|
|
11906
|
-
self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
|
|
11907
|
-
self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
|
|
11908
11921
|
self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
|
|
11922
|
+
self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
|
|
11923
|
+
self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
|
|
11909
11924
|
self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
|
|
11910
11925
|
self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
|
|
11911
11926
|
|
|
@@ -11939,9 +11954,9 @@ class Root(PyMenu):
|
|
|
11939
11954
|
Argument OneZonePer.
|
|
11940
11955
|
"""
|
|
11941
11956
|
|
|
11942
|
-
class
|
|
11957
|
+
class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
|
|
11943
11958
|
"""
|
|
11944
|
-
Argument
|
|
11959
|
+
Argument ImportCurvatureDataFromCAD.
|
|
11945
11960
|
"""
|
|
11946
11961
|
|
|
11947
11962
|
class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
|
|
@@ -11949,9 +11964,9 @@ class Root(PyMenu):
|
|
|
11949
11964
|
Argument ExtractFeatures.
|
|
11950
11965
|
"""
|
|
11951
11966
|
|
|
11952
|
-
class
|
|
11967
|
+
class _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
|
|
11953
11968
|
"""
|
|
11954
|
-
Argument
|
|
11969
|
+
Argument UsePartOrBodyAsSuffix.
|
|
11955
11970
|
"""
|
|
11956
11971
|
|
|
11957
11972
|
class _ImportPartNames(PyParameterCommandArgumentsSubItem):
|
|
@@ -12026,10 +12041,10 @@ class Root(PyMenu):
|
|
|
12026
12041
|
self.SIQualityIterations = self._SIQualityIterations(self, "SIQualityIterations", service, rules, path)
|
|
12027
12042
|
self.SIQualityMaxAngle = self._SIQualityMaxAngle(self, "SIQualityMaxAngle", service, rules, path)
|
|
12028
12043
|
self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
|
|
12029
|
-
self.
|
|
12044
|
+
self.SIRemoveStep = self._SIRemoveStep(self, "SIRemoveStep", service, rules, path)
|
|
12030
12045
|
self.AdvancedImprove = self._AdvancedImprove(self, "AdvancedImprove", service, rules, path)
|
|
12031
12046
|
self.SIStepWidth = self._SIStepWidth(self, "SIStepWidth", service, rules, path)
|
|
12032
|
-
self.
|
|
12047
|
+
self.ShowSMImprovePreferences = self._ShowSMImprovePreferences(self, "ShowSMImprovePreferences", service, rules, path)
|
|
12033
12048
|
|
|
12034
12049
|
class _SIStepQualityLimit(PyNumericalCommandArgumentsSubItem):
|
|
12035
12050
|
"""
|
|
@@ -12056,9 +12071,9 @@ class Root(PyMenu):
|
|
|
12056
12071
|
Argument AllowDefeaturing.
|
|
12057
12072
|
"""
|
|
12058
12073
|
|
|
12059
|
-
class
|
|
12074
|
+
class _SIRemoveStep(PyTextualCommandArgumentsSubItem):
|
|
12060
12075
|
"""
|
|
12061
|
-
|
|
12076
|
+
Indicate if there are any small imperfections (ledge or step artifacts from the original CAD geometry) that can be removed as part of this task. If you select yes, then you must specify a Max Step Width and the Step Skewness Quality Limit.
|
|
12062
12077
|
"""
|
|
12063
12078
|
|
|
12064
12079
|
class _AdvancedImprove(PyTextualCommandArgumentsSubItem):
|
|
@@ -12071,9 +12086,9 @@ class Root(PyMenu):
|
|
|
12071
12086
|
Specify the width of the step that you wish to remove.
|
|
12072
12087
|
"""
|
|
12073
12088
|
|
|
12074
|
-
class
|
|
12089
|
+
class _ShowSMImprovePreferences(PyParameterCommandArgumentsSubItem):
|
|
12075
12090
|
"""
|
|
12076
|
-
|
|
12091
|
+
Display advanced options that you may want to apply to the task.
|
|
12077
12092
|
"""
|
|
12078
12093
|
|
|
12079
12094
|
def create_instance(self) -> _ImproveSurfaceMeshCommandArguments:
|
|
@@ -12287,8 +12302,8 @@ class Root(PyMenu):
|
|
|
12287
12302
|
def __init__(self, parent, attr, service, rules, path):
|
|
12288
12303
|
super().__init__(parent, attr, service, rules, path)
|
|
12289
12304
|
self.FirstNumber = self._FirstNumber(self, "FirstNumber", service, rules, path)
|
|
12290
|
-
self.CustomPatternString = self._CustomPatternString(self, "CustomPatternString", service, rules, path)
|
|
12291
12305
|
self.NbCellsPerUnit = self._NbCellsPerUnit(self, "NbCellsPerUnit", service, rules, path)
|
|
12306
|
+
self.CustomPatternString = self._CustomPatternString(self, "CustomPatternString", service, rules, path)
|
|
12292
12307
|
self.InvokeBatteryModelingOptions = self._InvokeBatteryModelingOptions(self, "InvokeBatteryModelingOptions", service, rules, path)
|
|
12293
12308
|
self.UseCustomPattern = self._UseCustomPattern(self, "UseCustomPattern", service, rules, path)
|
|
12294
12309
|
|
|
@@ -12297,14 +12312,14 @@ class Root(PyMenu):
|
|
|
12297
12312
|
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...
|
|
12298
12313
|
"""
|
|
12299
12314
|
|
|
12300
|
-
class
|
|
12315
|
+
class _NbCellsPerUnit(PyNumericalCommandArgumentsSubItem):
|
|
12301
12316
|
"""
|
|
12302
|
-
|
|
12317
|
+
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...
|
|
12303
12318
|
"""
|
|
12304
12319
|
|
|
12305
|
-
class
|
|
12320
|
+
class _CustomPatternString(PyTextualCommandArgumentsSubItem):
|
|
12306
12321
|
"""
|
|
12307
|
-
|
|
12322
|
+
Argument CustomPatternString.
|
|
12308
12323
|
"""
|
|
12309
12324
|
|
|
12310
12325
|
class _InvokeBatteryModelingOptions(PyTextualCommandArgumentsSubItem):
|
|
@@ -12397,9 +12412,9 @@ class Root(PyMenu):
|
|
|
12397
12412
|
super().__init__(parent, attr, service, rules, path)
|
|
12398
12413
|
self.FacetMaxEdgeLength = self._FacetMaxEdgeLength(self, "FacetMaxEdgeLength", service, rules, path)
|
|
12399
12414
|
self.FacetResolution = self._FacetResolution(self, "FacetResolution", service, rules, path)
|
|
12415
|
+
self.MaxEdgeLengthFactor = self._MaxEdgeLengthFactor(self, "MaxEdgeLengthFactor", service, rules, path)
|
|
12400
12416
|
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
12401
12417
|
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
12402
|
-
self.MaxEdgeLengthFactor = self._MaxEdgeLengthFactor(self, "MaxEdgeLengthFactor", service, rules, path)
|
|
12403
12418
|
self.MaxEdgeLength = self._MaxEdgeLength(self, "MaxEdgeLength", service, rules, path)
|
|
12404
12419
|
self.CustomNormalAngle = self._CustomNormalAngle(self, "CustomNormalAngle", service, rules, path)
|
|
12405
12420
|
self.CustomDeviation = self._CustomDeviation(self, "CustomDeviation", service, rules, path)
|
|
@@ -12415,6 +12430,11 @@ class Root(PyMenu):
|
|
|
12415
12430
|
Argument FacetResolution.
|
|
12416
12431
|
"""
|
|
12417
12432
|
|
|
12433
|
+
class _MaxEdgeLengthFactor(PyNumericalCommandArgumentsSubItem):
|
|
12434
|
+
"""
|
|
12435
|
+
Argument MaxEdgeLengthFactor.
|
|
12436
|
+
"""
|
|
12437
|
+
|
|
12418
12438
|
class _Deviation(PyNumericalCommandArgumentsSubItem):
|
|
12419
12439
|
"""
|
|
12420
12440
|
Argument Deviation.
|
|
@@ -12425,11 +12445,6 @@ class Root(PyMenu):
|
|
|
12425
12445
|
Argument NormalAngle.
|
|
12426
12446
|
"""
|
|
12427
12447
|
|
|
12428
|
-
class _MaxEdgeLengthFactor(PyNumericalCommandArgumentsSubItem):
|
|
12429
|
-
"""
|
|
12430
|
-
Argument MaxEdgeLengthFactor.
|
|
12431
|
-
"""
|
|
12432
|
-
|
|
12433
12448
|
class _MaxEdgeLength(PyNumericalCommandArgumentsSubItem):
|
|
12434
12449
|
"""
|
|
12435
12450
|
Argument MaxEdgeLength.
|
|
@@ -12554,11 +12569,11 @@ class Root(PyMenu):
|
|
|
12554
12569
|
self.MinSize = self._MinSize(self, "MinSize", service, rules, path)
|
|
12555
12570
|
self.WrapMax = self._WrapMax(self, "WrapMax", service, rules, path)
|
|
12556
12571
|
self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
|
|
12557
|
-
self.InitialSizeControl = self._InitialSizeControl(self, "InitialSizeControl", service, rules, path)
|
|
12558
12572
|
self.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", service, rules, path)
|
|
12573
|
+
self.InitialSizeControl = self._InitialSizeControl(self, "InitialSizeControl", service, rules, path)
|
|
12559
12574
|
self.SizingType = self._SizingType(self, "SizingType", service, rules, path)
|
|
12560
|
-
self.CellsPerGap = self._CellsPerGap(self, "CellsPerGap", service, rules, path)
|
|
12561
12575
|
self.WrapCurvatureNormalAngle = self._WrapCurvatureNormalAngle(self, "WrapCurvatureNormalAngle", service, rules, path)
|
|
12576
|
+
self.CellsPerGap = self._CellsPerGap(self, "CellsPerGap", service, rules, path)
|
|
12562
12577
|
self.TargetSizeControl = self._TargetSizeControl(self, "TargetSizeControl", service, rules, path)
|
|
12563
12578
|
self.GrowthRate = self._GrowthRate(self, "GrowthRate", service, rules, path)
|
|
12564
12579
|
|
|
@@ -12607,14 +12622,14 @@ class Root(PyMenu):
|
|
|
12607
12622
|
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.
|
|
12608
12623
|
"""
|
|
12609
12624
|
|
|
12610
|
-
class
|
|
12625
|
+
class _WrapGrowthRate(PyNumericalCommandArgumentsSubItem):
|
|
12611
12626
|
"""
|
|
12612
|
-
|
|
12627
|
+
Specify the increase in element edge length with each succeeding layer of elements.
|
|
12613
12628
|
"""
|
|
12614
12629
|
|
|
12615
|
-
class
|
|
12630
|
+
class _InitialSizeControl(PyParameterCommandArgumentsSubItem):
|
|
12616
12631
|
"""
|
|
12617
|
-
|
|
12632
|
+
Enable this field to display the initial size control in the graphics window.
|
|
12618
12633
|
"""
|
|
12619
12634
|
|
|
12620
12635
|
class _SizingType(PyTextualCommandArgumentsSubItem):
|
|
@@ -12622,14 +12637,14 @@ class Root(PyMenu):
|
|
|
12622
12637
|
Choose the type of sizing control (curvature, proximity, soft, or boi).
|
|
12623
12638
|
"""
|
|
12624
12639
|
|
|
12625
|
-
class
|
|
12640
|
+
class _WrapCurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
12626
12641
|
"""
|
|
12627
|
-
Specify the
|
|
12642
|
+
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.
|
|
12628
12643
|
"""
|
|
12629
12644
|
|
|
12630
|
-
class
|
|
12645
|
+
class _CellsPerGap(PyNumericalCommandArgumentsSubItem):
|
|
12631
12646
|
"""
|
|
12632
|
-
Specify the
|
|
12647
|
+
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.
|
|
12633
12648
|
"""
|
|
12634
12649
|
|
|
12635
12650
|
class _TargetSizeControl(PyParameterCommandArgumentsSubItem):
|
|
@@ -13333,8 +13348,8 @@ class Root(PyMenu):
|
|
|
13333
13348
|
super().__init__(parent, attr, service, rules, path)
|
|
13334
13349
|
self.FacetMaxEdgeLength = self._FacetMaxEdgeLength(self, "FacetMaxEdgeLength", service, rules, path)
|
|
13335
13350
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
13336
|
-
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
13337
13351
|
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
13352
|
+
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
13338
13353
|
self.Refacet = self._Refacet(self, "Refacet", service, rules, path)
|
|
13339
13354
|
self.MaxEdgeLengthFactor = self._MaxEdgeLengthFactor(self, "MaxEdgeLengthFactor", service, rules, path)
|
|
13340
13355
|
|
|
@@ -13348,14 +13363,14 @@ class Root(PyMenu):
|
|
|
13348
13363
|
Specify a maximum element size for the imported model to avoid very large facets during the file import.
|
|
13349
13364
|
"""
|
|
13350
13365
|
|
|
13351
|
-
class
|
|
13366
|
+
class _NormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
13352
13367
|
"""
|
|
13353
|
-
Specify
|
|
13368
|
+
Specify a rotational angle (in degrees) of transformation.
|
|
13354
13369
|
"""
|
|
13355
13370
|
|
|
13356
|
-
class
|
|
13371
|
+
class _Deviation(PyNumericalCommandArgumentsSubItem):
|
|
13357
13372
|
"""
|
|
13358
|
-
Specify
|
|
13373
|
+
Specify the distance between facet edges and the geometry edges. Decreasing this value will result in more facets along curved edges.
|
|
13359
13374
|
"""
|
|
13360
13375
|
|
|
13361
13376
|
class _Refacet(PyParameterCommandArgumentsSubItem):
|
|
@@ -13428,8 +13443,8 @@ class Root(PyMenu):
|
|
|
13428
13443
|
super().__init__(parent, attr, service, rules, path)
|
|
13429
13444
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
13430
13445
|
self.RefacetDuringLoad = self._RefacetDuringLoad(self, "RefacetDuringLoad", service, rules, path)
|
|
13431
|
-
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
13432
13446
|
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
13447
|
+
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
13433
13448
|
|
|
13434
13449
|
class _MaxSize(PyNumericalCommandArgumentsSubItem):
|
|
13435
13450
|
"""
|
|
@@ -13441,14 +13456,14 @@ class Root(PyMenu):
|
|
|
13441
13456
|
This option is available when DSCO is selected for the Import Route. When enabled, this option will refacet the geometry as it is converted to a .fmd file. This option eliminates the need for any refaceting operation after the geometry is loaded, which can be expensive.
|
|
13442
13457
|
"""
|
|
13443
13458
|
|
|
13444
|
-
class
|
|
13459
|
+
class _Deviation(PyNumericalCommandArgumentsSubItem):
|
|
13445
13460
|
"""
|
|
13446
|
-
Specify
|
|
13461
|
+
Specify the distance between facet edges and the geometry edges. Decreasing this value will result in more facets along curved edges.
|
|
13447
13462
|
"""
|
|
13448
13463
|
|
|
13449
|
-
class
|
|
13464
|
+
class _NormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
13450
13465
|
"""
|
|
13451
|
-
Specify
|
|
13466
|
+
Specify a rotational angle (in degrees) of transformation.
|
|
13452
13467
|
"""
|
|
13453
13468
|
|
|
13454
13469
|
def create_instance(self) -> _PartManagementCommandArguments:
|
|
@@ -13579,6 +13594,47 @@ class Root(PyMenu):
|
|
|
13579
13594
|
if args is not None:
|
|
13580
13595
|
return self._PartReplacementSettingsCommandArguments(*args)
|
|
13581
13596
|
|
|
13597
|
+
class PrepareForVolumeMeshing(PyCommand):
|
|
13598
|
+
"""
|
|
13599
|
+
Command PrepareForVolumeMeshing.
|
|
13600
|
+
|
|
13601
|
+
Parameters
|
|
13602
|
+
----------
|
|
13603
|
+
MergeZonesBasedOnLabels : bool
|
|
13604
|
+
SoftTargetSkewness : float
|
|
13605
|
+
HardTargetSkewness : float
|
|
13606
|
+
|
|
13607
|
+
Returns
|
|
13608
|
+
-------
|
|
13609
|
+
bool
|
|
13610
|
+
"""
|
|
13611
|
+
class _PrepareForVolumeMeshingCommandArguments(PyCommandArguments):
|
|
13612
|
+
def __init__(self, service, rules, command, path, id):
|
|
13613
|
+
super().__init__(service, rules, command, path, id)
|
|
13614
|
+
self.MergeZonesBasedOnLabels = self._MergeZonesBasedOnLabels(self, "MergeZonesBasedOnLabels", service, rules, path)
|
|
13615
|
+
self.SoftTargetSkewness = self._SoftTargetSkewness(self, "SoftTargetSkewness", service, rules, path)
|
|
13616
|
+
self.HardTargetSkewness = self._HardTargetSkewness(self, "HardTargetSkewness", service, rules, path)
|
|
13617
|
+
|
|
13618
|
+
class _MergeZonesBasedOnLabels(PyParameterCommandArgumentsSubItem):
|
|
13619
|
+
"""
|
|
13620
|
+
Argument MergeZonesBasedOnLabels.
|
|
13621
|
+
"""
|
|
13622
|
+
|
|
13623
|
+
class _SoftTargetSkewness(PyNumericalCommandArgumentsSubItem):
|
|
13624
|
+
"""
|
|
13625
|
+
Argument SoftTargetSkewness.
|
|
13626
|
+
"""
|
|
13627
|
+
|
|
13628
|
+
class _HardTargetSkewness(PyNumericalCommandArgumentsSubItem):
|
|
13629
|
+
"""
|
|
13630
|
+
Argument HardTargetSkewness.
|
|
13631
|
+
"""
|
|
13632
|
+
|
|
13633
|
+
def create_instance(self) -> _PrepareForVolumeMeshingCommandArguments:
|
|
13634
|
+
args = self._get_create_instance_args()
|
|
13635
|
+
if args is not None:
|
|
13636
|
+
return self._PrepareForVolumeMeshingCommandArguments(*args)
|
|
13637
|
+
|
|
13582
13638
|
class RemeshSurface(PyCommand):
|
|
13583
13639
|
"""
|
|
13584
13640
|
Command RemeshSurface.
|
|
@@ -14198,10 +14254,10 @@ class Root(PyMenu):
|
|
|
14198
14254
|
self.AutoMerge = self._AutoMerge(self, "AutoMerge", service, rules, path)
|
|
14199
14255
|
self.SMQualityImprove = self._SMQualityImprove(self, "SMQualityImprove", service, rules, path)
|
|
14200
14256
|
self.ShowSurfaceMeshPreferences = self._ShowSurfaceMeshPreferences(self, "ShowSurfaceMeshPreferences", service, rules, path)
|
|
14257
|
+
self.FoldFaceLimit = self._FoldFaceLimit(self, "FoldFaceLimit", service, rules, path)
|
|
14201
14258
|
self.SMSeparationAngle = self._SMSeparationAngle(self, "SMSeparationAngle", service, rules, path)
|
|
14202
|
-
self.SMSeparation = self._SMSeparation(self, "SMSeparation", service, rules, path)
|
|
14203
14259
|
self.TVMAutoControlCreation = self._TVMAutoControlCreation(self, "TVMAutoControlCreation", service, rules, path)
|
|
14204
|
-
self.
|
|
14260
|
+
self.SMSeparation = self._SMSeparation(self, "SMSeparation", service, rules, path)
|
|
14205
14261
|
self.SMRemoveStep = self._SMRemoveStep(self, "SMRemoveStep", service, rules, path)
|
|
14206
14262
|
self.ParallelRegionCompute = self._ParallelRegionCompute(self, "ParallelRegionCompute", service, rules, path)
|
|
14207
14263
|
self.SMStepWidth = self._SMStepWidth(self, "SMStepWidth", service, rules, path)
|
|
@@ -14233,14 +14289,14 @@ class Root(PyMenu):
|
|
|
14233
14289
|
Argument ShowSurfaceMeshPreferences.
|
|
14234
14290
|
"""
|
|
14235
14291
|
|
|
14236
|
-
class
|
|
14292
|
+
class _FoldFaceLimit(PyNumericalCommandArgumentsSubItem):
|
|
14237
14293
|
"""
|
|
14238
|
-
Argument
|
|
14294
|
+
Argument FoldFaceLimit.
|
|
14239
14295
|
"""
|
|
14240
14296
|
|
|
14241
|
-
class
|
|
14297
|
+
class _SMSeparationAngle(PyNumericalCommandArgumentsSubItem):
|
|
14242
14298
|
"""
|
|
14243
|
-
Argument
|
|
14299
|
+
Argument SMSeparationAngle.
|
|
14244
14300
|
"""
|
|
14245
14301
|
|
|
14246
14302
|
class _TVMAutoControlCreation(PyTextualCommandArgumentsSubItem):
|
|
@@ -14248,9 +14304,9 @@ class Root(PyMenu):
|
|
|
14248
14304
|
Argument TVMAutoControlCreation.
|
|
14249
14305
|
"""
|
|
14250
14306
|
|
|
14251
|
-
class
|
|
14307
|
+
class _SMSeparation(PyTextualCommandArgumentsSubItem):
|
|
14252
14308
|
"""
|
|
14253
|
-
Argument
|
|
14309
|
+
Argument SMSeparation.
|
|
14254
14310
|
"""
|
|
14255
14311
|
|
|
14256
14312
|
class _SMRemoveStep(PyTextualCommandArgumentsSubItem):
|
|
@@ -14385,10 +14441,10 @@ class Root(PyMenu):
|
|
|
14385
14441
|
def __init__(self, parent, attr, service, rules, path):
|
|
14386
14442
|
super().__init__(parent, attr, service, rules, path)
|
|
14387
14443
|
self.NewLabelObjects = self._NewLabelObjects(self, "NewLabelObjects", service, rules, path)
|
|
14388
|
-
self.NewLabels = self._NewLabels(self, "NewLabels", service, rules, path)
|
|
14389
|
-
self.NewLabelType = self._NewLabelType(self, "NewLabelType", service, rules, path)
|
|
14390
14444
|
self.NewLabelResolution = self._NewLabelResolution(self, "NewLabelResolution", service, rules, path)
|
|
14445
|
+
self.NewLabelType = self._NewLabelType(self, "NewLabelType", service, rules, path)
|
|
14391
14446
|
self.NewLabelCells = self._NewLabelCells(self, "NewLabelCells", service, rules, path)
|
|
14447
|
+
self.NewLabels = self._NewLabels(self, "NewLabels", service, rules, path)
|
|
14392
14448
|
self.NewLabelMax = self._NewLabelMax(self, "NewLabelMax", service, rules, path)
|
|
14393
14449
|
self.NewZoneType = self._NewZoneType(self, "NewZoneType", service, rules, path)
|
|
14394
14450
|
self.NewLabelCurvature = self._NewLabelCurvature(self, "NewLabelCurvature", service, rules, path)
|
|
@@ -14399,9 +14455,9 @@ class Root(PyMenu):
|
|
|
14399
14455
|
Argument NewLabelObjects.
|
|
14400
14456
|
"""
|
|
14401
14457
|
|
|
14402
|
-
class
|
|
14458
|
+
class _NewLabelResolution(PyTextualCommandArgumentsSubItem):
|
|
14403
14459
|
"""
|
|
14404
|
-
Argument
|
|
14460
|
+
Argument NewLabelResolution.
|
|
14405
14461
|
"""
|
|
14406
14462
|
|
|
14407
14463
|
class _NewLabelType(PyTextualCommandArgumentsSubItem):
|
|
@@ -14409,14 +14465,14 @@ class Root(PyMenu):
|
|
|
14409
14465
|
Argument NewLabelType.
|
|
14410
14466
|
"""
|
|
14411
14467
|
|
|
14412
|
-
class
|
|
14468
|
+
class _NewLabelCells(PyTextualCommandArgumentsSubItem):
|
|
14413
14469
|
"""
|
|
14414
|
-
Argument
|
|
14470
|
+
Argument NewLabelCells.
|
|
14415
14471
|
"""
|
|
14416
14472
|
|
|
14417
|
-
class
|
|
14473
|
+
class _NewLabels(PyTextualCommandArgumentsSubItem):
|
|
14418
14474
|
"""
|
|
14419
|
-
Argument
|
|
14475
|
+
Argument NewLabels.
|
|
14420
14476
|
"""
|
|
14421
14477
|
|
|
14422
14478
|
class _NewLabelMax(PyTextualCommandArgumentsSubItem):
|