ansys-fluent-core 0.34.2__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 +2 -2
- 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 +55 -55
- ansys/fluent/core/generated/datamodel_231/meshing.py +191 -191
- ansys/fluent/core/generated/datamodel_232/flicing.py +40 -40
- ansys/fluent/core/generated/datamodel_232/meshing.py +177 -177
- ansys/fluent/core/generated/datamodel_241/flicing.py +30 -30
- ansys/fluent/core/generated/datamodel_241/meshing.py +298 -298
- ansys/fluent/core/generated/datamodel_242/flicing.py +45 -45
- ansys/fluent/core/generated/datamodel_242/meshing.py +352 -352
- ansys/fluent/core/generated/datamodel_242/part_management.py +9 -9
- ansys/fluent/core/generated/datamodel_251/flicing.py +40 -40
- ansys/fluent/core/generated/datamodel_251/meshing.py +304 -304
- ansys/fluent/core/generated/datamodel_251/part_management.py +6 -6
- ansys/fluent/core/generated/datamodel_252/flicing.py +50 -50
- ansys/fluent/core/generated/datamodel_252/meshing.py +435 -435
- ansys/fluent/core/generated/datamodel_252/part_management.py +5 -5
- ansys/fluent/core/generated/datamodel_261/flicing.py +45 -45
- ansys/fluent/core/generated/datamodel_261/meshing.py +462 -399
- 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_261.py +3 -3
- ansys/fluent/core/generated/meshing/tui_261.py +1247 -1136
- ansys/fluent/core/generated/solver/settings_261.py +11990 -4900
- ansys/fluent/core/generated/solver/settings_261.pyi +7277 -3115
- 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 +3888 -2676
- ansys/fluent/core/launcher/container_launcher.py +19 -4
- ansys/fluent/core/launcher/fluent_container.py +51 -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 +3 -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.2.dist-info → ansys_fluent_core-0.35.0.dist-info}/METADATA +8 -7
- {ansys_fluent_core-0.34.2.dist-info → ansys_fluent_core-0.35.0.dist-info}/RECORD +85 -84
- {ansys_fluent_core-0.34.2.dist-info → ansys_fluent_core-0.35.0.dist-info}/WHEEL +1 -1
- {ansys_fluent_core-0.34.2.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)
|
|
@@ -1522,8 +1523,8 @@ class Root(PyMenu):
|
|
|
1522
1523
|
|
|
1523
1524
|
def __init__(self, parent, attr, service, rules, path):
|
|
1524
1525
|
super().__init__(parent, attr, service, rules, path)
|
|
1525
|
-
self.ShowShellBLAdvancedOptions = self._ShowShellBLAdvancedOptions(self, "ShowShellBLAdvancedOptions", service, rules, path)
|
|
1526
1526
|
self.ExposeSide = self._ExposeSide(self, "ExposeSide", service, rules, path)
|
|
1527
|
+
self.ShowShellBLAdvancedOptions = self._ShowShellBLAdvancedOptions(self, "ShowShellBLAdvancedOptions", service, rules, path)
|
|
1527
1528
|
self.MaxAspectRatio = self._MaxAspectRatio(self, "MaxAspectRatio", service, rules, path)
|
|
1528
1529
|
self.MinAspectRatio = self._MinAspectRatio(self, "MinAspectRatio", service, rules, path)
|
|
1529
1530
|
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
@@ -1531,14 +1532,14 @@ class Root(PyMenu):
|
|
|
1531
1532
|
self.GapFactor = self._GapFactor(self, "GapFactor", service, rules, path)
|
|
1532
1533
|
self.AdjacentAttachAngle = self._AdjacentAttachAngle(self, "AdjacentAttachAngle", service, rules, path)
|
|
1533
1534
|
|
|
1534
|
-
class
|
|
1535
|
+
class _ExposeSide(PyTextualCommandArgumentsSubItem):
|
|
1535
1536
|
"""
|
|
1536
|
-
Argument
|
|
1537
|
+
Argument ExposeSide.
|
|
1537
1538
|
"""
|
|
1538
1539
|
|
|
1539
|
-
class
|
|
1540
|
+
class _ShowShellBLAdvancedOptions(PyParameterCommandArgumentsSubItem):
|
|
1540
1541
|
"""
|
|
1541
|
-
Argument
|
|
1542
|
+
Argument ShowShellBLAdvancedOptions.
|
|
1542
1543
|
"""
|
|
1543
1544
|
|
|
1544
1545
|
class _MaxAspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -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)
|
|
1776
|
+
self.ShowLocalPrismPreferences = self._ShowLocalPrismPreferences(self, "ShowLocalPrismPreferences", service, rules, path)
|
|
1775
1777
|
self.NumberOfSplitLayers = self._NumberOfSplitLayers(self, "NumberOfSplitLayers", service, rules, path)
|
|
1776
1778
|
self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
|
|
1777
|
-
self.ShowLocalPrismPreferences = self._ShowLocalPrismPreferences(self, "ShowLocalPrismPreferences", service, rules, path)
|
|
1778
1779
|
self.AllowedTangencyAtInvalidNormals = self._AllowedTangencyAtInvalidNormals(self, "AllowedTangencyAtInvalidNormals", service, rules, path)
|
|
1779
1780
|
self.RemeshAtInvalidNormals = self._RemeshAtInvalidNormals(self, "RemeshAtInvalidNormals", service, rules, path)
|
|
1780
1781
|
self.IgnoreBoundaryLayers = self._IgnoreBoundaryLayers(self, "IgnoreBoundaryLayers", service, rules, path)
|
|
@@ -1804,14 +1805,14 @@ class Root(PyMenu):
|
|
|
1804
1805
|
Specify how you would like to improve the generated boundary layer: as a continuous or stair-stepped boundary layer in the specified area(s).
|
|
1805
1806
|
"""
|
|
1806
1807
|
|
|
1807
|
-
class
|
|
1808
|
+
class _SplitPrism(PyTextualCommandArgumentsSubItem):
|
|
1808
1809
|
"""
|
|
1809
|
-
|
|
1810
|
+
Choose whether or not to add split prisms to each layer along the boundary. Not available when the Offset Method Type is set to last-ratio.
|
|
1810
1811
|
"""
|
|
1811
1812
|
|
|
1812
|
-
class
|
|
1813
|
+
class _ModifyAtInvalidNormals(PyTextualCommandArgumentsSubItem):
|
|
1813
1814
|
"""
|
|
1814
|
-
|
|
1815
|
+
Specify whether to automatically change the surface mesh where invalid normal faces are detected. To grow the boundary layer mesh in the proper direction (away from the boundary), normal vectors (valid) are required at the boundary face nodes of the surface mesh. More...
|
|
1815
1816
|
"""
|
|
1816
1817
|
|
|
1817
1818
|
class _InvalidNormalMethod(PyTextualCommandArgumentsSubItem):
|
|
@@ -1819,6 +1820,11 @@ class Root(PyMenu):
|
|
|
1819
1820
|
Argument InvalidNormalMethod.
|
|
1820
1821
|
"""
|
|
1821
1822
|
|
|
1823
|
+
class _ShowLocalPrismPreferences(PyParameterCommandArgumentsSubItem):
|
|
1824
|
+
"""
|
|
1825
|
+
Display advanced options that you may want to apply to this task.
|
|
1826
|
+
"""
|
|
1827
|
+
|
|
1822
1828
|
class _NumberOfSplitLayers(PyNumericalCommandArgumentsSubItem):
|
|
1823
1829
|
"""
|
|
1824
1830
|
Indicate the number of split prism layers you wish to apply to each layer that you specified for the boundary layer definition.
|
|
@@ -1829,11 +1835,6 @@ class Root(PyMenu):
|
|
|
1829
1835
|
Argument LastRatioNumLayers.
|
|
1830
1836
|
"""
|
|
1831
1837
|
|
|
1832
|
-
class _ShowLocalPrismPreferences(PyParameterCommandArgumentsSubItem):
|
|
1833
|
-
"""
|
|
1834
|
-
Display advanced options that you may want to apply to this task.
|
|
1835
|
-
"""
|
|
1836
|
-
|
|
1837
1838
|
class _AllowedTangencyAtInvalidNormals(PyNumericalCommandArgumentsSubItem):
|
|
1838
1839
|
"""
|
|
1839
1840
|
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).
|
|
@@ -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)
|
|
2097
|
+
self.NumberOfSplitLayers = self._NumberOfSplitLayers(self, "NumberOfSplitLayers", service, rules, path)
|
|
2096
2098
|
self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
|
|
2097
2099
|
self.ShowLocalPrismPreferences = self._ShowLocalPrismPreferences(self, "ShowLocalPrismPreferences", service, rules, path)
|
|
2098
|
-
self.NumberOfSplitLayers = self._NumberOfSplitLayers(self, "NumberOfSplitLayers", 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,6 +2141,11 @@ class Root(PyMenu):
|
|
|
2140
2141
|
Argument InvalidNormalMethod.
|
|
2141
2142
|
"""
|
|
2142
2143
|
|
|
2144
|
+
class _NumberOfSplitLayers(PyNumericalCommandArgumentsSubItem):
|
|
2145
|
+
"""
|
|
2146
|
+
Indicate the number of split prism layers you wish to apply to each layer that you specified for the boundary layer definition.
|
|
2147
|
+
"""
|
|
2148
|
+
|
|
2143
2149
|
class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
|
|
2144
2150
|
"""
|
|
2145
2151
|
Argument LastRatioNumLayers.
|
|
@@ -2150,11 +2156,6 @@ class Root(PyMenu):
|
|
|
2150
2156
|
Display advanced options that you may want to apply to this task.
|
|
2151
2157
|
"""
|
|
2152
2158
|
|
|
2153
|
-
class _NumberOfSplitLayers(PyNumericalCommandArgumentsSubItem):
|
|
2154
|
-
"""
|
|
2155
|
-
Indicate the number of split prism layers you wish to apply to each layer that you specified for the boundary layer definition.
|
|
2156
|
-
"""
|
|
2157
|
-
|
|
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).
|
|
@@ -2396,10 +2404,10 @@ class Root(PyMenu):
|
|
|
2396
2404
|
self.WrapMax = self._WrapMax(self, "WrapMax", service, rules, path)
|
|
2397
2405
|
self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
|
|
2398
2406
|
self.InitialSizeControl = self._InitialSizeControl(self, "InitialSizeControl", service, rules, path)
|
|
2399
|
-
self.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", service, rules, path)
|
|
2400
2407
|
self.SizingType = self._SizingType(self, "SizingType", service, rules, path)
|
|
2401
|
-
self.
|
|
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
|
|
|
@@ -2453,19 +2461,14 @@ class Root(PyMenu):
|
|
|
2453
2461
|
Enable this field to display the initial size control in the graphics window.
|
|
2454
2462
|
"""
|
|
2455
2463
|
|
|
2456
|
-
class _WrapGrowthRate(PyNumericalCommandArgumentsSubItem):
|
|
2457
|
-
"""
|
|
2458
|
-
Specify the increase in element edge length with each succeeding layer of elements.
|
|
2459
|
-
"""
|
|
2460
|
-
|
|
2461
2464
|
class _SizingType(PyTextualCommandArgumentsSubItem):
|
|
2462
2465
|
"""
|
|
2463
2466
|
Choose the type of sizing control (curvature, proximity, soft, or boi).
|
|
2464
2467
|
"""
|
|
2465
2468
|
|
|
2466
|
-
class
|
|
2469
|
+
class _WrapGrowthRate(PyNumericalCommandArgumentsSubItem):
|
|
2467
2470
|
"""
|
|
2468
|
-
Specify the
|
|
2471
|
+
Specify the increase in element edge length with each succeeding layer of elements.
|
|
2469
2472
|
"""
|
|
2470
2473
|
|
|
2471
2474
|
class _WrapCurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
@@ -2473,6 +2476,11 @@ class Root(PyMenu):
|
|
|
2473
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.
|
|
2474
2477
|
"""
|
|
2475
2478
|
|
|
2479
|
+
class _CellsPerGap(PyNumericalCommandArgumentsSubItem):
|
|
2480
|
+
"""
|
|
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.
|
|
2482
|
+
"""
|
|
2483
|
+
|
|
2476
2484
|
class _TargetSizeControl(PyParameterCommandArgumentsSubItem):
|
|
2477
2485
|
"""
|
|
2478
2486
|
Enable this field to display the target size control in the graphics window.
|
|
@@ -2546,6 +2554,7 @@ class Root(PyMenu):
|
|
|
2546
2554
|
Set curvature or proximity based refinement. The edges option considers edge-to-edge proximity, while faces considers face-to-face proximity, and faces and edges considers both. The edge labels option considers edge sizing based on edge labels. Note that when you use the edges or the faces and edges options, you can only select face zones or face labels. Also, saving a size control file after using either of these two options will not be persistent.
|
|
2547
2555
|
IgnoreOrientation : str
|
|
2548
2556
|
Specify whether or not you need to apply additional refinement in and around thin areas (such as between plates), without over-refinement. This ignores face proximity within voids and will not allow you to refine in thin voids, but will allow refinement in gaps. This should be used in predominantly fluid regions with no thin solid regions.
|
|
2557
|
+
IgnoreProximityAcrossObjects : str
|
|
2549
2558
|
BOIZoneorLabel : str
|
|
2550
2559
|
Choose how you want to select your surface (by label or by zone).
|
|
2551
2560
|
BOIFaceLabelList : list[str]
|
|
@@ -2592,6 +2601,7 @@ class Root(PyMenu):
|
|
|
2592
2601
|
self.BOICellsPerGap = self._BOICellsPerGap(self, "BOICellsPerGap", service, rules, path)
|
|
2593
2602
|
self.BOIScopeTo = self._BOIScopeTo(self, "BOIScopeTo", service, rules, path)
|
|
2594
2603
|
self.IgnoreOrientation = self._IgnoreOrientation(self, "IgnoreOrientation", service, rules, path)
|
|
2604
|
+
self.IgnoreProximityAcrossObjects = self._IgnoreProximityAcrossObjects(self, "IgnoreProximityAcrossObjects", service, rules, path)
|
|
2595
2605
|
self.BOIZoneorLabel = self._BOIZoneorLabel(self, "BOIZoneorLabel", service, rules, path)
|
|
2596
2606
|
self.BOIFaceLabelList = self._BOIFaceLabelList(self, "BOIFaceLabelList", service, rules, path)
|
|
2597
2607
|
self.BOIFaceZoneList = self._BOIFaceZoneList(self, "BOIFaceZoneList", service, rules, path)
|
|
@@ -2694,6 +2704,11 @@ class Root(PyMenu):
|
|
|
2694
2704
|
Specify whether or not you need to apply additional refinement in and around thin areas (such as between plates), without over-refinement. This ignores face proximity within voids and will not allow you to refine in thin voids, but will allow refinement in gaps. This should be used in predominantly fluid regions with no thin solid regions.
|
|
2695
2705
|
"""
|
|
2696
2706
|
|
|
2707
|
+
class _IgnoreProximityAcrossObjects(PyTextualCommandArgumentsSubItem):
|
|
2708
|
+
"""
|
|
2709
|
+
Argument IgnoreProximityAcrossObjects.
|
|
2710
|
+
"""
|
|
2711
|
+
|
|
2697
2712
|
class _BOIZoneorLabel(PyTextualCommandArgumentsSubItem):
|
|
2698
2713
|
"""
|
|
2699
2714
|
Choose how you want to select your surface (by label or by zone).
|
|
@@ -3249,23 +3264,23 @@ 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
|
-
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
3257
3271
|
self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
|
|
3272
|
+
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
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):
|
|
@@ -3278,14 +3293,14 @@ class Root(PyMenu):
|
|
|
3278
3293
|
Argument MinAspectRatio.
|
|
3279
3294
|
"""
|
|
3280
3295
|
|
|
3281
|
-
class
|
|
3296
|
+
class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
|
|
3282
3297
|
"""
|
|
3283
|
-
Argument
|
|
3298
|
+
Argument LastRatioNumLayers.
|
|
3284
3299
|
"""
|
|
3285
3300
|
|
|
3286
|
-
class
|
|
3301
|
+
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
3287
3302
|
"""
|
|
3288
|
-
Argument
|
|
3303
|
+
Argument LastRatioPercentage.
|
|
3289
3304
|
"""
|
|
3290
3305
|
|
|
3291
3306
|
class _GapFactor(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4164,14 +4179,14 @@ class Root(PyMenu):
|
|
|
4164
4179
|
super().__init__(parent, attr, service, rules, path)
|
|
4165
4180
|
self.TargeSizeFieldFileName = self._TargeSizeFieldFileName(self, "TargeSizeFieldFileName", service, rules, path)
|
|
4166
4181
|
self.WrapTargetSizeFieldRatio = self._WrapTargetSizeFieldRatio(self, "WrapTargetSizeFieldRatio", service, rules, path)
|
|
4167
|
-
self.
|
|
4182
|
+
self.WrapTargetBothOptions = self._WrapTargetBothOptions(self, "WrapTargetBothOptions", service, rules, path)
|
|
4168
4183
|
self.SolidFluidRaio = self._SolidFluidRaio(self, "SolidFluidRaio", service, rules, path)
|
|
4169
4184
|
self.BoundaryLayers = self._BoundaryLayers(self, "BoundaryLayers", service, rules, path)
|
|
4170
4185
|
self.EdgeProximityComputation = self._EdgeProximityComputation(self, "EdgeProximityComputation", service, rules, path)
|
|
4171
|
-
self.
|
|
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
4191
|
self.WrapTargetRatio = self._WrapTargetRatio(self, "WrapTargetRatio", service, rules, path)
|
|
4177
4192
|
self.WrapTargetRaio = self._WrapTargetRaio(self, "WrapTargetRaio", service, rules, path)
|
|
@@ -4186,9 +4201,9 @@ class Root(PyMenu):
|
|
|
4186
4201
|
The ratio of the initial wrap size field and the local target size field.
|
|
4187
4202
|
"""
|
|
4188
4203
|
|
|
4189
|
-
class
|
|
4204
|
+
class _WrapTargetBothOptions(PyTextualCommandArgumentsSubItem):
|
|
4190
4205
|
"""
|
|
4191
|
-
|
|
4206
|
+
Determine how the size controls are calculated in the Add Local Sizing task: using Both Wrap and Target values, by Target Only (the default), or by Wrap Only. For complex models, computational expense can be lowered by choosing one of the other options. If either Wrap Only or Target Only is selected, then the other values are determined using the Wrap/Target Size Ratio value.
|
|
4192
4207
|
"""
|
|
4193
4208
|
|
|
4194
4209
|
class _SolidFluidRaio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4206,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):
|
|
@@ -4598,14 +4613,14 @@ 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)
|
|
4601
|
-
self.
|
|
4602
|
-
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
4616
|
+
self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
|
|
4603
4617
|
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
4618
|
+
self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
|
|
4604
4619
|
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
|
|
4605
4620
|
self.FlowDirection = self._FlowDirection(self, "FlowDirection", service, rules, path)
|
|
4606
4621
|
self.MptMethodType = self._MptMethodType(self, "MptMethodType", service, rules, path)
|
|
4607
4622
|
self.EdgeSelectionList = self._EdgeSelectionList(self, "EdgeSelectionList", service, rules, path)
|
|
4608
|
-
self.
|
|
4623
|
+
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
4609
4624
|
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
4610
4625
|
self.X = self._X(self, "X", service, rules, path)
|
|
4611
4626
|
self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
|
|
@@ -4639,19 +4654,19 @@ 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
4672
|
class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4674,9 +4689,9 @@ 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
4697
|
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4738,9 +4753,9 @@ class Root(PyMenu):
|
|
|
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)
|
|
4756
|
+
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
4741
4757
|
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
4742
4758
|
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
4743
|
-
self.X2 = self._X2(self, "X2", 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
|
|
|
@@ -4804,6 +4819,11 @@ class Root(PyMenu):
|
|
|
4804
4819
|
Argument Node3.
|
|
4805
4820
|
"""
|
|
4806
4821
|
|
|
4822
|
+
class _X2(PyNumericalCommandArgumentsSubItem):
|
|
4823
|
+
"""
|
|
4824
|
+
Argument X2.
|
|
4825
|
+
"""
|
|
4826
|
+
|
|
4807
4827
|
class _Node2(PyTextualCommandArgumentsSubItem):
|
|
4808
4828
|
"""
|
|
4809
4829
|
Argument Node2.
|
|
@@ -4814,11 +4834,6 @@ class Root(PyMenu):
|
|
|
4814
4834
|
Argument Y-Offset.
|
|
4815
4835
|
"""
|
|
4816
4836
|
|
|
4817
|
-
class _X2(PyNumericalCommandArgumentsSubItem):
|
|
4818
|
-
"""
|
|
4819
|
-
Argument X2.
|
|
4820
|
-
"""
|
|
4821
|
-
|
|
4822
4837
|
class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
|
|
4823
4838
|
"""
|
|
4824
4839
|
Argument HeightFrontInc.
|
|
@@ -4876,15 +4891,15 @@ class Root(PyMenu):
|
|
|
4876
4891
|
self.CylinderX2 = self._CylinderX2(self, "CylinderX2", service, rules, path)
|
|
4877
4892
|
self.BoxYLength = self._BoxYLength(self, "BoxYLength", service, rules, path)
|
|
4878
4893
|
self.CylinderX1 = self._CylinderX1(self, "CylinderX1", service, rules, path)
|
|
4879
|
-
self.BoxZLength = self._BoxZLength(self, "BoxZLength", service, rules, path)
|
|
4880
|
-
self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
|
|
4881
4894
|
self.BoxXLength = self._BoxXLength(self, "BoxXLength", service, rules, path)
|
|
4895
|
+
self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
|
|
4896
|
+
self.BoxZLength = self._BoxZLength(self, "BoxZLength", service, rules, path)
|
|
4882
4897
|
self.BoxCenterY = self._BoxCenterY(self, "BoxCenterY", service, rules, path)
|
|
4883
4898
|
self.CylinderZ1 = self._CylinderZ1(self, "CylinderZ1", service, rules, path)
|
|
4884
4899
|
self.CylinderRadius1 = self._CylinderRadius1(self, "CylinderRadius1", service, rules, path)
|
|
4885
4900
|
self.BoxCenterX = self._BoxCenterX(self, "BoxCenterX", service, rules, path)
|
|
4886
|
-
self.CylinderRadius2 = self._CylinderRadius2(self, "CylinderRadius2", service, rules, path)
|
|
4887
4901
|
self.BoxCenterZ = self._BoxCenterZ(self, "BoxCenterZ", service, rules, path)
|
|
4902
|
+
self.CylinderRadius2 = self._CylinderRadius2(self, "CylinderRadius2", service, rules, path)
|
|
4888
4903
|
self.CylinderY2 = self._CylinderY2(self, "CylinderY2", service, rules, path)
|
|
4889
4904
|
|
|
4890
4905
|
class _CylinderZ2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4907,9 +4922,9 @@ class Root(PyMenu):
|
|
|
4907
4922
|
Argument CylinderX1.
|
|
4908
4923
|
"""
|
|
4909
4924
|
|
|
4910
|
-
class
|
|
4925
|
+
class _BoxXLength(PyNumericalCommandArgumentsSubItem):
|
|
4911
4926
|
"""
|
|
4912
|
-
Argument
|
|
4927
|
+
Argument BoxXLength.
|
|
4913
4928
|
"""
|
|
4914
4929
|
|
|
4915
4930
|
class _CylinderY1(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4917,9 +4932,9 @@ class Root(PyMenu):
|
|
|
4917
4932
|
Argument CylinderY1.
|
|
4918
4933
|
"""
|
|
4919
4934
|
|
|
4920
|
-
class
|
|
4935
|
+
class _BoxZLength(PyNumericalCommandArgumentsSubItem):
|
|
4921
4936
|
"""
|
|
4922
|
-
Argument
|
|
4937
|
+
Argument BoxZLength.
|
|
4923
4938
|
"""
|
|
4924
4939
|
|
|
4925
4940
|
class _BoxCenterY(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4942,14 +4957,14 @@ class Root(PyMenu):
|
|
|
4942
4957
|
Argument BoxCenterX.
|
|
4943
4958
|
"""
|
|
4944
4959
|
|
|
4945
|
-
class
|
|
4960
|
+
class _BoxCenterZ(PyNumericalCommandArgumentsSubItem):
|
|
4946
4961
|
"""
|
|
4947
|
-
Argument
|
|
4962
|
+
Argument BoxCenterZ.
|
|
4948
4963
|
"""
|
|
4949
4964
|
|
|
4950
|
-
class
|
|
4965
|
+
class _CylinderRadius2(PyNumericalCommandArgumentsSubItem):
|
|
4951
4966
|
"""
|
|
4952
|
-
Argument
|
|
4967
|
+
Argument CylinderRadius2.
|
|
4953
4968
|
"""
|
|
4954
4969
|
|
|
4955
4970
|
class _CylinderY2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5095,7 +5110,7 @@ class Root(PyMenu):
|
|
|
5095
5110
|
def __init__(self, parent, attr, service, rules, path):
|
|
5096
5111
|
super().__init__(parent, attr, service, rules, path)
|
|
5097
5112
|
self.SizeRelativeLength = self._SizeRelativeLength(self, "SizeRelativeLength", service, rules, path)
|
|
5098
|
-
self.
|
|
5113
|
+
self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
|
|
5099
5114
|
self.XminRatio = self._XminRatio(self, "XminRatio", service, rules, path)
|
|
5100
5115
|
self.YminRatio = self._YminRatio(self, "YminRatio", service, rules, path)
|
|
5101
5116
|
self.Zmin = self._Zmin(self, "Zmin", service, rules, path)
|
|
@@ -5106,16 +5121,16 @@ class Root(PyMenu):
|
|
|
5106
5121
|
self.Xmin = self._Xmin(self, "Xmin", service, rules, path)
|
|
5107
5122
|
self.YmaxRatio = self._YmaxRatio(self, "YmaxRatio", service, rules, path)
|
|
5108
5123
|
self.ZmaxRatio = self._ZmaxRatio(self, "ZmaxRatio", service, rules, path)
|
|
5109
|
-
self.
|
|
5124
|
+
self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
|
|
5110
5125
|
|
|
5111
5126
|
class _SizeRelativeLength(PyTextualCommandArgumentsSubItem):
|
|
5112
5127
|
"""
|
|
5113
5128
|
Argument SizeRelativeLength.
|
|
5114
5129
|
"""
|
|
5115
5130
|
|
|
5116
|
-
class
|
|
5131
|
+
class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
|
|
5117
5132
|
"""
|
|
5118
|
-
|
|
5133
|
+
Argument XmaxRatio.
|
|
5119
5134
|
"""
|
|
5120
5135
|
|
|
5121
5136
|
class _XminRatio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5168,9 +5183,9 @@ class Root(PyMenu):
|
|
|
5168
5183
|
Argument ZmaxRatio.
|
|
5169
5184
|
"""
|
|
5170
5185
|
|
|
5171
|
-
class
|
|
5186
|
+
class _Xmax(PyNumericalCommandArgumentsSubItem):
|
|
5172
5187
|
"""
|
|
5173
|
-
|
|
5188
|
+
Specify the x-coordinate of the offset collar mesh.
|
|
5174
5189
|
"""
|
|
5175
5190
|
|
|
5176
5191
|
class _OffsetObject(PySingletonCommandArgumentsSubItem):
|
|
@@ -5185,18 +5200,18 @@ class Root(PyMenu):
|
|
|
5185
5200
|
self.ShowCoordinates = self._ShowCoordinates(self, "ShowCoordinates", service, rules, path)
|
|
5186
5201
|
self.Y = self._Y(self, "Y", service, rules, path)
|
|
5187
5202
|
self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
|
|
5203
|
+
self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
|
|
5204
|
+
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
5188
5205
|
self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
|
|
5189
5206
|
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
5190
|
-
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
|
|
5191
|
-
self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
|
|
5192
5207
|
self.FlowDirection = self._FlowDirection(self, "FlowDirection", service, rules, path)
|
|
5193
5208
|
self.MptMethodType = self._MptMethodType(self, "MptMethodType", service, rules, path)
|
|
5194
5209
|
self.EdgeSelectionList = self._EdgeSelectionList(self, "EdgeSelectionList", service, rules, path)
|
|
5195
|
-
self.
|
|
5196
|
-
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
5210
|
+
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
|
|
5197
5211
|
self.X = self._X(self, "X", service, rules, path)
|
|
5198
|
-
self.
|
|
5212
|
+
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
5199
5213
|
self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
|
|
5214
|
+
self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
|
|
5200
5215
|
self.FirstHeight = self._FirstHeight(self, "FirstHeight", service, rules, path)
|
|
5201
5216
|
self.BoundaryLayerHeight = self._BoundaryLayerHeight(self, "BoundaryLayerHeight", service, rules, path)
|
|
5202
5217
|
self.CrossWakeGrowthFactor = self._CrossWakeGrowthFactor(self, "CrossWakeGrowthFactor", service, rules, path)
|
|
@@ -5226,24 +5241,24 @@ class Root(PyMenu):
|
|
|
5226
5241
|
Argument DefeaturingSize.
|
|
5227
5242
|
"""
|
|
5228
5243
|
|
|
5229
|
-
class
|
|
5244
|
+
class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
|
|
5230
5245
|
"""
|
|
5231
|
-
Argument
|
|
5246
|
+
Argument BoundaryLayerLevels.
|
|
5232
5247
|
"""
|
|
5233
5248
|
|
|
5234
|
-
class
|
|
5249
|
+
class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
|
|
5235
5250
|
"""
|
|
5236
|
-
Argument
|
|
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):
|
|
@@ -5261,14 +5276,9 @@ class Root(PyMenu):
|
|
|
5261
5276
|
Choose a single edge zone from the list below for your edge-based collar mesh. Use the Filter Text field to provide text and/or regular expressions in filtering the list. The matching list item(s) are automatically displayed in the list. Use ^, |, and & in your expression to indicate boolean operations for NOT, OR, and AND, respectively. More...
|
|
5262
5277
|
"""
|
|
5263
5278
|
|
|
5264
|
-
class
|
|
5265
|
-
"""
|
|
5266
|
-
Argument NumberOfLayers.
|
|
5267
|
-
"""
|
|
5268
|
-
|
|
5269
|
-
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
5279
|
+
class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
|
|
5270
5280
|
"""
|
|
5271
|
-
Argument
|
|
5281
|
+
Argument WakeGrowthFactor.
|
|
5272
5282
|
"""
|
|
5273
5283
|
|
|
5274
5284
|
class _X(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5276,9 +5286,9 @@ class Root(PyMenu):
|
|
|
5276
5286
|
Specify the x-coordinate of the offset collar mesh.
|
|
5277
5287
|
"""
|
|
5278
5288
|
|
|
5279
|
-
class
|
|
5289
|
+
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
5280
5290
|
"""
|
|
5281
|
-
Argument
|
|
5291
|
+
Argument LastRatioPercentage.
|
|
5282
5292
|
"""
|
|
5283
5293
|
|
|
5284
5294
|
class _OffsetMethodType(PyTextualCommandArgumentsSubItem):
|
|
@@ -5286,6 +5296,11 @@ class Root(PyMenu):
|
|
|
5286
5296
|
Argument OffsetMethodType.
|
|
5287
5297
|
"""
|
|
5288
5298
|
|
|
5299
|
+
class _FlipDirection(PyParameterCommandArgumentsSubItem):
|
|
5300
|
+
"""
|
|
5301
|
+
Argument FlipDirection.
|
|
5302
|
+
"""
|
|
5303
|
+
|
|
5289
5304
|
class _FirstHeight(PyNumericalCommandArgumentsSubItem):
|
|
5290
5305
|
"""
|
|
5291
5306
|
Argument FirstHeight.
|
|
@@ -5313,8 +5328,8 @@ class Root(PyMenu):
|
|
|
5313
5328
|
|
|
5314
5329
|
def __init__(self, parent, attr, service, rules, path):
|
|
5315
5330
|
super().__init__(parent, attr, service, rules, path)
|
|
5316
|
-
self.HeightNode = self._HeightNode(self, "HeightNode", service, rules, path)
|
|
5317
5331
|
self.X_Offset = self._X_Offset(self, "X-Offset", service, rules, path)
|
|
5332
|
+
self.HeightNode = self._HeightNode(self, "HeightNode", service, rules, path)
|
|
5318
5333
|
self.HeightBackInc = self._HeightBackInc(self, "HeightBackInc", service, rules, path)
|
|
5319
5334
|
self.X1 = self._X1(self, "X1", service, rules, path)
|
|
5320
5335
|
self.Y1 = self._Y1(self, "Y1", service, rules, path)
|
|
@@ -5325,20 +5340,20 @@ 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
5343
|
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
5330
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
|
|
|
5334
|
-
class
|
|
5349
|
+
class _X_Offset(PyNumericalCommandArgumentsSubItem):
|
|
5335
5350
|
"""
|
|
5336
|
-
Argument
|
|
5351
|
+
Argument X-Offset.
|
|
5337
5352
|
"""
|
|
5338
5353
|
|
|
5339
|
-
class
|
|
5354
|
+
class _HeightNode(PyTextualCommandArgumentsSubItem):
|
|
5340
5355
|
"""
|
|
5341
|
-
Argument
|
|
5356
|
+
Argument HeightNode.
|
|
5342
5357
|
"""
|
|
5343
5358
|
|
|
5344
5359
|
class _HeightBackInc(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5391,11 +5406,6 @@ class Root(PyMenu):
|
|
|
5391
5406
|
Argument Node3.
|
|
5392
5407
|
"""
|
|
5393
5408
|
|
|
5394
|
-
class _Node2(PyTextualCommandArgumentsSubItem):
|
|
5395
|
-
"""
|
|
5396
|
-
Argument Node2.
|
|
5397
|
-
"""
|
|
5398
|
-
|
|
5399
5409
|
class _Y_Offset(PyNumericalCommandArgumentsSubItem):
|
|
5400
5410
|
"""
|
|
5401
5411
|
Argument Y-Offset.
|
|
@@ -5406,6 +5416,11 @@ class Root(PyMenu):
|
|
|
5406
5416
|
Argument X2.
|
|
5407
5417
|
"""
|
|
5408
5418
|
|
|
5419
|
+
class _Node2(PyTextualCommandArgumentsSubItem):
|
|
5420
|
+
"""
|
|
5421
|
+
Argument Node2.
|
|
5422
|
+
"""
|
|
5423
|
+
|
|
5409
5424
|
class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
|
|
5410
5425
|
"""
|
|
5411
5426
|
Argument HeightFrontInc.
|
|
@@ -5463,15 +5478,15 @@ class Root(PyMenu):
|
|
|
5463
5478
|
self.CylinderX2 = self._CylinderX2(self, "CylinderX2", service, rules, path)
|
|
5464
5479
|
self.BoxYLength = self._BoxYLength(self, "BoxYLength", service, rules, path)
|
|
5465
5480
|
self.CylinderX1 = self._CylinderX1(self, "CylinderX1", service, rules, path)
|
|
5466
|
-
self.BoxXLength = self._BoxXLength(self, "BoxXLength", service, rules, path)
|
|
5467
|
-
self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
|
|
5468
5481
|
self.BoxZLength = self._BoxZLength(self, "BoxZLength", service, rules, path)
|
|
5482
|
+
self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
|
|
5483
|
+
self.BoxXLength = self._BoxXLength(self, "BoxXLength", service, rules, path)
|
|
5469
5484
|
self.BoxCenterY = self._BoxCenterY(self, "BoxCenterY", service, rules, path)
|
|
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):
|
|
@@ -5494,9 +5509,9 @@ class Root(PyMenu):
|
|
|
5494
5509
|
Argument CylinderX1.
|
|
5495
5510
|
"""
|
|
5496
5511
|
|
|
5497
|
-
class
|
|
5512
|
+
class _BoxZLength(PyNumericalCommandArgumentsSubItem):
|
|
5498
5513
|
"""
|
|
5499
|
-
Argument
|
|
5514
|
+
Argument BoxZLength.
|
|
5500
5515
|
"""
|
|
5501
5516
|
|
|
5502
5517
|
class _CylinderY1(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5504,9 +5519,9 @@ class Root(PyMenu):
|
|
|
5504
5519
|
Argument CylinderY1.
|
|
5505
5520
|
"""
|
|
5506
5521
|
|
|
5507
|
-
class
|
|
5522
|
+
class _BoxXLength(PyNumericalCommandArgumentsSubItem):
|
|
5508
5523
|
"""
|
|
5509
|
-
Argument
|
|
5524
|
+
Argument BoxXLength.
|
|
5510
5525
|
"""
|
|
5511
5526
|
|
|
5512
5527
|
class _BoxCenterY(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):
|
|
@@ -5774,17 +5789,17 @@ class Root(PyMenu):
|
|
|
5774
5789
|
self.Y = self._Y(self, "Y", service, rules, path)
|
|
5775
5790
|
self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
|
|
5776
5791
|
self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
|
|
5777
|
-
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
5778
|
-
self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
|
|
5779
5792
|
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
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)
|
|
5783
|
-
self.
|
|
5798
|
+
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
5784
5799
|
self.X = self._X(self, "X", service, rules, path)
|
|
5785
5800
|
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
5786
|
-
self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
|
|
5787
5801
|
self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
|
|
5802
|
+
self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
|
|
5788
5803
|
self.FirstHeight = self._FirstHeight(self, "FirstHeight", service, rules, path)
|
|
5789
5804
|
self.BoundaryLayerHeight = self._BoundaryLayerHeight(self, "BoundaryLayerHeight", service, rules, path)
|
|
5790
5805
|
self.CrossWakeGrowthFactor = self._CrossWakeGrowthFactor(self, "CrossWakeGrowthFactor", service, rules, path)
|
|
@@ -5819,9 +5834,9 @@ class Root(PyMenu):
|
|
|
5819
5834
|
Specify the ratio of the prism base length to the prism layer height.
|
|
5820
5835
|
"""
|
|
5821
5836
|
|
|
5822
|
-
class
|
|
5837
|
+
class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
|
|
5823
5838
|
"""
|
|
5824
|
-
|
|
5839
|
+
Select the number of boundary layers to be generated.
|
|
5825
5840
|
"""
|
|
5826
5841
|
|
|
5827
5842
|
class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5829,9 +5844,9 @@ class Root(PyMenu):
|
|
|
5829
5844
|
Argument BoundaryLayerLevels.
|
|
5830
5845
|
"""
|
|
5831
5846
|
|
|
5832
|
-
class
|
|
5847
|
+
class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
|
|
5833
5848
|
"""
|
|
5834
|
-
|
|
5849
|
+
Argument WakeGrowthFactor.
|
|
5835
5850
|
"""
|
|
5836
5851
|
|
|
5837
5852
|
class _FlowDirection(PyTextualCommandArgumentsSubItem):
|
|
@@ -5849,9 +5864,9 @@ class Root(PyMenu):
|
|
|
5849
5864
|
Argument EdgeSelectionList.
|
|
5850
5865
|
"""
|
|
5851
5866
|
|
|
5852
|
-
class
|
|
5867
|
+
class _Rate(PyNumericalCommandArgumentsSubItem):
|
|
5853
5868
|
"""
|
|
5854
|
-
|
|
5869
|
+
Specify the rate of growth of the boundary layer.
|
|
5855
5870
|
"""
|
|
5856
5871
|
|
|
5857
5872
|
class _X(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5864,14 +5879,14 @@ class Root(PyMenu):
|
|
|
5864
5879
|
Specify the offset height of the last layer as a percentage of the local base mesh size.
|
|
5865
5880
|
"""
|
|
5866
5881
|
|
|
5867
|
-
class
|
|
5882
|
+
class _FlipDirection(PyParameterCommandArgumentsSubItem):
|
|
5868
5883
|
"""
|
|
5869
|
-
|
|
5884
|
+
Argument FlipDirection.
|
|
5870
5885
|
"""
|
|
5871
5886
|
|
|
5872
|
-
class
|
|
5887
|
+
class _OffsetMethodType(PyTextualCommandArgumentsSubItem):
|
|
5873
5888
|
"""
|
|
5874
|
-
|
|
5889
|
+
Choose the method that will be used to create the boundary layer, or prism, controls.
|
|
5875
5890
|
"""
|
|
5876
5891
|
|
|
5877
5892
|
class _FirstHeight(PyNumericalCommandArgumentsSubItem):
|
|
@@ -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)
|
|
@@ -5914,19 +5929,19 @@ class Root(PyMenu):
|
|
|
5914
5929
|
self.Y2 = self._Y2(self, "Y2", service, rules, path)
|
|
5915
5930
|
self.Node3 = self._Node3(self, "Node3", service, rules, path)
|
|
5916
5931
|
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
5917
|
-
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
5918
5932
|
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
5933
|
+
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
5919
5934
|
self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
|
|
5920
5935
|
self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
|
|
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):
|
|
@@ -5984,14 +5999,14 @@ class Root(PyMenu):
|
|
|
5984
5999
|
Argument X2.
|
|
5985
6000
|
"""
|
|
5986
6001
|
|
|
5987
|
-
class
|
|
6002
|
+
class _Y_Offset(PyNumericalCommandArgumentsSubItem):
|
|
5988
6003
|
"""
|
|
5989
|
-
Argument
|
|
6004
|
+
Argument Y-Offset.
|
|
5990
6005
|
"""
|
|
5991
6006
|
|
|
5992
|
-
class
|
|
6007
|
+
class _Node2(PyTextualCommandArgumentsSubItem):
|
|
5993
6008
|
"""
|
|
5994
|
-
Argument
|
|
6009
|
+
Argument Node2.
|
|
5995
6010
|
"""
|
|
5996
6011
|
|
|
5997
6012
|
class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
|
|
@@ -6051,9 +6066,9 @@ class Root(PyMenu):
|
|
|
6051
6066
|
self.CylinderX2 = self._CylinderX2(self, "CylinderX2", service, rules, path)
|
|
6052
6067
|
self.BoxYLength = self._BoxYLength(self, "BoxYLength", service, rules, path)
|
|
6053
6068
|
self.CylinderX1 = self._CylinderX1(self, "CylinderX1", service, rules, path)
|
|
6054
|
-
self.BoxZLength = self._BoxZLength(self, "BoxZLength", service, rules, path)
|
|
6055
|
-
self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
|
|
6056
6069
|
self.BoxXLength = self._BoxXLength(self, "BoxXLength", service, rules, path)
|
|
6070
|
+
self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
|
|
6071
|
+
self.BoxZLength = self._BoxZLength(self, "BoxZLength", service, rules, path)
|
|
6057
6072
|
self.BoxCenterY = self._BoxCenterY(self, "BoxCenterY", service, rules, path)
|
|
6058
6073
|
self.CylinderZ1 = self._CylinderZ1(self, "CylinderZ1", service, rules, path)
|
|
6059
6074
|
self.CylinderRadius1 = self._CylinderRadius1(self, "CylinderRadius1", service, rules, path)
|
|
@@ -6082,9 +6097,9 @@ class Root(PyMenu):
|
|
|
6082
6097
|
Argument CylinderX1.
|
|
6083
6098
|
"""
|
|
6084
6099
|
|
|
6085
|
-
class
|
|
6100
|
+
class _BoxXLength(PyNumericalCommandArgumentsSubItem):
|
|
6086
6101
|
"""
|
|
6087
|
-
Argument
|
|
6102
|
+
Argument BoxXLength.
|
|
6088
6103
|
"""
|
|
6089
6104
|
|
|
6090
6105
|
class _CylinderY1(PyNumericalCommandArgumentsSubItem):
|
|
@@ -6092,9 +6107,9 @@ class Root(PyMenu):
|
|
|
6092
6107
|
Argument CylinderY1.
|
|
6093
6108
|
"""
|
|
6094
6109
|
|
|
6095
|
-
class
|
|
6110
|
+
class _BoxZLength(PyNumericalCommandArgumentsSubItem):
|
|
6096
6111
|
"""
|
|
6097
|
-
Argument
|
|
6112
|
+
Argument BoxZLength.
|
|
6098
6113
|
"""
|
|
6099
6114
|
|
|
6100
6115
|
class _BoxCenterY(PyNumericalCommandArgumentsSubItem):
|
|
@@ -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):
|
|
@@ -6891,7 +6906,7 @@ class Root(PyMenu):
|
|
|
6891
6906
|
def __init__(self, parent, attr, service, rules, path):
|
|
6892
6907
|
super().__init__(parent, attr, service, rules, path)
|
|
6893
6908
|
self.SizeRelativeLength = self._SizeRelativeLength(self, "SizeRelativeLength", service, rules, path)
|
|
6894
|
-
self.
|
|
6909
|
+
self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
|
|
6895
6910
|
self.XminRatio = self._XminRatio(self, "XminRatio", service, rules, path)
|
|
6896
6911
|
self.YminRatio = self._YminRatio(self, "YminRatio", service, rules, path)
|
|
6897
6912
|
self.Zmin = self._Zmin(self, "Zmin", service, rules, path)
|
|
@@ -6902,16 +6917,16 @@ class Root(PyMenu):
|
|
|
6902
6917
|
self.Xmin = self._Xmin(self, "Xmin", service, rules, path)
|
|
6903
6918
|
self.YmaxRatio = self._YmaxRatio(self, "YmaxRatio", service, rules, path)
|
|
6904
6919
|
self.ZmaxRatio = self._ZmaxRatio(self, "ZmaxRatio", service, rules, path)
|
|
6905
|
-
self.
|
|
6920
|
+
self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
|
|
6906
6921
|
|
|
6907
6922
|
class _SizeRelativeLength(PyTextualCommandArgumentsSubItem):
|
|
6908
6923
|
"""
|
|
6909
6924
|
Determine if you would like to specify the bounding box for the refinement region as a ratio of the geometry length, or by specifying a specific location for the minimum and maximum coordinates.
|
|
6910
6925
|
"""
|
|
6911
6926
|
|
|
6912
|
-
class
|
|
6927
|
+
class _Xmax(PyNumericalCommandArgumentsSubItem):
|
|
6913
6928
|
"""
|
|
6914
|
-
|
|
6929
|
+
Specify the X-coordinate for the initial position of the cylindrical refinement region.
|
|
6915
6930
|
"""
|
|
6916
6931
|
|
|
6917
6932
|
class _XminRatio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -6964,9 +6979,9 @@ class Root(PyMenu):
|
|
|
6964
6979
|
Extends the maximum size of the bounding box in the Z direction by the specified value. The value is the ratio relative to the geometry size in the Z direction.
|
|
6965
6980
|
"""
|
|
6966
6981
|
|
|
6967
|
-
class
|
|
6982
|
+
class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
|
|
6968
6983
|
"""
|
|
6969
|
-
|
|
6984
|
+
Extends the maximum size of the bounding box in the X direction by the specified value. The value is the ratio relative to the geometry size in the X direction.
|
|
6970
6985
|
"""
|
|
6971
6986
|
|
|
6972
6987
|
class _OffsetObject(PySingletonCommandArgumentsSubItem):
|
|
@@ -6981,14 +6996,14 @@ class Root(PyMenu):
|
|
|
6981
6996
|
self.ShowCoordinates = self._ShowCoordinates(self, "ShowCoordinates", service, rules, path)
|
|
6982
6997
|
self.Y = self._Y(self, "Y", service, rules, path)
|
|
6983
6998
|
self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
|
|
6984
|
-
self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
|
|
6985
|
-
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
6986
|
-
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
6987
6999
|
self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
|
|
7000
|
+
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
|
|
7001
|
+
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
7002
|
+
self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
|
|
6988
7003
|
self.FlowDirection = self._FlowDirection(self, "FlowDirection", service, rules, path)
|
|
6989
7004
|
self.MptMethodType = self._MptMethodType(self, "MptMethodType", service, rules, path)
|
|
6990
7005
|
self.EdgeSelectionList = self._EdgeSelectionList(self, "EdgeSelectionList", service, rules, path)
|
|
6991
|
-
self.
|
|
7006
|
+
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
6992
7007
|
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
6993
7008
|
self.X = self._X(self, "X", service, rules, path)
|
|
6994
7009
|
self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
|
|
@@ -7022,24 +7037,24 @@ class Root(PyMenu):
|
|
|
7022
7037
|
Specify a value that is used to obtain a rough shape of the selected object(s). The larger the value, the more approximate the shape.
|
|
7023
7038
|
"""
|
|
7024
7039
|
|
|
7025
|
-
class
|
|
7040
|
+
class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
|
|
7026
7041
|
"""
|
|
7027
|
-
|
|
7042
|
+
Specify the number of boundary layers that are to be captured in the refinement region.
|
|
7028
7043
|
"""
|
|
7029
7044
|
|
|
7030
|
-
class
|
|
7045
|
+
class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
|
|
7031
7046
|
"""
|
|
7032
|
-
|
|
7047
|
+
Specify the factor by which the refinement region expands in the wake of the flow direction.
|
|
7033
7048
|
"""
|
|
7034
7049
|
|
|
7035
|
-
class
|
|
7050
|
+
class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
|
|
7036
7051
|
"""
|
|
7037
|
-
Argument
|
|
7052
|
+
Argument NumberOfLayers.
|
|
7038
7053
|
"""
|
|
7039
7054
|
|
|
7040
|
-
class
|
|
7055
|
+
class _AspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
7041
7056
|
"""
|
|
7042
|
-
|
|
7057
|
+
Argument AspectRatio.
|
|
7043
7058
|
"""
|
|
7044
7059
|
|
|
7045
7060
|
class _FlowDirection(PyTextualCommandArgumentsSubItem):
|
|
@@ -7057,9 +7072,9 @@ class Root(PyMenu):
|
|
|
7057
7072
|
Argument EdgeSelectionList.
|
|
7058
7073
|
"""
|
|
7059
7074
|
|
|
7060
|
-
class
|
|
7075
|
+
class _Rate(PyNumericalCommandArgumentsSubItem):
|
|
7061
7076
|
"""
|
|
7062
|
-
|
|
7077
|
+
Argument Rate.
|
|
7063
7078
|
"""
|
|
7064
7079
|
|
|
7065
7080
|
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
@@ -7115,15 +7130,15 @@ class Root(PyMenu):
|
|
|
7115
7130
|
self.X1 = self._X1(self, "X1", service, rules, path)
|
|
7116
7131
|
self.Y1 = self._Y1(self, "Y1", service, rules, path)
|
|
7117
7132
|
self.Z_Offset = self._Z_Offset(self, "Z-Offset", service, rules, path)
|
|
7118
|
-
self.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
|
-
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
7126
7139
|
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
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
|
|
|
@@ -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,9 +7202,9 @@ class Root(PyMenu):
|
|
|
7187
7202
|
Argument Node3.
|
|
7188
7203
|
"""
|
|
7189
7204
|
|
|
7190
|
-
class
|
|
7205
|
+
class _Node2(PyTextualCommandArgumentsSubItem):
|
|
7191
7206
|
"""
|
|
7192
|
-
|
|
7207
|
+
Argument Node2.
|
|
7193
7208
|
"""
|
|
7194
7209
|
|
|
7195
7210
|
class _X2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -7197,9 +7212,9 @@ class Root(PyMenu):
|
|
|
7197
7212
|
Specify the X-coordinate of the second position of the cylinder.
|
|
7198
7213
|
"""
|
|
7199
7214
|
|
|
7200
|
-
class
|
|
7215
|
+
class _Y_Offset(PyNumericalCommandArgumentsSubItem):
|
|
7201
7216
|
"""
|
|
7202
|
-
|
|
7217
|
+
Specify the Y-coordinate for the offset of the initial position of the cylinder.
|
|
7203
7218
|
"""
|
|
7204
7219
|
|
|
7205
7220
|
class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
|
|
@@ -7539,10 +7554,10 @@ class Root(PyMenu):
|
|
|
7539
7554
|
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
7540
7555
|
self.LabelSelectionList = self._LabelSelectionList(self, "LabelSelectionList", service, rules, path)
|
|
7541
7556
|
self.ZoneSelectionList = self._ZoneSelectionList(self, "ZoneSelectionList", service, rules, path)
|
|
7542
|
-
self.Thickness = self._Thickness(self, "Thickness", service, rules, path)
|
|
7543
7557
|
self.SelectionType = self._SelectionType(self, "SelectionType", service, rules, path)
|
|
7544
|
-
self.
|
|
7558
|
+
self.Thickness = self._Thickness(self, "Thickness", 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)
|
|
@@ -7563,19 +7578,14 @@ class Root(PyMenu):
|
|
|
7563
7578
|
Choose a single face zone from the list below. Use the Filter Text field to provide text and/or regular expressions in filtering the list. The matching list item(s) are automatically displayed in the list. Use ^, |, and & in your expression to indicate boolean operations for NOT, OR, and AND, respectively. More...
|
|
7564
7579
|
"""
|
|
7565
7580
|
|
|
7566
|
-
class _Thickness(PyNumericalCommandArgumentsSubItem):
|
|
7567
|
-
"""
|
|
7568
|
-
Specify the thickness (or the total height) of the porous region.
|
|
7569
|
-
"""
|
|
7570
|
-
|
|
7571
7581
|
class _SelectionType(PyTextualCommandArgumentsSubItem):
|
|
7572
7582
|
"""
|
|
7573
7583
|
Choose how you want to make your selection (by object, zone, or label).
|
|
7574
7584
|
"""
|
|
7575
7585
|
|
|
7576
|
-
class
|
|
7586
|
+
class _Thickness(PyNumericalCommandArgumentsSubItem):
|
|
7577
7587
|
"""
|
|
7578
|
-
Specify the
|
|
7588
|
+
Specify the thickness (or the total height) of the porous region.
|
|
7579
7589
|
"""
|
|
7580
7590
|
|
|
7581
7591
|
class _MeshSize(PyNumericalCommandArgumentsSubItem):
|
|
@@ -7583,6 +7593,11 @@ class Root(PyMenu):
|
|
|
7583
7593
|
Specify the cell size for the porous region mesh.
|
|
7584
7594
|
"""
|
|
7585
7595
|
|
|
7596
|
+
class _FeatureAngle(PyNumericalCommandArgumentsSubItem):
|
|
7597
|
+
"""
|
|
7598
|
+
Specify the angle at which features will be extracted for the porous region.
|
|
7599
|
+
"""
|
|
7600
|
+
|
|
7586
7601
|
class _BufferSize(PyNumericalCommandArgumentsSubItem):
|
|
7587
7602
|
"""
|
|
7588
7603
|
Specify a value for the buffer size. The buffer is created as an extra layer. The thickness is equivalent to the product of the buffer size ratio and the core thickness. The core thickness is the distance between P1 and P4.
|
|
@@ -7913,8 +7928,8 @@ class Root(PyMenu):
|
|
|
7913
7928
|
self.PorousRegions = self._PorousRegions(self, "PorousRegions", service, rules, path)
|
|
7914
7929
|
self.CloseLeakages = self._CloseLeakages(self, "CloseLeakages", service, rules, path)
|
|
7915
7930
|
self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
|
|
7916
|
-
self.CloseLeakges = self._CloseLeakges(self, "CloseLeakges", 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)
|
|
@@ -7936,14 +7951,14 @@ class Root(PyMenu):
|
|
|
7936
7951
|
Display advanced options that you may want to apply to the workflow.
|
|
7937
7952
|
"""
|
|
7938
7953
|
|
|
7939
|
-
class
|
|
7954
|
+
class _ZeroThickness(PyTextualCommandArgumentsSubItem):
|
|
7940
7955
|
"""
|
|
7941
|
-
Specify whether or not
|
|
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.
|
|
7942
7957
|
"""
|
|
7943
7958
|
|
|
7944
|
-
class
|
|
7959
|
+
class _CloseLeakges(PyTextualCommandArgumentsSubItem):
|
|
7945
7960
|
"""
|
|
7946
|
-
Specify whether or not
|
|
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.
|
|
7947
7962
|
"""
|
|
7948
7963
|
|
|
7949
7964
|
class _ExtractEdgeFeatures(PyTextualCommandArgumentsSubItem):
|
|
@@ -8179,6 +8194,7 @@ class Root(PyMenu):
|
|
|
8179
8194
|
Choose whether you want the extrusion to be based on a specified Total Height value, or one based on a specified First Height value. The relationship between the two is illustrated by:
|
|
8180
8195
|
SelectionType : str
|
|
8181
8196
|
ExtendToPeriodicPair : bool
|
|
8197
|
+
PreservePeriodicInfo : bool
|
|
8182
8198
|
ExtrudeNormalBased : bool
|
|
8183
8199
|
Specify whether the volume extrusion is derived from normal-based faceting or direction-based faceting. When enabled (the default), the volume extrusion is derived on normal-based faceting, such that for each layer, the normal is calculated and smoothing occurs, and is suitable for non-planar surfaces. For planar surfaces, disable this option to use a direction-based approach where the direction is chosen based on the average normal of the entire surface, and is used to extrude all layers.
|
|
8184
8200
|
ExternalBoundaryZoneList : list[str]
|
|
@@ -8208,6 +8224,7 @@ class Root(PyMenu):
|
|
|
8208
8224
|
self.Method = self._Method(self, "Method", service, rules, path)
|
|
8209
8225
|
self.SelectionType = self._SelectionType(self, "SelectionType", service, rules, path)
|
|
8210
8226
|
self.ExtendToPeriodicPair = self._ExtendToPeriodicPair(self, "ExtendToPeriodicPair", service, rules, path)
|
|
8227
|
+
self.PreservePeriodicInfo = self._PreservePeriodicInfo(self, "PreservePeriodicInfo", service, rules, path)
|
|
8211
8228
|
self.ExtrudeNormalBased = self._ExtrudeNormalBased(self, "ExtrudeNormalBased", service, rules, path)
|
|
8212
8229
|
self.ExternalBoundaryZoneList = self._ExternalBoundaryZoneList(self, "ExternalBoundaryZoneList", service, rules, path)
|
|
8213
8230
|
self.TopologyList = self._TopologyList(self, "TopologyList", service, rules, path)
|
|
@@ -8239,6 +8256,11 @@ class Root(PyMenu):
|
|
|
8239
8256
|
Argument ExtendToPeriodicPair.
|
|
8240
8257
|
"""
|
|
8241
8258
|
|
|
8259
|
+
class _PreservePeriodicInfo(PyParameterCommandArgumentsSubItem):
|
|
8260
|
+
"""
|
|
8261
|
+
Argument PreservePeriodicInfo.
|
|
8262
|
+
"""
|
|
8263
|
+
|
|
8242
8264
|
class _ExtrudeNormalBased(PyParameterCommandArgumentsSubItem):
|
|
8243
8265
|
"""
|
|
8244
8266
|
Specify whether the volume extrusion is derived from normal-based faceting or direction-based faceting. When enabled (the default), the volume extrusion is derived on normal-based faceting, such that for each layer, the normal is calculated and smoothing occurs, and is suitable for non-planar surfaces. For planar surfaces, disable this option to use a direction-based approach where the direction is chosen based on the average normal of the entire surface, and is used to extrude all layers.
|
|
@@ -8287,36 +8309,24 @@ class Root(PyMenu):
|
|
|
8287
8309
|
|
|
8288
8310
|
def __init__(self, parent, attr, service, rules, path):
|
|
8289
8311
|
super().__init__(parent, attr, service, rules, path)
|
|
8290
|
-
self.MaxLayerHeight = self._MaxLayerHeight(self, "MaxLayerHeight", service, rules, path)
|
|
8291
|
-
self.MidSpanLength = self._MidSpanLength(self, "MidSpanLength", service, rules, path)
|
|
8292
8312
|
self.BiasMethod = self._BiasMethod(self, "BiasMethod", service, rules, path)
|
|
8313
|
+
self.MaxLayerHeight = self._MaxLayerHeight(self, "MaxLayerHeight", service, rules, path)
|
|
8293
8314
|
self.MergeCellZones = self._MergeCellZones(self, "MergeCellZones", service, rules, path)
|
|
8294
|
-
self.BiasMethodControl = self._BiasMethodControl(self, "BiasMethodControl", service, rules, path)
|
|
8295
8315
|
self.ShowVMExtrudePreferences = self._ShowVMExtrudePreferences(self, "ShowVMExtrudePreferences", service, rules, path)
|
|
8296
8316
|
|
|
8297
|
-
class _MaxLayerHeight(PyNumericalCommandArgumentsSubItem):
|
|
8298
|
-
"""
|
|
8299
|
-
Argument MaxLayerHeight.
|
|
8300
|
-
"""
|
|
8301
|
-
|
|
8302
|
-
class _MidSpanLength(PyNumericalCommandArgumentsSubItem):
|
|
8303
|
-
"""
|
|
8304
|
-
Argument MidSpanLength.
|
|
8305
|
-
"""
|
|
8306
|
-
|
|
8307
8317
|
class _BiasMethod(PyTextualCommandArgumentsSubItem):
|
|
8308
8318
|
"""
|
|
8309
8319
|
Select from a choice of patterns that you want to apply to your volume mesh extrusion.
|
|
8310
8320
|
"""
|
|
8311
8321
|
|
|
8312
|
-
class
|
|
8322
|
+
class _MaxLayerHeight(PyNumericalCommandArgumentsSubItem):
|
|
8313
8323
|
"""
|
|
8314
|
-
|
|
8324
|
+
Argument MaxLayerHeight.
|
|
8315
8325
|
"""
|
|
8316
8326
|
|
|
8317
|
-
class
|
|
8327
|
+
class _MergeCellZones(PyParameterCommandArgumentsSubItem):
|
|
8318
8328
|
"""
|
|
8319
|
-
|
|
8329
|
+
Indicate whether or not you want to merge the extruded layers with any adjacent regions.
|
|
8320
8330
|
"""
|
|
8321
8331
|
|
|
8322
8332
|
class _ShowVMExtrudePreferences(PyParameterCommandArgumentsSubItem):
|
|
@@ -9310,16 +9320,16 @@ class Root(PyMenu):
|
|
|
9310
9320
|
self.FoldFaceLimit = self._FoldFaceLimit(self, "FoldFaceLimit", service, rules, path)
|
|
9311
9321
|
self.SMSeparation = self._SMSeparation(self, "SMSeparation", service, rules, path)
|
|
9312
9322
|
self.SMSeparationAngle = self._SMSeparationAngle(self, "SMSeparationAngle", service, rules, path)
|
|
9313
|
-
self.SMQualityImprove = self._SMQualityImprove(self, "SMQualityImprove", service, rules, path)
|
|
9314
9323
|
self.ShowSurfaceMeshPreferences = self._ShowSurfaceMeshPreferences(self, "ShowSurfaceMeshPreferences", service, rules, path)
|
|
9324
|
+
self.SMQualityImprove = self._SMQualityImprove(self, "SMQualityImprove", service, rules, path)
|
|
9315
9325
|
self.TVMAutoControlCreation = self._TVMAutoControlCreation(self, "TVMAutoControlCreation", service, rules, path)
|
|
9316
9326
|
self.AutoMerge = self._AutoMerge(self, "AutoMerge", service, rules, path)
|
|
9317
9327
|
self.SMRemoveStep = self._SMRemoveStep(self, "SMRemoveStep", service, rules, path)
|
|
9318
|
-
self.SMStepWidth = self._SMStepWidth(self, "SMStepWidth", service, rules, path)
|
|
9319
9328
|
self.ParallelRegionCompute = self._ParallelRegionCompute(self, "ParallelRegionCompute", service, rules, path)
|
|
9320
|
-
self.
|
|
9321
|
-
self.AutoAssignZoneTypes = self._AutoAssignZoneTypes(self, "AutoAssignZoneTypes", service, rules, path)
|
|
9329
|
+
self.SMStepWidth = self._SMStepWidth(self, "SMStepWidth", service, rules, path)
|
|
9322
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)
|
|
9323
9333
|
self.SelfIntersectCheck = self._SelfIntersectCheck(self, "SelfIntersectCheck", service, rules, path)
|
|
9324
9334
|
self.AutoSurfaceRemesh = self._AutoSurfaceRemesh(self, "AutoSurfaceRemesh", service, rules, path)
|
|
9325
9335
|
self.SMQualityImproveLimit = self._SMQualityImproveLimit(self, "SMQualityImproveLimit", service, rules, path)
|
|
@@ -9345,14 +9355,14 @@ class Root(PyMenu):
|
|
|
9345
9355
|
Specify a desired angle for determining separation. Assigning a smaller separation angle will produce more zones.
|
|
9346
9356
|
"""
|
|
9347
9357
|
|
|
9348
|
-
class
|
|
9358
|
+
class _ShowSurfaceMeshPreferences(PyParameterCommandArgumentsSubItem):
|
|
9349
9359
|
"""
|
|
9350
|
-
|
|
9360
|
+
Display advanced options that you may want to apply to the task.
|
|
9351
9361
|
"""
|
|
9352
9362
|
|
|
9353
|
-
class
|
|
9363
|
+
class _SMQualityImprove(PyTextualCommandArgumentsSubItem):
|
|
9354
9364
|
"""
|
|
9355
|
-
|
|
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.
|
|
9356
9366
|
"""
|
|
9357
9367
|
|
|
9358
9368
|
class _TVMAutoControlCreation(PyTextualCommandArgumentsSubItem):
|
|
@@ -9370,19 +9380,19 @@ class Root(PyMenu):
|
|
|
9370
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.
|
|
9371
9381
|
"""
|
|
9372
9382
|
|
|
9373
|
-
class
|
|
9383
|
+
class _ParallelRegionCompute(PyTextualCommandArgumentsSubItem):
|
|
9374
9384
|
"""
|
|
9375
|
-
|
|
9385
|
+
Argument ParallelRegionCompute.
|
|
9376
9386
|
"""
|
|
9377
9387
|
|
|
9378
|
-
class
|
|
9388
|
+
class _SMStepWidth(PyNumericalCommandArgumentsSubItem):
|
|
9379
9389
|
"""
|
|
9380
|
-
|
|
9390
|
+
Specify the width of the step that you wish to remove.
|
|
9381
9391
|
"""
|
|
9382
9392
|
|
|
9383
|
-
class
|
|
9393
|
+
class _SMQualityMaxAngle(PyNumericalCommandArgumentsSubItem):
|
|
9384
9394
|
"""
|
|
9385
|
-
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.
|
|
9386
9396
|
"""
|
|
9387
9397
|
|
|
9388
9398
|
class _AutoAssignZoneTypes(PyTextualCommandArgumentsSubItem):
|
|
@@ -9390,9 +9400,9 @@ class Root(PyMenu):
|
|
|
9390
9400
|
Choose whether or not to automatically assign boundary types to zones.
|
|
9391
9401
|
"""
|
|
9392
9402
|
|
|
9393
|
-
class
|
|
9403
|
+
class _VolumeMeshMaxSize(PyNumericalCommandArgumentsSubItem):
|
|
9394
9404
|
"""
|
|
9395
|
-
Specify the maximum
|
|
9405
|
+
Specify the maximum size of the elements for the surface mesh.
|
|
9396
9406
|
"""
|
|
9397
9407
|
|
|
9398
9408
|
class _SelfIntersectCheck(PyTextualCommandArgumentsSubItem):
|
|
@@ -9501,9 +9511,9 @@ class Root(PyMenu):
|
|
|
9501
9511
|
self.OneZonePer = self._OneZonePer(self, "OneZonePer", service, rules, path)
|
|
9502
9512
|
self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
|
|
9503
9513
|
self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
|
|
9504
|
-
self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
|
|
9505
|
-
self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
|
|
9506
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)
|
|
9507
9517
|
|
|
9508
9518
|
class _SavePMDBIntermediateFile(PyParameterCommandArgumentsSubItem):
|
|
9509
9519
|
"""
|
|
@@ -9545,9 +9555,9 @@ class Root(PyMenu):
|
|
|
9545
9555
|
Argument ImportNamedSelections.
|
|
9546
9556
|
"""
|
|
9547
9557
|
|
|
9548
|
-
class
|
|
9558
|
+
class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
|
|
9549
9559
|
"""
|
|
9550
|
-
Argument
|
|
9560
|
+
Argument ExtractFeatures.
|
|
9551
9561
|
"""
|
|
9552
9562
|
|
|
9553
9563
|
class _ImportPartNames(PyParameterCommandArgumentsSubItem):
|
|
@@ -9555,9 +9565,9 @@ class Root(PyMenu):
|
|
|
9555
9565
|
Argument ImportPartNames.
|
|
9556
9566
|
"""
|
|
9557
9567
|
|
|
9558
|
-
class
|
|
9568
|
+
class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
|
|
9559
9569
|
"""
|
|
9560
|
-
Argument
|
|
9570
|
+
Argument ImportCurvatureDataFromCAD.
|
|
9561
9571
|
"""
|
|
9562
9572
|
|
|
9563
9573
|
class _ShareTopologyPreferences(PySingletonCommandArgumentsSubItem):
|
|
@@ -9572,10 +9582,10 @@ class Root(PyMenu):
|
|
|
9572
9582
|
self.ConnectLabelWildcard = self._ConnectLabelWildcard(self, "ConnectLabelWildcard", service, rules, path)
|
|
9573
9583
|
self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
|
|
9574
9584
|
self.RelativeShareTopologyTolerance = self._RelativeShareTopologyTolerance(self, "RelativeShareTopologyTolerance", service, rules, path)
|
|
9575
|
-
self.
|
|
9585
|
+
self.ShareTopologyAngle = self._ShareTopologyAngle(self, "ShareTopologyAngle", service, rules, path)
|
|
9576
9586
|
self.ExecuteJoinIntersect = self._ExecuteJoinIntersect(self, "ExecuteJoinIntersect", service, rules, path)
|
|
9577
9587
|
self.Operation = self._Operation(self, "Operation", service, rules, path)
|
|
9578
|
-
self.
|
|
9588
|
+
self.FluidLabelWildcard = self._FluidLabelWildcard(self, "FluidLabelWildcard", service, rules, path)
|
|
9579
9589
|
self.STToleranceIncrement = self._STToleranceIncrement(self, "STToleranceIncrement", service, rules, path)
|
|
9580
9590
|
self.IntfLabelList = self._IntfLabelList(self, "IntfLabelList", service, rules, path)
|
|
9581
9591
|
self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
|
|
@@ -9608,9 +9618,9 @@ class Root(PyMenu):
|
|
|
9608
9618
|
Specify the relative tolerance for joining or intersecting face pairs, or the relative tolerance for connecting edge and face pairs.
|
|
9609
9619
|
"""
|
|
9610
9620
|
|
|
9611
|
-
class
|
|
9621
|
+
class _ShareTopologyAngle(PyNumericalCommandArgumentsSubItem):
|
|
9612
9622
|
"""
|
|
9613
|
-
|
|
9623
|
+
Specify the threshold angle for joining face pairs.
|
|
9614
9624
|
"""
|
|
9615
9625
|
|
|
9616
9626
|
class _ExecuteJoinIntersect(PyTextualCommandArgumentsSubItem):
|
|
@@ -9623,9 +9633,9 @@ class Root(PyMenu):
|
|
|
9623
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.
|
|
9624
9634
|
"""
|
|
9625
9635
|
|
|
9626
|
-
class
|
|
9636
|
+
class _FluidLabelWildcard(PyTextualCommandArgumentsSubItem):
|
|
9627
9637
|
"""
|
|
9628
|
-
|
|
9638
|
+
Argument FluidLabelWildcard.
|
|
9629
9639
|
"""
|
|
9630
9640
|
|
|
9631
9641
|
class _STToleranceIncrement(PyNumericalCommandArgumentsSubItem):
|
|
@@ -10038,9 +10048,9 @@ class Root(PyMenu):
|
|
|
10038
10048
|
def __init__(self, parent, attr, service, rules, path):
|
|
10039
10049
|
super().__init__(parent, attr, service, rules, path)
|
|
10040
10050
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
10041
|
-
self.HexMinCellLength = self._HexMinCellLength(self, "HexMinCellLength", service, rules, path)
|
|
10042
|
-
self.TetPolyMaxCellLength = self._TetPolyMaxCellLength(self, "TetPolyMaxCellLength", service, rules, path)
|
|
10043
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)
|
|
10044
10054
|
self.Type = self._Type(self, "Type", service, rules, path)
|
|
10045
10055
|
self.CellSizing = self._CellSizing(self, "CellSizing", service, rules, path)
|
|
10046
10056
|
self.HexMaxSize = self._HexMaxSize(self, "HexMaxSize", service, rules, path)
|
|
@@ -10053,9 +10063,9 @@ class Root(PyMenu):
|
|
|
10053
10063
|
Argument MaxSize.
|
|
10054
10064
|
"""
|
|
10055
10065
|
|
|
10056
|
-
class
|
|
10066
|
+
class _PeelLayers(PyNumericalCommandArgumentsSubItem):
|
|
10057
10067
|
"""
|
|
10058
|
-
|
|
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.
|
|
10059
10069
|
"""
|
|
10060
10070
|
|
|
10061
10071
|
class _TetPolyMaxCellLength(PyNumericalCommandArgumentsSubItem):
|
|
@@ -10063,9 +10073,9 @@ class Root(PyMenu):
|
|
|
10063
10073
|
The maximum cell length for either the tetrahedron, polyhedron, or poly-hexcore volume fill types.
|
|
10064
10074
|
"""
|
|
10065
10075
|
|
|
10066
|
-
class
|
|
10076
|
+
class _HexMinCellLength(PyNumericalCommandArgumentsSubItem):
|
|
10067
10077
|
"""
|
|
10068
|
-
|
|
10078
|
+
The minimum cell length for the hexcore or poly-hexcore volume fill types.
|
|
10069
10079
|
"""
|
|
10070
10080
|
|
|
10071
10081
|
class _Type(PyTextualCommandArgumentsSubItem):
|
|
@@ -10121,12 +10131,12 @@ class Root(PyMenu):
|
|
|
10121
10131
|
def __init__(self, parent, attr, service, rules, path):
|
|
10122
10132
|
super().__init__(parent, attr, service, rules, path)
|
|
10123
10133
|
self.MergeBodyLabels = self._MergeBodyLabels(self, "MergeBodyLabels", service, rules, path)
|
|
10124
|
-
self.
|
|
10134
|
+
self.QualityMethod = self._QualityMethod(self, "QualityMethod", service, rules, path)
|
|
10125
10135
|
self.MinPolySize = self._MinPolySize(self, "MinPolySize", service, rules, path)
|
|
10126
|
-
self.UseSizeFieldInSolids = self._UseSizeFieldInSolids(self, "UseSizeFieldInSolids", service, rules, path)
|
|
10127
|
-
self.SizeFieldPeriodicity = self._SizeFieldPeriodicity(self, "SizeFieldPeriodicity", service, rules, path)
|
|
10128
10136
|
self.UseSizeField = self._UseSizeField(self, "UseSizeField", service, rules, path)
|
|
10129
|
-
self.
|
|
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)
|
|
10130
10140
|
self.PolyInSolids = self._PolyInSolids(self, "PolyInSolids", service, rules, path)
|
|
10131
10141
|
self.TetInSolids = self._TetInSolids(self, "TetInSolids", service, rules, path)
|
|
10132
10142
|
self.AddMultipleQualityMethods = self._AddMultipleQualityMethods(self, "AddMultipleQualityMethods", service, rules, path)
|
|
@@ -10135,10 +10145,10 @@ class Root(PyMenu):
|
|
|
10135
10145
|
self.PrepareZoneNames = self._PrepareZoneNames(self, "PrepareZoneNames", service, rules, path)
|
|
10136
10146
|
self.CheckSelfProximity = self._CheckSelfProximity(self, "CheckSelfProximity", service, rules, path)
|
|
10137
10147
|
self.Avoid1_8Transition = self._Avoid1_8Transition(self, "Avoid1_8Transition", service, rules, path)
|
|
10138
|
-
self.MinFaceArea = self._MinFaceArea(self, "MinFaceArea", service, rules, path)
|
|
10139
10148
|
self.MinEdgeLength = self._MinEdgeLength(self, "MinEdgeLength", service, rules, path)
|
|
10140
|
-
self.SolidGrowthRate = self._SolidGrowthRate(self, "SolidGrowthRate", service, rules, path)
|
|
10141
10149
|
self.ShowVolumeMeshPreferences = self._ShowVolumeMeshPreferences(self, "ShowVolumeMeshPreferences", service, rules, path)
|
|
10150
|
+
self.SolidGrowthRate = self._SolidGrowthRate(self, "SolidGrowthRate", service, rules, path)
|
|
10151
|
+
self.MinFaceArea = self._MinFaceArea(self, "MinFaceArea", service, rules, path)
|
|
10142
10152
|
self.QualityWarningLimit = self._QualityWarningLimit(self, "QualityWarningLimit", service, rules, path)
|
|
10143
10153
|
|
|
10144
10154
|
class _MergeBodyLabels(PyTextualCommandArgumentsSubItem):
|
|
@@ -10146,9 +10156,9 @@ class Root(PyMenu):
|
|
|
10146
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)
|
|
10147
10157
|
"""
|
|
10148
10158
|
|
|
10149
|
-
class
|
|
10159
|
+
class _QualityMethod(PyTextualCommandArgumentsSubItem):
|
|
10150
10160
|
"""
|
|
10151
|
-
|
|
10161
|
+
Choose from several different types of mesh quality controls (skewness, aspect ratio, change in size, and so on). Choices include Orthogonal (the default for the workflows), Enhanced Orthogonal, and Skewness. For more information, see More... .
|
|
10152
10162
|
"""
|
|
10153
10163
|
|
|
10154
10164
|
class _MinPolySize(PyNumericalCommandArgumentsSubItem):
|
|
@@ -10156,9 +10166,9 @@ class Root(PyMenu):
|
|
|
10156
10166
|
Argument MinPolySize.
|
|
10157
10167
|
"""
|
|
10158
10168
|
|
|
10159
|
-
class
|
|
10169
|
+
class _UseSizeField(PyTextualCommandArgumentsSubItem):
|
|
10160
10170
|
"""
|
|
10161
|
-
|
|
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.
|
|
10162
10172
|
"""
|
|
10163
10173
|
|
|
10164
10174
|
class _SizeFieldPeriodicity(PyTextualCommandArgumentsSubItem):
|
|
@@ -10166,14 +10176,14 @@ class Root(PyMenu):
|
|
|
10166
10176
|
Argument SizeFieldPeriodicity.
|
|
10167
10177
|
"""
|
|
10168
10178
|
|
|
10169
|
-
class
|
|
10179
|
+
class _PolyFeatureAngle(PyNumericalCommandArgumentsSubItem):
|
|
10170
10180
|
"""
|
|
10171
|
-
Specify
|
|
10181
|
+
Specify the angle to preserve features when using a polyhedral-based mesh.
|
|
10172
10182
|
"""
|
|
10173
10183
|
|
|
10174
|
-
class
|
|
10184
|
+
class _UseSizeFieldInSolids(PyTextualCommandArgumentsSubItem):
|
|
10175
10185
|
"""
|
|
10176
|
-
|
|
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.
|
|
10177
10187
|
"""
|
|
10178
10188
|
|
|
10179
10189
|
class _PolyInSolids(PyTextualCommandArgumentsSubItem):
|
|
@@ -10216,14 +10226,14 @@ class Root(PyMenu):
|
|
|
10216
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.
|
|
10217
10227
|
"""
|
|
10218
10228
|
|
|
10219
|
-
class
|
|
10229
|
+
class _MinEdgeLength(PyNumericalCommandArgumentsSubItem):
|
|
10220
10230
|
"""
|
|
10221
|
-
Argument
|
|
10231
|
+
Argument MinEdgeLength.
|
|
10222
10232
|
"""
|
|
10223
10233
|
|
|
10224
|
-
class
|
|
10234
|
+
class _ShowVolumeMeshPreferences(PyParameterCommandArgumentsSubItem):
|
|
10225
10235
|
"""
|
|
10226
|
-
|
|
10236
|
+
Display advanced options that you may want to apply to the task.
|
|
10227
10237
|
"""
|
|
10228
10238
|
|
|
10229
10239
|
class _SolidGrowthRate(PyNumericalCommandArgumentsSubItem):
|
|
@@ -10231,9 +10241,9 @@ class Root(PyMenu):
|
|
|
10231
10241
|
Specify the rate of growth for a tetrahedron or polyhedron mesh.
|
|
10232
10242
|
"""
|
|
10233
10243
|
|
|
10234
|
-
class
|
|
10244
|
+
class _MinFaceArea(PyNumericalCommandArgumentsSubItem):
|
|
10235
10245
|
"""
|
|
10236
|
-
|
|
10246
|
+
Argument MinFaceArea.
|
|
10237
10247
|
"""
|
|
10238
10248
|
|
|
10239
10249
|
class _QualityWarningLimit(PyNumericalCommandArgumentsSubItem):
|
|
@@ -10257,8 +10267,8 @@ class Root(PyMenu):
|
|
|
10257
10267
|
self.MergeBoundaryLayers = self._MergeBoundaryLayers(self, "MergeBoundaryLayers", service, rules, path)
|
|
10258
10268
|
self.NormalSmoothRelaxationFactor = self._NormalSmoothRelaxationFactor(self, "NormalSmoothRelaxationFactor", service, rules, path)
|
|
10259
10269
|
self.ShowPrismPreferences = self._ShowPrismPreferences(self, "ShowPrismPreferences", service, rules, path)
|
|
10260
|
-
self.PrismMinAspectRatio = self._PrismMinAspectRatio(self, "PrismMinAspectRatio", service, rules, path)
|
|
10261
10270
|
self.StairstepExposedQuads = self._StairstepExposedQuads(self, "StairstepExposedQuads", service, rules, path)
|
|
10271
|
+
self.PrismMinAspectRatio = self._PrismMinAspectRatio(self, "PrismMinAspectRatio", service, rules, path)
|
|
10262
10272
|
self.PrismAdjacentAngle = self._PrismAdjacentAngle(self, "PrismAdjacentAngle", service, rules, path)
|
|
10263
10273
|
|
|
10264
10274
|
class _PrismKeepFirstLayer(PyTextualCommandArgumentsSubItem):
|
|
@@ -10306,14 +10316,14 @@ class Root(PyMenu):
|
|
|
10306
10316
|
Display global settings for your boundary layers. Note that these settings are not applied for Multizone boundary layers
|
|
10307
10317
|
"""
|
|
10308
10318
|
|
|
10309
|
-
class
|
|
10319
|
+
class _StairstepExposedQuads(PyTextualCommandArgumentsSubItem):
|
|
10310
10320
|
"""
|
|
10311
|
-
|
|
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.
|
|
10312
10322
|
"""
|
|
10313
10323
|
|
|
10314
|
-
class
|
|
10324
|
+
class _PrismMinAspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
10315
10325
|
"""
|
|
10316
|
-
|
|
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.
|
|
10317
10327
|
"""
|
|
10318
10328
|
|
|
10319
10329
|
class _PrismAdjacentAngle(PyNumericalCommandArgumentsSubItem):
|
|
@@ -10328,19 +10338,19 @@ class Root(PyMenu):
|
|
|
10328
10338
|
|
|
10329
10339
|
def __init__(self, parent, attr, service, rules, path):
|
|
10330
10340
|
super().__init__(parent, attr, service, rules, path)
|
|
10341
|
+
self.MinAspectRatio = self._MinAspectRatio(self, "MinAspectRatio", service, rules, path)
|
|
10331
10342
|
self.AutoOrderControls = self._AutoOrderControls(self, "AutoOrderControls", service, rules, path)
|
|
10332
|
-
self.ShowGlobalThinVolumePreferences = self._ShowGlobalThinVolumePreferences(self, "ShowGlobalThinVolumePreferences", service, rules, path)
|
|
10333
10343
|
self.StairStep = self._StairStep(self, "StairStep", service, rules, path)
|
|
10334
|
-
self.
|
|
10344
|
+
self.ShowGlobalThinVolumePreferences = self._ShowGlobalThinVolumePreferences(self, "ShowGlobalThinVolumePreferences", service, rules, path)
|
|
10335
10345
|
|
|
10336
|
-
class
|
|
10346
|
+
class _MinAspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
10337
10347
|
"""
|
|
10338
|
-
|
|
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.
|
|
10339
10349
|
"""
|
|
10340
10350
|
|
|
10341
|
-
class
|
|
10351
|
+
class _AutoOrderControls(PyTextualCommandArgumentsSubItem):
|
|
10342
10352
|
"""
|
|
10343
|
-
|
|
10353
|
+
When set to yes, will automatically swap source and target faces in order to increase the success rate of the thin volume mesh generation. This option is set to yes by default for conventional thin volume meshing and is set to no when Stacked Plates is enabled.
|
|
10344
10354
|
"""
|
|
10345
10355
|
|
|
10346
10356
|
class _StairStep(PyTextualCommandArgumentsSubItem):
|
|
@@ -10348,9 +10358,9 @@ class Root(PyMenu):
|
|
|
10348
10358
|
Use this option to invoke stair-stepping at thin volume mesh regions.
|
|
10349
10359
|
"""
|
|
10350
10360
|
|
|
10351
|
-
class
|
|
10361
|
+
class _ShowGlobalThinVolumePreferences(PyParameterCommandArgumentsSubItem):
|
|
10352
10362
|
"""
|
|
10353
|
-
|
|
10363
|
+
Display global settings for thin volume meshing.
|
|
10354
10364
|
"""
|
|
10355
10365
|
|
|
10356
10366
|
class _InvokePrimsControl(PyTextualCommandArgumentsSubItem):
|
|
@@ -10500,8 +10510,8 @@ class Root(PyMenu):
|
|
|
10500
10510
|
self.SaveSizeFieldFile = self._SaveSizeFieldFile(self, "SaveSizeFieldFile", service, rules, path)
|
|
10501
10511
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
10502
10512
|
self.ScopeProximityTo = self._ScopeProximityTo(self, "ScopeProximityTo", service, rules, path)
|
|
10503
|
-
self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
|
|
10504
10513
|
self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
|
|
10514
|
+
self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
|
|
10505
10515
|
self.SaveSizeField = self._SaveSizeField(self, "SaveSizeField", service, rules, path)
|
|
10506
10516
|
self.UseSizeFiles = self._UseSizeFiles(self, "UseSizeFiles", service, rules, path)
|
|
10507
10517
|
self.AutoCreateScopedSizing = self._AutoCreateScopedSizing(self, "AutoCreateScopedSizing", service, rules, path)
|
|
@@ -10531,14 +10541,14 @@ class Root(PyMenu):
|
|
|
10531
10541
|
Argument ScopeProximityTo.
|
|
10532
10542
|
"""
|
|
10533
10543
|
|
|
10534
|
-
class
|
|
10544
|
+
class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
10535
10545
|
"""
|
|
10536
|
-
Argument
|
|
10546
|
+
Argument CurvatureNormalAngle.
|
|
10537
10547
|
"""
|
|
10538
10548
|
|
|
10539
|
-
class
|
|
10549
|
+
class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
|
|
10540
10550
|
"""
|
|
10541
|
-
Argument
|
|
10551
|
+
Argument PreviewSizefield.
|
|
10542
10552
|
"""
|
|
10543
10553
|
|
|
10544
10554
|
class _SaveSizeField(PyParameterCommandArgumentsSubItem):
|
|
@@ -10755,10 +10765,10 @@ class Root(PyMenu):
|
|
|
10755
10765
|
self.SIQualityIterations = self._SIQualityIterations(self, "SIQualityIterations", service, rules, path)
|
|
10756
10766
|
self.SIQualityMaxAngle = self._SIQualityMaxAngle(self, "SIQualityMaxAngle", service, rules, path)
|
|
10757
10767
|
self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
|
|
10758
|
-
self.
|
|
10768
|
+
self.SIRemoveStep = self._SIRemoveStep(self, "SIRemoveStep", service, rules, path)
|
|
10759
10769
|
self.AdvancedImprove = self._AdvancedImprove(self, "AdvancedImprove", service, rules, path)
|
|
10760
10770
|
self.SIStepWidth = self._SIStepWidth(self, "SIStepWidth", service, rules, path)
|
|
10761
|
-
self.
|
|
10771
|
+
self.ShowSMImprovePreferences = self._ShowSMImprovePreferences(self, "ShowSMImprovePreferences", service, rules, path)
|
|
10762
10772
|
|
|
10763
10773
|
class _SIStepQualityLimit(PyNumericalCommandArgumentsSubItem):
|
|
10764
10774
|
"""
|
|
@@ -10785,9 +10795,9 @@ class Root(PyMenu):
|
|
|
10785
10795
|
Argument AllowDefeaturing.
|
|
10786
10796
|
"""
|
|
10787
10797
|
|
|
10788
|
-
class
|
|
10798
|
+
class _SIRemoveStep(PyTextualCommandArgumentsSubItem):
|
|
10789
10799
|
"""
|
|
10790
|
-
Argument
|
|
10800
|
+
Argument SIRemoveStep.
|
|
10791
10801
|
"""
|
|
10792
10802
|
|
|
10793
10803
|
class _AdvancedImprove(PyTextualCommandArgumentsSubItem):
|
|
@@ -10800,9 +10810,9 @@ class Root(PyMenu):
|
|
|
10800
10810
|
Argument SIStepWidth.
|
|
10801
10811
|
"""
|
|
10802
10812
|
|
|
10803
|
-
class
|
|
10813
|
+
class _ShowSMImprovePreferences(PyParameterCommandArgumentsSubItem):
|
|
10804
10814
|
"""
|
|
10805
|
-
Argument
|
|
10815
|
+
Argument ShowSMImprovePreferences.
|
|
10806
10816
|
"""
|
|
10807
10817
|
|
|
10808
10818
|
def create_instance(self) -> _GeometrySetupCommandArguments:
|
|
@@ -11023,9 +11033,9 @@ class Root(PyMenu):
|
|
|
11023
11033
|
self.Radius2 = self._Radius2(self, "Radius2", service, rules, path)
|
|
11024
11034
|
self.Y2 = self._Y2(self, "Y2", service, rules, path)
|
|
11025
11035
|
self.Node3 = self._Node3(self, "Node3", service, rules, path)
|
|
11026
|
-
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
11027
11036
|
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
11028
11037
|
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
11038
|
+
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
11029
11039
|
self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
|
|
11030
11040
|
self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
|
|
11031
11041
|
|
|
@@ -11089,11 +11099,6 @@ class Root(PyMenu):
|
|
|
11089
11099
|
Argument Node3.
|
|
11090
11100
|
"""
|
|
11091
11101
|
|
|
11092
|
-
class _Node2(PyTextualCommandArgumentsSubItem):
|
|
11093
|
-
"""
|
|
11094
|
-
Argument Node2.
|
|
11095
|
-
"""
|
|
11096
|
-
|
|
11097
11102
|
class _Y_Offset(PyNumericalCommandArgumentsSubItem):
|
|
11098
11103
|
"""
|
|
11099
11104
|
Argument Y-Offset.
|
|
@@ -11104,6 +11109,11 @@ class Root(PyMenu):
|
|
|
11104
11109
|
Argument X2.
|
|
11105
11110
|
"""
|
|
11106
11111
|
|
|
11112
|
+
class _Node2(PyTextualCommandArgumentsSubItem):
|
|
11113
|
+
"""
|
|
11114
|
+
Argument Node2.
|
|
11115
|
+
"""
|
|
11116
|
+
|
|
11107
11117
|
class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
|
|
11108
11118
|
"""
|
|
11109
11119
|
Argument HeightFrontInc.
|
|
@@ -11127,7 +11137,7 @@ class Root(PyMenu):
|
|
|
11127
11137
|
def __init__(self, parent, attr, service, rules, path):
|
|
11128
11138
|
super().__init__(parent, attr, service, rules, path)
|
|
11129
11139
|
self.SizeRelativeLength = self._SizeRelativeLength(self, "SizeRelativeLength", service, rules, path)
|
|
11130
|
-
self.
|
|
11140
|
+
self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
|
|
11131
11141
|
self.XminRatio = self._XminRatio(self, "XminRatio", service, rules, path)
|
|
11132
11142
|
self.YminRatio = self._YminRatio(self, "YminRatio", service, rules, path)
|
|
11133
11143
|
self.Zmin = self._Zmin(self, "Zmin", service, rules, path)
|
|
@@ -11138,16 +11148,16 @@ class Root(PyMenu):
|
|
|
11138
11148
|
self.Xmin = self._Xmin(self, "Xmin", service, rules, path)
|
|
11139
11149
|
self.YmaxRatio = self._YmaxRatio(self, "YmaxRatio", service, rules, path)
|
|
11140
11150
|
self.ZmaxRatio = self._ZmaxRatio(self, "ZmaxRatio", service, rules, path)
|
|
11141
|
-
self.
|
|
11151
|
+
self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
|
|
11142
11152
|
|
|
11143
11153
|
class _SizeRelativeLength(PyTextualCommandArgumentsSubItem):
|
|
11144
11154
|
"""
|
|
11145
11155
|
Determine if you would like to specify the bounding box for the construction surface as a ratio of the geometry length, or by specifying a specific location for the minimum and maximum coordinates.
|
|
11146
11156
|
"""
|
|
11147
11157
|
|
|
11148
|
-
class
|
|
11158
|
+
class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
|
|
11149
11159
|
"""
|
|
11150
|
-
Extends the maximum size of the bounding box in the X direction by the specified value.
|
|
11160
|
+
Extends the maximum size of the bounding box in the X direction by the specified value. The value is the ratio relative to the geometry size in the X direction.
|
|
11151
11161
|
"""
|
|
11152
11162
|
|
|
11153
11163
|
class _XminRatio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -11200,9 +11210,9 @@ class Root(PyMenu):
|
|
|
11200
11210
|
Extends the maximum size of the bounding box in the Z direction by the specified value. The value is the ratio relative to the geometry size in the Z direction.
|
|
11201
11211
|
"""
|
|
11202
11212
|
|
|
11203
|
-
class
|
|
11213
|
+
class _Xmax(PyNumericalCommandArgumentsSubItem):
|
|
11204
11214
|
"""
|
|
11205
|
-
Extends the maximum size of the bounding box in the X direction by the specified value.
|
|
11215
|
+
Extends the maximum size of the bounding box in the X direction by the specified value.
|
|
11206
11216
|
"""
|
|
11207
11217
|
|
|
11208
11218
|
def create_instance(self) -> _IdentifyConstructionSurfacesCommandArguments:
|
|
@@ -11781,26 +11791,28 @@ class Root(PyMenu):
|
|
|
11781
11791
|
|
|
11782
11792
|
def __init__(self, parent, attr, service, rules, path):
|
|
11783
11793
|
super().__init__(parent, attr, service, rules, path)
|
|
11784
|
-
self.EdgeLabel = self._EdgeLabel(self, "EdgeLabel", service, rules, path)
|
|
11785
|
-
self.FacetedBodies = self._FacetedBodies(self, "FacetedBodies", service, rules, path)
|
|
11786
|
-
self.CISeparation = self._CISeparation(self, "CISeparation", service, rules, path)
|
|
11787
11794
|
self.MergeNodes = self._MergeNodes(self, "MergeNodes", service, rules, path)
|
|
11795
|
+
self.MaxFacetLengthOption = self._MaxFacetLengthOption(self, "MaxFacetLengthOption", service, rules, path)
|
|
11796
|
+
self.CISeparation = self._CISeparation(self, "CISeparation", service, rules, path)
|
|
11797
|
+
self.EdgeLabel = self._EdgeLabel(self, "EdgeLabel", service, rules, path)
|
|
11788
11798
|
self.CIRefaceting = self._CIRefaceting(self, "CIRefaceting", service, rules, path)
|
|
11799
|
+
self.FacetedBodies = self._FacetedBodies(self, "FacetedBodies", service, rules, path)
|
|
11789
11800
|
self.AutomaticObjectCreation = self._AutomaticObjectCreation(self, "AutomaticObjectCreation", service, rules, path)
|
|
11790
11801
|
self.MaxFacetLength = self._MaxFacetLength(self, "MaxFacetLength", service, rules, path)
|
|
11791
11802
|
self.ShowImportCadPreferences = self._ShowImportCadPreferences(self, "ShowImportCadPreferences", service, rules, path)
|
|
11803
|
+
self.MaxFacetLengthRatio = self._MaxFacetLengthRatio(self, "MaxFacetLengthRatio", service, rules, path)
|
|
11792
11804
|
self.ExtractAngle = self._ExtractAngle(self, "ExtractAngle", service, rules, path)
|
|
11793
11805
|
self.CISeparationAngle = self._CISeparationAngle(self, "CISeparationAngle", service, rules, path)
|
|
11794
11806
|
self.CITolerence = self._CITolerence(self, "CITolerence", service, rules, path)
|
|
11795
11807
|
|
|
11796
|
-
class
|
|
11808
|
+
class _MergeNodes(PyTextualCommandArgumentsSubItem):
|
|
11797
11809
|
"""
|
|
11798
|
-
|
|
11810
|
+
Argument MergeNodes.
|
|
11799
11811
|
"""
|
|
11800
11812
|
|
|
11801
|
-
class
|
|
11813
|
+
class _MaxFacetLengthOption(PyTextualCommandArgumentsSubItem):
|
|
11802
11814
|
"""
|
|
11803
|
-
|
|
11815
|
+
Argument MaxFacetLengthOption.
|
|
11804
11816
|
"""
|
|
11805
11817
|
|
|
11806
11818
|
class _CISeparation(PyTextualCommandArgumentsSubItem):
|
|
@@ -11808,9 +11820,9 @@ class Root(PyMenu):
|
|
|
11808
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.
|
|
11809
11821
|
"""
|
|
11810
11822
|
|
|
11811
|
-
class
|
|
11823
|
+
class _EdgeLabel(PyTextualCommandArgumentsSubItem):
|
|
11812
11824
|
"""
|
|
11813
|
-
|
|
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.
|
|
11814
11826
|
"""
|
|
11815
11827
|
|
|
11816
11828
|
class _CIRefaceting(PyParameterCommandArgumentsSubItem):
|
|
@@ -11818,6 +11830,11 @@ class Root(PyMenu):
|
|
|
11818
11830
|
Enable this option to be able to set the Tolerance and the Max Facet Length custom faceting options for the imported geometry.
|
|
11819
11831
|
"""
|
|
11820
11832
|
|
|
11833
|
+
class _FacetedBodies(PyTextualCommandArgumentsSubItem):
|
|
11834
|
+
"""
|
|
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.
|
|
11836
|
+
"""
|
|
11837
|
+
|
|
11821
11838
|
class _AutomaticObjectCreation(PyTextualCommandArgumentsSubItem):
|
|
11822
11839
|
"""
|
|
11823
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.
|
|
@@ -11833,6 +11850,11 @@ class Root(PyMenu):
|
|
|
11833
11850
|
Display advanced options that you may want to apply to the task.
|
|
11834
11851
|
"""
|
|
11835
11852
|
|
|
11853
|
+
class _MaxFacetLengthRatio(PyNumericalCommandArgumentsSubItem):
|
|
11854
|
+
"""
|
|
11855
|
+
Argument MaxFacetLengthRatio.
|
|
11856
|
+
"""
|
|
11857
|
+
|
|
11836
11858
|
class _ExtractAngle(PyNumericalCommandArgumentsSubItem):
|
|
11837
11859
|
"""
|
|
11838
11860
|
Argument ExtractAngle.
|
|
@@ -11896,9 +11918,9 @@ class Root(PyMenu):
|
|
|
11896
11918
|
self.CreateCADAssemblies = self._CreateCADAssemblies(self, "CreateCADAssemblies", service, rules, path)
|
|
11897
11919
|
self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
|
|
11898
11920
|
self.OneZonePer = self._OneZonePer(self, "OneZonePer", service, rules, path)
|
|
11899
|
-
self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
|
|
11900
|
-
self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
|
|
11901
11921
|
self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
|
|
11922
|
+
self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
|
|
11923
|
+
self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
|
|
11902
11924
|
self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
|
|
11903
11925
|
self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
|
|
11904
11926
|
|
|
@@ -11932,9 +11954,9 @@ class Root(PyMenu):
|
|
|
11932
11954
|
Argument OneZonePer.
|
|
11933
11955
|
"""
|
|
11934
11956
|
|
|
11935
|
-
class
|
|
11957
|
+
class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
|
|
11936
11958
|
"""
|
|
11937
|
-
Argument
|
|
11959
|
+
Argument ImportCurvatureDataFromCAD.
|
|
11938
11960
|
"""
|
|
11939
11961
|
|
|
11940
11962
|
class _ImportNamedSelections(PyParameterCommandArgumentsSubItem):
|
|
@@ -11942,9 +11964,9 @@ class Root(PyMenu):
|
|
|
11942
11964
|
Argument ImportNamedSelections.
|
|
11943
11965
|
"""
|
|
11944
11966
|
|
|
11945
|
-
class
|
|
11967
|
+
class _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
|
|
11946
11968
|
"""
|
|
11947
|
-
Argument
|
|
11969
|
+
Argument UsePartOrBodyAsSuffix.
|
|
11948
11970
|
"""
|
|
11949
11971
|
|
|
11950
11972
|
class _ImportPartNames(PyParameterCommandArgumentsSubItem):
|
|
@@ -12391,8 +12413,8 @@ class Root(PyMenu):
|
|
|
12391
12413
|
self.FacetMaxEdgeLength = self._FacetMaxEdgeLength(self, "FacetMaxEdgeLength", service, rules, path)
|
|
12392
12414
|
self.FacetResolution = self._FacetResolution(self, "FacetResolution", service, rules, path)
|
|
12393
12415
|
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
12394
|
-
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
12395
12416
|
self.MaxEdgeLengthFactor = self._MaxEdgeLengthFactor(self, "MaxEdgeLengthFactor", service, rules, path)
|
|
12417
|
+
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
12396
12418
|
self.MaxEdgeLength = self._MaxEdgeLength(self, "MaxEdgeLength", service, rules, path)
|
|
12397
12419
|
self.CustomNormalAngle = self._CustomNormalAngle(self, "CustomNormalAngle", service, rules, path)
|
|
12398
12420
|
self.CustomDeviation = self._CustomDeviation(self, "CustomDeviation", service, rules, path)
|
|
@@ -12413,14 +12435,14 @@ class Root(PyMenu):
|
|
|
12413
12435
|
Argument Deviation.
|
|
12414
12436
|
"""
|
|
12415
12437
|
|
|
12416
|
-
class
|
|
12438
|
+
class _MaxEdgeLengthFactor(PyNumericalCommandArgumentsSubItem):
|
|
12417
12439
|
"""
|
|
12418
|
-
Argument
|
|
12440
|
+
Argument MaxEdgeLengthFactor.
|
|
12419
12441
|
"""
|
|
12420
12442
|
|
|
12421
|
-
class
|
|
12443
|
+
class _NormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
12422
12444
|
"""
|
|
12423
|
-
Argument
|
|
12445
|
+
Argument NormalAngle.
|
|
12424
12446
|
"""
|
|
12425
12447
|
|
|
12426
12448
|
class _MaxEdgeLength(PyNumericalCommandArgumentsSubItem):
|
|
@@ -12547,11 +12569,11 @@ class Root(PyMenu):
|
|
|
12547
12569
|
self.MinSize = self._MinSize(self, "MinSize", service, rules, path)
|
|
12548
12570
|
self.WrapMax = self._WrapMax(self, "WrapMax", service, rules, path)
|
|
12549
12571
|
self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
|
|
12550
|
-
self.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", service, rules, path)
|
|
12551
12572
|
self.InitialSizeControl = self._InitialSizeControl(self, "InitialSizeControl", service, rules, path)
|
|
12573
|
+
self.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", service, rules, path)
|
|
12552
12574
|
self.SizingType = self._SizingType(self, "SizingType", service, rules, path)
|
|
12553
|
-
self.WrapCurvatureNormalAngle = self._WrapCurvatureNormalAngle(self, "WrapCurvatureNormalAngle", service, rules, path)
|
|
12554
12575
|
self.CellsPerGap = self._CellsPerGap(self, "CellsPerGap", service, rules, path)
|
|
12576
|
+
self.WrapCurvatureNormalAngle = self._WrapCurvatureNormalAngle(self, "WrapCurvatureNormalAngle", service, rules, path)
|
|
12555
12577
|
self.TargetSizeControl = self._TargetSizeControl(self, "TargetSizeControl", service, rules, path)
|
|
12556
12578
|
self.GrowthRate = self._GrowthRate(self, "GrowthRate", service, rules, path)
|
|
12557
12579
|
|
|
@@ -12600,14 +12622,14 @@ class Root(PyMenu):
|
|
|
12600
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.
|
|
12601
12623
|
"""
|
|
12602
12624
|
|
|
12603
|
-
class
|
|
12625
|
+
class _InitialSizeControl(PyParameterCommandArgumentsSubItem):
|
|
12604
12626
|
"""
|
|
12605
|
-
|
|
12627
|
+
Enable this field to display the initial size control in the graphics window.
|
|
12606
12628
|
"""
|
|
12607
12629
|
|
|
12608
|
-
class
|
|
12630
|
+
class _WrapGrowthRate(PyNumericalCommandArgumentsSubItem):
|
|
12609
12631
|
"""
|
|
12610
|
-
|
|
12632
|
+
Specify the increase in element edge length with each succeeding layer of elements.
|
|
12611
12633
|
"""
|
|
12612
12634
|
|
|
12613
12635
|
class _SizingType(PyTextualCommandArgumentsSubItem):
|
|
@@ -12615,14 +12637,14 @@ class Root(PyMenu):
|
|
|
12615
12637
|
Choose the type of sizing control (curvature, proximity, soft, or boi).
|
|
12616
12638
|
"""
|
|
12617
12639
|
|
|
12618
|
-
class
|
|
12640
|
+
class _CellsPerGap(PyNumericalCommandArgumentsSubItem):
|
|
12619
12641
|
"""
|
|
12620
|
-
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.
|
|
12621
12643
|
"""
|
|
12622
12644
|
|
|
12623
|
-
class
|
|
12645
|
+
class _WrapCurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
12624
12646
|
"""
|
|
12625
|
-
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.
|
|
12626
12648
|
"""
|
|
12627
12649
|
|
|
12628
12650
|
class _TargetSizeControl(PyParameterCommandArgumentsSubItem):
|
|
@@ -13006,8 +13028,8 @@ class Root(PyMenu):
|
|
|
13006
13028
|
self.SaveSizeFieldFile = self._SaveSizeFieldFile(self, "SaveSizeFieldFile", service, rules, path)
|
|
13007
13029
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
13008
13030
|
self.ScopeProximityTo = self._ScopeProximityTo(self, "ScopeProximityTo", service, rules, path)
|
|
13009
|
-
self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
|
|
13010
13031
|
self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
|
|
13032
|
+
self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
|
|
13011
13033
|
self.SaveSizeField = self._SaveSizeField(self, "SaveSizeField", service, rules, path)
|
|
13012
13034
|
self.UseSizeFiles = self._UseSizeFiles(self, "UseSizeFiles", service, rules, path)
|
|
13013
13035
|
self.AutoCreateScopedSizing = self._AutoCreateScopedSizing(self, "AutoCreateScopedSizing", service, rules, path)
|
|
@@ -13037,14 +13059,14 @@ class Root(PyMenu):
|
|
|
13037
13059
|
Argument ScopeProximityTo.
|
|
13038
13060
|
"""
|
|
13039
13061
|
|
|
13040
|
-
class
|
|
13062
|
+
class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
13041
13063
|
"""
|
|
13042
|
-
Argument
|
|
13064
|
+
Argument CurvatureNormalAngle.
|
|
13043
13065
|
"""
|
|
13044
13066
|
|
|
13045
|
-
class
|
|
13067
|
+
class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
|
|
13046
13068
|
"""
|
|
13047
|
-
Argument
|
|
13069
|
+
Argument PreviewSizefield.
|
|
13048
13070
|
"""
|
|
13049
13071
|
|
|
13050
13072
|
class _SaveSizeField(PyParameterCommandArgumentsSubItem):
|
|
@@ -13572,6 +13594,47 @@ class Root(PyMenu):
|
|
|
13572
13594
|
if args is not None:
|
|
13573
13595
|
return self._PartReplacementSettingsCommandArguments(*args)
|
|
13574
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
|
+
|
|
13575
13638
|
class RemeshSurface(PyCommand):
|
|
13576
13639
|
"""
|
|
13577
13640
|
Command RemeshSurface.
|
|
@@ -14032,14 +14095,14 @@ class Root(PyMenu):
|
|
|
14032
14095
|
self.ConnectLabelWildcard = self._ConnectLabelWildcard(self, "ConnectLabelWildcard", service, rules, path)
|
|
14033
14096
|
self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
|
|
14034
14097
|
self.RelativeShareTopologyTolerance = self._RelativeShareTopologyTolerance(self, "RelativeShareTopologyTolerance", service, rules, path)
|
|
14035
|
-
self.
|
|
14098
|
+
self.ShareTopologyAngle = self._ShareTopologyAngle(self, "ShareTopologyAngle", service, rules, path)
|
|
14036
14099
|
self.ExecuteJoinIntersect = self._ExecuteJoinIntersect(self, "ExecuteJoinIntersect", service, rules, path)
|
|
14037
14100
|
self.Operation = self._Operation(self, "Operation", service, rules, path)
|
|
14038
|
-
self.
|
|
14101
|
+
self.FluidLabelWildcard = self._FluidLabelWildcard(self, "FluidLabelWildcard", service, rules, path)
|
|
14039
14102
|
self.STToleranceIncrement = self._STToleranceIncrement(self, "STToleranceIncrement", service, rules, path)
|
|
14040
|
-
self.IntfLabelList = self._IntfLabelList(self, "IntfLabelList", service, rules, path)
|
|
14041
|
-
self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
|
|
14042
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)
|
|
14043
14106
|
self.AdvancedImprove = self._AdvancedImprove(self, "AdvancedImprove", service, rules, path)
|
|
14044
14107
|
self.NumberOfJoinTries = self._NumberOfJoinTries(self, "NumberOfJoinTries", service, rules, path)
|
|
14045
14108
|
|
|
@@ -14068,9 +14131,9 @@ class Root(PyMenu):
|
|
|
14068
14131
|
Specify the relative tolerance for joining or intersecting face pairs, or the relative tolerance for connecting edge and face pairs.
|
|
14069
14132
|
"""
|
|
14070
14133
|
|
|
14071
|
-
class
|
|
14134
|
+
class _ShareTopologyAngle(PyNumericalCommandArgumentsSubItem):
|
|
14072
14135
|
"""
|
|
14073
|
-
|
|
14136
|
+
Specify the threshold angle for joining face pairs.
|
|
14074
14137
|
"""
|
|
14075
14138
|
|
|
14076
14139
|
class _ExecuteJoinIntersect(PyTextualCommandArgumentsSubItem):
|
|
@@ -14083,9 +14146,9 @@ class Root(PyMenu):
|
|
|
14083
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.
|
|
14084
14147
|
"""
|
|
14085
14148
|
|
|
14086
|
-
class
|
|
14149
|
+
class _FluidLabelWildcard(PyTextualCommandArgumentsSubItem):
|
|
14087
14150
|
"""
|
|
14088
|
-
|
|
14151
|
+
Argument FluidLabelWildcard.
|
|
14089
14152
|
"""
|
|
14090
14153
|
|
|
14091
14154
|
class _STToleranceIncrement(PyNumericalCommandArgumentsSubItem):
|
|
@@ -14093,9 +14156,9 @@ class Root(PyMenu):
|
|
|
14093
14156
|
Specify the increment by which the tolerance changes for each attempt to join face pairs.
|
|
14094
14157
|
"""
|
|
14095
14158
|
|
|
14096
|
-
class
|
|
14159
|
+
class _ShowShareTopologyPreferences(PyParameterCommandArgumentsSubItem):
|
|
14097
14160
|
"""
|
|
14098
|
-
|
|
14161
|
+
Display advanced options that you may want to apply to the task.
|
|
14099
14162
|
"""
|
|
14100
14163
|
|
|
14101
14164
|
class _PerLabelList(PyTextualCommandArgumentsSubItem):
|
|
@@ -14103,9 +14166,9 @@ class Root(PyMenu):
|
|
|
14103
14166
|
Argument PerLabelList.
|
|
14104
14167
|
"""
|
|
14105
14168
|
|
|
14106
|
-
class
|
|
14169
|
+
class _IntfLabelList(PyTextualCommandArgumentsSubItem):
|
|
14107
14170
|
"""
|
|
14108
|
-
|
|
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...
|
|
14109
14172
|
"""
|
|
14110
14173
|
|
|
14111
14174
|
class _AdvancedImprove(PyTextualCommandArgumentsSubItem):
|
|
@@ -14130,10 +14193,10 @@ class Root(PyMenu):
|
|
|
14130
14193
|
self.SIQualityIterations = self._SIQualityIterations(self, "SIQualityIterations", service, rules, path)
|
|
14131
14194
|
self.SIQualityMaxAngle = self._SIQualityMaxAngle(self, "SIQualityMaxAngle", service, rules, path)
|
|
14132
14195
|
self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
|
|
14133
|
-
self.
|
|
14196
|
+
self.ShowSMImprovePreferences = self._ShowSMImprovePreferences(self, "ShowSMImprovePreferences", service, rules, path)
|
|
14134
14197
|
self.AdvancedImprove = self._AdvancedImprove(self, "AdvancedImprove", service, rules, path)
|
|
14135
14198
|
self.SIStepWidth = self._SIStepWidth(self, "SIStepWidth", service, rules, path)
|
|
14136
|
-
self.
|
|
14199
|
+
self.SIRemoveStep = self._SIRemoveStep(self, "SIRemoveStep", service, rules, path)
|
|
14137
14200
|
|
|
14138
14201
|
class _SIStepQualityLimit(PyNumericalCommandArgumentsSubItem):
|
|
14139
14202
|
"""
|
|
@@ -14160,9 +14223,9 @@ class Root(PyMenu):
|
|
|
14160
14223
|
Argument AllowDefeaturing.
|
|
14161
14224
|
"""
|
|
14162
14225
|
|
|
14163
|
-
class
|
|
14226
|
+
class _ShowSMImprovePreferences(PyParameterCommandArgumentsSubItem):
|
|
14164
14227
|
"""
|
|
14165
|
-
Argument
|
|
14228
|
+
Argument ShowSMImprovePreferences.
|
|
14166
14229
|
"""
|
|
14167
14230
|
|
|
14168
14231
|
class _AdvancedImprove(PyTextualCommandArgumentsSubItem):
|
|
@@ -14175,9 +14238,9 @@ class Root(PyMenu):
|
|
|
14175
14238
|
Argument SIStepWidth.
|
|
14176
14239
|
"""
|
|
14177
14240
|
|
|
14178
|
-
class
|
|
14241
|
+
class _SIRemoveStep(PyTextualCommandArgumentsSubItem):
|
|
14179
14242
|
"""
|
|
14180
|
-
Argument
|
|
14243
|
+
Argument SIRemoveStep.
|
|
14181
14244
|
"""
|
|
14182
14245
|
|
|
14183
14246
|
class _SurfaceMeshPreferences(PySingletonCommandArgumentsSubItem):
|
|
@@ -14188,19 +14251,19 @@ class Root(PyMenu):
|
|
|
14188
14251
|
def __init__(self, parent, attr, service, rules, path):
|
|
14189
14252
|
super().__init__(parent, attr, service, rules, path)
|
|
14190
14253
|
self.SMQualityCollapseLimit = self._SMQualityCollapseLimit(self, "SMQualityCollapseLimit", service, rules, path)
|
|
14191
|
-
self.
|
|
14254
|
+
self.AutoMerge = self._AutoMerge(self, "AutoMerge", service, rules, path)
|
|
14192
14255
|
self.SMQualityImprove = self._SMQualityImprove(self, "SMQualityImprove", service, rules, path)
|
|
14193
14256
|
self.ShowSurfaceMeshPreferences = self._ShowSurfaceMeshPreferences(self, "ShowSurfaceMeshPreferences", service, rules, path)
|
|
14194
|
-
self.
|
|
14257
|
+
self.SMSeparationAngle = self._SMSeparationAngle(self, "SMSeparationAngle", service, rules, path)
|
|
14195
14258
|
self.SMSeparation = self._SMSeparation(self, "SMSeparation", service, rules, path)
|
|
14196
14259
|
self.TVMAutoControlCreation = self._TVMAutoControlCreation(self, "TVMAutoControlCreation", service, rules, path)
|
|
14197
|
-
self.
|
|
14260
|
+
self.FoldFaceLimit = self._FoldFaceLimit(self, "FoldFaceLimit", service, rules, path)
|
|
14198
14261
|
self.SMRemoveStep = self._SMRemoveStep(self, "SMRemoveStep", service, rules, path)
|
|
14199
|
-
self.ParallelRegionCompute = self._ParallelRegionCompute(self, "ParallelRegionCompute", service, rules, path)
|
|
14200
14262
|
self.SMStepWidth = self._SMStepWidth(self, "SMStepWidth", service, rules, path)
|
|
14201
|
-
self.
|
|
14202
|
-
self.AutoAssignZoneTypes = self._AutoAssignZoneTypes(self, "AutoAssignZoneTypes", service, rules, path)
|
|
14263
|
+
self.ParallelRegionCompute = self._ParallelRegionCompute(self, "ParallelRegionCompute", service, rules, path)
|
|
14203
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)
|
|
14204
14267
|
self.SelfIntersectCheck = self._SelfIntersectCheck(self, "SelfIntersectCheck", service, rules, path)
|
|
14205
14268
|
self.AutoSurfaceRemesh = self._AutoSurfaceRemesh(self, "AutoSurfaceRemesh", service, rules, path)
|
|
14206
14269
|
self.SMQualityImproveLimit = self._SMQualityImproveLimit(self, "SMQualityImproveLimit", service, rules, path)
|
|
@@ -14211,9 +14274,9 @@ class Root(PyMenu):
|
|
|
14211
14274
|
Argument SMQualityCollapseLimit.
|
|
14212
14275
|
"""
|
|
14213
14276
|
|
|
14214
|
-
class
|
|
14277
|
+
class _AutoMerge(PyParameterCommandArgumentsSubItem):
|
|
14215
14278
|
"""
|
|
14216
|
-
Argument
|
|
14279
|
+
Argument AutoMerge.
|
|
14217
14280
|
"""
|
|
14218
14281
|
|
|
14219
14282
|
class _SMQualityImprove(PyTextualCommandArgumentsSubItem):
|
|
@@ -14226,9 +14289,9 @@ class Root(PyMenu):
|
|
|
14226
14289
|
Argument ShowSurfaceMeshPreferences.
|
|
14227
14290
|
"""
|
|
14228
14291
|
|
|
14229
|
-
class
|
|
14292
|
+
class _SMSeparationAngle(PyNumericalCommandArgumentsSubItem):
|
|
14230
14293
|
"""
|
|
14231
|
-
Argument
|
|
14294
|
+
Argument SMSeparationAngle.
|
|
14232
14295
|
"""
|
|
14233
14296
|
|
|
14234
14297
|
class _SMSeparation(PyTextualCommandArgumentsSubItem):
|
|
@@ -14241,9 +14304,9 @@ class Root(PyMenu):
|
|
|
14241
14304
|
Argument TVMAutoControlCreation.
|
|
14242
14305
|
"""
|
|
14243
14306
|
|
|
14244
|
-
class
|
|
14307
|
+
class _FoldFaceLimit(PyNumericalCommandArgumentsSubItem):
|
|
14245
14308
|
"""
|
|
14246
|
-
Argument
|
|
14309
|
+
Argument FoldFaceLimit.
|
|
14247
14310
|
"""
|
|
14248
14311
|
|
|
14249
14312
|
class _SMRemoveStep(PyTextualCommandArgumentsSubItem):
|
|
@@ -14251,19 +14314,19 @@ class Root(PyMenu):
|
|
|
14251
14314
|
Argument SMRemoveStep.
|
|
14252
14315
|
"""
|
|
14253
14316
|
|
|
14254
|
-
class
|
|
14317
|
+
class _SMStepWidth(PyNumericalCommandArgumentsSubItem):
|
|
14255
14318
|
"""
|
|
14256
|
-
Argument
|
|
14319
|
+
Argument SMStepWidth.
|
|
14257
14320
|
"""
|
|
14258
14321
|
|
|
14259
|
-
class
|
|
14322
|
+
class _ParallelRegionCompute(PyTextualCommandArgumentsSubItem):
|
|
14260
14323
|
"""
|
|
14261
|
-
Argument
|
|
14324
|
+
Argument ParallelRegionCompute.
|
|
14262
14325
|
"""
|
|
14263
14326
|
|
|
14264
|
-
class
|
|
14327
|
+
class _SMQualityMaxAngle(PyNumericalCommandArgumentsSubItem):
|
|
14265
14328
|
"""
|
|
14266
|
-
Argument
|
|
14329
|
+
Argument SMQualityMaxAngle.
|
|
14267
14330
|
"""
|
|
14268
14331
|
|
|
14269
14332
|
class _AutoAssignZoneTypes(PyTextualCommandArgumentsSubItem):
|
|
@@ -14271,9 +14334,9 @@ class Root(PyMenu):
|
|
|
14271
14334
|
Argument AutoAssignZoneTypes.
|
|
14272
14335
|
"""
|
|
14273
14336
|
|
|
14274
|
-
class
|
|
14337
|
+
class _VolumeMeshMaxSize(PyNumericalCommandArgumentsSubItem):
|
|
14275
14338
|
"""
|
|
14276
|
-
Argument
|
|
14339
|
+
Argument VolumeMeshMaxSize.
|
|
14277
14340
|
"""
|
|
14278
14341
|
|
|
14279
14342
|
class _SelfIntersectCheck(PyTextualCommandArgumentsSubItem):
|