ansys-fluent-core 0.34.1__py3-none-any.whl → 0.35.0__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 +48 -84
- ansys/fluent/core/codegen/allapigen.py +2 -2
- ansys/fluent/core/codegen/builtin_settingsgen.py +54 -28
- ansys/fluent/core/codegen/datamodelgen.py +3 -1
- ansys/fluent/core/codegen/print_fluent_version.py +2 -2
- ansys/fluent/core/codegen/settingsgen.py +8 -1
- ansys/fluent/core/codegen/tuigen.py +4 -4
- ansys/fluent/core/data_model_cache.py +2 -2
- ansys/fluent/core/docker/docker_compose.py +8 -9
- ansys/fluent/core/docker/utils.py +1 -1
- ansys/fluent/core/examples/downloads.py +9 -12
- ansys/fluent/core/fluent_connection.py +23 -15
- ansys/fluent/core/generated/api_tree/api_objects.json +1 -1
- ansys/fluent/core/generated/datamodel_231/flicing.py +45 -45
- ansys/fluent/core/generated/datamodel_231/meshing.py +183 -183
- ansys/fluent/core/generated/datamodel_232/flicing.py +25 -25
- ansys/fluent/core/generated/datamodel_232/meshing.py +173 -173
- ansys/fluent/core/generated/datamodel_241/flicing.py +30 -30
- ansys/fluent/core/generated/datamodel_241/meshing.py +246 -246
- ansys/fluent/core/generated/datamodel_242/flicing.py +25 -25
- ansys/fluent/core/generated/datamodel_242/meshing.py +273 -273
- ansys/fluent/core/generated/datamodel_242/part_management.py +3 -3
- ansys/fluent/core/generated/datamodel_251/flicing.py +50 -50
- ansys/fluent/core/generated/datamodel_251/meshing.py +361 -361
- ansys/fluent/core/generated/datamodel_251/part_management.py +6 -6
- ansys/fluent/core/generated/datamodel_252/flicing.py +30 -30
- ansys/fluent/core/generated/datamodel_252/meshing.py +375 -375
- ansys/fluent/core/generated/datamodel_252/part_management.py +10 -10
- ansys/fluent/core/generated/datamodel_261/flicing.py +35 -35
- ansys/fluent/core/generated/datamodel_261/meshing.py +463 -407
- ansys/fluent/core/generated/datamodel_261/part_management.py +5 -5
- ansys/fluent/core/generated/datamodel_261/preferences.py +28 -0
- ansys/fluent/core/generated/fluent_version_252.py +1 -1
- ansys/fluent/core/generated/fluent_version_261.py +3 -3
- ansys/fluent/core/generated/meshing/tui_261.py +1198 -1133
- ansys/fluent/core/generated/solver/settings_261.py +7514 -2195
- ansys/fluent/core/generated/solver/settings_261.pyi +4800 -1015
- ansys/fluent/core/generated/solver/settings_builtin.py +515 -27
- ansys/fluent/core/generated/solver/settings_builtin.pyi +2 -18
- ansys/fluent/core/generated/solver/tui_261.py +2396 -2171
- ansys/fluent/core/launcher/container_launcher.py +19 -4
- ansys/fluent/core/launcher/fluent_container.py +52 -39
- ansys/fluent/core/launcher/launch_options.py +4 -3
- ansys/fluent/core/launcher/launcher.py +16 -3
- ansys/fluent/core/launcher/launcher_utils.py +63 -15
- ansys/fluent/core/launcher/pim_launcher.py +17 -3
- ansys/fluent/core/launcher/process_launch_string.py +1 -1
- ansys/fluent/core/launcher/server_info.py +7 -3
- ansys/fluent/core/launcher/slurm_launcher.py +4 -2
- ansys/fluent/core/launcher/standalone_launcher.py +6 -3
- ansys/fluent/core/launcher/watchdog.py +3 -3
- ansys/fluent/core/launcher/watchdog_exec +1 -1
- ansys/fluent/core/logger.py +3 -1
- ansys/fluent/core/module_config.py +358 -0
- ansys/fluent/core/pyfluent_warnings.py +2 -2
- ansys/fluent/core/report.py +1 -3
- ansys/fluent/core/search.py +43 -18
- ansys/fluent/core/services/__init__.py +2 -0
- ansys/fluent/core/services/api_upgrade.py +3 -2
- ansys/fluent/core/services/datamodel_se.py +4 -2
- ansys/fluent/core/services/field_data.py +24 -0
- ansys/fluent/core/services/health_check.py +3 -1
- ansys/fluent/core/services/interceptors.py +8 -6
- ansys/fluent/core/services/settings.py +1 -1
- ansys/fluent/core/session.py +32 -5
- ansys/fluent/core/session_pure_meshing.py +1 -1
- ansys/fluent/core/session_shared.py +4 -4
- ansys/fluent/core/session_solver.py +13 -6
- ansys/fluent/core/session_utilities.py +7 -0
- ansys/fluent/core/solver/flobject.py +10 -4
- ansys/fluent/core/solver/flunits.py +2 -0
- ansys/fluent/core/solver/settings_builtin_bases.py +3 -3
- ansys/fluent/core/solver/settings_builtin_data.py +2 -14
- ansys/fluent/core/streaming_services/datamodel_event_streaming.py +3 -2
- ansys/fluent/core/streaming_services/datamodel_streaming.py +3 -1
- ansys/fluent/core/streaming_services/events_streaming.py +2 -18
- ansys/fluent/core/system_coupling.py +3 -1
- ansys/fluent/core/utils/__init__.py +0 -7
- ansys/fluent/core/utils/data_transfer.py +3 -3
- ansys/fluent/core/utils/file_transfer_service.py +24 -15
- ansys/fluent/core/utils/fluent_version.py +3 -3
- ansys/fluent/core/utils/networking.py +13 -4
- {ansys_fluent_core-0.34.1.dist-info → ansys_fluent_core-0.35.0.dist-info}/METADATA +8 -7
- {ansys_fluent_core-0.34.1.dist-info → ansys_fluent_core-0.35.0.dist-info}/RECORD +86 -85
- {ansys_fluent_core-0.34.1.dist-info → ansys_fluent_core-0.35.0.dist-info}/WHEEL +1 -1
- {ansys_fluent_core-0.34.1.dist-info → ansys_fluent_core-0.35.0.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)
|
|
@@ -1307,9 +1308,9 @@ class Root(PyMenu):
|
|
|
1307
1308
|
self.Operation = self._Operation(self, "Operation", service, rules, path)
|
|
1308
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
|
|
|
@@ -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):
|
|
@@ -1526,8 +1527,8 @@ class Root(PyMenu):
|
|
|
1526
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.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
|
|
1530
1530
|
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
1531
|
+
self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", 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
|
|
|
@@ -1551,14 +1552,14 @@ class Root(PyMenu):
|
|
|
1551
1552
|
Argument MinAspectRatio.
|
|
1552
1553
|
"""
|
|
1553
1554
|
|
|
1554
|
-
class
|
|
1555
|
+
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
1555
1556
|
"""
|
|
1556
|
-
Argument
|
|
1557
|
+
Argument LastRatioPercentage.
|
|
1557
1558
|
"""
|
|
1558
1559
|
|
|
1559
|
-
class
|
|
1560
|
+
class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
|
|
1560
1561
|
"""
|
|
1561
|
-
Argument
|
|
1562
|
+
Argument LastRatioNumLayers.
|
|
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
1776
|
self.ShowLocalPrismPreferences = self._ShowLocalPrismPreferences(self, "ShowLocalPrismPreferences", service, rules, path)
|
|
1776
|
-
self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
|
|
1777
1777
|
self.NumberOfSplitLayers = self._NumberOfSplitLayers(self, "NumberOfSplitLayers", service, rules, path)
|
|
1778
|
+
self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", 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):
|
|
@@ -1824,14 +1825,14 @@ class Root(PyMenu):
|
|
|
1824
1825
|
Display advanced options that you may want to apply to this task.
|
|
1825
1826
|
"""
|
|
1826
1827
|
|
|
1827
|
-
class
|
|
1828
|
+
class _NumberOfSplitLayers(PyNumericalCommandArgumentsSubItem):
|
|
1828
1829
|
"""
|
|
1829
|
-
|
|
1830
|
+
Indicate the number of split prism layers you wish to apply to each layer that you specified for the boundary layer definition.
|
|
1830
1831
|
"""
|
|
1831
1832
|
|
|
1832
|
-
class
|
|
1833
|
+
class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
|
|
1833
1834
|
"""
|
|
1834
|
-
|
|
1835
|
+
Argument LastRatioNumLayers.
|
|
1835
1836
|
"""
|
|
1836
1837
|
|
|
1837
1838
|
class _AllowedTangencyAtInvalidNormals(PyNumericalCommandArgumentsSubItem):
|
|
@@ -2093,9 +2094,9 @@ class Root(PyMenu):
|
|
|
2093
2094
|
self.ModifyAtInvalidNormals = self._ModifyAtInvalidNormals(self, "ModifyAtInvalidNormals", service, rules, path)
|
|
2094
2095
|
self.SplitPrism = self._SplitPrism(self, "SplitPrism", service, rules, path)
|
|
2095
2096
|
self.InvalidNormalMethod = self._InvalidNormalMethod(self, "InvalidNormalMethod", service, rules, path)
|
|
2096
|
-
self.ShowLocalPrismPreferences = self._ShowLocalPrismPreferences(self, "ShowLocalPrismPreferences", service, rules, path)
|
|
2097
2097
|
self.NumberOfSplitLayers = self._NumberOfSplitLayers(self, "NumberOfSplitLayers", service, rules, path)
|
|
2098
2098
|
self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
|
|
2099
|
+
self.ShowLocalPrismPreferences = self._ShowLocalPrismPreferences(self, "ShowLocalPrismPreferences", service, rules, path)
|
|
2099
2100
|
self.AllowedTangencyAtInvalidNormals = self._AllowedTangencyAtInvalidNormals(self, "AllowedTangencyAtInvalidNormals", service, rules, path)
|
|
2100
2101
|
self.RemeshAtInvalidNormals = self._RemeshAtInvalidNormals(self, "RemeshAtInvalidNormals", service, rules, path)
|
|
2101
2102
|
self.IgnoreBoundaryLayers = self._IgnoreBoundaryLayers(self, "IgnoreBoundaryLayers", service, rules, path)
|
|
@@ -2140,11 +2141,6 @@ class Root(PyMenu):
|
|
|
2140
2141
|
Argument InvalidNormalMethod.
|
|
2141
2142
|
"""
|
|
2142
2143
|
|
|
2143
|
-
class _ShowLocalPrismPreferences(PyParameterCommandArgumentsSubItem):
|
|
2144
|
-
"""
|
|
2145
|
-
Display advanced options that you may want to apply to this task.
|
|
2146
|
-
"""
|
|
2147
|
-
|
|
2148
2144
|
class _NumberOfSplitLayers(PyNumericalCommandArgumentsSubItem):
|
|
2149
2145
|
"""
|
|
2150
2146
|
Indicate the number of split prism layers you wish to apply to each layer that you specified for the boundary layer definition.
|
|
@@ -2155,6 +2151,11 @@ class Root(PyMenu):
|
|
|
2155
2151
|
Argument LastRatioNumLayers.
|
|
2156
2152
|
"""
|
|
2157
2153
|
|
|
2154
|
+
class _ShowLocalPrismPreferences(PyParameterCommandArgumentsSubItem):
|
|
2155
|
+
"""
|
|
2156
|
+
Display advanced options that you may want to apply to this task.
|
|
2157
|
+
"""
|
|
2158
|
+
|
|
2158
2159
|
class _AllowedTangencyAtInvalidNormals(PyNumericalCommandArgumentsSubItem):
|
|
2159
2160
|
"""
|
|
2160
2161
|
Controls the tangency of the invalid normal faces. An invalid normal location with all 90 degree angles has a tangency of 1. So, faces are still treated as an invalid normal even if the angle deviates slightly from 90 degrees (resulting in a tangency of 0.98).
|
|
@@ -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.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", service, rules, path)
|
|
2399
|
-
self.SizingType = self._SizingType(self, "SizingType", service, rules, path)
|
|
2400
2406
|
self.InitialSizeControl = self._InitialSizeControl(self, "InitialSizeControl", service, rules, path)
|
|
2401
|
-
self.
|
|
2407
|
+
self.SizingType = self._SizingType(self, "SizingType", service, rules, path)
|
|
2408
|
+
self.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", service, rules, path)
|
|
2402
2409
|
self.WrapCurvatureNormalAngle = self._WrapCurvatureNormalAngle(self, "WrapCurvatureNormalAngle", service, rules, path)
|
|
2410
|
+
self.CellsPerGap = self._CellsPerGap(self, "CellsPerGap", 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,9 +2456,9 @@ 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
2464
|
class _SizingType(PyTextualCommandArgumentsSubItem):
|
|
@@ -2458,19 +2466,19 @@ class Root(PyMenu):
|
|
|
2458
2466
|
Choose the type of sizing control (curvature, proximity, soft, or boi).
|
|
2459
2467
|
"""
|
|
2460
2468
|
|
|
2461
|
-
class
|
|
2469
|
+
class _WrapGrowthRate(PyNumericalCommandArgumentsSubItem):
|
|
2462
2470
|
"""
|
|
2463
|
-
|
|
2471
|
+
Specify the increase in element edge length with each succeeding layer of elements.
|
|
2464
2472
|
"""
|
|
2465
2473
|
|
|
2466
|
-
class
|
|
2474
|
+
class _WrapCurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
2467
2475
|
"""
|
|
2468
|
-
Specify the
|
|
2476
|
+
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.
|
|
2469
2477
|
"""
|
|
2470
2478
|
|
|
2471
|
-
class
|
|
2479
|
+
class _CellsPerGap(PyNumericalCommandArgumentsSubItem):
|
|
2472
2480
|
"""
|
|
2473
|
-
Specify the
|
|
2481
|
+
Specify the minimum number of layers of elements to be generated in the gaps. The number of cells per gap can be a real value, with a minimum value of 0.01.
|
|
2474
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).
|
|
@@ -2999,8 +3014,8 @@ class Root(PyMenu):
|
|
|
2999
3014
|
self.SaveSizeFieldFile = self._SaveSizeFieldFile(self, "SaveSizeFieldFile", service, rules, path)
|
|
3000
3015
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
3001
3016
|
self.ScopeProximityTo = self._ScopeProximityTo(self, "ScopeProximityTo", service, rules, path)
|
|
3002
|
-
self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
|
|
3003
3017
|
self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
|
|
3018
|
+
self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
|
|
3004
3019
|
self.SaveSizeField = self._SaveSizeField(self, "SaveSizeField", service, rules, path)
|
|
3005
3020
|
self.UseSizeFiles = self._UseSizeFiles(self, "UseSizeFiles", service, rules, path)
|
|
3006
3021
|
self.AutoCreateScopedSizing = self._AutoCreateScopedSizing(self, "AutoCreateScopedSizing", service, rules, path)
|
|
@@ -3030,14 +3045,14 @@ class Root(PyMenu):
|
|
|
3030
3045
|
Argument ScopeProximityTo.
|
|
3031
3046
|
"""
|
|
3032
3047
|
|
|
3033
|
-
class
|
|
3048
|
+
class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
|
|
3034
3049
|
"""
|
|
3035
|
-
Argument
|
|
3050
|
+
Argument PreviewSizefield.
|
|
3036
3051
|
"""
|
|
3037
3052
|
|
|
3038
|
-
class
|
|
3053
|
+
class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
3039
3054
|
"""
|
|
3040
|
-
Argument
|
|
3055
|
+
Argument CurvatureNormalAngle.
|
|
3041
3056
|
"""
|
|
3042
3057
|
|
|
3043
3058
|
class _SaveSizeField(PyParameterCommandArgumentsSubItem):
|
|
@@ -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):
|
|
@@ -4162,23 +4177,23 @@ class Root(PyMenu):
|
|
|
4162
4177
|
|
|
4163
4178
|
def __init__(self, parent, attr, service, rules, path):
|
|
4164
4179
|
super().__init__(parent, attr, service, rules, path)
|
|
4165
|
-
self.
|
|
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.
|
|
4172
|
-
self.ExistingSizeField = self._ExistingSizeField(self, "ExistingSizeField", service, rules, path)
|
|
4173
|
-
self.TargetSizeFieldFileName = self._TargetSizeFieldFileName(self, "TargetSizeFieldFileName", service, rules, path)
|
|
4186
|
+
self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
|
|
4174
4187
|
self.SolidFluidRatio = self._SolidFluidRatio(self, "SolidFluidRatio", service, rules, path)
|
|
4188
|
+
self.TargetSizeFieldFileName = self._TargetSizeFieldFileName(self, "TargetSizeFieldFileName", service, rules, path)
|
|
4189
|
+
self.ExistingSizeField = self._ExistingSizeField(self, "ExistingSizeField", service, rules, path)
|
|
4175
4190
|
self.WrapSizeFieldFileName = self._WrapSizeFieldFileName(self, "WrapSizeFieldFileName", service, rules, path)
|
|
4176
|
-
self.
|
|
4191
|
+
self.WrapTargetRatio = self._WrapTargetRatio(self, "WrapTargetRatio", service, rules, path)
|
|
4177
4192
|
self.WrapTargetRaio = self._WrapTargetRaio(self, "WrapTargetRaio", service, rules, path)
|
|
4178
4193
|
|
|
4179
|
-
class
|
|
4194
|
+
class _TargeSizeFieldFileName(PyTextualCommandArgumentsSubItem):
|
|
4180
4195
|
"""
|
|
4181
|
-
|
|
4196
|
+
Indicate the name and location of the target size field file (\\*.sf).
|
|
4182
4197
|
"""
|
|
4183
4198
|
|
|
4184
4199
|
class _WrapTargetSizeFieldRatio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -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,14 +4221,14 @@ 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
|
-
class
|
|
4229
|
+
class _SolidFluidRatio(PyNumericalCommandArgumentsSubItem):
|
|
4215
4230
|
"""
|
|
4216
|
-
|
|
4231
|
+
Argument SolidFluidRatio.
|
|
4217
4232
|
"""
|
|
4218
4233
|
|
|
4219
4234
|
class _TargetSizeFieldFileName(PyTextualCommandArgumentsSubItem):
|
|
@@ -4221,9 +4236,9 @@ class Root(PyMenu):
|
|
|
4221
4236
|
Argument TargetSizeFieldFileName.
|
|
4222
4237
|
"""
|
|
4223
4238
|
|
|
4224
|
-
class
|
|
4239
|
+
class _ExistingSizeField(PyTextualCommandArgumentsSubItem):
|
|
4225
4240
|
"""
|
|
4226
|
-
|
|
4241
|
+
Determine which existing size field files will be used: Both Wrap and Target (the default), Target Only, or Wrap Only. For complex models, computational expense can be lowered by choosing one of the other options. If either Wrap Only or Target Only is selected, then the other values are determined using the Wrap/Target Size Ratio value.
|
|
4227
4242
|
"""
|
|
4228
4243
|
|
|
4229
4244
|
class _WrapSizeFieldFileName(PyTextualCommandArgumentsSubItem):
|
|
@@ -4231,9 +4246,9 @@ class Root(PyMenu):
|
|
|
4231
4246
|
Indicate the name and location of the wrap size field file (\\*.sf).
|
|
4232
4247
|
"""
|
|
4233
4248
|
|
|
4234
|
-
class
|
|
4249
|
+
class _WrapTargetRatio(PyNumericalCommandArgumentsSubItem):
|
|
4235
4250
|
"""
|
|
4236
|
-
|
|
4251
|
+
Argument WrapTargetRatio.
|
|
4237
4252
|
"""
|
|
4238
4253
|
|
|
4239
4254
|
class _WrapTargetRaio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4508,7 +4523,7 @@ class Root(PyMenu):
|
|
|
4508
4523
|
def __init__(self, parent, attr, service, rules, path):
|
|
4509
4524
|
super().__init__(parent, attr, service, rules, path)
|
|
4510
4525
|
self.SizeRelativeLength = self._SizeRelativeLength(self, "SizeRelativeLength", service, rules, path)
|
|
4511
|
-
self.
|
|
4526
|
+
self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
|
|
4512
4527
|
self.XminRatio = self._XminRatio(self, "XminRatio", service, rules, path)
|
|
4513
4528
|
self.YminRatio = self._YminRatio(self, "YminRatio", service, rules, path)
|
|
4514
4529
|
self.Zmin = self._Zmin(self, "Zmin", service, rules, path)
|
|
@@ -4519,16 +4534,16 @@ class Root(PyMenu):
|
|
|
4519
4534
|
self.Xmin = self._Xmin(self, "Xmin", service, rules, path)
|
|
4520
4535
|
self.YmaxRatio = self._YmaxRatio(self, "YmaxRatio", service, rules, path)
|
|
4521
4536
|
self.ZmaxRatio = self._ZmaxRatio(self, "ZmaxRatio", service, rules, path)
|
|
4522
|
-
self.
|
|
4537
|
+
self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
|
|
4523
4538
|
|
|
4524
4539
|
class _SizeRelativeLength(PyTextualCommandArgumentsSubItem):
|
|
4525
4540
|
"""
|
|
4526
4541
|
Argument SizeRelativeLength.
|
|
4527
4542
|
"""
|
|
4528
4543
|
|
|
4529
|
-
class
|
|
4544
|
+
class _Xmax(PyNumericalCommandArgumentsSubItem):
|
|
4530
4545
|
"""
|
|
4531
|
-
Argument
|
|
4546
|
+
Argument Xmax.
|
|
4532
4547
|
"""
|
|
4533
4548
|
|
|
4534
4549
|
class _XminRatio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4581,9 +4596,9 @@ class Root(PyMenu):
|
|
|
4581
4596
|
Argument ZmaxRatio.
|
|
4582
4597
|
"""
|
|
4583
4598
|
|
|
4584
|
-
class
|
|
4599
|
+
class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
|
|
4585
4600
|
"""
|
|
4586
|
-
Argument
|
|
4601
|
+
Argument XmaxRatio.
|
|
4587
4602
|
"""
|
|
4588
4603
|
|
|
4589
4604
|
class _OffsetObject(PySingletonCommandArgumentsSubItem):
|
|
@@ -4598,16 +4613,16 @@ class Root(PyMenu):
|
|
|
4598
4613
|
self.ShowCoordinates = self._ShowCoordinates(self, "ShowCoordinates", service, rules, path)
|
|
4599
4614
|
self.Y = self._Y(self, "Y", service, rules, path)
|
|
4600
4615
|
self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
|
|
4616
|
+
self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
|
|
4617
|
+
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
4601
4618
|
self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
|
|
4602
|
-
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
4603
4619
|
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
|
|
4604
|
-
self.Rate = self._Rate(self, "Rate", 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.
|
|
4609
|
-
self.X = self._X(self, "X", service, rules, path)
|
|
4623
|
+
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
4610
4624
|
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
4625
|
+
self.X = self._X(self, "X", service, rules, path)
|
|
4611
4626
|
self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
|
|
4612
4627
|
self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
|
|
4613
4628
|
self.FirstHeight = self._FirstHeight(self, "FirstHeight", service, rules, path)
|
|
@@ -4639,24 +4654,24 @@ class Root(PyMenu):
|
|
|
4639
4654
|
Argument DefeaturingSize.
|
|
4640
4655
|
"""
|
|
4641
4656
|
|
|
4642
|
-
class
|
|
4657
|
+
class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
|
|
4643
4658
|
"""
|
|
4644
|
-
Argument
|
|
4659
|
+
Argument BoundaryLayerLevels.
|
|
4645
4660
|
"""
|
|
4646
4661
|
|
|
4647
|
-
class
|
|
4662
|
+
class _Rate(PyNumericalCommandArgumentsSubItem):
|
|
4648
4663
|
"""
|
|
4649
|
-
Argument
|
|
4664
|
+
Argument Rate.
|
|
4650
4665
|
"""
|
|
4651
4666
|
|
|
4652
|
-
class
|
|
4667
|
+
class _AspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
4653
4668
|
"""
|
|
4654
|
-
Argument
|
|
4669
|
+
Argument AspectRatio.
|
|
4655
4670
|
"""
|
|
4656
4671
|
|
|
4657
|
-
class
|
|
4672
|
+
class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
|
|
4658
4673
|
"""
|
|
4659
|
-
Argument
|
|
4674
|
+
Argument WakeGrowthFactor.
|
|
4660
4675
|
"""
|
|
4661
4676
|
|
|
4662
4677
|
class _FlowDirection(PyTextualCommandArgumentsSubItem):
|
|
@@ -4674,19 +4689,19 @@ class Root(PyMenu):
|
|
|
4674
4689
|
Argument EdgeSelectionList.
|
|
4675
4690
|
"""
|
|
4676
4691
|
|
|
4677
|
-
class
|
|
4692
|
+
class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
|
|
4678
4693
|
"""
|
|
4679
|
-
Argument
|
|
4694
|
+
Argument NumberOfLayers.
|
|
4680
4695
|
"""
|
|
4681
4696
|
|
|
4682
|
-
class
|
|
4697
|
+
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
4683
4698
|
"""
|
|
4684
|
-
Argument
|
|
4699
|
+
Argument LastRatioPercentage.
|
|
4685
4700
|
"""
|
|
4686
4701
|
|
|
4687
|
-
class
|
|
4702
|
+
class _X(PyNumericalCommandArgumentsSubItem):
|
|
4688
4703
|
"""
|
|
4689
|
-
Argument
|
|
4704
|
+
Argument X.
|
|
4690
4705
|
"""
|
|
4691
4706
|
|
|
4692
4707
|
class _OffsetMethodType(PyTextualCommandArgumentsSubItem):
|
|
@@ -4726,32 +4741,32 @@ class Root(PyMenu):
|
|
|
4726
4741
|
|
|
4727
4742
|
def __init__(self, parent, attr, service, rules, path):
|
|
4728
4743
|
super().__init__(parent, attr, service, rules, path)
|
|
4729
|
-
self.HeightNode = self._HeightNode(self, "HeightNode", service, rules, path)
|
|
4730
4744
|
self.X_Offset = self._X_Offset(self, "X-Offset", service, rules, path)
|
|
4745
|
+
self.HeightNode = self._HeightNode(self, "HeightNode", service, rules, path)
|
|
4731
4746
|
self.HeightBackInc = self._HeightBackInc(self, "HeightBackInc", service, rules, path)
|
|
4732
4747
|
self.X1 = self._X1(self, "X1", service, rules, path)
|
|
4733
4748
|
self.Y1 = self._Y1(self, "Y1", service, rules, path)
|
|
4734
4749
|
self.Z_Offset = self._Z_Offset(self, "Z-Offset", service, rules, path)
|
|
4735
|
-
self.Z1 = self._Z1(self, "Z1", service, rules, path)
|
|
4736
|
-
self.Node1 = self._Node1(self, "Node1", service, rules, path)
|
|
4737
4750
|
self.Z2 = self._Z2(self, "Z2", service, rules, path)
|
|
4751
|
+
self.Node1 = self._Node1(self, "Node1", service, rules, path)
|
|
4752
|
+
self.Z1 = self._Z1(self, "Z1", service, rules, path)
|
|
4738
4753
|
self.Radius2 = self._Radius2(self, "Radius2", service, rules, path)
|
|
4739
4754
|
self.Y2 = self._Y2(self, "Y2", service, rules, path)
|
|
4740
4755
|
self.Node3 = self._Node3(self, "Node3", service, rules, path)
|
|
4741
|
-
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
4742
|
-
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
4743
4756
|
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
4757
|
+
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
4758
|
+
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
4744
4759
|
self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
|
|
4745
4760
|
self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
|
|
4746
4761
|
|
|
4747
|
-
class
|
|
4762
|
+
class _X_Offset(PyNumericalCommandArgumentsSubItem):
|
|
4748
4763
|
"""
|
|
4749
|
-
Argument
|
|
4764
|
+
Argument X-Offset.
|
|
4750
4765
|
"""
|
|
4751
4766
|
|
|
4752
|
-
class
|
|
4767
|
+
class _HeightNode(PyTextualCommandArgumentsSubItem):
|
|
4753
4768
|
"""
|
|
4754
|
-
Argument
|
|
4769
|
+
Argument HeightNode.
|
|
4755
4770
|
"""
|
|
4756
4771
|
|
|
4757
4772
|
class _HeightBackInc(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4774,9 +4789,9 @@ class Root(PyMenu):
|
|
|
4774
4789
|
Argument Z-Offset.
|
|
4775
4790
|
"""
|
|
4776
4791
|
|
|
4777
|
-
class
|
|
4792
|
+
class _Z2(PyNumericalCommandArgumentsSubItem):
|
|
4778
4793
|
"""
|
|
4779
|
-
Argument
|
|
4794
|
+
Argument Z2.
|
|
4780
4795
|
"""
|
|
4781
4796
|
|
|
4782
4797
|
class _Node1(PyTextualCommandArgumentsSubItem):
|
|
@@ -4784,9 +4799,9 @@ class Root(PyMenu):
|
|
|
4784
4799
|
Argument Node1.
|
|
4785
4800
|
"""
|
|
4786
4801
|
|
|
4787
|
-
class
|
|
4802
|
+
class _Z1(PyNumericalCommandArgumentsSubItem):
|
|
4788
4803
|
"""
|
|
4789
|
-
Argument
|
|
4804
|
+
Argument Z1.
|
|
4790
4805
|
"""
|
|
4791
4806
|
|
|
4792
4807
|
class _Radius2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4804,9 +4819,9 @@ class Root(PyMenu):
|
|
|
4804
4819
|
Argument Node3.
|
|
4805
4820
|
"""
|
|
4806
4821
|
|
|
4807
|
-
class
|
|
4822
|
+
class _X2(PyNumericalCommandArgumentsSubItem):
|
|
4808
4823
|
"""
|
|
4809
|
-
Argument
|
|
4824
|
+
Argument X2.
|
|
4810
4825
|
"""
|
|
4811
4826
|
|
|
4812
4827
|
class _Node2(PyTextualCommandArgumentsSubItem):
|
|
@@ -4814,9 +4829,9 @@ class Root(PyMenu):
|
|
|
4814
4829
|
Argument Node2.
|
|
4815
4830
|
"""
|
|
4816
4831
|
|
|
4817
|
-
class
|
|
4832
|
+
class _Y_Offset(PyNumericalCommandArgumentsSubItem):
|
|
4818
4833
|
"""
|
|
4819
|
-
Argument
|
|
4834
|
+
Argument Y-Offset.
|
|
4820
4835
|
"""
|
|
4821
4836
|
|
|
4822
4837
|
class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5187,8 +5202,8 @@ class Root(PyMenu):
|
|
|
5187
5202
|
self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
|
|
5188
5203
|
self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
|
|
5189
5204
|
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
5190
|
-
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
5191
5205
|
self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
|
|
5206
|
+
self.Rate = self._Rate(self, "Rate", 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)
|
|
@@ -5236,14 +5251,14 @@ class Root(PyMenu):
|
|
|
5236
5251
|
Argument NumberOfLayers.
|
|
5237
5252
|
"""
|
|
5238
5253
|
|
|
5239
|
-
class
|
|
5254
|
+
class _AspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
5240
5255
|
"""
|
|
5241
|
-
Argument
|
|
5256
|
+
Argument AspectRatio.
|
|
5242
5257
|
"""
|
|
5243
5258
|
|
|
5244
|
-
class
|
|
5259
|
+
class _Rate(PyNumericalCommandArgumentsSubItem):
|
|
5245
5260
|
"""
|
|
5246
|
-
Argument
|
|
5261
|
+
Argument Rate.
|
|
5247
5262
|
"""
|
|
5248
5263
|
|
|
5249
5264
|
class _FlowDirection(PyTextualCommandArgumentsSubItem):
|
|
@@ -5325,9 +5340,9 @@ class Root(PyMenu):
|
|
|
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.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
5329
|
-
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
5330
5343
|
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
5344
|
+
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
5345
|
+
self.Node2 = self._Node2(self, "Node2", 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
|
|
|
@@ -5391,9 +5406,9 @@ class Root(PyMenu):
|
|
|
5391
5406
|
Argument Node3.
|
|
5392
5407
|
"""
|
|
5393
5408
|
|
|
5394
|
-
class
|
|
5409
|
+
class _Y_Offset(PyNumericalCommandArgumentsSubItem):
|
|
5395
5410
|
"""
|
|
5396
|
-
Argument
|
|
5411
|
+
Argument Y-Offset.
|
|
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 _Node2(PyTextualCommandArgumentsSubItem):
|
|
5405
5420
|
"""
|
|
5406
|
-
Argument
|
|
5421
|
+
Argument Node2.
|
|
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,8 +5790,8 @@ 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.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", 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)
|
|
@@ -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 _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
|
|
5828
5843
|
"""
|
|
5829
|
-
Argument
|
|
5844
|
+
Argument BoundaryLayerLevels.
|
|
5830
5845
|
"""
|
|
5831
5846
|
|
|
5832
|
-
class
|
|
5847
|
+
class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
|
|
5833
5848
|
"""
|
|
5834
|
-
Argument
|
|
5849
|
+
Argument WakeGrowthFactor.
|
|
5835
5850
|
"""
|
|
5836
5851
|
|
|
5837
5852
|
class _FlowDirection(PyTextualCommandArgumentsSubItem):
|
|
@@ -5901,8 +5916,8 @@ class Root(PyMenu):
|
|
|
5901
5916
|
|
|
5902
5917
|
def __init__(self, parent, attr, service, rules, path):
|
|
5903
5918
|
super().__init__(parent, attr, service, rules, path)
|
|
5904
|
-
self.X_Offset = self._X_Offset(self, "X-Offset", service, rules, path)
|
|
5905
5919
|
self.HeightNode = self._HeightNode(self, "HeightNode", service, rules, path)
|
|
5920
|
+
self.X_Offset = self._X_Offset(self, "X-Offset", service, rules, path)
|
|
5906
5921
|
self.HeightBackInc = self._HeightBackInc(self, "HeightBackInc", service, rules, path)
|
|
5907
5922
|
self.X1 = self._X1(self, "X1", service, rules, path)
|
|
5908
5923
|
self.Y1 = self._Y1(self, "Y1", service, rules, path)
|
|
@@ -5919,14 +5934,14 @@ class Root(PyMenu):
|
|
|
5919
5934
|
self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
|
|
5920
5935
|
self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
|
|
5921
5936
|
|
|
5922
|
-
class
|
|
5937
|
+
class _HeightNode(PyTextualCommandArgumentsSubItem):
|
|
5923
5938
|
"""
|
|
5924
|
-
Argument
|
|
5939
|
+
Argument HeightNode.
|
|
5925
5940
|
"""
|
|
5926
5941
|
|
|
5927
|
-
class
|
|
5942
|
+
class _X_Offset(PyNumericalCommandArgumentsSubItem):
|
|
5928
5943
|
"""
|
|
5929
|
-
Argument
|
|
5944
|
+
Argument X-Offset.
|
|
5930
5945
|
"""
|
|
5931
5946
|
|
|
5932
5947
|
class _HeightBackInc(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):
|
|
@@ -6982,15 +6997,15 @@ class Root(PyMenu):
|
|
|
6982
6997
|
self.Y = self._Y(self, "Y", service, rules, path)
|
|
6983
6998
|
self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
|
|
6984
6999
|
self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
|
|
7000
|
+
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
|
|
6985
7001
|
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
6986
7002
|
self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
|
|
6987
|
-
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", 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
7006
|
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
6992
|
-
self.X = self._X(self, "X", service, rules, path)
|
|
6993
7007
|
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
7008
|
+
self.X = self._X(self, "X", service, rules, path)
|
|
6994
7009
|
self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
|
|
6995
7010
|
self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
|
|
6996
7011
|
self.FirstHeight = self._FirstHeight(self, "FirstHeight", service, rules, path)
|
|
@@ -7027,6 +7042,11 @@ class Root(PyMenu):
|
|
|
7027
7042
|
Specify the number of boundary layers that are to be captured in the refinement region.
|
|
7028
7043
|
"""
|
|
7029
7044
|
|
|
7045
|
+
class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
|
|
7046
|
+
"""
|
|
7047
|
+
Specify the factor by which the refinement region expands in the wake of the flow direction.
|
|
7048
|
+
"""
|
|
7049
|
+
|
|
7030
7050
|
class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
|
|
7031
7051
|
"""
|
|
7032
7052
|
Argument NumberOfLayers.
|
|
@@ -7037,11 +7057,6 @@ class Root(PyMenu):
|
|
|
7037
7057
|
Argument AspectRatio.
|
|
7038
7058
|
"""
|
|
7039
7059
|
|
|
7040
|
-
class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
|
|
7041
|
-
"""
|
|
7042
|
-
Specify the factor by which the refinement region expands in the wake of the flow direction.
|
|
7043
|
-
"""
|
|
7044
|
-
|
|
7045
7060
|
class _FlowDirection(PyTextualCommandArgumentsSubItem):
|
|
7046
7061
|
"""
|
|
7047
7062
|
Specify the direction that the flow through this refinement region.
|
|
@@ -7062,14 +7077,14 @@ class Root(PyMenu):
|
|
|
7062
7077
|
Argument Rate.
|
|
7063
7078
|
"""
|
|
7064
7079
|
|
|
7065
|
-
class
|
|
7080
|
+
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
7066
7081
|
"""
|
|
7067
|
-
|
|
7082
|
+
Argument LastRatioPercentage.
|
|
7068
7083
|
"""
|
|
7069
7084
|
|
|
7070
|
-
class
|
|
7085
|
+
class _X(PyNumericalCommandArgumentsSubItem):
|
|
7071
7086
|
"""
|
|
7072
|
-
|
|
7087
|
+
Specify the X-coordinate for the initial position of the cylindrical refinement region.
|
|
7073
7088
|
"""
|
|
7074
7089
|
|
|
7075
7090
|
class _OffsetMethodType(PyTextualCommandArgumentsSubItem):
|
|
@@ -7109,32 +7124,32 @@ class Root(PyMenu):
|
|
|
7109
7124
|
|
|
7110
7125
|
def __init__(self, parent, attr, service, rules, path):
|
|
7111
7126
|
super().__init__(parent, attr, service, rules, path)
|
|
7112
|
-
self.HeightNode = self._HeightNode(self, "HeightNode", service, rules, path)
|
|
7113
7127
|
self.X_Offset = self._X_Offset(self, "X-Offset", service, rules, path)
|
|
7128
|
+
self.HeightNode = self._HeightNode(self, "HeightNode", service, rules, path)
|
|
7114
7129
|
self.HeightBackInc = self._HeightBackInc(self, "HeightBackInc", service, rules, path)
|
|
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.Z2 = self._Z2(self, "Z2", service, rules, path)
|
|
7119
|
-
self.Node1 = self._Node1(self, "Node1", service, rules, path)
|
|
7120
7133
|
self.Z1 = self._Z1(self, "Z1", service, rules, path)
|
|
7134
|
+
self.Node1 = self._Node1(self, "Node1", service, rules, path)
|
|
7135
|
+
self.Z2 = self._Z2(self, "Z2", 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.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
7125
7139
|
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
7126
7140
|
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
7141
|
+
self.Y_Offset = self._Y_Offset(self, "Y-Offset", 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
|
|
|
7130
|
-
class
|
|
7145
|
+
class _X_Offset(PyNumericalCommandArgumentsSubItem):
|
|
7131
7146
|
"""
|
|
7132
|
-
|
|
7147
|
+
Specify the X-coordinate for the offset of the initial position of the cylinder.
|
|
7133
7148
|
"""
|
|
7134
7149
|
|
|
7135
|
-
class
|
|
7150
|
+
class _HeightNode(PyTextualCommandArgumentsSubItem):
|
|
7136
7151
|
"""
|
|
7137
|
-
|
|
7152
|
+
Argument HeightNode.
|
|
7138
7153
|
"""
|
|
7139
7154
|
|
|
7140
7155
|
class _HeightBackInc(PyNumericalCommandArgumentsSubItem):
|
|
@@ -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 _Z1(PyNumericalCommandArgumentsSubItem):
|
|
7161
7176
|
"""
|
|
7162
|
-
Specify the Z-coordinate of the
|
|
7177
|
+
Specify the Z-coordinate of the first 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 _Z2(PyNumericalCommandArgumentsSubItem):
|
|
7171
7186
|
"""
|
|
7172
|
-
Specify the Z-coordinate of the
|
|
7187
|
+
Specify the Z-coordinate of the second 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 _Y_Offset(PyNumericalCommandArgumentsSubItem):
|
|
7191
|
-
"""
|
|
7192
|
-
Specify the Y-coordinate for the offset of the initial position of the cylinder.
|
|
7193
|
-
"""
|
|
7194
|
-
|
|
7195
7205
|
class _Node2(PyTextualCommandArgumentsSubItem):
|
|
7196
7206
|
"""
|
|
7197
7207
|
Argument Node2.
|
|
@@ -7202,6 +7212,11 @@ class Root(PyMenu):
|
|
|
7202
7212
|
Specify the X-coordinate of the second position of the cylinder.
|
|
7203
7213
|
"""
|
|
7204
7214
|
|
|
7215
|
+
class _Y_Offset(PyNumericalCommandArgumentsSubItem):
|
|
7216
|
+
"""
|
|
7217
|
+
Specify the Y-coordinate for the offset of the initial 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.BoxCenterZ = self._BoxCenterZ(self, "BoxCenterZ", service, rules, path)
|
|
7270
7284
|
self.CylinderRadius2 = self._CylinderRadius2(self, "CylinderRadius2", service, rules, path)
|
|
7285
|
+
self.BoxCenterZ = self._BoxCenterZ(self, "BoxCenterZ", 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 _CylinderRadius2(PyNumericalCommandArgumentsSubItem):
|
|
7329
7344
|
"""
|
|
7330
|
-
Specify the
|
|
7345
|
+
Specify the radius of the cylinder at the second position.
|
|
7331
7346
|
"""
|
|
7332
7347
|
|
|
7333
|
-
class
|
|
7348
|
+
class _BoxCenterZ(PyNumericalCommandArgumentsSubItem):
|
|
7334
7349
|
"""
|
|
7335
|
-
Specify the
|
|
7350
|
+
Specify the Z-coordinate for the initial position of the cylindrical refinement region.
|
|
7336
7351
|
"""
|
|
7337
7352
|
|
|
7338
7353
|
class _CylinderY2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -7541,8 +7556,8 @@ class Root(PyMenu):
|
|
|
7541
7556
|
self.ZoneSelectionList = self._ZoneSelectionList(self, "ZoneSelectionList", service, rules, path)
|
|
7542
7557
|
self.SelectionType = self._SelectionType(self, "SelectionType", service, rules, path)
|
|
7543
7558
|
self.Thickness = self._Thickness(self, "Thickness", service, rules, path)
|
|
7544
|
-
self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
|
|
7545
7559
|
self.MeshSize = self._MeshSize(self, "MeshSize", service, rules, path)
|
|
7560
|
+
self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", 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)
|
|
@@ -7573,14 +7588,14 @@ class Root(PyMenu):
|
|
|
7573
7588
|
Specify the thickness (or the total height) of the porous region.
|
|
7574
7589
|
"""
|
|
7575
7590
|
|
|
7576
|
-
class
|
|
7591
|
+
class _MeshSize(PyNumericalCommandArgumentsSubItem):
|
|
7577
7592
|
"""
|
|
7578
|
-
Specify the
|
|
7593
|
+
Specify the cell size for the porous region mesh.
|
|
7579
7594
|
"""
|
|
7580
7595
|
|
|
7581
|
-
class
|
|
7596
|
+
class _FeatureAngle(PyNumericalCommandArgumentsSubItem):
|
|
7582
7597
|
"""
|
|
7583
|
-
Specify the
|
|
7598
|
+
Specify the angle at which features will be extracted for the porous region.
|
|
7584
7599
|
"""
|
|
7585
7600
|
|
|
7586
7601
|
class _BufferSize(PyNumericalCommandArgumentsSubItem):
|
|
@@ -7912,9 +7927,9 @@ class Root(PyMenu):
|
|
|
7912
7927
|
super().__init__(parent, attr, service, rules, path)
|
|
7913
7928
|
self.PorousRegions = self._PorousRegions(self, "PorousRegions", service, rules, path)
|
|
7914
7929
|
self.CloseLeakages = self._CloseLeakages(self, "CloseLeakages", service, rules, path)
|
|
7915
|
-
self.CloseLeakges = self._CloseLeakges(self, "CloseLeakges", service, rules, path)
|
|
7916
7930
|
self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
|
|
7917
7931
|
self.ZeroThickness = self._ZeroThickness(self, "ZeroThickness", service, rules, path)
|
|
7932
|
+
self.CloseLeakges = self._CloseLeakges(self, "CloseLeakges", 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)
|
|
@@ -7931,11 +7946,6 @@ class Root(PyMenu):
|
|
|
7931
7946
|
Argument CloseLeakages.
|
|
7932
7947
|
"""
|
|
7933
7948
|
|
|
7934
|
-
class _CloseLeakges(PyTextualCommandArgumentsSubItem):
|
|
7935
|
-
"""
|
|
7936
|
-
Specify whether or not your geometry contains any problems (such as gaps or overlapping/intersecting surfaces) that may create leakages that need to be closed. If so, then a Define Leakage Threshold task is added to the workflow.
|
|
7937
|
-
"""
|
|
7938
|
-
|
|
7939
7949
|
class _AdvancedOptions(PyParameterCommandArgumentsSubItem):
|
|
7940
7950
|
"""
|
|
7941
7951
|
Display advanced options that you may want to apply to the workflow.
|
|
@@ -7946,6 +7956,11 @@ class Root(PyMenu):
|
|
|
7946
7956
|
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
7957
|
"""
|
|
7948
7958
|
|
|
7959
|
+
class _CloseLeakges(PyTextualCommandArgumentsSubItem):
|
|
7960
|
+
"""
|
|
7961
|
+
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.
|
|
7962
|
+
"""
|
|
7963
|
+
|
|
7949
7964
|
class _ExtractEdgeFeatures(PyTextualCommandArgumentsSubItem):
|
|
7950
7965
|
"""
|
|
7951
7966
|
Specify whether or not you will need to extract additional edge features from your imported geometry. These edge features will be captured. If so, then an Extract Edge Features task will be added to the workflow.
|
|
@@ -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):
|
|
@@ -8386,12 +8401,12 @@ class Root(PyMenu):
|
|
|
8386
8401
|
self.SplitQuads = self._SplitQuads(self, "SplitQuads", service, rules, path)
|
|
8387
8402
|
self.MaxAspectRatio = self._MaxAspectRatio(self, "MaxAspectRatio", service, rules, path)
|
|
8388
8403
|
self.MinAspectRatio = self._MinAspectRatio(self, "MinAspectRatio", service, rules, path)
|
|
8389
|
-
self.LocalRemesh = self._LocalRemesh(self, "LocalRemesh", service, rules, path)
|
|
8390
8404
|
self.RemeshGrowthRate = self._RemeshGrowthRate(self, "RemeshGrowthRate", service, rules, path)
|
|
8391
|
-
self.
|
|
8392
|
-
self.ShowPrism2DPreferences = self._ShowPrism2DPreferences(self, "ShowPrism2DPreferences", service, rules, path)
|
|
8405
|
+
self.LocalRemesh = self._LocalRemesh(self, "LocalRemesh", service, rules, path)
|
|
8393
8406
|
self.MaxFaceSkew = self._MaxFaceSkew(self, "MaxFaceSkew", service, rules, path)
|
|
8394
8407
|
self.RefineStretchedQuads = self._RefineStretchedQuads(self, "RefineStretchedQuads", service, rules, path)
|
|
8408
|
+
self.GapFactor = self._GapFactor(self, "GapFactor", service, rules, path)
|
|
8409
|
+
self.ShowPrism2DPreferences = self._ShowPrism2DPreferences(self, "ShowPrism2DPreferences", service, rules, path)
|
|
8395
8410
|
self.nOrthogonalLayers = self._nOrthogonalLayers(self, "nOrthogonalLayers", service, rules, path)
|
|
8396
8411
|
|
|
8397
8412
|
class _SplitQuads(PyTextualCommandArgumentsSubItem):
|
|
@@ -8409,24 +8424,14 @@ class Root(PyMenu):
|
|
|
8409
8424
|
Argument MinAspectRatio.
|
|
8410
8425
|
"""
|
|
8411
8426
|
|
|
8412
|
-
class _LocalRemesh(PyTextualCommandArgumentsSubItem):
|
|
8413
|
-
"""
|
|
8414
|
-
Argument LocalRemesh.
|
|
8415
|
-
"""
|
|
8416
|
-
|
|
8417
8427
|
class _RemeshGrowthRate(PyNumericalCommandArgumentsSubItem):
|
|
8418
8428
|
"""
|
|
8419
8429
|
Argument RemeshGrowthRate.
|
|
8420
8430
|
"""
|
|
8421
8431
|
|
|
8422
|
-
class
|
|
8423
|
-
"""
|
|
8424
|
-
Argument GapFactor.
|
|
8425
|
-
"""
|
|
8426
|
-
|
|
8427
|
-
class _ShowPrism2DPreferences(PyParameterCommandArgumentsSubItem):
|
|
8432
|
+
class _LocalRemesh(PyTextualCommandArgumentsSubItem):
|
|
8428
8433
|
"""
|
|
8429
|
-
Argument
|
|
8434
|
+
Argument LocalRemesh.
|
|
8430
8435
|
"""
|
|
8431
8436
|
|
|
8432
8437
|
class _MaxFaceSkew(PyNumericalCommandArgumentsSubItem):
|
|
@@ -8439,6 +8444,16 @@ class Root(PyMenu):
|
|
|
8439
8444
|
Argument RefineStretchedQuads.
|
|
8440
8445
|
"""
|
|
8441
8446
|
|
|
8447
|
+
class _GapFactor(PyNumericalCommandArgumentsSubItem):
|
|
8448
|
+
"""
|
|
8449
|
+
Argument GapFactor.
|
|
8450
|
+
"""
|
|
8451
|
+
|
|
8452
|
+
class _ShowPrism2DPreferences(PyParameterCommandArgumentsSubItem):
|
|
8453
|
+
"""
|
|
8454
|
+
Argument ShowPrism2DPreferences.
|
|
8455
|
+
"""
|
|
8456
|
+
|
|
8442
8457
|
class _nOrthogonalLayers(PyNumericalCommandArgumentsSubItem):
|
|
8443
8458
|
"""
|
|
8444
8459
|
Argument nOrthogonalLayers.
|
|
@@ -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.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
|
|
9167
9181
|
self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
|
|
9182
|
+
self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", 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 _PreviewSizefield(PyParameterCommandArgumentsSubItem):
|
|
9198
9213
|
"""
|
|
9199
|
-
|
|
9214
|
+
Enable this option to visualize the size field in the graphics window.
|
|
9200
9215
|
"""
|
|
9201
9216
|
|
|
9202
|
-
class
|
|
9217
|
+
class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
9203
9218
|
"""
|
|
9204
|
-
|
|
9219
|
+
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...
|
|
9205
9220
|
"""
|
|
9206
9221
|
|
|
9207
9222
|
class _SaveSizeField(PyParameterCommandArgumentsSubItem):
|
|
@@ -9303,18 +9318,18 @@ 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.
|
|
9321
|
+
self.SMSeparation = self._SMSeparation(self, "SMSeparation", service, rules, path)
|
|
9307
9322
|
self.SMSeparationAngle = self._SMSeparationAngle(self, "SMSeparationAngle", service, rules, path)
|
|
9308
|
-
self.AutoMerge = self._AutoMerge(self, "AutoMerge", service, rules, path)
|
|
9309
9323
|
self.ShowSurfaceMeshPreferences = self._ShowSurfaceMeshPreferences(self, "ShowSurfaceMeshPreferences", service, rules, path)
|
|
9324
|
+
self.SMQualityImprove = self._SMQualityImprove(self, "SMQualityImprove", service, rules, path)
|
|
9310
9325
|
self.TVMAutoControlCreation = self._TVMAutoControlCreation(self, "TVMAutoControlCreation", service, rules, path)
|
|
9311
|
-
self.
|
|
9326
|
+
self.AutoMerge = self._AutoMerge(self, "AutoMerge", service, rules, path)
|
|
9312
9327
|
self.SMRemoveStep = self._SMRemoveStep(self, "SMRemoveStep", service, rules, path)
|
|
9313
|
-
self.SMStepWidth = self._SMStepWidth(self, "SMStepWidth", service, rules, path)
|
|
9314
9328
|
self.ParallelRegionCompute = self._ParallelRegionCompute(self, "ParallelRegionCompute", service, rules, path)
|
|
9315
|
-
self.
|
|
9316
|
-
self.AutoAssignZoneTypes = self._AutoAssignZoneTypes(self, "AutoAssignZoneTypes", service, rules, path)
|
|
9329
|
+
self.SMStepWidth = self._SMStepWidth(self, "SMStepWidth", service, rules, path)
|
|
9317
9330
|
self.SMQualityMaxAngle = self._SMQualityMaxAngle(self, "SMQualityMaxAngle", service, rules, path)
|
|
9331
|
+
self.AutoAssignZoneTypes = self._AutoAssignZoneTypes(self, "AutoAssignZoneTypes", service, rules, path)
|
|
9332
|
+
self.VolumeMeshMaxSize = self._VolumeMeshMaxSize(self, "VolumeMeshMaxSize", service, rules, path)
|
|
9318
9333
|
self.SelfIntersectCheck = self._SelfIntersectCheck(self, "SelfIntersectCheck", service, rules, path)
|
|
9319
9334
|
self.AutoSurfaceRemesh = self._AutoSurfaceRemesh(self, "AutoSurfaceRemesh", service, rules, path)
|
|
9320
9335
|
self.SMQualityImproveLimit = self._SMQualityImproveLimit(self, "SMQualityImproveLimit", service, rules, path)
|
|
@@ -9330,9 +9345,9 @@ 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
9353
|
class _SMSeparationAngle(PyNumericalCommandArgumentsSubItem):
|
|
@@ -9340,14 +9355,14 @@ class Root(PyMenu):
|
|
|
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
|
-
class
|
|
9363
|
+
class _SMQualityImprove(PyTextualCommandArgumentsSubItem):
|
|
9349
9364
|
"""
|
|
9350
|
-
|
|
9365
|
+
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.
|
|
9351
9366
|
"""
|
|
9352
9367
|
|
|
9353
9368
|
class _TVMAutoControlCreation(PyTextualCommandArgumentsSubItem):
|
|
@@ -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 _AutoMerge(PyParameterCommandArgumentsSubItem):
|
|
9359
9374
|
"""
|
|
9360
|
-
|
|
9375
|
+
Argument AutoMerge.
|
|
9361
9376
|
"""
|
|
9362
9377
|
|
|
9363
9378
|
class _SMRemoveStep(PyTextualCommandArgumentsSubItem):
|
|
@@ -9365,19 +9380,19 @@ class Root(PyMenu):
|
|
|
9365
9380
|
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.
|
|
9366
9381
|
"""
|
|
9367
9382
|
|
|
9368
|
-
class
|
|
9383
|
+
class _ParallelRegionCompute(PyTextualCommandArgumentsSubItem):
|
|
9369
9384
|
"""
|
|
9370
|
-
|
|
9385
|
+
Argument ParallelRegionCompute.
|
|
9371
9386
|
"""
|
|
9372
9387
|
|
|
9373
|
-
class
|
|
9388
|
+
class _SMStepWidth(PyNumericalCommandArgumentsSubItem):
|
|
9374
9389
|
"""
|
|
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,9 +9400,9 @@ 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
9408
|
class _SelfIntersectCheck(PyTextualCommandArgumentsSubItem):
|
|
@@ -9462,18 +9477,18 @@ class Root(PyMenu):
|
|
|
9462
9477
|
|
|
9463
9478
|
def __init__(self, parent, attr, service, rules, path):
|
|
9464
9479
|
super().__init__(parent, attr, service, rules, path)
|
|
9465
|
-
self.RefineFaceting = self._RefineFaceting(self, "RefineFaceting", service, rules, path)
|
|
9466
9480
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
9481
|
+
self.RefineFaceting = self._RefineFaceting(self, "RefineFaceting", service, rules, path)
|
|
9467
9482
|
self.Tolerance = self._Tolerance(self, "Tolerance", service, rules, path)
|
|
9468
9483
|
|
|
9469
|
-
class
|
|
9484
|
+
class _MaxSize(PyNumericalCommandArgumentsSubItem):
|
|
9470
9485
|
"""
|
|
9471
|
-
|
|
9486
|
+
Specify the maximum size of the elements for the surface mesh.
|
|
9472
9487
|
"""
|
|
9473
9488
|
|
|
9474
|
-
class
|
|
9489
|
+
class _RefineFaceting(PyParameterCommandArgumentsSubItem):
|
|
9475
9490
|
"""
|
|
9476
|
-
|
|
9491
|
+
Argument RefineFaceting.
|
|
9477
9492
|
"""
|
|
9478
9493
|
|
|
9479
9494
|
class _Tolerance(PyNumericalCommandArgumentsSubItem):
|
|
@@ -9494,11 +9509,11 @@ class Root(PyMenu):
|
|
|
9494
9509
|
self.CreateCADAssemblies = self._CreateCADAssemblies(self, "CreateCADAssemblies", service, rules, path)
|
|
9495
9510
|
self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
|
|
9496
9511
|
self.OneZonePer = self._OneZonePer(self, "OneZonePer", service, rules, path)
|
|
9497
|
-
self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
|
|
9498
|
-
self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
|
|
9499
9512
|
self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
|
|
9500
|
-
self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
|
|
9501
9513
|
self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
|
|
9514
|
+
self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
|
|
9515
|
+
self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
|
|
9516
|
+
self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
|
|
9502
9517
|
|
|
9503
9518
|
class _SavePMDBIntermediateFile(PyParameterCommandArgumentsSubItem):
|
|
9504
9519
|
"""
|
|
@@ -9530,19 +9545,19 @@ class Root(PyMenu):
|
|
|
9530
9545
|
Argument OneZonePer.
|
|
9531
9546
|
"""
|
|
9532
9547
|
|
|
9533
|
-
class
|
|
9548
|
+
class _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
|
|
9534
9549
|
"""
|
|
9535
|
-
Argument
|
|
9550
|
+
Argument UsePartOrBodyAsSuffix.
|
|
9536
9551
|
"""
|
|
9537
9552
|
|
|
9538
|
-
class
|
|
9553
|
+
class _ImportNamedSelections(PyParameterCommandArgumentsSubItem):
|
|
9539
9554
|
"""
|
|
9540
|
-
Argument
|
|
9555
|
+
Argument ImportNamedSelections.
|
|
9541
9556
|
"""
|
|
9542
9557
|
|
|
9543
|
-
class
|
|
9558
|
+
class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
|
|
9544
9559
|
"""
|
|
9545
|
-
Argument
|
|
9560
|
+
Argument ExtractFeatures.
|
|
9546
9561
|
"""
|
|
9547
9562
|
|
|
9548
9563
|
class _ImportPartNames(PyParameterCommandArgumentsSubItem):
|
|
@@ -9550,9 +9565,9 @@ class Root(PyMenu):
|
|
|
9550
9565
|
Argument ImportPartNames.
|
|
9551
9566
|
"""
|
|
9552
9567
|
|
|
9553
|
-
class
|
|
9568
|
+
class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
|
|
9554
9569
|
"""
|
|
9555
|
-
Argument
|
|
9570
|
+
Argument ImportCurvatureDataFromCAD.
|
|
9556
9571
|
"""
|
|
9557
9572
|
|
|
9558
9573
|
class _ShareTopologyPreferences(PySingletonCommandArgumentsSubItem):
|
|
@@ -9567,10 +9582,10 @@ class Root(PyMenu):
|
|
|
9567
9582
|
self.ConnectLabelWildcard = self._ConnectLabelWildcard(self, "ConnectLabelWildcard", service, rules, path)
|
|
9568
9583
|
self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
|
|
9569
9584
|
self.RelativeShareTopologyTolerance = self._RelativeShareTopologyTolerance(self, "RelativeShareTopologyTolerance", service, rules, path)
|
|
9570
|
-
self.
|
|
9585
|
+
self.ShareTopologyAngle = self._ShareTopologyAngle(self, "ShareTopologyAngle", service, rules, path)
|
|
9571
9586
|
self.ExecuteJoinIntersect = self._ExecuteJoinIntersect(self, "ExecuteJoinIntersect", service, rules, path)
|
|
9572
9587
|
self.Operation = self._Operation(self, "Operation", service, rules, path)
|
|
9573
|
-
self.
|
|
9588
|
+
self.FluidLabelWildcard = self._FluidLabelWildcard(self, "FluidLabelWildcard", service, rules, path)
|
|
9574
9589
|
self.STToleranceIncrement = self._STToleranceIncrement(self, "STToleranceIncrement", service, rules, path)
|
|
9575
9590
|
self.IntfLabelList = self._IntfLabelList(self, "IntfLabelList", service, rules, path)
|
|
9576
9591
|
self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
|
|
@@ -9603,9 +9618,9 @@ class Root(PyMenu):
|
|
|
9603
9618
|
Specify the relative tolerance for joining or intersecting face pairs, or the relative tolerance for connecting edge and face pairs.
|
|
9604
9619
|
"""
|
|
9605
9620
|
|
|
9606
|
-
class
|
|
9621
|
+
class _ShareTopologyAngle(PyNumericalCommandArgumentsSubItem):
|
|
9607
9622
|
"""
|
|
9608
|
-
|
|
9623
|
+
Specify the threshold angle for joining face pairs.
|
|
9609
9624
|
"""
|
|
9610
9625
|
|
|
9611
9626
|
class _ExecuteJoinIntersect(PyTextualCommandArgumentsSubItem):
|
|
@@ -9618,9 +9633,9 @@ class Root(PyMenu):
|
|
|
9618
9633
|
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.
|
|
9619
9634
|
"""
|
|
9620
9635
|
|
|
9621
|
-
class
|
|
9636
|
+
class _FluidLabelWildcard(PyTextualCommandArgumentsSubItem):
|
|
9622
9637
|
"""
|
|
9623
|
-
|
|
9638
|
+
Argument FluidLabelWildcard.
|
|
9624
9639
|
"""
|
|
9625
9640
|
|
|
9626
9641
|
class _STToleranceIncrement(PyNumericalCommandArgumentsSubItem):
|
|
@@ -10033,9 +10048,9 @@ class Root(PyMenu):
|
|
|
10033
10048
|
def __init__(self, parent, attr, service, rules, path):
|
|
10034
10049
|
super().__init__(parent, attr, service, rules, path)
|
|
10035
10050
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
10036
|
-
self.HexMinCellLength = self._HexMinCellLength(self, "HexMinCellLength", service, rules, path)
|
|
10037
|
-
self.TetPolyMaxCellLength = self._TetPolyMaxCellLength(self, "TetPolyMaxCellLength", service, rules, path)
|
|
10038
10051
|
self.PeelLayers = self._PeelLayers(self, "PeelLayers", service, rules, path)
|
|
10052
|
+
self.TetPolyMaxCellLength = self._TetPolyMaxCellLength(self, "TetPolyMaxCellLength", service, rules, path)
|
|
10053
|
+
self.HexMinCellLength = self._HexMinCellLength(self, "HexMinCellLength", service, rules, path)
|
|
10039
10054
|
self.Type = self._Type(self, "Type", service, rules, path)
|
|
10040
10055
|
self.CellSizing = self._CellSizing(self, "CellSizing", service, rules, path)
|
|
10041
10056
|
self.HexMaxSize = self._HexMaxSize(self, "HexMaxSize", service, rules, path)
|
|
@@ -10048,9 +10063,9 @@ class Root(PyMenu):
|
|
|
10048
10063
|
Argument MaxSize.
|
|
10049
10064
|
"""
|
|
10050
10065
|
|
|
10051
|
-
class
|
|
10066
|
+
class _PeelLayers(PyNumericalCommandArgumentsSubItem):
|
|
10052
10067
|
"""
|
|
10053
|
-
|
|
10068
|
+
Specify the number of layers that control the gap between the hexahedra core and the geometry. This distance is assumed to be the height of an ideal tetrahedral cell on the boundary face.
|
|
10054
10069
|
"""
|
|
10055
10070
|
|
|
10056
10071
|
class _TetPolyMaxCellLength(PyNumericalCommandArgumentsSubItem):
|
|
@@ -10058,9 +10073,9 @@ class Root(PyMenu):
|
|
|
10058
10073
|
The maximum cell length for either the tetrahedron, polyhedron, or poly-hexcore volume fill types.
|
|
10059
10074
|
"""
|
|
10060
10075
|
|
|
10061
|
-
class
|
|
10076
|
+
class _HexMinCellLength(PyNumericalCommandArgumentsSubItem):
|
|
10062
10077
|
"""
|
|
10063
|
-
|
|
10078
|
+
The minimum cell length for the hexcore or poly-hexcore volume fill types.
|
|
10064
10079
|
"""
|
|
10065
10080
|
|
|
10066
10081
|
class _Type(PyTextualCommandArgumentsSubItem):
|
|
@@ -10115,13 +10130,13 @@ 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.
|
|
10133
|
+
self.MergeBodyLabels = self._MergeBodyLabels(self, "MergeBodyLabels", service, rules, path)
|
|
10119
10134
|
self.QualityMethod = self._QualityMethod(self, "QualityMethod", service, rules, path)
|
|
10120
10135
|
self.MinPolySize = self._MinPolySize(self, "MinPolySize", service, rules, path)
|
|
10121
|
-
self.PolyFeatureAngle = self._PolyFeatureAngle(self, "PolyFeatureAngle", service, rules, path)
|
|
10122
|
-
self.SizeFieldPeriodicity = self._SizeFieldPeriodicity(self, "SizeFieldPeriodicity", service, rules, path)
|
|
10123
|
-
self.MergeBodyLabels = self._MergeBodyLabels(self, "MergeBodyLabels", service, rules, path)
|
|
10124
10136
|
self.UseSizeField = self._UseSizeField(self, "UseSizeField", service, rules, path)
|
|
10137
|
+
self.SizeFieldPeriodicity = self._SizeFieldPeriodicity(self, "SizeFieldPeriodicity", service, rules, path)
|
|
10138
|
+
self.PolyFeatureAngle = self._PolyFeatureAngle(self, "PolyFeatureAngle", service, rules, path)
|
|
10139
|
+
self.UseSizeFieldInSolids = self._UseSizeFieldInSolids(self, "UseSizeFieldInSolids", service, rules, path)
|
|
10125
10140
|
self.PolyInSolids = self._PolyInSolids(self, "PolyInSolids", service, rules, path)
|
|
10126
10141
|
self.TetInSolids = self._TetInSolids(self, "TetInSolids", service, rules, path)
|
|
10127
10142
|
self.AddMultipleQualityMethods = self._AddMultipleQualityMethods(self, "AddMultipleQualityMethods", service, rules, path)
|
|
@@ -10130,15 +10145,15 @@ class Root(PyMenu):
|
|
|
10130
10145
|
self.PrepareZoneNames = self._PrepareZoneNames(self, "PrepareZoneNames", 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.ShowVolumeMeshPreferences = self._ShowVolumeMeshPreferences(self, "ShowVolumeMeshPreferences", service, rules, path)
|
|
10134
10148
|
self.MinEdgeLength = self._MinEdgeLength(self, "MinEdgeLength", service, rules, path)
|
|
10149
|
+
self.ShowVolumeMeshPreferences = self._ShowVolumeMeshPreferences(self, "ShowVolumeMeshPreferences", service, rules, path)
|
|
10135
10150
|
self.SolidGrowthRate = self._SolidGrowthRate(self, "SolidGrowthRate", service, rules, path)
|
|
10136
10151
|
self.MinFaceArea = self._MinFaceArea(self, "MinFaceArea", service, rules, path)
|
|
10137
10152
|
self.QualityWarningLimit = self._QualityWarningLimit(self, "QualityWarningLimit", service, rules, path)
|
|
10138
10153
|
|
|
10139
|
-
class
|
|
10154
|
+
class _MergeBodyLabels(PyTextualCommandArgumentsSubItem):
|
|
10140
10155
|
"""
|
|
10141
|
-
|
|
10156
|
+
Determine whether or not you would like to merge bodies that contain multiple body labels when generating the volume mesh (the default is yes)
|
|
10142
10157
|
"""
|
|
10143
10158
|
|
|
10144
10159
|
class _QualityMethod(PyTextualCommandArgumentsSubItem):
|
|
@@ -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,14 +10176,14 @@ class Root(PyMenu):
|
|
|
10161
10176
|
Argument SizeFieldPeriodicity.
|
|
10162
10177
|
"""
|
|
10163
10178
|
|
|
10164
|
-
class
|
|
10179
|
+
class _PolyFeatureAngle(PyNumericalCommandArgumentsSubItem):
|
|
10165
10180
|
"""
|
|
10166
|
-
|
|
10181
|
+
Specify the angle to preserve features when using a polyhedral-based mesh.
|
|
10167
10182
|
"""
|
|
10168
10183
|
|
|
10169
|
-
class
|
|
10184
|
+
class _UseSizeFieldInSolids(PyTextualCommandArgumentsSubItem):
|
|
10170
10185
|
"""
|
|
10171
|
-
|
|
10186
|
+
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.
|
|
10172
10187
|
"""
|
|
10173
10188
|
|
|
10174
10189
|
class _PolyInSolids(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 _MinEdgeLength(PyNumericalCommandArgumentsSubItem):
|
|
10215
10230
|
"""
|
|
10216
|
-
|
|
10231
|
+
Argument MinEdgeLength.
|
|
10217
10232
|
"""
|
|
10218
10233
|
|
|
10219
|
-
class
|
|
10234
|
+
class _ShowVolumeMeshPreferences(PyParameterCommandArgumentsSubItem):
|
|
10220
10235
|
"""
|
|
10221
|
-
|
|
10236
|
+
Display advanced options that you may want to apply to the task.
|
|
10222
10237
|
"""
|
|
10223
10238
|
|
|
10224
10239
|
class _SolidGrowthRate(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.PrismMinAspectRatio = self._PrismMinAspectRatio(self, "PrismMinAspectRatio", service, rules, path)
|
|
10256
10270
|
self.StairstepExposedQuads = self._StairstepExposedQuads(self, "StairstepExposedQuads", service, rules, path)
|
|
10271
|
+
self.PrismMinAspectRatio = self._PrismMinAspectRatio(self, "PrismMinAspectRatio", 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 _StairstepExposedQuads(PyTextualCommandArgumentsSubItem):
|
|
10305
10320
|
"""
|
|
10306
|
-
|
|
10321
|
+
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.
|
|
10307
10322
|
"""
|
|
10308
10323
|
|
|
10309
|
-
class
|
|
10324
|
+
class _PrismMinAspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
10310
10325
|
"""
|
|
10311
|
-
|
|
10326
|
+
Controls the minimum aspect ratio for cells at the boundary of the thin volume mesh regions. By default, this option is set to 0.3, other than for Stacked Plates, where it is set to 0.1. For flat parallel plates (not including stacked plates), it is recommended to use a value of 0.1 to produce a high quality thin volume mesh.
|
|
10312
10327
|
"""
|
|
10313
10328
|
|
|
10314
10329
|
class _PrismAdjacentAngle(PyNumericalCommandArgumentsSubItem):
|
|
@@ -10323,14 +10338,14 @@ class Root(PyMenu):
|
|
|
10323
10338
|
|
|
10324
10339
|
def __init__(self, parent, attr, service, rules, path):
|
|
10325
10340
|
super().__init__(parent, attr, service, rules, path)
|
|
10326
|
-
self.
|
|
10341
|
+
self.MinAspectRatio = self._MinAspectRatio(self, "MinAspectRatio", service, rules, path)
|
|
10327
10342
|
self.AutoOrderControls = self._AutoOrderControls(self, "AutoOrderControls", service, rules, path)
|
|
10328
10343
|
self.StairStep = self._StairStep(self, "StairStep", service, rules, path)
|
|
10329
|
-
self.
|
|
10344
|
+
self.ShowGlobalThinVolumePreferences = self._ShowGlobalThinVolumePreferences(self, "ShowGlobalThinVolumePreferences", service, rules, path)
|
|
10330
10345
|
|
|
10331
|
-
class
|
|
10346
|
+
class _MinAspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
10332
10347
|
"""
|
|
10333
|
-
|
|
10348
|
+
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.
|
|
10334
10349
|
"""
|
|
10335
10350
|
|
|
10336
10351
|
class _AutoOrderControls(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 _ShowGlobalThinVolumePreferences(PyParameterCommandArgumentsSubItem):
|
|
10347
10362
|
"""
|
|
10348
|
-
|
|
10363
|
+
Display global settings for thin volume meshing.
|
|
10349
10364
|
"""
|
|
10350
10365
|
|
|
10351
10366
|
class _InvokePrimsControl(PyTextualCommandArgumentsSubItem):
|
|
@@ -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.SIRemoveStep = self._SIRemoveStep(self, "SIRemoveStep", 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.ShowSMImprovePreferences = self._ShowSMImprovePreferences(self, "ShowSMImprovePreferences", 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 _SIRemoveStep(PyTextualCommandArgumentsSubItem):
|
|
10784
10799
|
"""
|
|
10785
|
-
Argument
|
|
10800
|
+
Argument SIRemoveStep.
|
|
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 _ShowSMImprovePreferences(PyParameterCommandArgumentsSubItem):
|
|
10799
10814
|
"""
|
|
10800
|
-
Argument
|
|
10815
|
+
Argument ShowSMImprovePreferences.
|
|
10801
10816
|
"""
|
|
10802
10817
|
|
|
10803
10818
|
def create_instance(self) -> _GeometrySetupCommandArguments:
|
|
@@ -11006,8 +11021,8 @@ class Root(PyMenu):
|
|
|
11006
11021
|
|
|
11007
11022
|
def __init__(self, parent, attr, service, rules, path):
|
|
11008
11023
|
super().__init__(parent, attr, service, rules, path)
|
|
11009
|
-
self.X_Offset = self._X_Offset(self, "X-Offset", service, rules, path)
|
|
11010
11024
|
self.HeightNode = self._HeightNode(self, "HeightNode", service, rules, path)
|
|
11025
|
+
self.X_Offset = self._X_Offset(self, "X-Offset", service, rules, path)
|
|
11011
11026
|
self.HeightBackInc = self._HeightBackInc(self, "HeightBackInc", service, rules, path)
|
|
11012
11027
|
self.X1 = self._X1(self, "X1", service, rules, path)
|
|
11013
11028
|
self.Y1 = self._Y1(self, "Y1", service, rules, path)
|
|
@@ -11018,20 +11033,20 @@ class Root(PyMenu):
|
|
|
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.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
11021
11037
|
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
11022
11038
|
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
11023
|
-
self.Y_Offset = self._Y_Offset(self, "Y-Offset", 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
|
|
|
11027
|
-
class
|
|
11042
|
+
class _HeightNode(PyTextualCommandArgumentsSubItem):
|
|
11028
11043
|
"""
|
|
11029
|
-
Argument
|
|
11044
|
+
Argument HeightNode.
|
|
11030
11045
|
"""
|
|
11031
11046
|
|
|
11032
|
-
class
|
|
11047
|
+
class _X_Offset(PyNumericalCommandArgumentsSubItem):
|
|
11033
11048
|
"""
|
|
11034
|
-
Argument
|
|
11049
|
+
Argument X-Offset.
|
|
11035
11050
|
"""
|
|
11036
11051
|
|
|
11037
11052
|
class _HeightBackInc(PyNumericalCommandArgumentsSubItem):
|
|
@@ -11084,6 +11099,11 @@ class Root(PyMenu):
|
|
|
11084
11099
|
Argument Node3.
|
|
11085
11100
|
"""
|
|
11086
11101
|
|
|
11102
|
+
class _Y_Offset(PyNumericalCommandArgumentsSubItem):
|
|
11103
|
+
"""
|
|
11104
|
+
Argument Y-Offset.
|
|
11105
|
+
"""
|
|
11106
|
+
|
|
11087
11107
|
class _X2(PyNumericalCommandArgumentsSubItem):
|
|
11088
11108
|
"""
|
|
11089
11109
|
Argument X2.
|
|
@@ -11094,11 +11114,6 @@ class Root(PyMenu):
|
|
|
11094
11114
|
Argument Node2.
|
|
11095
11115
|
"""
|
|
11096
11116
|
|
|
11097
|
-
class _Y_Offset(PyNumericalCommandArgumentsSubItem):
|
|
11098
|
-
"""
|
|
11099
|
-
Argument Y-Offset.
|
|
11100
|
-
"""
|
|
11101
|
-
|
|
11102
11117
|
class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
|
|
11103
11118
|
"""
|
|
11104
11119
|
Argument HeightFrontInc.
|
|
@@ -11629,10 +11644,10 @@ class Root(PyMenu):
|
|
|
11629
11644
|
self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
|
|
11630
11645
|
self.OneZonePer = self._OneZonePer(self, "OneZonePer", service, rules, path)
|
|
11631
11646
|
self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
|
|
11632
|
-
self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
|
|
11633
11647
|
self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
|
|
11634
|
-
self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
|
|
11635
11648
|
self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", 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
|
"""
|
|
@@ -11669,14 +11684,14 @@ class Root(PyMenu):
|
|
|
11669
11684
|
Argument ImportCurvatureDataFromCAD.
|
|
11670
11685
|
"""
|
|
11671
11686
|
|
|
11672
|
-
class
|
|
11687
|
+
class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
|
|
11673
11688
|
"""
|
|
11674
|
-
Argument
|
|
11689
|
+
Argument ExtractFeatures.
|
|
11675
11690
|
"""
|
|
11676
11691
|
|
|
11677
|
-
class
|
|
11692
|
+
class _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
|
|
11678
11693
|
"""
|
|
11679
|
-
Argument
|
|
11694
|
+
Argument UsePartOrBodyAsSuffix.
|
|
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.MergeNodes = self._MergeNodes(self, "MergeNodes", 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.EdgeLabel = self._EdgeLabel(self, "EdgeLabel", 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.MaxFacetLengthRatio = self._MaxFacetLengthRatio(self, "MaxFacetLengthRatio", service, rules, path)
|
|
11787
11801
|
self.MaxFacetLength = self._MaxFacetLength(self, "MaxFacetLength", service, rules, path)
|
|
11788
11802
|
self.ShowImportCadPreferences = self._ShowImportCadPreferences(self, "ShowImportCadPreferences", service, rules, path)
|
|
11803
|
+
self.MaxFacetLengthRatio = self._MaxFacetLengthRatio(self, "MaxFacetLengthRatio", service, rules, path)
|
|
11789
11804
|
self.ExtractAngle = self._ExtractAngle(self, "ExtractAngle", service, rules, path)
|
|
11790
11805
|
self.CISeparationAngle = self._CISeparationAngle(self, "CISeparationAngle", service, rules, path)
|
|
11791
11806
|
self.CITolerence = self._CITolerence(self, "CITolerence", service, rules, path)
|
|
11792
11807
|
|
|
11793
|
-
class
|
|
11808
|
+
class _MergeNodes(PyTextualCommandArgumentsSubItem):
|
|
11794
11809
|
"""
|
|
11795
|
-
|
|
11810
|
+
Argument MergeNodes.
|
|
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 _EdgeLabel(PyTextualCommandArgumentsSubItem):
|
|
11809
11824
|
"""
|
|
11810
|
-
|
|
11825
|
+
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.
|
|
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 _MaxFacetLengthRatio(PyNumericalCommandArgumentsSubItem):
|
|
11829
|
-
"""
|
|
11830
|
-
Argument MaxFacetLengthRatio.
|
|
11831
|
-
"""
|
|
11832
|
-
|
|
11833
11843
|
class _MaxFacetLength(PyNumericalCommandArgumentsSubItem):
|
|
11834
11844
|
"""
|
|
11835
11845
|
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.
|
|
@@ -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 _MaxFacetLengthRatio(PyNumericalCommandArgumentsSubItem):
|
|
11854
|
+
"""
|
|
11855
|
+
Argument MaxFacetLengthRatio.
|
|
11856
|
+
"""
|
|
11857
|
+
|
|
11843
11858
|
class _ExtractAngle(PyNumericalCommandArgumentsSubItem):
|
|
11844
11859
|
"""
|
|
11845
11860
|
Argument ExtractAngle.
|
|
@@ -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.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", service, rules, path)
|
|
12558
12572
|
self.InitialSizeControl = self._InitialSizeControl(self, "InitialSizeControl", service, rules, path)
|
|
12573
|
+
self.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", service, rules, path)
|
|
12559
12574
|
self.SizingType = self._SizingType(self, "SizingType", service, rules, path)
|
|
12560
|
-
self.WrapCurvatureNormalAngle = self._WrapCurvatureNormalAngle(self, "WrapCurvatureNormalAngle", service, rules, path)
|
|
12561
12575
|
self.CellsPerGap = self._CellsPerGap(self, "CellsPerGap", service, rules, path)
|
|
12576
|
+
self.WrapCurvatureNormalAngle = self._WrapCurvatureNormalAngle(self, "WrapCurvatureNormalAngle", 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 _InitialSizeControl(PyParameterCommandArgumentsSubItem):
|
|
12611
12626
|
"""
|
|
12612
|
-
|
|
12627
|
+
Enable this field to display the initial size control in the graphics window.
|
|
12613
12628
|
"""
|
|
12614
12629
|
|
|
12615
|
-
class
|
|
12630
|
+
class _WrapGrowthRate(PyNumericalCommandArgumentsSubItem):
|
|
12616
12631
|
"""
|
|
12617
|
-
|
|
12632
|
+
Specify the increase in element edge length with each succeeding layer of elements.
|
|
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 _CellsPerGap(PyNumericalCommandArgumentsSubItem):
|
|
12626
12641
|
"""
|
|
12627
|
-
Specify the
|
|
12642
|
+
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.
|
|
12628
12643
|
"""
|
|
12629
12644
|
|
|
12630
|
-
class
|
|
12645
|
+
class _WrapCurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
12631
12646
|
"""
|
|
12632
|
-
Specify the
|
|
12647
|
+
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.
|
|
12633
12648
|
"""
|
|
12634
12649
|
|
|
12635
12650
|
class _TargetSizeControl(PyParameterCommandArgumentsSubItem):
|
|
@@ -13333,10 +13348,10 @@ 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.MaxEdgeLengthFactor = self._MaxEdgeLengthFactor(self, "MaxEdgeLengthFactor", service, rules, path)
|
|
13338
|
-
self.Refacet = self._Refacet(self, "Refacet", service, rules, path)
|
|
13339
13352
|
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
13353
|
+
self.Refacet = self._Refacet(self, "Refacet", service, rules, path)
|
|
13354
|
+
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
13340
13355
|
|
|
13341
13356
|
class _FacetMaxEdgeLength(PyTextualCommandArgumentsSubItem):
|
|
13342
13357
|
"""
|
|
@@ -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 _MaxEdgeLengthFactor(PyNumericalCommandArgumentsSubItem):
|
|
13352
13367
|
"""
|
|
13353
|
-
|
|
13368
|
+
Specifies the maximum size of the facets relative to the bounding box of the geometry.
|
|
13354
13369
|
"""
|
|
13355
13370
|
|
|
13356
|
-
class
|
|
13371
|
+
class _NormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
13357
13372
|
"""
|
|
13358
|
-
|
|
13373
|
+
Specify a rotational angle (in degrees) of transformation.
|
|
13359
13374
|
"""
|
|
13360
13375
|
|
|
13361
13376
|
class _Refacet(PyParameterCommandArgumentsSubItem):
|
|
@@ -13363,9 +13378,9 @@ class Root(PyMenu):
|
|
|
13363
13378
|
Select this option when you want to change faceting of the selected object. Refaceting will refacet the original CAD geometry. Only the faceted CAD geometry is used during the meshing process. The refaceting settings control how far the facet edges are from the model and the size of the facets. More...
|
|
13364
13379
|
"""
|
|
13365
13380
|
|
|
13366
|
-
class
|
|
13381
|
+
class _Deviation(PyNumericalCommandArgumentsSubItem):
|
|
13367
13382
|
"""
|
|
13368
|
-
Specify
|
|
13383
|
+
Specify the distance between facet edges and the geometry edges. Decreasing this value will result in more facets along curved edges.
|
|
13369
13384
|
"""
|
|
13370
13385
|
|
|
13371
13386
|
class _IgnoreSolidNames(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.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
13432
13446
|
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
13447
|
+
self.Deviation = self._Deviation(self, "Deviation", 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 _NormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
13445
13460
|
"""
|
|
13446
|
-
Specify
|
|
13461
|
+
Specify a rotational angle (in degrees) of transformation.
|
|
13447
13462
|
"""
|
|
13448
13463
|
|
|
13449
|
-
class
|
|
13464
|
+
class _Deviation(PyNumericalCommandArgumentsSubItem):
|
|
13450
13465
|
"""
|
|
13451
|
-
Specify
|
|
13466
|
+
Specify the distance between facet edges and the geometry edges. Decreasing this value will result in more facets along curved edges.
|
|
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.
|
|
@@ -14039,14 +14095,14 @@ class Root(PyMenu):
|
|
|
14039
14095
|
self.ConnectLabelWildcard = self._ConnectLabelWildcard(self, "ConnectLabelWildcard", service, rules, path)
|
|
14040
14096
|
self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
|
|
14041
14097
|
self.RelativeShareTopologyTolerance = self._RelativeShareTopologyTolerance(self, "RelativeShareTopologyTolerance", service, rules, path)
|
|
14042
|
-
self.
|
|
14098
|
+
self.ShareTopologyAngle = self._ShareTopologyAngle(self, "ShareTopologyAngle", service, rules, path)
|
|
14043
14099
|
self.ExecuteJoinIntersect = self._ExecuteJoinIntersect(self, "ExecuteJoinIntersect", service, rules, path)
|
|
14044
14100
|
self.Operation = self._Operation(self, "Operation", service, rules, path)
|
|
14045
|
-
self.
|
|
14101
|
+
self.FluidLabelWildcard = self._FluidLabelWildcard(self, "FluidLabelWildcard", service, rules, path)
|
|
14046
14102
|
self.STToleranceIncrement = self._STToleranceIncrement(self, "STToleranceIncrement", service, rules, path)
|
|
14047
|
-
self.IntfLabelList = self._IntfLabelList(self, "IntfLabelList", service, rules, path)
|
|
14048
|
-
self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
|
|
14049
14103
|
self.ShowShareTopologyPreferences = self._ShowShareTopologyPreferences(self, "ShowShareTopologyPreferences", service, rules, path)
|
|
14104
|
+
self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
|
|
14105
|
+
self.IntfLabelList = self._IntfLabelList(self, "IntfLabelList", service, rules, path)
|
|
14050
14106
|
self.AdvancedImprove = self._AdvancedImprove(self, "AdvancedImprove", service, rules, path)
|
|
14051
14107
|
self.NumberOfJoinTries = self._NumberOfJoinTries(self, "NumberOfJoinTries", service, rules, path)
|
|
14052
14108
|
|
|
@@ -14075,9 +14131,9 @@ class Root(PyMenu):
|
|
|
14075
14131
|
Specify the relative tolerance for joining or intersecting face pairs, or the relative tolerance for connecting edge and face pairs.
|
|
14076
14132
|
"""
|
|
14077
14133
|
|
|
14078
|
-
class
|
|
14134
|
+
class _ShareTopologyAngle(PyNumericalCommandArgumentsSubItem):
|
|
14079
14135
|
"""
|
|
14080
|
-
|
|
14136
|
+
Specify the threshold angle for joining face pairs.
|
|
14081
14137
|
"""
|
|
14082
14138
|
|
|
14083
14139
|
class _ExecuteJoinIntersect(PyTextualCommandArgumentsSubItem):
|
|
@@ -14090,9 +14146,9 @@ class Root(PyMenu):
|
|
|
14090
14146
|
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.
|
|
14091
14147
|
"""
|
|
14092
14148
|
|
|
14093
|
-
class
|
|
14149
|
+
class _FluidLabelWildcard(PyTextualCommandArgumentsSubItem):
|
|
14094
14150
|
"""
|
|
14095
|
-
|
|
14151
|
+
Argument FluidLabelWildcard.
|
|
14096
14152
|
"""
|
|
14097
14153
|
|
|
14098
14154
|
class _STToleranceIncrement(PyNumericalCommandArgumentsSubItem):
|
|
@@ -14100,9 +14156,9 @@ class Root(PyMenu):
|
|
|
14100
14156
|
Specify the increment by which the tolerance changes for each attempt to join face pairs.
|
|
14101
14157
|
"""
|
|
14102
14158
|
|
|
14103
|
-
class
|
|
14159
|
+
class _ShowShareTopologyPreferences(PyParameterCommandArgumentsSubItem):
|
|
14104
14160
|
"""
|
|
14105
|
-
|
|
14161
|
+
Display advanced options that you may want to apply to the task.
|
|
14106
14162
|
"""
|
|
14107
14163
|
|
|
14108
14164
|
class _PerLabelList(PyTextualCommandArgumentsSubItem):
|
|
@@ -14110,9 +14166,9 @@ class Root(PyMenu):
|
|
|
14110
14166
|
Argument PerLabelList.
|
|
14111
14167
|
"""
|
|
14112
14168
|
|
|
14113
|
-
class
|
|
14169
|
+
class _IntfLabelList(PyTextualCommandArgumentsSubItem):
|
|
14114
14170
|
"""
|
|
14115
|
-
|
|
14171
|
+
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...
|
|
14116
14172
|
"""
|
|
14117
14173
|
|
|
14118
14174
|
class _AdvancedImprove(PyTextualCommandArgumentsSubItem):
|
|
@@ -14137,10 +14193,10 @@ class Root(PyMenu):
|
|
|
14137
14193
|
self.SIQualityIterations = self._SIQualityIterations(self, "SIQualityIterations", service, rules, path)
|
|
14138
14194
|
self.SIQualityMaxAngle = self._SIQualityMaxAngle(self, "SIQualityMaxAngle", service, rules, path)
|
|
14139
14195
|
self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
|
|
14140
|
-
self.
|
|
14196
|
+
self.ShowSMImprovePreferences = self._ShowSMImprovePreferences(self, "ShowSMImprovePreferences", service, rules, path)
|
|
14141
14197
|
self.AdvancedImprove = self._AdvancedImprove(self, "AdvancedImprove", service, rules, path)
|
|
14142
14198
|
self.SIStepWidth = self._SIStepWidth(self, "SIStepWidth", service, rules, path)
|
|
14143
|
-
self.
|
|
14199
|
+
self.SIRemoveStep = self._SIRemoveStep(self, "SIRemoveStep", service, rules, path)
|
|
14144
14200
|
|
|
14145
14201
|
class _SIStepQualityLimit(PyNumericalCommandArgumentsSubItem):
|
|
14146
14202
|
"""
|
|
@@ -14167,9 +14223,9 @@ class Root(PyMenu):
|
|
|
14167
14223
|
Argument AllowDefeaturing.
|
|
14168
14224
|
"""
|
|
14169
14225
|
|
|
14170
|
-
class
|
|
14226
|
+
class _ShowSMImprovePreferences(PyParameterCommandArgumentsSubItem):
|
|
14171
14227
|
"""
|
|
14172
|
-
Argument
|
|
14228
|
+
Argument ShowSMImprovePreferences.
|
|
14173
14229
|
"""
|
|
14174
14230
|
|
|
14175
14231
|
class _AdvancedImprove(PyTextualCommandArgumentsSubItem):
|
|
@@ -14182,9 +14238,9 @@ class Root(PyMenu):
|
|
|
14182
14238
|
Argument SIStepWidth.
|
|
14183
14239
|
"""
|
|
14184
14240
|
|
|
14185
|
-
class
|
|
14241
|
+
class _SIRemoveStep(PyTextualCommandArgumentsSubItem):
|
|
14186
14242
|
"""
|
|
14187
|
-
Argument
|
|
14243
|
+
Argument SIRemoveStep.
|
|
14188
14244
|
"""
|
|
14189
14245
|
|
|
14190
14246
|
class _SurfaceMeshPreferences(PySingletonCommandArgumentsSubItem):
|
|
@@ -14195,19 +14251,19 @@ class Root(PyMenu):
|
|
|
14195
14251
|
def __init__(self, parent, attr, service, rules, path):
|
|
14196
14252
|
super().__init__(parent, attr, service, rules, path)
|
|
14197
14253
|
self.SMQualityCollapseLimit = self._SMQualityCollapseLimit(self, "SMQualityCollapseLimit", service, rules, path)
|
|
14198
|
-
self.
|
|
14254
|
+
self.AutoMerge = self._AutoMerge(self, "AutoMerge", service, rules, path)
|
|
14199
14255
|
self.SMQualityImprove = self._SMQualityImprove(self, "SMQualityImprove", service, rules, path)
|
|
14256
|
+
self.ShowSurfaceMeshPreferences = self._ShowSurfaceMeshPreferences(self, "ShowSurfaceMeshPreferences", service, rules, path)
|
|
14200
14257
|
self.SMSeparationAngle = self._SMSeparationAngle(self, "SMSeparationAngle", service, rules, path)
|
|
14201
14258
|
self.SMSeparation = self._SMSeparation(self, "SMSeparation", service, rules, path)
|
|
14202
|
-
self.ShowSurfaceMeshPreferences = self._ShowSurfaceMeshPreferences(self, "ShowSurfaceMeshPreferences", service, rules, path)
|
|
14203
14259
|
self.TVMAutoControlCreation = self._TVMAutoControlCreation(self, "TVMAutoControlCreation", service, rules, path)
|
|
14204
|
-
self.
|
|
14260
|
+
self.FoldFaceLimit = self._FoldFaceLimit(self, "FoldFaceLimit", service, rules, path)
|
|
14205
14261
|
self.SMRemoveStep = self._SMRemoveStep(self, "SMRemoveStep", service, rules, path)
|
|
14206
|
-
self.ParallelRegionCompute = self._ParallelRegionCompute(self, "ParallelRegionCompute", service, rules, path)
|
|
14207
14262
|
self.SMStepWidth = self._SMStepWidth(self, "SMStepWidth", service, rules, path)
|
|
14208
|
-
self.
|
|
14209
|
-
self.AutoAssignZoneTypes = self._AutoAssignZoneTypes(self, "AutoAssignZoneTypes", service, rules, path)
|
|
14263
|
+
self.ParallelRegionCompute = self._ParallelRegionCompute(self, "ParallelRegionCompute", service, rules, path)
|
|
14210
14264
|
self.SMQualityMaxAngle = self._SMQualityMaxAngle(self, "SMQualityMaxAngle", service, rules, path)
|
|
14265
|
+
self.AutoAssignZoneTypes = self._AutoAssignZoneTypes(self, "AutoAssignZoneTypes", service, rules, path)
|
|
14266
|
+
self.VolumeMeshMaxSize = self._VolumeMeshMaxSize(self, "VolumeMeshMaxSize", service, rules, path)
|
|
14211
14267
|
self.SelfIntersectCheck = self._SelfIntersectCheck(self, "SelfIntersectCheck", service, rules, path)
|
|
14212
14268
|
self.AutoSurfaceRemesh = self._AutoSurfaceRemesh(self, "AutoSurfaceRemesh", service, rules, path)
|
|
14213
14269
|
self.SMQualityImproveLimit = self._SMQualityImproveLimit(self, "SMQualityImproveLimit", service, rules, path)
|
|
@@ -14218,9 +14274,9 @@ class Root(PyMenu):
|
|
|
14218
14274
|
Argument SMQualityCollapseLimit.
|
|
14219
14275
|
"""
|
|
14220
14276
|
|
|
14221
|
-
class
|
|
14277
|
+
class _AutoMerge(PyParameterCommandArgumentsSubItem):
|
|
14222
14278
|
"""
|
|
14223
|
-
Argument
|
|
14279
|
+
Argument AutoMerge.
|
|
14224
14280
|
"""
|
|
14225
14281
|
|
|
14226
14282
|
class _SMQualityImprove(PyTextualCommandArgumentsSubItem):
|
|
@@ -14228,6 +14284,11 @@ class Root(PyMenu):
|
|
|
14228
14284
|
Argument SMQualityImprove.
|
|
14229
14285
|
"""
|
|
14230
14286
|
|
|
14287
|
+
class _ShowSurfaceMeshPreferences(PyParameterCommandArgumentsSubItem):
|
|
14288
|
+
"""
|
|
14289
|
+
Argument ShowSurfaceMeshPreferences.
|
|
14290
|
+
"""
|
|
14291
|
+
|
|
14231
14292
|
class _SMSeparationAngle(PyNumericalCommandArgumentsSubItem):
|
|
14232
14293
|
"""
|
|
14233
14294
|
Argument SMSeparationAngle.
|
|
@@ -14238,19 +14299,14 @@ class Root(PyMenu):
|
|
|
14238
14299
|
Argument SMSeparation.
|
|
14239
14300
|
"""
|
|
14240
14301
|
|
|
14241
|
-
class _ShowSurfaceMeshPreferences(PyParameterCommandArgumentsSubItem):
|
|
14242
|
-
"""
|
|
14243
|
-
Argument ShowSurfaceMeshPreferences.
|
|
14244
|
-
"""
|
|
14245
|
-
|
|
14246
14302
|
class _TVMAutoControlCreation(PyTextualCommandArgumentsSubItem):
|
|
14247
14303
|
"""
|
|
14248
14304
|
Argument TVMAutoControlCreation.
|
|
14249
14305
|
"""
|
|
14250
14306
|
|
|
14251
|
-
class
|
|
14307
|
+
class _FoldFaceLimit(PyNumericalCommandArgumentsSubItem):
|
|
14252
14308
|
"""
|
|
14253
|
-
Argument
|
|
14309
|
+
Argument FoldFaceLimit.
|
|
14254
14310
|
"""
|
|
14255
14311
|
|
|
14256
14312
|
class _SMRemoveStep(PyTextualCommandArgumentsSubItem):
|
|
@@ -14258,19 +14314,19 @@ class Root(PyMenu):
|
|
|
14258
14314
|
Argument SMRemoveStep.
|
|
14259
14315
|
"""
|
|
14260
14316
|
|
|
14261
|
-
class
|
|
14317
|
+
class _SMStepWidth(PyNumericalCommandArgumentsSubItem):
|
|
14262
14318
|
"""
|
|
14263
|
-
Argument
|
|
14319
|
+
Argument SMStepWidth.
|
|
14264
14320
|
"""
|
|
14265
14321
|
|
|
14266
|
-
class
|
|
14322
|
+
class _ParallelRegionCompute(PyTextualCommandArgumentsSubItem):
|
|
14267
14323
|
"""
|
|
14268
|
-
Argument
|
|
14324
|
+
Argument ParallelRegionCompute.
|
|
14269
14325
|
"""
|
|
14270
14326
|
|
|
14271
|
-
class
|
|
14327
|
+
class _SMQualityMaxAngle(PyNumericalCommandArgumentsSubItem):
|
|
14272
14328
|
"""
|
|
14273
|
-
Argument
|
|
14329
|
+
Argument SMQualityMaxAngle.
|
|
14274
14330
|
"""
|
|
14275
14331
|
|
|
14276
14332
|
class _AutoAssignZoneTypes(PyTextualCommandArgumentsSubItem):
|
|
@@ -14278,9 +14334,9 @@ class Root(PyMenu):
|
|
|
14278
14334
|
Argument AutoAssignZoneTypes.
|
|
14279
14335
|
"""
|
|
14280
14336
|
|
|
14281
|
-
class
|
|
14337
|
+
class _VolumeMeshMaxSize(PyNumericalCommandArgumentsSubItem):
|
|
14282
14338
|
"""
|
|
14283
|
-
Argument
|
|
14339
|
+
Argument VolumeMeshMaxSize.
|
|
14284
14340
|
"""
|
|
14285
14341
|
|
|
14286
14342
|
class _SelfIntersectCheck(PyTextualCommandArgumentsSubItem):
|
|
@@ -14387,8 +14443,8 @@ class Root(PyMenu):
|
|
|
14387
14443
|
self.NewLabelObjects = self._NewLabelObjects(self, "NewLabelObjects", service, rules, path)
|
|
14388
14444
|
self.NewLabelCells = self._NewLabelCells(self, "NewLabelCells", service, rules, path)
|
|
14389
14445
|
self.NewLabelType = self._NewLabelType(self, "NewLabelType", service, rules, path)
|
|
14390
|
-
self.NewLabels = self._NewLabels(self, "NewLabels", service, rules, path)
|
|
14391
14446
|
self.NewLabelResolution = self._NewLabelResolution(self, "NewLabelResolution", 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)
|
|
@@ -14409,14 +14465,14 @@ class Root(PyMenu):
|
|
|
14409
14465
|
Argument NewLabelType.
|
|
14410
14466
|
"""
|
|
14411
14467
|
|
|
14412
|
-
class
|
|
14468
|
+
class _NewLabelResolution(PyTextualCommandArgumentsSubItem):
|
|
14413
14469
|
"""
|
|
14414
|
-
Argument
|
|
14470
|
+
Argument NewLabelResolution.
|
|
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):
|