ansys-fluent-core 0.34.2__py3-none-any.whl → 0.35.dev1__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 +4 -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 +8 -11
- 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 +50 -50
- ansys/fluent/core/generated/datamodel_231/meshing.py +182 -182
- ansys/fluent/core/generated/datamodel_232/flicing.py +45 -45
- ansys/fluent/core/generated/datamodel_232/meshing.py +172 -172
- ansys/fluent/core/generated/datamodel_241/flicing.py +45 -45
- ansys/fluent/core/generated/datamodel_241/meshing.py +303 -303
- ansys/fluent/core/generated/datamodel_242/flicing.py +50 -50
- ansys/fluent/core/generated/datamodel_242/meshing.py +309 -309
- ansys/fluent/core/generated/datamodel_242/part_management.py +3 -3
- ansys/fluent/core/generated/datamodel_251/flicing.py +50 -50
- ansys/fluent/core/generated/datamodel_251/meshing.py +327 -327
- ansys/fluent/core/generated/datamodel_251/part_management.py +9 -9
- ansys/fluent/core/generated/datamodel_252/flicing.py +30 -30
- ansys/fluent/core/generated/datamodel_252/meshing.py +370 -370
- ansys/fluent/core/generated/datamodel_252/part_management.py +15 -15
- ansys/fluent/core/generated/datamodel_261/flicing.py +35 -35
- ansys/fluent/core/generated/datamodel_261/meshing.py +444 -388
- 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 +9912 -4184
- ansys/fluent/core/generated/solver/settings_261.pyi +6779 -3312
- 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 +4439 -3245
- 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 +5 -4
- 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 +3 -2
- ansys/fluent/core/launcher/server_info.py +7 -3
- ansys/fluent/core/launcher/slurm_launcher.py +4 -3
- 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 +363 -0
- ansys/fluent/core/pyfluent_warnings.py +2 -2
- ansys/fluent/core/report.py +0 -2
- ansys/fluent/core/search.py +43 -18
- ansys/fluent/core/services/api_upgrade.py +3 -2
- ansys/fluent/core/services/datamodel_se.py +4 -2
- ansys/fluent/core/services/health_check.py +3 -1
- ansys/fluent/core/services/interceptors.py +8 -6
- ansys/fluent/core/session.py +31 -3
- 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 +6 -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.dev1.dist-info}/METADATA +8 -7
- {ansys_fluent_core-0.34.2.dist-info → ansys_fluent_core-0.35.dev1.dist-info}/RECORD +82 -81
- {ansys_fluent_core-0.34.2.dist-info → ansys_fluent_core-0.35.dev1.dist-info}/WHEEL +1 -1
- {ansys_fluent_core-0.34.2.dist-info → ansys_fluent_core-0.35.dev1.dist-info/licenses}/LICENSE +0 -0
|
@@ -1522,23 +1522,23 @@ class Root(PyMenu):
|
|
|
1522
1522
|
|
|
1523
1523
|
def __init__(self, parent, attr, service, rules, path):
|
|
1524
1524
|
super().__init__(parent, attr, service, rules, path)
|
|
1525
|
-
self.ExposeSide = self._ExposeSide(self, "ExposeSide", service, rules, path)
|
|
1526
1525
|
self.ShowShellBLAdvancedOptions = self._ShowShellBLAdvancedOptions(self, "ShowShellBLAdvancedOptions", service, rules, path)
|
|
1526
|
+
self.ExposeSide = self._ExposeSide(self, "ExposeSide", service, rules, path)
|
|
1527
1527
|
self.MaxAspectRatio = self._MaxAspectRatio(self, "MaxAspectRatio", service, rules, path)
|
|
1528
1528
|
self.MinAspectRatio = self._MinAspectRatio(self, "MinAspectRatio", service, rules, path)
|
|
1529
|
-
self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
|
|
1530
1529
|
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
1530
|
+
self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
|
|
1531
1531
|
self.GapFactor = self._GapFactor(self, "GapFactor", service, rules, path)
|
|
1532
1532
|
self.AdjacentAttachAngle = self._AdjacentAttachAngle(self, "AdjacentAttachAngle", service, rules, path)
|
|
1533
1533
|
|
|
1534
|
-
class
|
|
1534
|
+
class _ShowShellBLAdvancedOptions(PyParameterCommandArgumentsSubItem):
|
|
1535
1535
|
"""
|
|
1536
|
-
Argument
|
|
1536
|
+
Argument ShowShellBLAdvancedOptions.
|
|
1537
1537
|
"""
|
|
1538
1538
|
|
|
1539
|
-
class
|
|
1539
|
+
class _ExposeSide(PyTextualCommandArgumentsSubItem):
|
|
1540
1540
|
"""
|
|
1541
|
-
Argument
|
|
1541
|
+
Argument ExposeSide.
|
|
1542
1542
|
"""
|
|
1543
1543
|
|
|
1544
1544
|
class _MaxAspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -1551,14 +1551,14 @@ class Root(PyMenu):
|
|
|
1551
1551
|
Argument MinAspectRatio.
|
|
1552
1552
|
"""
|
|
1553
1553
|
|
|
1554
|
-
class
|
|
1554
|
+
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
1555
1555
|
"""
|
|
1556
|
-
Argument
|
|
1556
|
+
Argument LastRatioPercentage.
|
|
1557
1557
|
"""
|
|
1558
1558
|
|
|
1559
|
-
class
|
|
1559
|
+
class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
|
|
1560
1560
|
"""
|
|
1561
|
-
Argument
|
|
1561
|
+
Argument LastRatioNumLayers.
|
|
1562
1562
|
"""
|
|
1563
1563
|
|
|
1564
1564
|
class _GapFactor(PyNumericalCommandArgumentsSubItem):
|
|
@@ -1769,11 +1769,11 @@ class Root(PyMenu):
|
|
|
1769
1769
|
self.SphereRadiusFactorAtInvalidNormals = self._SphereRadiusFactorAtInvalidNormals(self, "SphereRadiusFactorAtInvalidNormals", service, rules, path)
|
|
1770
1770
|
self.SmoothRingsAtInvalidNormals = self._SmoothRingsAtInvalidNormals(self, "SmoothRingsAtInvalidNormals", service, rules, path)
|
|
1771
1771
|
self.Continuous = self._Continuous(self, "Continuous", service, rules, path)
|
|
1772
|
-
self.ModifyAtInvalidNormals = self._ModifyAtInvalidNormals(self, "ModifyAtInvalidNormals", service, rules, path)
|
|
1773
1772
|
self.SplitPrism = self._SplitPrism(self, "SplitPrism", service, rules, path)
|
|
1773
|
+
self.ModifyAtInvalidNormals = self._ModifyAtInvalidNormals(self, "ModifyAtInvalidNormals", service, rules, path)
|
|
1774
1774
|
self.InvalidNormalMethod = self._InvalidNormalMethod(self, "InvalidNormalMethod", service, rules, path)
|
|
1775
|
-
self.ShowLocalPrismPreferences = self._ShowLocalPrismPreferences(self, "ShowLocalPrismPreferences", service, rules, path)
|
|
1776
1775
|
self.NumberOfSplitLayers = self._NumberOfSplitLayers(self, "NumberOfSplitLayers", service, rules, path)
|
|
1776
|
+
self.ShowLocalPrismPreferences = self._ShowLocalPrismPreferences(self, "ShowLocalPrismPreferences", service, rules, path)
|
|
1777
1777
|
self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
|
|
1778
1778
|
self.AllowedTangencyAtInvalidNormals = self._AllowedTangencyAtInvalidNormals(self, "AllowedTangencyAtInvalidNormals", service, rules, path)
|
|
1779
1779
|
self.RemeshAtInvalidNormals = self._RemeshAtInvalidNormals(self, "RemeshAtInvalidNormals", service, rules, path)
|
|
@@ -1804,14 +1804,14 @@ class Root(PyMenu):
|
|
|
1804
1804
|
Specify how you would like to improve the generated boundary layer: as a continuous or stair-stepped boundary layer in the specified area(s).
|
|
1805
1805
|
"""
|
|
1806
1806
|
|
|
1807
|
-
class
|
|
1807
|
+
class _SplitPrism(PyTextualCommandArgumentsSubItem):
|
|
1808
1808
|
"""
|
|
1809
|
-
|
|
1809
|
+
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
1810
|
"""
|
|
1811
1811
|
|
|
1812
|
-
class
|
|
1812
|
+
class _ModifyAtInvalidNormals(PyTextualCommandArgumentsSubItem):
|
|
1813
1813
|
"""
|
|
1814
|
-
|
|
1814
|
+
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
1815
|
"""
|
|
1816
1816
|
|
|
1817
1817
|
class _InvalidNormalMethod(PyTextualCommandArgumentsSubItem):
|
|
@@ -1819,14 +1819,14 @@ class Root(PyMenu):
|
|
|
1819
1819
|
Argument InvalidNormalMethod.
|
|
1820
1820
|
"""
|
|
1821
1821
|
|
|
1822
|
-
class
|
|
1822
|
+
class _NumberOfSplitLayers(PyNumericalCommandArgumentsSubItem):
|
|
1823
1823
|
"""
|
|
1824
|
-
|
|
1824
|
+
Indicate the number of split prism layers you wish to apply to each layer that you specified for the boundary layer definition.
|
|
1825
1825
|
"""
|
|
1826
1826
|
|
|
1827
|
-
class
|
|
1827
|
+
class _ShowLocalPrismPreferences(PyParameterCommandArgumentsSubItem):
|
|
1828
1828
|
"""
|
|
1829
|
-
|
|
1829
|
+
Display advanced options that you may want to apply to this task.
|
|
1830
1830
|
"""
|
|
1831
1831
|
|
|
1832
1832
|
class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
|
|
@@ -2093,9 +2093,9 @@ class Root(PyMenu):
|
|
|
2093
2093
|
self.ModifyAtInvalidNormals = self._ModifyAtInvalidNormals(self, "ModifyAtInvalidNormals", service, rules, path)
|
|
2094
2094
|
self.SplitPrism = self._SplitPrism(self, "SplitPrism", service, rules, path)
|
|
2095
2095
|
self.InvalidNormalMethod = self._InvalidNormalMethod(self, "InvalidNormalMethod", service, rules, path)
|
|
2096
|
-
self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
|
|
2097
2096
|
self.NumberOfSplitLayers = self._NumberOfSplitLayers(self, "NumberOfSplitLayers", service, rules, path)
|
|
2098
2097
|
self.ShowLocalPrismPreferences = self._ShowLocalPrismPreferences(self, "ShowLocalPrismPreferences", service, rules, path)
|
|
2098
|
+
self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
|
|
2099
2099
|
self.AllowedTangencyAtInvalidNormals = self._AllowedTangencyAtInvalidNormals(self, "AllowedTangencyAtInvalidNormals", service, rules, path)
|
|
2100
2100
|
self.RemeshAtInvalidNormals = self._RemeshAtInvalidNormals(self, "RemeshAtInvalidNormals", service, rules, path)
|
|
2101
2101
|
self.IgnoreBoundaryLayers = self._IgnoreBoundaryLayers(self, "IgnoreBoundaryLayers", service, rules, path)
|
|
@@ -2140,11 +2140,6 @@ class Root(PyMenu):
|
|
|
2140
2140
|
Argument InvalidNormalMethod.
|
|
2141
2141
|
"""
|
|
2142
2142
|
|
|
2143
|
-
class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
|
|
2144
|
-
"""
|
|
2145
|
-
Argument LastRatioNumLayers.
|
|
2146
|
-
"""
|
|
2147
|
-
|
|
2148
2143
|
class _NumberOfSplitLayers(PyNumericalCommandArgumentsSubItem):
|
|
2149
2144
|
"""
|
|
2150
2145
|
Indicate the number of split prism layers you wish to apply to each layer that you specified for the boundary layer definition.
|
|
@@ -2155,6 +2150,11 @@ class Root(PyMenu):
|
|
|
2155
2150
|
Display advanced options that you may want to apply to this task.
|
|
2156
2151
|
"""
|
|
2157
2152
|
|
|
2153
|
+
class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
|
|
2154
|
+
"""
|
|
2155
|
+
Argument LastRatioNumLayers.
|
|
2156
|
+
"""
|
|
2157
|
+
|
|
2158
2158
|
class _AllowedTangencyAtInvalidNormals(PyNumericalCommandArgumentsSubItem):
|
|
2159
2159
|
"""
|
|
2160
2160
|
Controls the tangency of the invalid normal faces. An invalid normal location with all 90 degree angles has a tangency of 1. So, faces are still treated as an invalid normal even if the angle deviates slightly from 90 degrees (resulting in a tangency of 0.98).
|
|
@@ -2395,9 +2395,9 @@ class Root(PyMenu):
|
|
|
2395
2395
|
self.MinSize = self._MinSize(self, "MinSize", service, rules, path)
|
|
2396
2396
|
self.WrapMax = self._WrapMax(self, "WrapMax", service, rules, path)
|
|
2397
2397
|
self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
|
|
2398
|
+
self.SizingType = self._SizingType(self, "SizingType", service, rules, path)
|
|
2398
2399
|
self.InitialSizeControl = self._InitialSizeControl(self, "InitialSizeControl", service, rules, path)
|
|
2399
2400
|
self.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", service, rules, path)
|
|
2400
|
-
self.SizingType = self._SizingType(self, "SizingType", service, rules, path)
|
|
2401
2401
|
self.WrapCurvatureNormalAngle = self._WrapCurvatureNormalAngle(self, "WrapCurvatureNormalAngle", service, rules, path)
|
|
2402
2402
|
self.CellsPerGap = self._CellsPerGap(self, "CellsPerGap", service, rules, path)
|
|
2403
2403
|
self.TargetSizeControl = self._TargetSizeControl(self, "TargetSizeControl", service, rules, path)
|
|
@@ -2448,6 +2448,11 @@ class Root(PyMenu):
|
|
|
2448
2448
|
Display advanced wrap-specific options that are also applied to the task. See this description for more information about wrap (and target) mesh size controls.
|
|
2449
2449
|
"""
|
|
2450
2450
|
|
|
2451
|
+
class _SizingType(PyTextualCommandArgumentsSubItem):
|
|
2452
|
+
"""
|
|
2453
|
+
Choose the type of sizing control (curvature, proximity, soft, or boi).
|
|
2454
|
+
"""
|
|
2455
|
+
|
|
2451
2456
|
class _InitialSizeControl(PyParameterCommandArgumentsSubItem):
|
|
2452
2457
|
"""
|
|
2453
2458
|
Enable this field to display the initial size control in the graphics window.
|
|
@@ -2458,11 +2463,6 @@ class Root(PyMenu):
|
|
|
2458
2463
|
Specify the increase in element edge length with each succeeding layer of elements.
|
|
2459
2464
|
"""
|
|
2460
2465
|
|
|
2461
|
-
class _SizingType(PyTextualCommandArgumentsSubItem):
|
|
2462
|
-
"""
|
|
2463
|
-
Choose the type of sizing control (curvature, proximity, soft, or boi).
|
|
2464
|
-
"""
|
|
2465
|
-
|
|
2466
2466
|
class _WrapCurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
2467
2467
|
"""
|
|
2468
2468
|
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.
|
|
@@ -3253,8 +3253,8 @@ class Root(PyMenu):
|
|
|
3253
3253
|
self.ExposeSide = self._ExposeSide(self, "ExposeSide", service, rules, path)
|
|
3254
3254
|
self.MaxAspectRatio = self._MaxAspectRatio(self, "MaxAspectRatio", service, rules, path)
|
|
3255
3255
|
self.MinAspectRatio = self._MinAspectRatio(self, "MinAspectRatio", service, rules, path)
|
|
3256
|
-
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
3257
3256
|
self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
|
|
3257
|
+
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
3258
3258
|
self.GapFactor = self._GapFactor(self, "GapFactor", service, rules, path)
|
|
3259
3259
|
self.AdjacentAttachAngle = self._AdjacentAttachAngle(self, "AdjacentAttachAngle", service, rules, path)
|
|
3260
3260
|
|
|
@@ -3278,14 +3278,14 @@ class Root(PyMenu):
|
|
|
3278
3278
|
Argument MinAspectRatio.
|
|
3279
3279
|
"""
|
|
3280
3280
|
|
|
3281
|
-
class
|
|
3281
|
+
class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
|
|
3282
3282
|
"""
|
|
3283
|
-
Argument
|
|
3283
|
+
Argument LastRatioNumLayers.
|
|
3284
3284
|
"""
|
|
3285
3285
|
|
|
3286
|
-
class
|
|
3286
|
+
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
3287
3287
|
"""
|
|
3288
|
-
Argument
|
|
3288
|
+
Argument LastRatioPercentage.
|
|
3289
3289
|
"""
|
|
3290
3290
|
|
|
3291
3291
|
class _GapFactor(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4162,23 +4162,23 @@ class Root(PyMenu):
|
|
|
4162
4162
|
|
|
4163
4163
|
def __init__(self, parent, attr, service, rules, path):
|
|
4164
4164
|
super().__init__(parent, attr, service, rules, path)
|
|
4165
|
-
self.
|
|
4165
|
+
self.WrapTargetRatio = self._WrapTargetRatio(self, "WrapTargetRatio", service, rules, path)
|
|
4166
4166
|
self.WrapTargetSizeFieldRatio = self._WrapTargetSizeFieldRatio(self, "WrapTargetSizeFieldRatio", service, rules, path)
|
|
4167
|
-
self.
|
|
4167
|
+
self.WrapTargetBothOptions = self._WrapTargetBothOptions(self, "WrapTargetBothOptions", service, rules, path)
|
|
4168
4168
|
self.SolidFluidRaio = self._SolidFluidRaio(self, "SolidFluidRaio", service, rules, path)
|
|
4169
4169
|
self.BoundaryLayers = self._BoundaryLayers(self, "BoundaryLayers", service, rules, path)
|
|
4170
4170
|
self.EdgeProximityComputation = self._EdgeProximityComputation(self, "EdgeProximityComputation", service, rules, path)
|
|
4171
|
-
self.
|
|
4171
|
+
self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
|
|
4172
4172
|
self.SolidFluidRatio = self._SolidFluidRatio(self, "SolidFluidRatio", service, rules, path)
|
|
4173
4173
|
self.TargetSizeFieldFileName = self._TargetSizeFieldFileName(self, "TargetSizeFieldFileName", service, rules, path)
|
|
4174
4174
|
self.ExistingSizeField = self._ExistingSizeField(self, "ExistingSizeField", service, rules, path)
|
|
4175
4175
|
self.WrapSizeFieldFileName = self._WrapSizeFieldFileName(self, "WrapSizeFieldFileName", service, rules, path)
|
|
4176
|
-
self.
|
|
4176
|
+
self.TargeSizeFieldFileName = self._TargeSizeFieldFileName(self, "TargeSizeFieldFileName", service, rules, path)
|
|
4177
4177
|
self.WrapTargetRaio = self._WrapTargetRaio(self, "WrapTargetRaio", service, rules, path)
|
|
4178
4178
|
|
|
4179
|
-
class
|
|
4179
|
+
class _WrapTargetRatio(PyNumericalCommandArgumentsSubItem):
|
|
4180
4180
|
"""
|
|
4181
|
-
|
|
4181
|
+
Argument WrapTargetRatio.
|
|
4182
4182
|
"""
|
|
4183
4183
|
|
|
4184
4184
|
class _WrapTargetSizeFieldRatio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4186,9 +4186,9 @@ class Root(PyMenu):
|
|
|
4186
4186
|
The ratio of the initial wrap size field and the local target size field.
|
|
4187
4187
|
"""
|
|
4188
4188
|
|
|
4189
|
-
class
|
|
4189
|
+
class _WrapTargetBothOptions(PyTextualCommandArgumentsSubItem):
|
|
4190
4190
|
"""
|
|
4191
|
-
|
|
4191
|
+
Determine how the size controls are calculated in the Add Local Sizing task: using Both Wrap and Target values, by Target Only (the default), or by Wrap Only. For complex models, computational expense can be lowered by choosing one of the other options. If either Wrap Only or Target Only is selected, then the other values are determined using the Wrap/Target Size Ratio value.
|
|
4192
4192
|
"""
|
|
4193
4193
|
|
|
4194
4194
|
class _SolidFluidRaio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4206,9 +4206,9 @@ class Root(PyMenu):
|
|
|
4206
4206
|
For geometries having a very large number of small feature edges, select Yes to speed up the calculation and reduce memory requirements when using a proximity size function.
|
|
4207
4207
|
"""
|
|
4208
4208
|
|
|
4209
|
-
class
|
|
4209
|
+
class _AdvancedOptions(PyParameterCommandArgumentsSubItem):
|
|
4210
4210
|
"""
|
|
4211
|
-
|
|
4211
|
+
Display advanced options that you may want to apply to the task.
|
|
4212
4212
|
"""
|
|
4213
4213
|
|
|
4214
4214
|
class _SolidFluidRatio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4231,9 +4231,9 @@ class Root(PyMenu):
|
|
|
4231
4231
|
Indicate the name and location of the wrap size field file (\\*.sf).
|
|
4232
4232
|
"""
|
|
4233
4233
|
|
|
4234
|
-
class
|
|
4234
|
+
class _TargeSizeFieldFileName(PyTextualCommandArgumentsSubItem):
|
|
4235
4235
|
"""
|
|
4236
|
-
|
|
4236
|
+
Indicate the name and location of the target size field file (\\*.sf).
|
|
4237
4237
|
"""
|
|
4238
4238
|
|
|
4239
4239
|
class _WrapTargetRaio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4508,7 +4508,7 @@ class Root(PyMenu):
|
|
|
4508
4508
|
def __init__(self, parent, attr, service, rules, path):
|
|
4509
4509
|
super().__init__(parent, attr, service, rules, path)
|
|
4510
4510
|
self.SizeRelativeLength = self._SizeRelativeLength(self, "SizeRelativeLength", service, rules, path)
|
|
4511
|
-
self.
|
|
4511
|
+
self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
|
|
4512
4512
|
self.XminRatio = self._XminRatio(self, "XminRatio", service, rules, path)
|
|
4513
4513
|
self.YminRatio = self._YminRatio(self, "YminRatio", service, rules, path)
|
|
4514
4514
|
self.Zmin = self._Zmin(self, "Zmin", service, rules, path)
|
|
@@ -4519,16 +4519,16 @@ class Root(PyMenu):
|
|
|
4519
4519
|
self.Xmin = self._Xmin(self, "Xmin", service, rules, path)
|
|
4520
4520
|
self.YmaxRatio = self._YmaxRatio(self, "YmaxRatio", service, rules, path)
|
|
4521
4521
|
self.ZmaxRatio = self._ZmaxRatio(self, "ZmaxRatio", service, rules, path)
|
|
4522
|
-
self.
|
|
4522
|
+
self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
|
|
4523
4523
|
|
|
4524
4524
|
class _SizeRelativeLength(PyTextualCommandArgumentsSubItem):
|
|
4525
4525
|
"""
|
|
4526
4526
|
Argument SizeRelativeLength.
|
|
4527
4527
|
"""
|
|
4528
4528
|
|
|
4529
|
-
class
|
|
4529
|
+
class _Xmax(PyNumericalCommandArgumentsSubItem):
|
|
4530
4530
|
"""
|
|
4531
|
-
Argument
|
|
4531
|
+
Argument Xmax.
|
|
4532
4532
|
"""
|
|
4533
4533
|
|
|
4534
4534
|
class _XminRatio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4581,9 +4581,9 @@ class Root(PyMenu):
|
|
|
4581
4581
|
Argument ZmaxRatio.
|
|
4582
4582
|
"""
|
|
4583
4583
|
|
|
4584
|
-
class
|
|
4584
|
+
class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
|
|
4585
4585
|
"""
|
|
4586
|
-
Argument
|
|
4586
|
+
Argument XmaxRatio.
|
|
4587
4587
|
"""
|
|
4588
4588
|
|
|
4589
4589
|
class _OffsetObject(PySingletonCommandArgumentsSubItem):
|
|
@@ -4599,15 +4599,15 @@ class Root(PyMenu):
|
|
|
4599
4599
|
self.Y = self._Y(self, "Y", service, rules, path)
|
|
4600
4600
|
self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
|
|
4601
4601
|
self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
|
|
4602
|
-
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
4603
4602
|
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
4604
|
-
self.
|
|
4603
|
+
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
4604
|
+
self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
|
|
4605
4605
|
self.FlowDirection = self._FlowDirection(self, "FlowDirection", service, rules, path)
|
|
4606
4606
|
self.MptMethodType = self._MptMethodType(self, "MptMethodType", service, rules, path)
|
|
4607
4607
|
self.EdgeSelectionList = self._EdgeSelectionList(self, "EdgeSelectionList", service, rules, path)
|
|
4608
|
-
self.
|
|
4609
|
-
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
4608
|
+
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
|
|
4610
4609
|
self.X = self._X(self, "X", service, rules, path)
|
|
4610
|
+
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
4611
4611
|
self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
|
|
4612
4612
|
self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
|
|
4613
4613
|
self.FirstHeight = self._FirstHeight(self, "FirstHeight", service, rules, path)
|
|
@@ -4644,19 +4644,19 @@ class Root(PyMenu):
|
|
|
4644
4644
|
Argument AspectRatio.
|
|
4645
4645
|
"""
|
|
4646
4646
|
|
|
4647
|
-
class
|
|
4647
|
+
class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
|
|
4648
4648
|
"""
|
|
4649
|
-
Argument
|
|
4649
|
+
Argument NumberOfLayers.
|
|
4650
4650
|
"""
|
|
4651
4651
|
|
|
4652
|
-
class
|
|
4652
|
+
class _Rate(PyNumericalCommandArgumentsSubItem):
|
|
4653
4653
|
"""
|
|
4654
|
-
Argument
|
|
4654
|
+
Argument Rate.
|
|
4655
4655
|
"""
|
|
4656
4656
|
|
|
4657
|
-
class
|
|
4657
|
+
class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
|
|
4658
4658
|
"""
|
|
4659
|
-
Argument
|
|
4659
|
+
Argument BoundaryLayerLevels.
|
|
4660
4660
|
"""
|
|
4661
4661
|
|
|
4662
4662
|
class _FlowDirection(PyTextualCommandArgumentsSubItem):
|
|
@@ -4674,19 +4674,19 @@ class Root(PyMenu):
|
|
|
4674
4674
|
Argument EdgeSelectionList.
|
|
4675
4675
|
"""
|
|
4676
4676
|
|
|
4677
|
-
class
|
|
4677
|
+
class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
|
|
4678
4678
|
"""
|
|
4679
|
-
Argument
|
|
4679
|
+
Argument WakeGrowthFactor.
|
|
4680
4680
|
"""
|
|
4681
4681
|
|
|
4682
|
-
class
|
|
4682
|
+
class _X(PyNumericalCommandArgumentsSubItem):
|
|
4683
4683
|
"""
|
|
4684
|
-
Argument
|
|
4684
|
+
Argument X.
|
|
4685
4685
|
"""
|
|
4686
4686
|
|
|
4687
|
-
class
|
|
4687
|
+
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
4688
4688
|
"""
|
|
4689
|
-
Argument
|
|
4689
|
+
Argument LastRatioPercentage.
|
|
4690
4690
|
"""
|
|
4691
4691
|
|
|
4692
4692
|
class _FlipDirection(PyParameterCommandArgumentsSubItem):
|
|
@@ -4738,9 +4738,9 @@ class Root(PyMenu):
|
|
|
4738
4738
|
self.Radius2 = self._Radius2(self, "Radius2", service, rules, path)
|
|
4739
4739
|
self.Y2 = self._Y2(self, "Y2", service, rules, path)
|
|
4740
4740
|
self.Node3 = self._Node3(self, "Node3", service, rules, path)
|
|
4741
|
-
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
4742
4741
|
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
4743
4742
|
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
4743
|
+
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
4744
4744
|
self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
|
|
4745
4745
|
self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
|
|
4746
4746
|
|
|
@@ -4804,11 +4804,6 @@ class Root(PyMenu):
|
|
|
4804
4804
|
Argument Node3.
|
|
4805
4805
|
"""
|
|
4806
4806
|
|
|
4807
|
-
class _Y_Offset(PyNumericalCommandArgumentsSubItem):
|
|
4808
|
-
"""
|
|
4809
|
-
Argument Y-Offset.
|
|
4810
|
-
"""
|
|
4811
|
-
|
|
4812
4807
|
class _X2(PyNumericalCommandArgumentsSubItem):
|
|
4813
4808
|
"""
|
|
4814
4809
|
Argument X2.
|
|
@@ -4819,6 +4814,11 @@ class Root(PyMenu):
|
|
|
4819
4814
|
Argument Node2.
|
|
4820
4815
|
"""
|
|
4821
4816
|
|
|
4817
|
+
class _Y_Offset(PyNumericalCommandArgumentsSubItem):
|
|
4818
|
+
"""
|
|
4819
|
+
Argument Y-Offset.
|
|
4820
|
+
"""
|
|
4821
|
+
|
|
4822
4822
|
class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
|
|
4823
4823
|
"""
|
|
4824
4824
|
Argument HeightFrontInc.
|
|
@@ -4873,8 +4873,8 @@ class Root(PyMenu):
|
|
|
4873
4873
|
def __init__(self, parent, attr, service, rules, path):
|
|
4874
4874
|
super().__init__(parent, attr, service, rules, path)
|
|
4875
4875
|
self.CylinderZ2 = self._CylinderZ2(self, "CylinderZ2", service, rules, path)
|
|
4876
|
-
self.BoxYLength = self._BoxYLength(self, "BoxYLength", service, rules, path)
|
|
4877
4876
|
self.CylinderX2 = self._CylinderX2(self, "CylinderX2", service, rules, path)
|
|
4877
|
+
self.BoxYLength = self._BoxYLength(self, "BoxYLength", service, rules, path)
|
|
4878
4878
|
self.CylinderX1 = self._CylinderX1(self, "CylinderX1", service, rules, path)
|
|
4879
4879
|
self.BoxZLength = self._BoxZLength(self, "BoxZLength", service, rules, path)
|
|
4880
4880
|
self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
|
|
@@ -4883,8 +4883,8 @@ class Root(PyMenu):
|
|
|
4883
4883
|
self.CylinderZ1 = self._CylinderZ1(self, "CylinderZ1", service, rules, path)
|
|
4884
4884
|
self.CylinderRadius1 = self._CylinderRadius1(self, "CylinderRadius1", service, rules, path)
|
|
4885
4885
|
self.BoxCenterX = self._BoxCenterX(self, "BoxCenterX", service, rules, path)
|
|
4886
|
-
self.CylinderRadius2 = self._CylinderRadius2(self, "CylinderRadius2", service, rules, path)
|
|
4887
4886
|
self.BoxCenterZ = self._BoxCenterZ(self, "BoxCenterZ", service, rules, path)
|
|
4887
|
+
self.CylinderRadius2 = self._CylinderRadius2(self, "CylinderRadius2", service, rules, path)
|
|
4888
4888
|
self.CylinderY2 = self._CylinderY2(self, "CylinderY2", service, rules, path)
|
|
4889
4889
|
|
|
4890
4890
|
class _CylinderZ2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4892,14 +4892,14 @@ class Root(PyMenu):
|
|
|
4892
4892
|
Argument CylinderZ2.
|
|
4893
4893
|
"""
|
|
4894
4894
|
|
|
4895
|
-
class
|
|
4895
|
+
class _CylinderX2(PyNumericalCommandArgumentsSubItem):
|
|
4896
4896
|
"""
|
|
4897
|
-
Argument
|
|
4897
|
+
Argument CylinderX2.
|
|
4898
4898
|
"""
|
|
4899
4899
|
|
|
4900
|
-
class
|
|
4900
|
+
class _BoxYLength(PyNumericalCommandArgumentsSubItem):
|
|
4901
4901
|
"""
|
|
4902
|
-
Argument
|
|
4902
|
+
Argument BoxYLength.
|
|
4903
4903
|
"""
|
|
4904
4904
|
|
|
4905
4905
|
class _CylinderX1(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4942,14 +4942,14 @@ class Root(PyMenu):
|
|
|
4942
4942
|
Argument BoxCenterX.
|
|
4943
4943
|
"""
|
|
4944
4944
|
|
|
4945
|
-
class
|
|
4945
|
+
class _BoxCenterZ(PyNumericalCommandArgumentsSubItem):
|
|
4946
4946
|
"""
|
|
4947
|
-
Argument
|
|
4947
|
+
Argument BoxCenterZ.
|
|
4948
4948
|
"""
|
|
4949
4949
|
|
|
4950
|
-
class
|
|
4950
|
+
class _CylinderRadius2(PyNumericalCommandArgumentsSubItem):
|
|
4951
4951
|
"""
|
|
4952
|
-
Argument
|
|
4952
|
+
Argument CylinderRadius2.
|
|
4953
4953
|
"""
|
|
4954
4954
|
|
|
4955
4955
|
class _CylinderY2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5186,17 +5186,17 @@ class Root(PyMenu):
|
|
|
5186
5186
|
self.Y = self._Y(self, "Y", service, rules, path)
|
|
5187
5187
|
self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
|
|
5188
5188
|
self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
|
|
5189
|
-
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
5190
|
-
self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
|
|
5191
5189
|
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
5190
|
+
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
5191
|
+
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
|
|
5192
5192
|
self.FlowDirection = self._FlowDirection(self, "FlowDirection", service, rules, path)
|
|
5193
5193
|
self.MptMethodType = self._MptMethodType(self, "MptMethodType", service, rules, path)
|
|
5194
5194
|
self.EdgeSelectionList = self._EdgeSelectionList(self, "EdgeSelectionList", service, rules, path)
|
|
5195
|
-
self.
|
|
5195
|
+
self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
|
|
5196
5196
|
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
5197
5197
|
self.X = self._X(self, "X", service, rules, path)
|
|
5198
|
-
self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
|
|
5199
5198
|
self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
|
|
5199
|
+
self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
|
|
5200
5200
|
self.FirstHeight = self._FirstHeight(self, "FirstHeight", service, rules, path)
|
|
5201
5201
|
self.BoundaryLayerHeight = self._BoundaryLayerHeight(self, "BoundaryLayerHeight", service, rules, path)
|
|
5202
5202
|
self.CrossWakeGrowthFactor = self._CrossWakeGrowthFactor(self, "CrossWakeGrowthFactor", service, rules, path)
|
|
@@ -5231,19 +5231,19 @@ class Root(PyMenu):
|
|
|
5231
5231
|
Argument BoundaryLayerLevels.
|
|
5232
5232
|
"""
|
|
5233
5233
|
|
|
5234
|
-
class
|
|
5234
|
+
class _Rate(PyNumericalCommandArgumentsSubItem):
|
|
5235
5235
|
"""
|
|
5236
|
-
Argument
|
|
5236
|
+
Argument Rate.
|
|
5237
5237
|
"""
|
|
5238
5238
|
|
|
5239
|
-
class
|
|
5239
|
+
class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
|
|
5240
5240
|
"""
|
|
5241
|
-
Argument
|
|
5241
|
+
Argument NumberOfLayers.
|
|
5242
5242
|
"""
|
|
5243
5243
|
|
|
5244
|
-
class
|
|
5244
|
+
class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
|
|
5245
5245
|
"""
|
|
5246
|
-
Argument
|
|
5246
|
+
Argument WakeGrowthFactor.
|
|
5247
5247
|
"""
|
|
5248
5248
|
|
|
5249
5249
|
class _FlowDirection(PyTextualCommandArgumentsSubItem):
|
|
@@ -5261,9 +5261,9 @@ class Root(PyMenu):
|
|
|
5261
5261
|
Choose a single edge zone from the list below for your edge-based collar mesh. Use the Filter Text field to provide text and/or regular expressions in filtering the list. The matching list item(s) are automatically displayed in the list. Use ^, |, and & in your expression to indicate boolean operations for NOT, OR, and AND, respectively. More...
|
|
5262
5262
|
"""
|
|
5263
5263
|
|
|
5264
|
-
class
|
|
5264
|
+
class _AspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
5265
5265
|
"""
|
|
5266
|
-
Argument
|
|
5266
|
+
Argument AspectRatio.
|
|
5267
5267
|
"""
|
|
5268
5268
|
|
|
5269
5269
|
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5276,14 +5276,14 @@ class Root(PyMenu):
|
|
|
5276
5276
|
Specify the x-coordinate of the offset collar mesh.
|
|
5277
5277
|
"""
|
|
5278
5278
|
|
|
5279
|
-
class
|
|
5279
|
+
class _OffsetMethodType(PyTextualCommandArgumentsSubItem):
|
|
5280
5280
|
"""
|
|
5281
|
-
Argument
|
|
5281
|
+
Argument OffsetMethodType.
|
|
5282
5282
|
"""
|
|
5283
5283
|
|
|
5284
|
-
class
|
|
5284
|
+
class _FlipDirection(PyParameterCommandArgumentsSubItem):
|
|
5285
5285
|
"""
|
|
5286
|
-
Argument
|
|
5286
|
+
Argument FlipDirection.
|
|
5287
5287
|
"""
|
|
5288
5288
|
|
|
5289
5289
|
class _FirstHeight(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5313,8 +5313,8 @@ class Root(PyMenu):
|
|
|
5313
5313
|
|
|
5314
5314
|
def __init__(self, parent, attr, service, rules, path):
|
|
5315
5315
|
super().__init__(parent, attr, service, rules, path)
|
|
5316
|
-
self.HeightNode = self._HeightNode(self, "HeightNode", service, rules, path)
|
|
5317
5316
|
self.X_Offset = self._X_Offset(self, "X-Offset", service, rules, path)
|
|
5317
|
+
self.HeightNode = self._HeightNode(self, "HeightNode", service, rules, path)
|
|
5318
5318
|
self.HeightBackInc = self._HeightBackInc(self, "HeightBackInc", service, rules, path)
|
|
5319
5319
|
self.X1 = self._X1(self, "X1", service, rules, path)
|
|
5320
5320
|
self.Y1 = self._Y1(self, "Y1", service, rules, path)
|
|
@@ -5325,20 +5325,20 @@ class Root(PyMenu):
|
|
|
5325
5325
|
self.Radius2 = self._Radius2(self, "Radius2", service, rules, path)
|
|
5326
5326
|
self.Y2 = self._Y2(self, "Y2", service, rules, path)
|
|
5327
5327
|
self.Node3 = self._Node3(self, "Node3", service, rules, path)
|
|
5328
|
-
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
5329
5328
|
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
5329
|
+
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
5330
5330
|
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
5331
5331
|
self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
|
|
5332
5332
|
self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
|
|
5333
5333
|
|
|
5334
|
-
class
|
|
5334
|
+
class _X_Offset(PyNumericalCommandArgumentsSubItem):
|
|
5335
5335
|
"""
|
|
5336
|
-
Argument
|
|
5336
|
+
Argument X-Offset.
|
|
5337
5337
|
"""
|
|
5338
5338
|
|
|
5339
|
-
class
|
|
5339
|
+
class _HeightNode(PyTextualCommandArgumentsSubItem):
|
|
5340
5340
|
"""
|
|
5341
|
-
Argument
|
|
5341
|
+
Argument HeightNode.
|
|
5342
5342
|
"""
|
|
5343
5343
|
|
|
5344
5344
|
class _HeightBackInc(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5391,14 +5391,14 @@ class Root(PyMenu):
|
|
|
5391
5391
|
Argument Node3.
|
|
5392
5392
|
"""
|
|
5393
5393
|
|
|
5394
|
-
class
|
|
5394
|
+
class _X2(PyNumericalCommandArgumentsSubItem):
|
|
5395
5395
|
"""
|
|
5396
|
-
Argument
|
|
5396
|
+
Argument X2.
|
|
5397
5397
|
"""
|
|
5398
5398
|
|
|
5399
|
-
class
|
|
5399
|
+
class _Y_Offset(PyNumericalCommandArgumentsSubItem):
|
|
5400
5400
|
"""
|
|
5401
|
-
Argument
|
|
5401
|
+
Argument Y-Offset.
|
|
5402
5402
|
"""
|
|
5403
5403
|
|
|
5404
5404
|
class _Node2(PyTextualCommandArgumentsSubItem):
|
|
@@ -5460,8 +5460,8 @@ class Root(PyMenu):
|
|
|
5460
5460
|
def __init__(self, parent, attr, service, rules, path):
|
|
5461
5461
|
super().__init__(parent, attr, service, rules, path)
|
|
5462
5462
|
self.CylinderZ2 = self._CylinderZ2(self, "CylinderZ2", service, rules, path)
|
|
5463
|
-
self.CylinderX2 = self._CylinderX2(self, "CylinderX2", service, rules, path)
|
|
5464
5463
|
self.BoxYLength = self._BoxYLength(self, "BoxYLength", service, rules, path)
|
|
5464
|
+
self.CylinderX2 = self._CylinderX2(self, "CylinderX2", service, rules, path)
|
|
5465
5465
|
self.CylinderX1 = self._CylinderX1(self, "CylinderX1", service, rules, path)
|
|
5466
5466
|
self.BoxXLength = self._BoxXLength(self, "BoxXLength", service, rules, path)
|
|
5467
5467
|
self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
|
|
@@ -5479,14 +5479,14 @@ class Root(PyMenu):
|
|
|
5479
5479
|
Argument CylinderZ2.
|
|
5480
5480
|
"""
|
|
5481
5481
|
|
|
5482
|
-
class
|
|
5482
|
+
class _BoxYLength(PyNumericalCommandArgumentsSubItem):
|
|
5483
5483
|
"""
|
|
5484
|
-
Argument
|
|
5484
|
+
Argument BoxYLength.
|
|
5485
5485
|
"""
|
|
5486
5486
|
|
|
5487
|
-
class
|
|
5487
|
+
class _CylinderX2(PyNumericalCommandArgumentsSubItem):
|
|
5488
5488
|
"""
|
|
5489
|
-
Argument
|
|
5489
|
+
Argument CylinderX2.
|
|
5490
5490
|
"""
|
|
5491
5491
|
|
|
5492
5492
|
class _CylinderX1(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5774,17 +5774,17 @@ class Root(PyMenu):
|
|
|
5774
5774
|
self.Y = self._Y(self, "Y", service, rules, path)
|
|
5775
5775
|
self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
|
|
5776
5776
|
self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
|
|
5777
|
-
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
5778
|
-
self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
|
|
5779
5777
|
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
|
|
5778
|
+
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
5779
|
+
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
5780
5780
|
self.FlowDirection = self._FlowDirection(self, "FlowDirection", service, rules, path)
|
|
5781
5781
|
self.MptMethodType = self._MptMethodType(self, "MptMethodType", service, rules, path)
|
|
5782
5782
|
self.EdgeSelectionList = self._EdgeSelectionList(self, "EdgeSelectionList", service, rules, path)
|
|
5783
|
-
self.
|
|
5783
|
+
self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
|
|
5784
5784
|
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
5785
5785
|
self.X = self._X(self, "X", service, rules, path)
|
|
5786
|
-
self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
|
|
5787
5786
|
self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
|
|
5787
|
+
self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
|
|
5788
5788
|
self.FirstHeight = self._FirstHeight(self, "FirstHeight", service, rules, path)
|
|
5789
5789
|
self.BoundaryLayerHeight = self._BoundaryLayerHeight(self, "BoundaryLayerHeight", service, rules, path)
|
|
5790
5790
|
self.CrossWakeGrowthFactor = self._CrossWakeGrowthFactor(self, "CrossWakeGrowthFactor", service, rules, path)
|
|
@@ -5819,19 +5819,19 @@ class Root(PyMenu):
|
|
|
5819
5819
|
Specify the ratio of the prism base length to the prism layer height.
|
|
5820
5820
|
"""
|
|
5821
5821
|
|
|
5822
|
-
class
|
|
5822
|
+
class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
|
|
5823
5823
|
"""
|
|
5824
|
-
|
|
5824
|
+
Argument WakeGrowthFactor.
|
|
5825
5825
|
"""
|
|
5826
5826
|
|
|
5827
|
-
class
|
|
5827
|
+
class _Rate(PyNumericalCommandArgumentsSubItem):
|
|
5828
5828
|
"""
|
|
5829
|
-
|
|
5829
|
+
Specify the rate of growth of the boundary layer.
|
|
5830
5830
|
"""
|
|
5831
5831
|
|
|
5832
|
-
class
|
|
5832
|
+
class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
|
|
5833
5833
|
"""
|
|
5834
|
-
|
|
5834
|
+
Select the number of boundary layers to be generated.
|
|
5835
5835
|
"""
|
|
5836
5836
|
|
|
5837
5837
|
class _FlowDirection(PyTextualCommandArgumentsSubItem):
|
|
@@ -5849,9 +5849,9 @@ class Root(PyMenu):
|
|
|
5849
5849
|
Argument EdgeSelectionList.
|
|
5850
5850
|
"""
|
|
5851
5851
|
|
|
5852
|
-
class
|
|
5852
|
+
class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
|
|
5853
5853
|
"""
|
|
5854
|
-
|
|
5854
|
+
Argument BoundaryLayerLevels.
|
|
5855
5855
|
"""
|
|
5856
5856
|
|
|
5857
5857
|
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5864,14 +5864,14 @@ class Root(PyMenu):
|
|
|
5864
5864
|
Argument X.
|
|
5865
5865
|
"""
|
|
5866
5866
|
|
|
5867
|
-
class
|
|
5867
|
+
class _OffsetMethodType(PyTextualCommandArgumentsSubItem):
|
|
5868
5868
|
"""
|
|
5869
|
-
|
|
5869
|
+
Choose the method that will be used to create the boundary layer, or prism, controls.
|
|
5870
5870
|
"""
|
|
5871
5871
|
|
|
5872
|
-
class
|
|
5872
|
+
class _FlipDirection(PyParameterCommandArgumentsSubItem):
|
|
5873
5873
|
"""
|
|
5874
|
-
|
|
5874
|
+
Argument FlipDirection.
|
|
5875
5875
|
"""
|
|
5876
5876
|
|
|
5877
5877
|
class _FirstHeight(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5913,9 +5913,9 @@ class Root(PyMenu):
|
|
|
5913
5913
|
self.Radius2 = self._Radius2(self, "Radius2", service, rules, path)
|
|
5914
5914
|
self.Y2 = self._Y2(self, "Y2", service, rules, path)
|
|
5915
5915
|
self.Node3 = self._Node3(self, "Node3", service, rules, path)
|
|
5916
|
-
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
5917
|
-
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
5918
5916
|
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
5917
|
+
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
5918
|
+
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
5919
5919
|
self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
|
|
5920
5920
|
self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
|
|
5921
5921
|
|
|
@@ -5979,9 +5979,9 @@ class Root(PyMenu):
|
|
|
5979
5979
|
Argument Node3.
|
|
5980
5980
|
"""
|
|
5981
5981
|
|
|
5982
|
-
class
|
|
5982
|
+
class _Node2(PyTextualCommandArgumentsSubItem):
|
|
5983
5983
|
"""
|
|
5984
|
-
Argument
|
|
5984
|
+
Argument Node2.
|
|
5985
5985
|
"""
|
|
5986
5986
|
|
|
5987
5987
|
class _X2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5989,9 +5989,9 @@ class Root(PyMenu):
|
|
|
5989
5989
|
Argument X2.
|
|
5990
5990
|
"""
|
|
5991
5991
|
|
|
5992
|
-
class
|
|
5992
|
+
class _Y_Offset(PyNumericalCommandArgumentsSubItem):
|
|
5993
5993
|
"""
|
|
5994
|
-
Argument
|
|
5994
|
+
Argument Y-Offset.
|
|
5995
5995
|
"""
|
|
5996
5996
|
|
|
5997
5997
|
class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
|
|
@@ -6058,8 +6058,8 @@ class Root(PyMenu):
|
|
|
6058
6058
|
self.CylinderZ1 = self._CylinderZ1(self, "CylinderZ1", service, rules, path)
|
|
6059
6059
|
self.CylinderRadius1 = self._CylinderRadius1(self, "CylinderRadius1", service, rules, path)
|
|
6060
6060
|
self.BoxCenterX = self._BoxCenterX(self, "BoxCenterX", service, rules, path)
|
|
6061
|
-
self.CylinderRadius2 = self._CylinderRadius2(self, "CylinderRadius2", service, rules, path)
|
|
6062
6061
|
self.BoxCenterZ = self._BoxCenterZ(self, "BoxCenterZ", service, rules, path)
|
|
6062
|
+
self.CylinderRadius2 = self._CylinderRadius2(self, "CylinderRadius2", service, rules, path)
|
|
6063
6063
|
self.CylinderY2 = self._CylinderY2(self, "CylinderY2", service, rules, path)
|
|
6064
6064
|
|
|
6065
6065
|
class _CylinderZ2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -6117,14 +6117,14 @@ class Root(PyMenu):
|
|
|
6117
6117
|
Argument BoxCenterX.
|
|
6118
6118
|
"""
|
|
6119
6119
|
|
|
6120
|
-
class
|
|
6120
|
+
class _BoxCenterZ(PyNumericalCommandArgumentsSubItem):
|
|
6121
6121
|
"""
|
|
6122
|
-
Argument
|
|
6122
|
+
Argument BoxCenterZ.
|
|
6123
6123
|
"""
|
|
6124
6124
|
|
|
6125
|
-
class
|
|
6125
|
+
class _CylinderRadius2(PyNumericalCommandArgumentsSubItem):
|
|
6126
6126
|
"""
|
|
6127
|
-
Argument
|
|
6127
|
+
Argument CylinderRadius2.
|
|
6128
6128
|
"""
|
|
6129
6129
|
|
|
6130
6130
|
class _CylinderY2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -6982,9 +6982,9 @@ class Root(PyMenu):
|
|
|
6982
6982
|
self.Y = self._Y(self, "Y", service, rules, path)
|
|
6983
6983
|
self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
|
|
6984
6984
|
self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
|
|
6985
|
-
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
6986
6985
|
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
|
|
6987
6986
|
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
6987
|
+
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
6988
6988
|
self.FlowDirection = self._FlowDirection(self, "FlowDirection", service, rules, path)
|
|
6989
6989
|
self.MptMethodType = self._MptMethodType(self, "MptMethodType", service, rules, path)
|
|
6990
6990
|
self.EdgeSelectionList = self._EdgeSelectionList(self, "EdgeSelectionList", service, rules, path)
|
|
@@ -7027,11 +7027,6 @@ class Root(PyMenu):
|
|
|
7027
7027
|
Specify the number of boundary layers that are to be captured in the refinement region.
|
|
7028
7028
|
"""
|
|
7029
7029
|
|
|
7030
|
-
class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
|
|
7031
|
-
"""
|
|
7032
|
-
Argument NumberOfLayers.
|
|
7033
|
-
"""
|
|
7034
|
-
|
|
7035
7030
|
class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
|
|
7036
7031
|
"""
|
|
7037
7032
|
Specify the factor by which the refinement region expands in the wake of the flow direction.
|
|
@@ -7042,6 +7037,11 @@ class Root(PyMenu):
|
|
|
7042
7037
|
Argument Rate.
|
|
7043
7038
|
"""
|
|
7044
7039
|
|
|
7040
|
+
class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
|
|
7041
|
+
"""
|
|
7042
|
+
Argument NumberOfLayers.
|
|
7043
|
+
"""
|
|
7044
|
+
|
|
7045
7045
|
class _FlowDirection(PyTextualCommandArgumentsSubItem):
|
|
7046
7046
|
"""
|
|
7047
7047
|
Specify the direction that the flow through this refinement region.
|
|
@@ -7109,15 +7109,15 @@ class Root(PyMenu):
|
|
|
7109
7109
|
|
|
7110
7110
|
def __init__(self, parent, attr, service, rules, path):
|
|
7111
7111
|
super().__init__(parent, attr, service, rules, path)
|
|
7112
|
-
self.X_Offset = self._X_Offset(self, "X-Offset", service, rules, path)
|
|
7113
7112
|
self.HeightNode = self._HeightNode(self, "HeightNode", service, rules, path)
|
|
7113
|
+
self.X_Offset = self._X_Offset(self, "X-Offset", service, rules, path)
|
|
7114
7114
|
self.HeightBackInc = self._HeightBackInc(self, "HeightBackInc", service, rules, path)
|
|
7115
7115
|
self.X1 = self._X1(self, "X1", service, rules, path)
|
|
7116
7116
|
self.Y1 = self._Y1(self, "Y1", service, rules, path)
|
|
7117
7117
|
self.Z_Offset = self._Z_Offset(self, "Z-Offset", service, rules, path)
|
|
7118
|
-
self.Z1 = self._Z1(self, "Z1", service, rules, path)
|
|
7119
|
-
self.Node1 = self._Node1(self, "Node1", service, rules, path)
|
|
7120
7118
|
self.Z2 = self._Z2(self, "Z2", service, rules, path)
|
|
7119
|
+
self.Node1 = self._Node1(self, "Node1", service, rules, path)
|
|
7120
|
+
self.Z1 = self._Z1(self, "Z1", service, rules, path)
|
|
7121
7121
|
self.Radius2 = self._Radius2(self, "Radius2", service, rules, path)
|
|
7122
7122
|
self.Y2 = self._Y2(self, "Y2", service, rules, path)
|
|
7123
7123
|
self.Node3 = self._Node3(self, "Node3", service, rules, path)
|
|
@@ -7127,14 +7127,14 @@ class Root(PyMenu):
|
|
|
7127
7127
|
self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
|
|
7128
7128
|
self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
|
|
7129
7129
|
|
|
7130
|
-
class
|
|
7130
|
+
class _HeightNode(PyTextualCommandArgumentsSubItem):
|
|
7131
7131
|
"""
|
|
7132
|
-
|
|
7132
|
+
Argument HeightNode.
|
|
7133
7133
|
"""
|
|
7134
7134
|
|
|
7135
|
-
class
|
|
7135
|
+
class _X_Offset(PyNumericalCommandArgumentsSubItem):
|
|
7136
7136
|
"""
|
|
7137
|
-
|
|
7137
|
+
Specify the X-coordinate for the offset of the initial position of the cylinder.
|
|
7138
7138
|
"""
|
|
7139
7139
|
|
|
7140
7140
|
class _HeightBackInc(PyNumericalCommandArgumentsSubItem):
|
|
@@ -7157,9 +7157,9 @@ class Root(PyMenu):
|
|
|
7157
7157
|
Specify the Z-coordinate for the offset of the initial position of the cylinder.
|
|
7158
7158
|
"""
|
|
7159
7159
|
|
|
7160
|
-
class
|
|
7160
|
+
class _Z2(PyNumericalCommandArgumentsSubItem):
|
|
7161
7161
|
"""
|
|
7162
|
-
Specify the Z-coordinate of the
|
|
7162
|
+
Specify the Z-coordinate of the second position of the cylinder.
|
|
7163
7163
|
"""
|
|
7164
7164
|
|
|
7165
7165
|
class _Node1(PyTextualCommandArgumentsSubItem):
|
|
@@ -7167,9 +7167,9 @@ class Root(PyMenu):
|
|
|
7167
7167
|
Argument Node1.
|
|
7168
7168
|
"""
|
|
7169
7169
|
|
|
7170
|
-
class
|
|
7170
|
+
class _Z1(PyNumericalCommandArgumentsSubItem):
|
|
7171
7171
|
"""
|
|
7172
|
-
Specify the Z-coordinate of the
|
|
7172
|
+
Specify the Z-coordinate of the first position of the cylinder.
|
|
7173
7173
|
"""
|
|
7174
7174
|
|
|
7175
7175
|
class _Radius2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -7256,8 +7256,8 @@ class Root(PyMenu):
|
|
|
7256
7256
|
def __init__(self, parent, attr, service, rules, path):
|
|
7257
7257
|
super().__init__(parent, attr, service, rules, path)
|
|
7258
7258
|
self.CylinderZ2 = self._CylinderZ2(self, "CylinderZ2", service, rules, path)
|
|
7259
|
-
self.CylinderX2 = self._CylinderX2(self, "CylinderX2", service, rules, path)
|
|
7260
7259
|
self.BoxYLength = self._BoxYLength(self, "BoxYLength", service, rules, path)
|
|
7260
|
+
self.CylinderX2 = self._CylinderX2(self, "CylinderX2", service, rules, path)
|
|
7261
7261
|
self.CylinderX1 = self._CylinderX1(self, "CylinderX1", service, rules, path)
|
|
7262
7262
|
self.BoxZLength = self._BoxZLength(self, "BoxZLength", service, rules, path)
|
|
7263
7263
|
self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
|
|
@@ -7275,14 +7275,14 @@ class Root(PyMenu):
|
|
|
7275
7275
|
Specify the Z-coordinate of the second position of the cylinder.
|
|
7276
7276
|
"""
|
|
7277
7277
|
|
|
7278
|
-
class
|
|
7278
|
+
class _BoxYLength(PyNumericalCommandArgumentsSubItem):
|
|
7279
7279
|
"""
|
|
7280
|
-
|
|
7280
|
+
Argument BoxYLength.
|
|
7281
7281
|
"""
|
|
7282
7282
|
|
|
7283
|
-
class
|
|
7283
|
+
class _CylinderX2(PyNumericalCommandArgumentsSubItem):
|
|
7284
7284
|
"""
|
|
7285
|
-
|
|
7285
|
+
Specify the X-coordinate of the second position of the cylinder.
|
|
7286
7286
|
"""
|
|
7287
7287
|
|
|
7288
7288
|
class _CylinderX1(PyNumericalCommandArgumentsSubItem):
|
|
@@ -7541,8 +7541,8 @@ class Root(PyMenu):
|
|
|
7541
7541
|
self.SelectionType = self._SelectionType(self, "SelectionType", service, rules, path)
|
|
7542
7542
|
self.ZoneSelectionList = self._ZoneSelectionList(self, "ZoneSelectionList", service, rules, path)
|
|
7543
7543
|
self.Thickness = self._Thickness(self, "Thickness", service, rules, path)
|
|
7544
|
-
self.MeshSize = self._MeshSize(self, "MeshSize", service, rules, path)
|
|
7545
7544
|
self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
|
|
7545
|
+
self.MeshSize = self._MeshSize(self, "MeshSize", service, rules, path)
|
|
7546
7546
|
self.BufferSize = self._BufferSize(self, "BufferSize", service, rules, path)
|
|
7547
7547
|
self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
|
|
7548
7548
|
self.NonRectangularBufferSize = self._NonRectangularBufferSize(self, "NonRectangularBufferSize", service, rules, path)
|
|
@@ -7573,14 +7573,14 @@ class Root(PyMenu):
|
|
|
7573
7573
|
Specify the thickness (or the total height) of the porous region.
|
|
7574
7574
|
"""
|
|
7575
7575
|
|
|
7576
|
-
class
|
|
7576
|
+
class _FeatureAngle(PyNumericalCommandArgumentsSubItem):
|
|
7577
7577
|
"""
|
|
7578
|
-
Specify the
|
|
7578
|
+
Specify the angle at which features will be extracted for the porous region.
|
|
7579
7579
|
"""
|
|
7580
7580
|
|
|
7581
|
-
class
|
|
7581
|
+
class _MeshSize(PyNumericalCommandArgumentsSubItem):
|
|
7582
7582
|
"""
|
|
7583
|
-
Specify the
|
|
7583
|
+
Specify the cell size for the porous region mesh.
|
|
7584
7584
|
"""
|
|
7585
7585
|
|
|
7586
7586
|
class _BufferSize(PyNumericalCommandArgumentsSubItem):
|
|
@@ -7911,9 +7911,9 @@ class Root(PyMenu):
|
|
|
7911
7911
|
def __init__(self, parent, attr, service, rules, path):
|
|
7912
7912
|
super().__init__(parent, attr, service, rules, path)
|
|
7913
7913
|
self.PorousRegions = self._PorousRegions(self, "PorousRegions", service, rules, path)
|
|
7914
|
-
self.CloseLeakages = self._CloseLeakages(self, "CloseLeakages", service, rules, path)
|
|
7915
|
-
self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
|
|
7916
7914
|
self.ZeroThickness = self._ZeroThickness(self, "ZeroThickness", service, rules, path)
|
|
7915
|
+
self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
|
|
7916
|
+
self.CloseLeakages = self._CloseLeakages(self, "CloseLeakages", service, rules, path)
|
|
7917
7917
|
self.CloseLeakges = self._CloseLeakges(self, "CloseLeakges", service, rules, path)
|
|
7918
7918
|
self.ExtractEdgeFeatures = self._ExtractEdgeFeatures(self, "ExtractEdgeFeatures", service, rules, path)
|
|
7919
7919
|
self.MovingObjects = self._MovingObjects(self, "MovingObjects", service, rules, path)
|
|
@@ -7926,9 +7926,9 @@ class Root(PyMenu):
|
|
|
7926
7926
|
Specify whether or not you will have any porous regions in your geometry. If so, then a Create Porous Regions task will be added to the workflow. A simple primitive rectangle will be placed over complex and detailed geometry of a porous region (for example, fins and tubes of a heat exchanger). With buffer layer:
|
|
7927
7927
|
"""
|
|
7928
7928
|
|
|
7929
|
-
class
|
|
7929
|
+
class _ZeroThickness(PyTextualCommandArgumentsSubItem):
|
|
7930
7930
|
"""
|
|
7931
|
-
|
|
7931
|
+
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.
|
|
7932
7932
|
"""
|
|
7933
7933
|
|
|
7934
7934
|
class _AdvancedOptions(PyParameterCommandArgumentsSubItem):
|
|
@@ -7936,9 +7936,9 @@ class Root(PyMenu):
|
|
|
7936
7936
|
Display advanced options that you may want to apply to the workflow.
|
|
7937
7937
|
"""
|
|
7938
7938
|
|
|
7939
|
-
class
|
|
7939
|
+
class _CloseLeakages(PyTextualCommandArgumentsSubItem):
|
|
7940
7940
|
"""
|
|
7941
|
-
|
|
7941
|
+
Argument CloseLeakages.
|
|
7942
7942
|
"""
|
|
7943
7943
|
|
|
7944
7944
|
class _CloseLeakges(PyTextualCommandArgumentsSubItem):
|
|
@@ -8287,16 +8287,16 @@ class Root(PyMenu):
|
|
|
8287
8287
|
|
|
8288
8288
|
def __init__(self, parent, attr, service, rules, path):
|
|
8289
8289
|
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
8290
|
self.BiasMethod = self._BiasMethod(self, "BiasMethod", service, rules, path)
|
|
8291
|
+
self.MidSpanLength = self._MidSpanLength(self, "MidSpanLength", service, rules, path)
|
|
8292
|
+
self.MaxLayerHeight = self._MaxLayerHeight(self, "MaxLayerHeight", service, rules, path)
|
|
8293
8293
|
self.BiasMethodControl = self._BiasMethodControl(self, "BiasMethodControl", service, rules, path)
|
|
8294
8294
|
self.MergeCellZones = self._MergeCellZones(self, "MergeCellZones", service, rules, path)
|
|
8295
8295
|
self.ShowVMExtrudePreferences = self._ShowVMExtrudePreferences(self, "ShowVMExtrudePreferences", service, rules, path)
|
|
8296
8296
|
|
|
8297
|
-
class
|
|
8297
|
+
class _BiasMethod(PyTextualCommandArgumentsSubItem):
|
|
8298
8298
|
"""
|
|
8299
|
-
|
|
8299
|
+
Select from a choice of patterns that you want to apply to your volume mesh extrusion.
|
|
8300
8300
|
"""
|
|
8301
8301
|
|
|
8302
8302
|
class _MidSpanLength(PyNumericalCommandArgumentsSubItem):
|
|
@@ -8304,9 +8304,9 @@ class Root(PyMenu):
|
|
|
8304
8304
|
Argument MidSpanLength.
|
|
8305
8305
|
"""
|
|
8306
8306
|
|
|
8307
|
-
class
|
|
8307
|
+
class _MaxLayerHeight(PyNumericalCommandArgumentsSubItem):
|
|
8308
8308
|
"""
|
|
8309
|
-
|
|
8309
|
+
Argument MaxLayerHeight.
|
|
8310
8310
|
"""
|
|
8311
8311
|
|
|
8312
8312
|
class _BiasMethodControl(PyTextualCommandArgumentsSubItem):
|
|
@@ -8394,9 +8394,9 @@ class Root(PyMenu):
|
|
|
8394
8394
|
self.RemeshGrowthRate = self._RemeshGrowthRate(self, "RemeshGrowthRate", service, rules, path)
|
|
8395
8395
|
self.LocalRemesh = self._LocalRemesh(self, "LocalRemesh", service, rules, path)
|
|
8396
8396
|
self.GapFactor = self._GapFactor(self, "GapFactor", service, rules, path)
|
|
8397
|
+
self.RefineStretchedQuads = self._RefineStretchedQuads(self, "RefineStretchedQuads", service, rules, path)
|
|
8397
8398
|
self.ShowPrism2DPreferences = self._ShowPrism2DPreferences(self, "ShowPrism2DPreferences", service, rules, path)
|
|
8398
8399
|
self.MaxFaceSkew = self._MaxFaceSkew(self, "MaxFaceSkew", service, rules, path)
|
|
8399
|
-
self.RefineStretchedQuads = self._RefineStretchedQuads(self, "RefineStretchedQuads", service, rules, path)
|
|
8400
8400
|
self.nOrthogonalLayers = self._nOrthogonalLayers(self, "nOrthogonalLayers", service, rules, path)
|
|
8401
8401
|
|
|
8402
8402
|
class _SplitQuads(PyTextualCommandArgumentsSubItem):
|
|
@@ -8429,6 +8429,11 @@ class Root(PyMenu):
|
|
|
8429
8429
|
Argument GapFactor.
|
|
8430
8430
|
"""
|
|
8431
8431
|
|
|
8432
|
+
class _RefineStretchedQuads(PyTextualCommandArgumentsSubItem):
|
|
8433
|
+
"""
|
|
8434
|
+
Argument RefineStretchedQuads.
|
|
8435
|
+
"""
|
|
8436
|
+
|
|
8432
8437
|
class _ShowPrism2DPreferences(PyParameterCommandArgumentsSubItem):
|
|
8433
8438
|
"""
|
|
8434
8439
|
Argument ShowPrism2DPreferences.
|
|
@@ -8439,11 +8444,6 @@ class Root(PyMenu):
|
|
|
8439
8444
|
Argument MaxFaceSkew.
|
|
8440
8445
|
"""
|
|
8441
8446
|
|
|
8442
|
-
class _RefineStretchedQuads(PyTextualCommandArgumentsSubItem):
|
|
8443
|
-
"""
|
|
8444
|
-
Argument RefineStretchedQuads.
|
|
8445
|
-
"""
|
|
8446
|
-
|
|
8447
8447
|
class _nOrthogonalLayers(PyNumericalCommandArgumentsSubItem):
|
|
8448
8448
|
"""
|
|
8449
8449
|
Argument nOrthogonalLayers.
|
|
@@ -8456,18 +8456,18 @@ class Root(PyMenu):
|
|
|
8456
8456
|
|
|
8457
8457
|
def __init__(self, parent, attr, service, rules, path):
|
|
8458
8458
|
super().__init__(parent, attr, service, rules, path)
|
|
8459
|
-
self.MergeEdgeZonesBasedOnLabels = self._MergeEdgeZonesBasedOnLabels(self, "MergeEdgeZonesBasedOnLabels", service, rules, path)
|
|
8460
8459
|
self.MergeFaceZonesBasedOnLabels = self._MergeFaceZonesBasedOnLabels(self, "MergeFaceZonesBasedOnLabels", service, rules, path)
|
|
8460
|
+
self.MergeEdgeZonesBasedOnLabels = self._MergeEdgeZonesBasedOnLabels(self, "MergeEdgeZonesBasedOnLabels", service, rules, path)
|
|
8461
8461
|
self.ShowAdvancedOptions = self._ShowAdvancedOptions(self, "ShowAdvancedOptions", service, rules, path)
|
|
8462
8462
|
|
|
8463
|
-
class
|
|
8463
|
+
class _MergeFaceZonesBasedOnLabels(PyTextualCommandArgumentsSubItem):
|
|
8464
8464
|
"""
|
|
8465
|
-
Argument
|
|
8465
|
+
Argument MergeFaceZonesBasedOnLabels.
|
|
8466
8466
|
"""
|
|
8467
8467
|
|
|
8468
|
-
class
|
|
8468
|
+
class _MergeEdgeZonesBasedOnLabels(PyTextualCommandArgumentsSubItem):
|
|
8469
8469
|
"""
|
|
8470
|
-
Argument
|
|
8470
|
+
Argument MergeEdgeZonesBasedOnLabels.
|
|
8471
8471
|
"""
|
|
8472
8472
|
|
|
8473
8473
|
class _ShowAdvancedOptions(PyParameterCommandArgumentsSubItem):
|
|
@@ -8780,8 +8780,8 @@ class Root(PyMenu):
|
|
|
8780
8780
|
self.SaveSizeFieldFile = self._SaveSizeFieldFile(self, "SaveSizeFieldFile", service, rules, path)
|
|
8781
8781
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
8782
8782
|
self.ScopeProximityTo = self._ScopeProximityTo(self, "ScopeProximityTo", service, rules, path)
|
|
8783
|
-
self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
|
|
8784
8783
|
self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
|
|
8784
|
+
self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
|
|
8785
8785
|
self.SaveSizeField = self._SaveSizeField(self, "SaveSizeField", service, rules, path)
|
|
8786
8786
|
self.UseSizeFiles = self._UseSizeFiles(self, "UseSizeFiles", service, rules, path)
|
|
8787
8787
|
self.AutoCreateScopedSizing = self._AutoCreateScopedSizing(self, "AutoCreateScopedSizing", service, rules, path)
|
|
@@ -8811,14 +8811,14 @@ class Root(PyMenu):
|
|
|
8811
8811
|
Argument ScopeProximityTo.
|
|
8812
8812
|
"""
|
|
8813
8813
|
|
|
8814
|
-
class
|
|
8814
|
+
class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
|
|
8815
8815
|
"""
|
|
8816
|
-
Argument
|
|
8816
|
+
Argument PreviewSizefield.
|
|
8817
8817
|
"""
|
|
8818
8818
|
|
|
8819
|
-
class
|
|
8819
|
+
class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
8820
8820
|
"""
|
|
8821
|
-
Argument
|
|
8821
|
+
Argument CurvatureNormalAngle.
|
|
8822
8822
|
"""
|
|
8823
8823
|
|
|
8824
8824
|
class _SaveSizeField(PyParameterCommandArgumentsSubItem):
|
|
@@ -9308,20 +9308,20 @@ class Root(PyMenu):
|
|
|
9308
9308
|
super().__init__(parent, attr, service, rules, path)
|
|
9309
9309
|
self.SMQualityCollapseLimit = self._SMQualityCollapseLimit(self, "SMQualityCollapseLimit", service, rules, path)
|
|
9310
9310
|
self.FoldFaceLimit = self._FoldFaceLimit(self, "FoldFaceLimit", service, rules, path)
|
|
9311
|
-
self.
|
|
9311
|
+
self.SMQualityImprove = self._SMQualityImprove(self, "SMQualityImprove", service, rules, path)
|
|
9312
9312
|
self.ShowSurfaceMeshPreferences = self._ShowSurfaceMeshPreferences(self, "ShowSurfaceMeshPreferences", service, rules, path)
|
|
9313
9313
|
self.AutoMerge = self._AutoMerge(self, "AutoMerge", service, rules, path)
|
|
9314
|
-
self.
|
|
9314
|
+
self.SMSeparation = self._SMSeparation(self, "SMSeparation", service, rules, path)
|
|
9315
9315
|
self.TVMAutoControlCreation = self._TVMAutoControlCreation(self, "TVMAutoControlCreation", service, rules, path)
|
|
9316
|
-
self.
|
|
9316
|
+
self.SMSeparationAngle = self._SMSeparationAngle(self, "SMSeparationAngle", service, rules, path)
|
|
9317
9317
|
self.SMRemoveStep = self._SMRemoveStep(self, "SMRemoveStep", service, rules, path)
|
|
9318
9318
|
self.SMStepWidth = self._SMStepWidth(self, "SMStepWidth", service, rules, path)
|
|
9319
|
-
self.VolumeMeshMaxSize = self._VolumeMeshMaxSize(self, "VolumeMeshMaxSize", service, rules, path)
|
|
9320
|
-
self.AutoAssignZoneTypes = self._AutoAssignZoneTypes(self, "AutoAssignZoneTypes", service, rules, path)
|
|
9321
9319
|
self.SMQualityMaxAngle = self._SMQualityMaxAngle(self, "SMQualityMaxAngle", service, rules, path)
|
|
9322
|
-
self.
|
|
9323
|
-
self.
|
|
9320
|
+
self.AutoAssignZoneTypes = self._AutoAssignZoneTypes(self, "AutoAssignZoneTypes", service, rules, path)
|
|
9321
|
+
self.VolumeMeshMaxSize = self._VolumeMeshMaxSize(self, "VolumeMeshMaxSize", service, rules, path)
|
|
9324
9322
|
self.SMQualityImproveLimit = self._SMQualityImproveLimit(self, "SMQualityImproveLimit", service, rules, path)
|
|
9323
|
+
self.AutoSurfaceRemesh = self._AutoSurfaceRemesh(self, "AutoSurfaceRemesh", service, rules, path)
|
|
9324
|
+
self.SelfIntersectCheck = self._SelfIntersectCheck(self, "SelfIntersectCheck", service, rules, path)
|
|
9325
9325
|
self.SetVolumeMeshMaxSize = self._SetVolumeMeshMaxSize(self, "SetVolumeMeshMaxSize", service, rules, path)
|
|
9326
9326
|
|
|
9327
9327
|
class _SMQualityCollapseLimit(PyNumericalCommandArgumentsSubItem):
|
|
@@ -9334,9 +9334,9 @@ class Root(PyMenu):
|
|
|
9334
9334
|
Specify the value limiting when folded faces are smoothed or resolved. Folded faces are resolved while under this limit. Set this value to 0 if the number of free nodes (due to a zero-thickness wall such as a baffle for instance) falls below 10.
|
|
9335
9335
|
"""
|
|
9336
9336
|
|
|
9337
|
-
class
|
|
9337
|
+
class _SMQualityImprove(PyTextualCommandArgumentsSubItem):
|
|
9338
9338
|
"""
|
|
9339
|
-
Choose whether or not to
|
|
9339
|
+
Choose whether or not to apply quality measures during surface mesh generation. You should disable this option when using Multizone meshing of very thin structures, relative to the minimum size.
|
|
9340
9340
|
"""
|
|
9341
9341
|
|
|
9342
9342
|
class _ShowSurfaceMeshPreferences(PyParameterCommandArgumentsSubItem):
|
|
@@ -9349,9 +9349,9 @@ class Root(PyMenu):
|
|
|
9349
9349
|
Argument AutoMerge.
|
|
9350
9350
|
"""
|
|
9351
9351
|
|
|
9352
|
-
class
|
|
9352
|
+
class _SMSeparation(PyTextualCommandArgumentsSubItem):
|
|
9353
9353
|
"""
|
|
9354
|
-
|
|
9354
|
+
Choose whether or not to separate zones. This is required to select faces for capping. If Named Selections have already been defined at these locations, then separation is not needed. Performance may be improved if this is disabled.
|
|
9355
9355
|
"""
|
|
9356
9356
|
|
|
9357
9357
|
class _TVMAutoControlCreation(PyTextualCommandArgumentsSubItem):
|
|
@@ -9359,9 +9359,9 @@ class Root(PyMenu):
|
|
|
9359
9359
|
If your geometry contains small edges, you can choose to extract these edge features when generating the surface mesh by selecting yes. Note that selecting yes , will always extract small edge features regardless of your selection for the Auto Remesh to Remove Clustering? option.
|
|
9360
9360
|
"""
|
|
9361
9361
|
|
|
9362
|
-
class
|
|
9362
|
+
class _SMSeparationAngle(PyNumericalCommandArgumentsSubItem):
|
|
9363
9363
|
"""
|
|
9364
|
-
|
|
9364
|
+
Specify a desired angle for determining separation. Assigning a smaller separation angle will produce more zones.
|
|
9365
9365
|
"""
|
|
9366
9366
|
|
|
9367
9367
|
class _SMRemoveStep(PyTextualCommandArgumentsSubItem):
|
|
@@ -9374,9 +9374,9 @@ class Root(PyMenu):
|
|
|
9374
9374
|
Specify the width of the step that you wish to remove.
|
|
9375
9375
|
"""
|
|
9376
9376
|
|
|
9377
|
-
class
|
|
9377
|
+
class _SMQualityMaxAngle(PyNumericalCommandArgumentsSubItem):
|
|
9378
9378
|
"""
|
|
9379
|
-
Specify the maximum
|
|
9379
|
+
Specify the maximum angle between the normals of adjacent faces. This quality measure is useful in locating sharp corners in complicated geometries. The angle value ranges from 0 to 180 degrees. Four consecutive attempts are made to improve the quality, each using a larger adjacent angle, until this maximum value.
|
|
9380
9380
|
"""
|
|
9381
9381
|
|
|
9382
9382
|
class _AutoAssignZoneTypes(PyTextualCommandArgumentsSubItem):
|
|
@@ -9384,14 +9384,14 @@ class Root(PyMenu):
|
|
|
9384
9384
|
Choose whether or not to automatically assign boundary types to zones.
|
|
9385
9385
|
"""
|
|
9386
9386
|
|
|
9387
|
-
class
|
|
9387
|
+
class _VolumeMeshMaxSize(PyNumericalCommandArgumentsSubItem):
|
|
9388
9388
|
"""
|
|
9389
|
-
Specify the maximum
|
|
9389
|
+
Specify the maximum size of the elements for the surface mesh.
|
|
9390
9390
|
"""
|
|
9391
9391
|
|
|
9392
|
-
class
|
|
9392
|
+
class _SMQualityImproveLimit(PyNumericalCommandArgumentsSubItem):
|
|
9393
9393
|
"""
|
|
9394
|
-
|
|
9394
|
+
Specify a limiting value for skewness to improve the quality of the surface mesh. Quality improvement is attempted on those triangles where the skewness is above this limit.
|
|
9395
9395
|
"""
|
|
9396
9396
|
|
|
9397
9397
|
class _AutoSurfaceRemesh(PyTextualCommandArgumentsSubItem):
|
|
@@ -9399,9 +9399,9 @@ class Root(PyMenu):
|
|
|
9399
9399
|
Choose whether or not to automatically remesh in order to remove excessive clustering of nodes. By default (auto), this is done if local sizing has been assigned or Share Topology is invoked, but skipped if not. Performance may be improved if this is disabled. In addition, you can choose to use the much faster refaceting technique as an alternative to automatic remeshing. When importing the mesh, remeshing is only performed if this option is set to yes and then all faces are remeshed; and the refaceting option is not available because the initial mesh cannot be refaceted.
|
|
9400
9400
|
"""
|
|
9401
9401
|
|
|
9402
|
-
class
|
|
9402
|
+
class _SelfIntersectCheck(PyTextualCommandArgumentsSubItem):
|
|
9403
9403
|
"""
|
|
9404
|
-
|
|
9404
|
+
Choose whether or not to check for self-intersecting faces. Performance may be improved if this is disabled.
|
|
9405
9405
|
"""
|
|
9406
9406
|
|
|
9407
9407
|
class _SetVolumeMeshMaxSize(PyTextualCommandArgumentsSubItem):
|
|
@@ -9493,9 +9493,9 @@ class Root(PyMenu):
|
|
|
9493
9493
|
self.CreateCADAssemblies = self._CreateCADAssemblies(self, "CreateCADAssemblies", service, rules, path)
|
|
9494
9494
|
self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
|
|
9495
9495
|
self.OneZonePer = self._OneZonePer(self, "OneZonePer", service, rules, path)
|
|
9496
|
-
self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
|
|
9497
|
-
self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
|
|
9498
9496
|
self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
|
|
9497
|
+
self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
|
|
9498
|
+
self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
|
|
9499
9499
|
self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
|
|
9500
9500
|
self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
|
|
9501
9501
|
|
|
@@ -9529,9 +9529,9 @@ class Root(PyMenu):
|
|
|
9529
9529
|
Argument OneZonePer.
|
|
9530
9530
|
"""
|
|
9531
9531
|
|
|
9532
|
-
class
|
|
9532
|
+
class _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
|
|
9533
9533
|
"""
|
|
9534
|
-
Argument
|
|
9534
|
+
Argument UsePartOrBodyAsSuffix.
|
|
9535
9535
|
"""
|
|
9536
9536
|
|
|
9537
9537
|
class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
|
|
@@ -9539,9 +9539,9 @@ class Root(PyMenu):
|
|
|
9539
9539
|
Argument ExtractFeatures.
|
|
9540
9540
|
"""
|
|
9541
9541
|
|
|
9542
|
-
class
|
|
9542
|
+
class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
|
|
9543
9543
|
"""
|
|
9544
|
-
Argument
|
|
9544
|
+
Argument ImportCurvatureDataFromCAD.
|
|
9545
9545
|
"""
|
|
9546
9546
|
|
|
9547
9547
|
class _ImportPartNames(PyParameterCommandArgumentsSubItem):
|
|
@@ -9566,14 +9566,14 @@ class Root(PyMenu):
|
|
|
9566
9566
|
self.ConnectLabelWildcard = self._ConnectLabelWildcard(self, "ConnectLabelWildcard", service, rules, path)
|
|
9567
9567
|
self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
|
|
9568
9568
|
self.RelativeShareTopologyTolerance = self._RelativeShareTopologyTolerance(self, "RelativeShareTopologyTolerance", service, rules, path)
|
|
9569
|
-
self.
|
|
9569
|
+
self.ShareTopologyAngle = self._ShareTopologyAngle(self, "ShareTopologyAngle", service, rules, path)
|
|
9570
9570
|
self.ExecuteJoinIntersect = self._ExecuteJoinIntersect(self, "ExecuteJoinIntersect", service, rules, path)
|
|
9571
9571
|
self.Operation = self._Operation(self, "Operation", service, rules, path)
|
|
9572
|
-
self.
|
|
9572
|
+
self.FluidLabelWildcard = self._FluidLabelWildcard(self, "FluidLabelWildcard", service, rules, path)
|
|
9573
9573
|
self.STToleranceIncrement = self._STToleranceIncrement(self, "STToleranceIncrement", service, rules, path)
|
|
9574
|
-
self.IntfLabelList = self._IntfLabelList(self, "IntfLabelList", service, rules, path)
|
|
9575
|
-
self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
|
|
9576
9574
|
self.ShowShareTopologyPreferences = self._ShowShareTopologyPreferences(self, "ShowShareTopologyPreferences", service, rules, path)
|
|
9575
|
+
self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
|
|
9576
|
+
self.IntfLabelList = self._IntfLabelList(self, "IntfLabelList", service, rules, path)
|
|
9577
9577
|
self.AdvancedImprove = self._AdvancedImprove(self, "AdvancedImprove", service, rules, path)
|
|
9578
9578
|
self.NumberOfJoinTries = self._NumberOfJoinTries(self, "NumberOfJoinTries", service, rules, path)
|
|
9579
9579
|
|
|
@@ -9602,9 +9602,9 @@ class Root(PyMenu):
|
|
|
9602
9602
|
Specify the relative tolerance for joining or intersecting face pairs, or the relative tolerance for connecting edge and face pairs.
|
|
9603
9603
|
"""
|
|
9604
9604
|
|
|
9605
|
-
class
|
|
9605
|
+
class _ShareTopologyAngle(PyNumericalCommandArgumentsSubItem):
|
|
9606
9606
|
"""
|
|
9607
|
-
|
|
9607
|
+
Specify the threshold angle for joining face pairs.
|
|
9608
9608
|
"""
|
|
9609
9609
|
|
|
9610
9610
|
class _ExecuteJoinIntersect(PyTextualCommandArgumentsSubItem):
|
|
@@ -9617,9 +9617,9 @@ class Root(PyMenu):
|
|
|
9617
9617
|
Choose whether to apply share topology using the Join-Intersect method where you join and/or intersect the problematic faces, or using the Interface Connect method where you connect edges of overlapping face pairs. Note that imprinting of overlapping faces in SCDM/Discovery is highly recommended for the Interface Connect method.
|
|
9618
9618
|
"""
|
|
9619
9619
|
|
|
9620
|
-
class
|
|
9620
|
+
class _FluidLabelWildcard(PyTextualCommandArgumentsSubItem):
|
|
9621
9621
|
"""
|
|
9622
|
-
|
|
9622
|
+
Argument FluidLabelWildcard.
|
|
9623
9623
|
"""
|
|
9624
9624
|
|
|
9625
9625
|
class _STToleranceIncrement(PyNumericalCommandArgumentsSubItem):
|
|
@@ -9627,9 +9627,9 @@ class Root(PyMenu):
|
|
|
9627
9627
|
Specify the increment by which the tolerance changes for each attempt to join face pairs.
|
|
9628
9628
|
"""
|
|
9629
9629
|
|
|
9630
|
-
class
|
|
9630
|
+
class _ShowShareTopologyPreferences(PyParameterCommandArgumentsSubItem):
|
|
9631
9631
|
"""
|
|
9632
|
-
|
|
9632
|
+
Display advanced options that you may want to apply to the task.
|
|
9633
9633
|
"""
|
|
9634
9634
|
|
|
9635
9635
|
class _PerLabelList(PyTextualCommandArgumentsSubItem):
|
|
@@ -9637,9 +9637,9 @@ class Root(PyMenu):
|
|
|
9637
9637
|
Argument PerLabelList.
|
|
9638
9638
|
"""
|
|
9639
9639
|
|
|
9640
|
-
class
|
|
9640
|
+
class _IntfLabelList(PyTextualCommandArgumentsSubItem):
|
|
9641
9641
|
"""
|
|
9642
|
-
|
|
9642
|
+
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...
|
|
9643
9643
|
"""
|
|
9644
9644
|
|
|
9645
9645
|
class _AdvancedImprove(PyTextualCommandArgumentsSubItem):
|
|
@@ -10117,10 +10117,10 @@ class Root(PyMenu):
|
|
|
10117
10117
|
self.UseSizeFieldInSolids = self._UseSizeFieldInSolids(self, "UseSizeFieldInSolids", service, rules, path)
|
|
10118
10118
|
self.QualityMethod = self._QualityMethod(self, "QualityMethod", service, rules, path)
|
|
10119
10119
|
self.MinPolySize = self._MinPolySize(self, "MinPolySize", service, rules, path)
|
|
10120
|
-
self.PolyFeatureAngle = self._PolyFeatureAngle(self, "PolyFeatureAngle", service, rules, path)
|
|
10121
10120
|
self.MergeBodyLabels = self._MergeBodyLabels(self, "MergeBodyLabels", service, rules, path)
|
|
10121
|
+
self.PolyFeatureAngle = self._PolyFeatureAngle(self, "PolyFeatureAngle", service, rules, path)
|
|
10122
10122
|
self.UseSizeField = self._UseSizeField(self, "UseSizeField", service, rules, path)
|
|
10123
|
-
self.
|
|
10123
|
+
self.PolyInSolids = self._PolyInSolids(self, "PolyInSolids", service, rules, path)
|
|
10124
10124
|
self.TetInSolids = self._TetInSolids(self, "TetInSolids", service, rules, path)
|
|
10125
10125
|
self.AddMultipleQualityMethods = self._AddMultipleQualityMethods(self, "AddMultipleQualityMethods", service, rules, path)
|
|
10126
10126
|
self.MaxCellSizeChange = self._MaxCellSizeChange(self, "MaxCellSizeChange", service, rules, path)
|
|
@@ -10128,10 +10128,10 @@ class Root(PyMenu):
|
|
|
10128
10128
|
self.MinFaceArea = self._MinFaceArea(self, "MinFaceArea", service, rules, path)
|
|
10129
10129
|
self.CheckSelfProximity = self._CheckSelfProximity(self, "CheckSelfProximity", service, rules, path)
|
|
10130
10130
|
self.Avoid1_8Transition = self._Avoid1_8Transition(self, "Avoid1_8Transition", service, rules, path)
|
|
10131
|
-
self.
|
|
10131
|
+
self.ShowVolumeMeshPreferences = self._ShowVolumeMeshPreferences(self, "ShowVolumeMeshPreferences", service, rules, path)
|
|
10132
10132
|
self.PrepareZoneNames = self._PrepareZoneNames(self, "PrepareZoneNames", service, rules, path)
|
|
10133
10133
|
self.SolidGrowthRate = self._SolidGrowthRate(self, "SolidGrowthRate", service, rules, path)
|
|
10134
|
-
self.
|
|
10134
|
+
self.MinEdgeLength = self._MinEdgeLength(self, "MinEdgeLength", service, rules, path)
|
|
10135
10135
|
self.QualityWarningLimit = self._QualityWarningLimit(self, "QualityWarningLimit", service, rules, path)
|
|
10136
10136
|
|
|
10137
10137
|
class _UseSizeFieldInSolids(PyTextualCommandArgumentsSubItem):
|
|
@@ -10149,14 +10149,14 @@ class Root(PyMenu):
|
|
|
10149
10149
|
Argument MinPolySize.
|
|
10150
10150
|
"""
|
|
10151
10151
|
|
|
10152
|
-
class
|
|
10152
|
+
class _MergeBodyLabels(PyTextualCommandArgumentsSubItem):
|
|
10153
10153
|
"""
|
|
10154
|
-
|
|
10154
|
+
Determine whether or not you would like to merge bodies that contain multiple body labels when generating the volume mesh (the default is yes)
|
|
10155
10155
|
"""
|
|
10156
10156
|
|
|
10157
|
-
class
|
|
10157
|
+
class _PolyFeatureAngle(PyNumericalCommandArgumentsSubItem):
|
|
10158
10158
|
"""
|
|
10159
|
-
|
|
10159
|
+
Specify the angle to preserve features when using a polyhedral-based mesh.
|
|
10160
10160
|
"""
|
|
10161
10161
|
|
|
10162
10162
|
class _UseSizeField(PyTextualCommandArgumentsSubItem):
|
|
@@ -10164,9 +10164,9 @@ class Root(PyMenu):
|
|
|
10164
10164
|
Specify whether or not to use size fields as part of generating the volume mesh. By default, this is set to yes when a BOI or body sizing has been defined in the Add Local Sizing task, however, for large cases, it can be turned off for the hexcore and poly-hexcore volume fill methods.
|
|
10165
10165
|
"""
|
|
10166
10166
|
|
|
10167
|
-
class
|
|
10167
|
+
class _PolyInSolids(PyTextualCommandArgumentsSubItem):
|
|
10168
10168
|
"""
|
|
10169
|
-
|
|
10169
|
+
Indicate whether or not to fill only polyhedra cells in all solid regions during volume meshing using the poly-hexcore volume fill method. The default value is no. Setting this to yes may improve meshing efficiency.
|
|
10170
10170
|
"""
|
|
10171
10171
|
|
|
10172
10172
|
class _TetInSolids(PyTextualCommandArgumentsSubItem):
|
|
@@ -10204,9 +10204,9 @@ class Root(PyMenu):
|
|
|
10204
10204
|
Indicate whether or not you want to avoid any potential 1:8 cell transition in the hexcore region of the volume mesh, replacing any abrupt change in the cell size with polyhedral cells to improve solver performance in such transitional areas.
|
|
10205
10205
|
"""
|
|
10206
10206
|
|
|
10207
|
-
class
|
|
10207
|
+
class _ShowVolumeMeshPreferences(PyParameterCommandArgumentsSubItem):
|
|
10208
10208
|
"""
|
|
10209
|
-
|
|
10209
|
+
Display advanced options that you may want to apply to the task.
|
|
10210
10210
|
"""
|
|
10211
10211
|
|
|
10212
10212
|
class _PrepareZoneNames(PyTextualCommandArgumentsSubItem):
|
|
@@ -10219,9 +10219,9 @@ class Root(PyMenu):
|
|
|
10219
10219
|
Specify the rate of growth for a tetrahedron or polyhedron mesh.
|
|
10220
10220
|
"""
|
|
10221
10221
|
|
|
10222
|
-
class
|
|
10222
|
+
class _MinEdgeLength(PyNumericalCommandArgumentsSubItem):
|
|
10223
10223
|
"""
|
|
10224
|
-
|
|
10224
|
+
Argument MinEdgeLength.
|
|
10225
10225
|
"""
|
|
10226
10226
|
|
|
10227
10227
|
class _QualityWarningLimit(PyNumericalCommandArgumentsSubItem):
|
|
@@ -10316,14 +10316,14 @@ class Root(PyMenu):
|
|
|
10316
10316
|
|
|
10317
10317
|
def __init__(self, parent, attr, service, rules, path):
|
|
10318
10318
|
super().__init__(parent, attr, service, rules, path)
|
|
10319
|
-
self.
|
|
10319
|
+
self.MinAspectRatio = self._MinAspectRatio(self, "MinAspectRatio", service, rules, path)
|
|
10320
10320
|
self.AutoOrderControls = self._AutoOrderControls(self, "AutoOrderControls", service, rules, path)
|
|
10321
10321
|
self.StairStep = self._StairStep(self, "StairStep", service, rules, path)
|
|
10322
|
-
self.
|
|
10322
|
+
self.ShowGlobalThinVolumePreferences = self._ShowGlobalThinVolumePreferences(self, "ShowGlobalThinVolumePreferences", service, rules, path)
|
|
10323
10323
|
|
|
10324
|
-
class
|
|
10324
|
+
class _MinAspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
10325
10325
|
"""
|
|
10326
|
-
|
|
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.
|
|
10327
10327
|
"""
|
|
10328
10328
|
|
|
10329
10329
|
class _AutoOrderControls(PyTextualCommandArgumentsSubItem):
|
|
@@ -10336,9 +10336,9 @@ class Root(PyMenu):
|
|
|
10336
10336
|
Use this option to invoke stair-stepping at thin volume mesh regions.
|
|
10337
10337
|
"""
|
|
10338
10338
|
|
|
10339
|
-
class
|
|
10339
|
+
class _ShowGlobalThinVolumePreferences(PyParameterCommandArgumentsSubItem):
|
|
10340
10340
|
"""
|
|
10341
|
-
|
|
10341
|
+
Display global settings for thin volume meshing.
|
|
10342
10342
|
"""
|
|
10343
10343
|
|
|
10344
10344
|
class _InvokePrimsControl(PyTextualCommandArgumentsSubItem):
|
|
@@ -10488,8 +10488,8 @@ class Root(PyMenu):
|
|
|
10488
10488
|
self.SaveSizeFieldFile = self._SaveSizeFieldFile(self, "SaveSizeFieldFile", service, rules, path)
|
|
10489
10489
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
10490
10490
|
self.ScopeProximityTo = self._ScopeProximityTo(self, "ScopeProximityTo", service, rules, path)
|
|
10491
|
-
self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
|
|
10492
10491
|
self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
|
|
10492
|
+
self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
|
|
10493
10493
|
self.SaveSizeField = self._SaveSizeField(self, "SaveSizeField", service, rules, path)
|
|
10494
10494
|
self.UseSizeFiles = self._UseSizeFiles(self, "UseSizeFiles", service, rules, path)
|
|
10495
10495
|
self.AutoCreateScopedSizing = self._AutoCreateScopedSizing(self, "AutoCreateScopedSizing", service, rules, path)
|
|
@@ -10519,14 +10519,14 @@ class Root(PyMenu):
|
|
|
10519
10519
|
Argument ScopeProximityTo.
|
|
10520
10520
|
"""
|
|
10521
10521
|
|
|
10522
|
-
class
|
|
10522
|
+
class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
10523
10523
|
"""
|
|
10524
|
-
Argument
|
|
10524
|
+
Argument CurvatureNormalAngle.
|
|
10525
10525
|
"""
|
|
10526
10526
|
|
|
10527
|
-
class
|
|
10527
|
+
class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
|
|
10528
10528
|
"""
|
|
10529
|
-
Argument
|
|
10529
|
+
Argument PreviewSizefield.
|
|
10530
10530
|
"""
|
|
10531
10531
|
|
|
10532
10532
|
class _SaveSizeField(PyParameterCommandArgumentsSubItem):
|
|
@@ -10743,10 +10743,10 @@ class Root(PyMenu):
|
|
|
10743
10743
|
self.SIQualityIterations = self._SIQualityIterations(self, "SIQualityIterations", service, rules, path)
|
|
10744
10744
|
self.SIQualityMaxAngle = self._SIQualityMaxAngle(self, "SIQualityMaxAngle", service, rules, path)
|
|
10745
10745
|
self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
|
|
10746
|
-
self.
|
|
10746
|
+
self.SIRemoveStep = self._SIRemoveStep(self, "SIRemoveStep", service, rules, path)
|
|
10747
10747
|
self.AdvancedImprove = self._AdvancedImprove(self, "AdvancedImprove", service, rules, path)
|
|
10748
10748
|
self.SIStepWidth = self._SIStepWidth(self, "SIStepWidth", service, rules, path)
|
|
10749
|
-
self.
|
|
10749
|
+
self.ShowSMImprovePreferences = self._ShowSMImprovePreferences(self, "ShowSMImprovePreferences", service, rules, path)
|
|
10750
10750
|
|
|
10751
10751
|
class _SIStepQualityLimit(PyNumericalCommandArgumentsSubItem):
|
|
10752
10752
|
"""
|
|
@@ -10773,9 +10773,9 @@ class Root(PyMenu):
|
|
|
10773
10773
|
Argument AllowDefeaturing.
|
|
10774
10774
|
"""
|
|
10775
10775
|
|
|
10776
|
-
class
|
|
10776
|
+
class _SIRemoveStep(PyTextualCommandArgumentsSubItem):
|
|
10777
10777
|
"""
|
|
10778
|
-
Argument
|
|
10778
|
+
Argument SIRemoveStep.
|
|
10779
10779
|
"""
|
|
10780
10780
|
|
|
10781
10781
|
class _AdvancedImprove(PyTextualCommandArgumentsSubItem):
|
|
@@ -10788,9 +10788,9 @@ class Root(PyMenu):
|
|
|
10788
10788
|
Argument SIStepWidth.
|
|
10789
10789
|
"""
|
|
10790
10790
|
|
|
10791
|
-
class
|
|
10791
|
+
class _ShowSMImprovePreferences(PyParameterCommandArgumentsSubItem):
|
|
10792
10792
|
"""
|
|
10793
|
-
Argument
|
|
10793
|
+
Argument ShowSMImprovePreferences.
|
|
10794
10794
|
"""
|
|
10795
10795
|
|
|
10796
10796
|
def create_instance(self) -> _GeometrySetupCommandArguments:
|
|
@@ -10999,8 +10999,8 @@ class Root(PyMenu):
|
|
|
10999
10999
|
|
|
11000
11000
|
def __init__(self, parent, attr, service, rules, path):
|
|
11001
11001
|
super().__init__(parent, attr, service, rules, path)
|
|
11002
|
-
self.HeightNode = self._HeightNode(self, "HeightNode", service, rules, path)
|
|
11003
11002
|
self.X_Offset = self._X_Offset(self, "X-Offset", service, rules, path)
|
|
11003
|
+
self.HeightNode = self._HeightNode(self, "HeightNode", service, rules, path)
|
|
11004
11004
|
self.HeightBackInc = self._HeightBackInc(self, "HeightBackInc", service, rules, path)
|
|
11005
11005
|
self.X1 = self._X1(self, "X1", service, rules, path)
|
|
11006
11006
|
self.Y1 = self._Y1(self, "Y1", service, rules, path)
|
|
@@ -11011,20 +11011,20 @@ class Root(PyMenu):
|
|
|
11011
11011
|
self.Radius2 = self._Radius2(self, "Radius2", service, rules, path)
|
|
11012
11012
|
self.Y2 = self._Y2(self, "Y2", service, rules, path)
|
|
11013
11013
|
self.Node3 = self._Node3(self, "Node3", service, rules, path)
|
|
11014
|
+
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
11014
11015
|
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
11015
11016
|
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
11016
|
-
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
11017
11017
|
self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
|
|
11018
11018
|
self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
|
|
11019
11019
|
|
|
11020
|
-
class
|
|
11020
|
+
class _X_Offset(PyNumericalCommandArgumentsSubItem):
|
|
11021
11021
|
"""
|
|
11022
|
-
Argument
|
|
11022
|
+
Argument X-Offset.
|
|
11023
11023
|
"""
|
|
11024
11024
|
|
|
11025
|
-
class
|
|
11025
|
+
class _HeightNode(PyTextualCommandArgumentsSubItem):
|
|
11026
11026
|
"""
|
|
11027
|
-
Argument
|
|
11027
|
+
Argument HeightNode.
|
|
11028
11028
|
"""
|
|
11029
11029
|
|
|
11030
11030
|
class _HeightBackInc(PyNumericalCommandArgumentsSubItem):
|
|
@@ -11077,6 +11077,11 @@ class Root(PyMenu):
|
|
|
11077
11077
|
Argument Node3.
|
|
11078
11078
|
"""
|
|
11079
11079
|
|
|
11080
|
+
class _Node2(PyTextualCommandArgumentsSubItem):
|
|
11081
|
+
"""
|
|
11082
|
+
Argument Node2.
|
|
11083
|
+
"""
|
|
11084
|
+
|
|
11080
11085
|
class _Y_Offset(PyNumericalCommandArgumentsSubItem):
|
|
11081
11086
|
"""
|
|
11082
11087
|
Argument Y-Offset.
|
|
@@ -11087,11 +11092,6 @@ class Root(PyMenu):
|
|
|
11087
11092
|
Argument X2.
|
|
11088
11093
|
"""
|
|
11089
11094
|
|
|
11090
|
-
class _Node2(PyTextualCommandArgumentsSubItem):
|
|
11091
|
-
"""
|
|
11092
|
-
Argument Node2.
|
|
11093
|
-
"""
|
|
11094
|
-
|
|
11095
11095
|
class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
|
|
11096
11096
|
"""
|
|
11097
11097
|
Argument HeightFrontInc.
|
|
@@ -11115,7 +11115,7 @@ class Root(PyMenu):
|
|
|
11115
11115
|
def __init__(self, parent, attr, service, rules, path):
|
|
11116
11116
|
super().__init__(parent, attr, service, rules, path)
|
|
11117
11117
|
self.SizeRelativeLength = self._SizeRelativeLength(self, "SizeRelativeLength", service, rules, path)
|
|
11118
|
-
self.
|
|
11118
|
+
self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
|
|
11119
11119
|
self.XminRatio = self._XminRatio(self, "XminRatio", service, rules, path)
|
|
11120
11120
|
self.YminRatio = self._YminRatio(self, "YminRatio", service, rules, path)
|
|
11121
11121
|
self.Zmin = self._Zmin(self, "Zmin", service, rules, path)
|
|
@@ -11126,16 +11126,16 @@ class Root(PyMenu):
|
|
|
11126
11126
|
self.Xmin = self._Xmin(self, "Xmin", service, rules, path)
|
|
11127
11127
|
self.YmaxRatio = self._YmaxRatio(self, "YmaxRatio", service, rules, path)
|
|
11128
11128
|
self.ZmaxRatio = self._ZmaxRatio(self, "ZmaxRatio", service, rules, path)
|
|
11129
|
-
self.
|
|
11129
|
+
self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
|
|
11130
11130
|
|
|
11131
11131
|
class _SizeRelativeLength(PyTextualCommandArgumentsSubItem):
|
|
11132
11132
|
"""
|
|
11133
11133
|
Determine if you would like to specify the bounding box for the construction surface as a ratio of the geometry length, or by specifying a specific location for the minimum and maximum coordinates.
|
|
11134
11134
|
"""
|
|
11135
11135
|
|
|
11136
|
-
class
|
|
11136
|
+
class _Xmax(PyNumericalCommandArgumentsSubItem):
|
|
11137
11137
|
"""
|
|
11138
|
-
Extends the maximum size of the bounding box in the X direction by the specified value.
|
|
11138
|
+
Extends the maximum size of the bounding box in the X direction by the specified value.
|
|
11139
11139
|
"""
|
|
11140
11140
|
|
|
11141
11141
|
class _XminRatio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -11188,9 +11188,9 @@ class Root(PyMenu):
|
|
|
11188
11188
|
Extends the maximum size of the bounding box in the Z direction by the specified value. The value is the ratio relative to the geometry size in the Z direction.
|
|
11189
11189
|
"""
|
|
11190
11190
|
|
|
11191
|
-
class
|
|
11191
|
+
class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
|
|
11192
11192
|
"""
|
|
11193
|
-
Extends the maximum size of the bounding box in the X direction by the specified value.
|
|
11193
|
+
Extends the maximum size of the bounding box in the X direction by the specified value. The value is the ratio relative to the geometry size in the X direction.
|
|
11194
11194
|
"""
|
|
11195
11195
|
|
|
11196
11196
|
def create_instance(self) -> _IdentifyConstructionSurfacesCommandArguments:
|
|
@@ -11623,9 +11623,9 @@ class Root(PyMenu):
|
|
|
11623
11623
|
self.OneZonePer = self._OneZonePer(self, "OneZonePer", service, rules, path)
|
|
11624
11624
|
self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
|
|
11625
11625
|
self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
|
|
11626
|
-
self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
|
|
11627
|
-
self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
|
|
11628
11626
|
self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
|
|
11627
|
+
self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
|
|
11628
|
+
self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
|
|
11629
11629
|
|
|
11630
11630
|
class _SavePMDBIntermediateFile(PyParameterCommandArgumentsSubItem):
|
|
11631
11631
|
"""
|
|
@@ -11667,9 +11667,9 @@ class Root(PyMenu):
|
|
|
11667
11667
|
Argument ExtractFeatures.
|
|
11668
11668
|
"""
|
|
11669
11669
|
|
|
11670
|
-
class
|
|
11670
|
+
class _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
|
|
11671
11671
|
"""
|
|
11672
|
-
Argument
|
|
11672
|
+
Argument UsePartOrBodyAsSuffix.
|
|
11673
11673
|
"""
|
|
11674
11674
|
|
|
11675
11675
|
class _ImportPartNames(PyParameterCommandArgumentsSubItem):
|
|
@@ -11677,9 +11677,9 @@ class Root(PyMenu):
|
|
|
11677
11677
|
Argument ImportPartNames.
|
|
11678
11678
|
"""
|
|
11679
11679
|
|
|
11680
|
-
class
|
|
11680
|
+
class _ImportNamedSelections(PyParameterCommandArgumentsSubItem):
|
|
11681
11681
|
"""
|
|
11682
|
-
Argument
|
|
11682
|
+
Argument ImportNamedSelections.
|
|
11683
11683
|
"""
|
|
11684
11684
|
|
|
11685
11685
|
def create_instance(self) -> _ImportBodyOfInfluenceGeometryCommandArguments:
|
|
@@ -11769,21 +11769,21 @@ class Root(PyMenu):
|
|
|
11769
11769
|
|
|
11770
11770
|
def __init__(self, parent, attr, service, rules, path):
|
|
11771
11771
|
super().__init__(parent, attr, service, rules, path)
|
|
11772
|
-
self.
|
|
11772
|
+
self.ExtractAngle = self._ExtractAngle(self, "ExtractAngle", service, rules, path)
|
|
11773
11773
|
self.FacetedBodies = self._FacetedBodies(self, "FacetedBodies", service, rules, path)
|
|
11774
11774
|
self.CISeparation = self._CISeparation(self, "CISeparation", service, rules, path)
|
|
11775
|
-
self.
|
|
11775
|
+
self.EdgeLabel = self._EdgeLabel(self, "EdgeLabel", service, rules, path)
|
|
11776
11776
|
self.CIRefaceting = self._CIRefaceting(self, "CIRefaceting", service, rules, path)
|
|
11777
11777
|
self.AutomaticObjectCreation = self._AutomaticObjectCreation(self, "AutomaticObjectCreation", service, rules, path)
|
|
11778
11778
|
self.ShowImportCadPreferences = self._ShowImportCadPreferences(self, "ShowImportCadPreferences", service, rules, path)
|
|
11779
11779
|
self.MaxFacetLength = self._MaxFacetLength(self, "MaxFacetLength", service, rules, path)
|
|
11780
|
-
self.
|
|
11780
|
+
self.MergeNodes = self._MergeNodes(self, "MergeNodes", service, rules, path)
|
|
11781
11781
|
self.CISeparationAngle = self._CISeparationAngle(self, "CISeparationAngle", service, rules, path)
|
|
11782
|
-
self.
|
|
11782
|
+
self.CITolerence = self._CITolerence(self, "CITolerence", service, rules, path)
|
|
11783
11783
|
|
|
11784
|
-
class
|
|
11784
|
+
class _ExtractAngle(PyNumericalCommandArgumentsSubItem):
|
|
11785
11785
|
"""
|
|
11786
|
-
|
|
11786
|
+
Argument ExtractAngle.
|
|
11787
11787
|
"""
|
|
11788
11788
|
|
|
11789
11789
|
class _FacetedBodies(PyTextualCommandArgumentsSubItem):
|
|
@@ -11796,9 +11796,9 @@ class Root(PyMenu):
|
|
|
11796
11796
|
Choose whether or not you are going to separate zones upon import based on a region, a region and a specified separation angle, a face, or neither. This is required to select faces for local sizing. If Named Selections have already been defined at these locations, then separation is not needed.
|
|
11797
11797
|
"""
|
|
11798
11798
|
|
|
11799
|
-
class
|
|
11799
|
+
class _EdgeLabel(PyTextualCommandArgumentsSubItem):
|
|
11800
11800
|
"""
|
|
11801
|
-
|
|
11801
|
+
Specify whether or not the imported CAD geometry already includes specific edges with assigned names (named selections). These named edges can be available later in the workflow when you are adding local size controls.
|
|
11802
11802
|
"""
|
|
11803
11803
|
|
|
11804
11804
|
class _CIRefaceting(PyParameterCommandArgumentsSubItem):
|
|
@@ -11821,9 +11821,9 @@ class Root(PyMenu):
|
|
|
11821
11821
|
Enables you to specify a maximum facet size for the imported model to avoid very large facets during the file import. Depending on the CAD geometry, this may yield more accuracy.
|
|
11822
11822
|
"""
|
|
11823
11823
|
|
|
11824
|
-
class
|
|
11824
|
+
class _MergeNodes(PyTextualCommandArgumentsSubItem):
|
|
11825
11825
|
"""
|
|
11826
|
-
Argument
|
|
11826
|
+
Argument MergeNodes.
|
|
11827
11827
|
"""
|
|
11828
11828
|
|
|
11829
11829
|
class _CISeparationAngle(PyNumericalCommandArgumentsSubItem):
|
|
@@ -11831,9 +11831,9 @@ class Root(PyMenu):
|
|
|
11831
11831
|
Specify the angle at which features will be extracted from the CAD model on import. Assigning a smaller separation angle will produce more zones.
|
|
11832
11832
|
"""
|
|
11833
11833
|
|
|
11834
|
-
class
|
|
11834
|
+
class _CITolerence(PyNumericalCommandArgumentsSubItem):
|
|
11835
11835
|
"""
|
|
11836
|
-
Specify
|
|
11836
|
+
Specify the level of facet refinement during import. A value approximately 1/10 of the intended minimum size is recommended. Using a value of 0 results in the coarsest possible faceting.
|
|
11837
11837
|
"""
|
|
11838
11838
|
|
|
11839
11839
|
class _FileName(PyTextualCommandArgumentsSubItem):
|
|
@@ -11884,11 +11884,11 @@ class Root(PyMenu):
|
|
|
11884
11884
|
self.CreateCADAssemblies = self._CreateCADAssemblies(self, "CreateCADAssemblies", service, rules, path)
|
|
11885
11885
|
self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
|
|
11886
11886
|
self.OneZonePer = self._OneZonePer(self, "OneZonePer", service, rules, path)
|
|
11887
|
-
self.
|
|
11887
|
+
self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
|
|
11888
11888
|
self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
|
|
11889
|
-
self.
|
|
11889
|
+
self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
|
|
11890
11890
|
self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
|
|
11891
|
-
self.
|
|
11891
|
+
self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
|
|
11892
11892
|
|
|
11893
11893
|
class _SavePMDBIntermediateFile(PyParameterCommandArgumentsSubItem):
|
|
11894
11894
|
"""
|
|
@@ -11920,9 +11920,9 @@ class Root(PyMenu):
|
|
|
11920
11920
|
Argument OneZonePer.
|
|
11921
11921
|
"""
|
|
11922
11922
|
|
|
11923
|
-
class
|
|
11923
|
+
class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
|
|
11924
11924
|
"""
|
|
11925
|
-
Argument
|
|
11925
|
+
Argument ImportCurvatureDataFromCAD.
|
|
11926
11926
|
"""
|
|
11927
11927
|
|
|
11928
11928
|
class _ImportNamedSelections(PyParameterCommandArgumentsSubItem):
|
|
@@ -11930,9 +11930,9 @@ class Root(PyMenu):
|
|
|
11930
11930
|
Argument ImportNamedSelections.
|
|
11931
11931
|
"""
|
|
11932
11932
|
|
|
11933
|
-
class
|
|
11933
|
+
class _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
|
|
11934
11934
|
"""
|
|
11935
|
-
Argument
|
|
11935
|
+
Argument UsePartOrBodyAsSuffix.
|
|
11936
11936
|
"""
|
|
11937
11937
|
|
|
11938
11938
|
class _ImportPartNames(PyParameterCommandArgumentsSubItem):
|
|
@@ -11940,9 +11940,9 @@ class Root(PyMenu):
|
|
|
11940
11940
|
Argument ImportPartNames.
|
|
11941
11941
|
"""
|
|
11942
11942
|
|
|
11943
|
-
class
|
|
11943
|
+
class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
|
|
11944
11944
|
"""
|
|
11945
|
-
Argument
|
|
11945
|
+
Argument ExtractFeatures.
|
|
11946
11946
|
"""
|
|
11947
11947
|
|
|
11948
11948
|
def create_instance(self) -> _ImportGeometryCommandArguments:
|
|
@@ -12268,8 +12268,8 @@ class Root(PyMenu):
|
|
|
12268
12268
|
def __init__(self, parent, attr, service, rules, path):
|
|
12269
12269
|
super().__init__(parent, attr, service, rules, path)
|
|
12270
12270
|
self.FirstNumber = self._FirstNumber(self, "FirstNumber", service, rules, path)
|
|
12271
|
-
self.NbCellsPerUnit = self._NbCellsPerUnit(self, "NbCellsPerUnit", service, rules, path)
|
|
12272
12271
|
self.CustomPatternString = self._CustomPatternString(self, "CustomPatternString", service, rules, path)
|
|
12272
|
+
self.NbCellsPerUnit = self._NbCellsPerUnit(self, "NbCellsPerUnit", service, rules, path)
|
|
12273
12273
|
self.InvokeBatteryModelingOptions = self._InvokeBatteryModelingOptions(self, "InvokeBatteryModelingOptions", service, rules, path)
|
|
12274
12274
|
self.UseCustomPattern = self._UseCustomPattern(self, "UseCustomPattern", service, rules, path)
|
|
12275
12275
|
|
|
@@ -12278,14 +12278,14 @@ class Root(PyMenu):
|
|
|
12278
12278
|
Specify the numerical value that will be appended to the name of the first unit associated with the meshing pattern object. This value also dictates the labeling for mesh objects associated with this mesh pattern. More...
|
|
12279
12279
|
"""
|
|
12280
12280
|
|
|
12281
|
-
class
|
|
12281
|
+
class _CustomPatternString(PyTextualCommandArgumentsSubItem):
|
|
12282
12282
|
"""
|
|
12283
|
-
|
|
12283
|
+
Argument CustomPatternString.
|
|
12284
12284
|
"""
|
|
12285
12285
|
|
|
12286
|
-
class
|
|
12286
|
+
class _NbCellsPerUnit(PyNumericalCommandArgumentsSubItem):
|
|
12287
12287
|
"""
|
|
12288
|
-
|
|
12288
|
+
Specify the numerical value that will be appended to the name of the first unit associated with the meshing pattern object. This value also dictates the labeling for mesh objects associated with this mesh pattern. More...
|
|
12289
12289
|
"""
|
|
12290
12290
|
|
|
12291
12291
|
class _InvokeBatteryModelingOptions(PyTextualCommandArgumentsSubItem):
|
|
@@ -12378,8 +12378,8 @@ class Root(PyMenu):
|
|
|
12378
12378
|
super().__init__(parent, attr, service, rules, path)
|
|
12379
12379
|
self.FacetMaxEdgeLength = self._FacetMaxEdgeLength(self, "FacetMaxEdgeLength", service, rules, path)
|
|
12380
12380
|
self.FacetResolution = self._FacetResolution(self, "FacetResolution", service, rules, path)
|
|
12381
|
-
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
12382
12381
|
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
12382
|
+
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
12383
12383
|
self.MaxEdgeLengthFactor = self._MaxEdgeLengthFactor(self, "MaxEdgeLengthFactor", service, rules, path)
|
|
12384
12384
|
self.MaxEdgeLength = self._MaxEdgeLength(self, "MaxEdgeLength", service, rules, path)
|
|
12385
12385
|
self.CustomNormalAngle = self._CustomNormalAngle(self, "CustomNormalAngle", service, rules, path)
|
|
@@ -12396,14 +12396,14 @@ class Root(PyMenu):
|
|
|
12396
12396
|
Argument FacetResolution.
|
|
12397
12397
|
"""
|
|
12398
12398
|
|
|
12399
|
-
class
|
|
12399
|
+
class _Deviation(PyNumericalCommandArgumentsSubItem):
|
|
12400
12400
|
"""
|
|
12401
|
-
Argument
|
|
12401
|
+
Argument Deviation.
|
|
12402
12402
|
"""
|
|
12403
12403
|
|
|
12404
|
-
class
|
|
12404
|
+
class _NormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
12405
12405
|
"""
|
|
12406
|
-
Argument
|
|
12406
|
+
Argument NormalAngle.
|
|
12407
12407
|
"""
|
|
12408
12408
|
|
|
12409
12409
|
class _MaxEdgeLengthFactor(PyNumericalCommandArgumentsSubItem):
|
|
@@ -12535,9 +12535,9 @@ class Root(PyMenu):
|
|
|
12535
12535
|
self.MinSize = self._MinSize(self, "MinSize", service, rules, path)
|
|
12536
12536
|
self.WrapMax = self._WrapMax(self, "WrapMax", service, rules, path)
|
|
12537
12537
|
self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
|
|
12538
|
-
self.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", service, rules, path)
|
|
12539
12538
|
self.SizingType = self._SizingType(self, "SizingType", service, rules, path)
|
|
12540
12539
|
self.InitialSizeControl = self._InitialSizeControl(self, "InitialSizeControl", service, rules, path)
|
|
12540
|
+
self.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", service, rules, path)
|
|
12541
12541
|
self.WrapCurvatureNormalAngle = self._WrapCurvatureNormalAngle(self, "WrapCurvatureNormalAngle", service, rules, path)
|
|
12542
12542
|
self.CellsPerGap = self._CellsPerGap(self, "CellsPerGap", service, rules, path)
|
|
12543
12543
|
self.TargetSizeControl = self._TargetSizeControl(self, "TargetSizeControl", service, rules, path)
|
|
@@ -12588,11 +12588,6 @@ class Root(PyMenu):
|
|
|
12588
12588
|
Display advanced wrap-specific options that are also applied to the task. See this description for more information about wrap (and target) mesh size controls.
|
|
12589
12589
|
"""
|
|
12590
12590
|
|
|
12591
|
-
class _WrapGrowthRate(PyNumericalCommandArgumentsSubItem):
|
|
12592
|
-
"""
|
|
12593
|
-
Specify the increase in element edge length with each succeeding layer of elements.
|
|
12594
|
-
"""
|
|
12595
|
-
|
|
12596
12591
|
class _SizingType(PyTextualCommandArgumentsSubItem):
|
|
12597
12592
|
"""
|
|
12598
12593
|
Choose the type of sizing control (curvature, proximity, soft, or boi).
|
|
@@ -12603,6 +12598,11 @@ class Root(PyMenu):
|
|
|
12603
12598
|
Enable this field to display the initial size control in the graphics window.
|
|
12604
12599
|
"""
|
|
12605
12600
|
|
|
12601
|
+
class _WrapGrowthRate(PyNumericalCommandArgumentsSubItem):
|
|
12602
|
+
"""
|
|
12603
|
+
Specify the increase in element edge length with each succeeding layer of elements.
|
|
12604
|
+
"""
|
|
12605
|
+
|
|
12606
12606
|
class _WrapCurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
12607
12607
|
"""
|
|
12608
12608
|
Specify the maximum allowable angle (from 0 to 180 degrees) that one element edge is allowed to span given a particular geometry curvature. You can use this field to limit the number of elements that are generated along a curve or surface if the minimum size is too small for that particular curve.
|
|
@@ -13314,8 +13314,8 @@ class Root(PyMenu):
|
|
|
13314
13314
|
super().__init__(parent, attr, service, rules, path)
|
|
13315
13315
|
self.FacetMaxEdgeLength = self._FacetMaxEdgeLength(self, "FacetMaxEdgeLength", service, rules, path)
|
|
13316
13316
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
13317
|
-
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
13318
13317
|
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
13318
|
+
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
13319
13319
|
self.Refacet = self._Refacet(self, "Refacet", service, rules, path)
|
|
13320
13320
|
self.MaxEdgeLengthFactor = self._MaxEdgeLengthFactor(self, "MaxEdgeLengthFactor", service, rules, path)
|
|
13321
13321
|
|
|
@@ -13329,14 +13329,14 @@ class Root(PyMenu):
|
|
|
13329
13329
|
Specify a maximum element size for the imported model to avoid very large facets during the file import.
|
|
13330
13330
|
"""
|
|
13331
13331
|
|
|
13332
|
-
class
|
|
13332
|
+
class _NormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
13333
13333
|
"""
|
|
13334
|
-
Specify
|
|
13334
|
+
Specify a rotational angle (in degrees) of transformation.
|
|
13335
13335
|
"""
|
|
13336
13336
|
|
|
13337
|
-
class
|
|
13337
|
+
class _Deviation(PyNumericalCommandArgumentsSubItem):
|
|
13338
13338
|
"""
|
|
13339
|
-
Specify
|
|
13339
|
+
Specify the distance between facet edges and the geometry edges. Decreasing this value will result in more facets along curved edges.
|
|
13340
13340
|
"""
|
|
13341
13341
|
|
|
13342
13342
|
class _Refacet(PyParameterCommandArgumentsSubItem):
|
|
@@ -13409,8 +13409,8 @@ class Root(PyMenu):
|
|
|
13409
13409
|
super().__init__(parent, attr, service, rules, path)
|
|
13410
13410
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
13411
13411
|
self.RefacetDuringLoad = self._RefacetDuringLoad(self, "RefacetDuringLoad", service, rules, path)
|
|
13412
|
-
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
13413
13412
|
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
13413
|
+
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
13414
13414
|
|
|
13415
13415
|
class _MaxSize(PyNumericalCommandArgumentsSubItem):
|
|
13416
13416
|
"""
|
|
@@ -13422,14 +13422,14 @@ class Root(PyMenu):
|
|
|
13422
13422
|
This option is available when DSCO is selected for the Import Route. When enabled, this option will refacet the geometry as it is converted to a .fmd file. This option eliminates the need for any refaceting operation after the geometry is loaded, which can be expensive.
|
|
13423
13423
|
"""
|
|
13424
13424
|
|
|
13425
|
-
class
|
|
13425
|
+
class _Deviation(PyNumericalCommandArgumentsSubItem):
|
|
13426
13426
|
"""
|
|
13427
|
-
Specify
|
|
13427
|
+
Specify the distance between facet edges and the geometry edges. Decreasing this value will result in more facets along curved edges.
|
|
13428
13428
|
"""
|
|
13429
13429
|
|
|
13430
|
-
class
|
|
13430
|
+
class _NormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
13431
13431
|
"""
|
|
13432
|
-
Specify
|
|
13432
|
+
Specify a rotational angle (in degrees) of transformation.
|
|
13433
13433
|
"""
|
|
13434
13434
|
|
|
13435
13435
|
def create_instance(self) -> _PartManagementCommandArguments:
|
|
@@ -14020,14 +14020,14 @@ class Root(PyMenu):
|
|
|
14020
14020
|
self.ConnectLabelWildcard = self._ConnectLabelWildcard(self, "ConnectLabelWildcard", service, rules, path)
|
|
14021
14021
|
self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
|
|
14022
14022
|
self.RelativeShareTopologyTolerance = self._RelativeShareTopologyTolerance(self, "RelativeShareTopologyTolerance", service, rules, path)
|
|
14023
|
-
self.
|
|
14023
|
+
self.ShareTopologyAngle = self._ShareTopologyAngle(self, "ShareTopologyAngle", service, rules, path)
|
|
14024
14024
|
self.ExecuteJoinIntersect = self._ExecuteJoinIntersect(self, "ExecuteJoinIntersect", service, rules, path)
|
|
14025
14025
|
self.Operation = self._Operation(self, "Operation", service, rules, path)
|
|
14026
|
-
self.
|
|
14026
|
+
self.FluidLabelWildcard = self._FluidLabelWildcard(self, "FluidLabelWildcard", service, rules, path)
|
|
14027
14027
|
self.STToleranceIncrement = self._STToleranceIncrement(self, "STToleranceIncrement", service, rules, path)
|
|
14028
|
-
self.ShowShareTopologyPreferences = self._ShowShareTopologyPreferences(self, "ShowShareTopologyPreferences", service, rules, path)
|
|
14029
|
-
self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
|
|
14030
14028
|
self.IntfLabelList = self._IntfLabelList(self, "IntfLabelList", service, rules, path)
|
|
14029
|
+
self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
|
|
14030
|
+
self.ShowShareTopologyPreferences = self._ShowShareTopologyPreferences(self, "ShowShareTopologyPreferences", service, rules, path)
|
|
14031
14031
|
self.AdvancedImprove = self._AdvancedImprove(self, "AdvancedImprove", service, rules, path)
|
|
14032
14032
|
self.NumberOfJoinTries = self._NumberOfJoinTries(self, "NumberOfJoinTries", service, rules, path)
|
|
14033
14033
|
|
|
@@ -14056,9 +14056,9 @@ class Root(PyMenu):
|
|
|
14056
14056
|
Specify the relative tolerance for joining or intersecting face pairs, or the relative tolerance for connecting edge and face pairs.
|
|
14057
14057
|
"""
|
|
14058
14058
|
|
|
14059
|
-
class
|
|
14059
|
+
class _ShareTopologyAngle(PyNumericalCommandArgumentsSubItem):
|
|
14060
14060
|
"""
|
|
14061
|
-
|
|
14061
|
+
Specify the threshold angle for joining face pairs.
|
|
14062
14062
|
"""
|
|
14063
14063
|
|
|
14064
14064
|
class _ExecuteJoinIntersect(PyTextualCommandArgumentsSubItem):
|
|
@@ -14071,9 +14071,9 @@ class Root(PyMenu):
|
|
|
14071
14071
|
Choose whether to apply share topology using the Join-Intersect method where you join and/or intersect the problematic faces, or using the Interface Connect method where you connect edges of overlapping face pairs. Note that imprinting of overlapping faces in SCDM/Discovery is highly recommended for the Interface Connect method.
|
|
14072
14072
|
"""
|
|
14073
14073
|
|
|
14074
|
-
class
|
|
14074
|
+
class _FluidLabelWildcard(PyTextualCommandArgumentsSubItem):
|
|
14075
14075
|
"""
|
|
14076
|
-
|
|
14076
|
+
Argument FluidLabelWildcard.
|
|
14077
14077
|
"""
|
|
14078
14078
|
|
|
14079
14079
|
class _STToleranceIncrement(PyNumericalCommandArgumentsSubItem):
|
|
@@ -14081,9 +14081,9 @@ class Root(PyMenu):
|
|
|
14081
14081
|
Specify the increment by which the tolerance changes for each attempt to join face pairs.
|
|
14082
14082
|
"""
|
|
14083
14083
|
|
|
14084
|
-
class
|
|
14084
|
+
class _IntfLabelList(PyTextualCommandArgumentsSubItem):
|
|
14085
14085
|
"""
|
|
14086
|
-
|
|
14086
|
+
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...
|
|
14087
14087
|
"""
|
|
14088
14088
|
|
|
14089
14089
|
class _PerLabelList(PyTextualCommandArgumentsSubItem):
|
|
@@ -14091,9 +14091,9 @@ class Root(PyMenu):
|
|
|
14091
14091
|
Argument PerLabelList.
|
|
14092
14092
|
"""
|
|
14093
14093
|
|
|
14094
|
-
class
|
|
14094
|
+
class _ShowShareTopologyPreferences(PyParameterCommandArgumentsSubItem):
|
|
14095
14095
|
"""
|
|
14096
|
-
|
|
14096
|
+
Display advanced options that you may want to apply to the task.
|
|
14097
14097
|
"""
|
|
14098
14098
|
|
|
14099
14099
|
class _AdvancedImprove(PyTextualCommandArgumentsSubItem):
|
|
@@ -14177,12 +14177,12 @@ class Root(PyMenu):
|
|
|
14177
14177
|
super().__init__(parent, attr, service, rules, path)
|
|
14178
14178
|
self.SMQualityCollapseLimit = self._SMQualityCollapseLimit(self, "SMQualityCollapseLimit", service, rules, path)
|
|
14179
14179
|
self.AutoMerge = self._AutoMerge(self, "AutoMerge", service, rules, path)
|
|
14180
|
-
self.SMSeparation = self._SMSeparation(self, "SMSeparation", service, rules, path)
|
|
14181
|
-
self.SMSeparationAngle = self._SMSeparationAngle(self, "SMSeparationAngle", service, rules, path)
|
|
14182
|
-
self.FoldFaceLimit = self._FoldFaceLimit(self, "FoldFaceLimit", service, rules, path)
|
|
14183
14180
|
self.SMQualityImprove = self._SMQualityImprove(self, "SMQualityImprove", service, rules, path)
|
|
14184
|
-
self.
|
|
14181
|
+
self.SMSeparationAngle = self._SMSeparationAngle(self, "SMSeparationAngle", service, rules, path)
|
|
14182
|
+
self.SMSeparation = self._SMSeparation(self, "SMSeparation", service, rules, path)
|
|
14185
14183
|
self.ShowSurfaceMeshPreferences = self._ShowSurfaceMeshPreferences(self, "ShowSurfaceMeshPreferences", service, rules, path)
|
|
14184
|
+
self.TVMAutoControlCreation = self._TVMAutoControlCreation(self, "TVMAutoControlCreation", service, rules, path)
|
|
14185
|
+
self.FoldFaceLimit = self._FoldFaceLimit(self, "FoldFaceLimit", service, rules, path)
|
|
14186
14186
|
self.SMRemoveStep = self._SMRemoveStep(self, "SMRemoveStep", service, rules, path)
|
|
14187
14187
|
self.SMStepWidth = self._SMStepWidth(self, "SMStepWidth", service, rules, path)
|
|
14188
14188
|
self.VolumeMeshMaxSize = self._VolumeMeshMaxSize(self, "VolumeMeshMaxSize", service, rules, path)
|
|
@@ -14203,9 +14203,9 @@ class Root(PyMenu):
|
|
|
14203
14203
|
Argument AutoMerge.
|
|
14204
14204
|
"""
|
|
14205
14205
|
|
|
14206
|
-
class
|
|
14206
|
+
class _SMQualityImprove(PyTextualCommandArgumentsSubItem):
|
|
14207
14207
|
"""
|
|
14208
|
-
Argument
|
|
14208
|
+
Argument SMQualityImprove.
|
|
14209
14209
|
"""
|
|
14210
14210
|
|
|
14211
14211
|
class _SMSeparationAngle(PyNumericalCommandArgumentsSubItem):
|
|
@@ -14213,14 +14213,14 @@ class Root(PyMenu):
|
|
|
14213
14213
|
Argument SMSeparationAngle.
|
|
14214
14214
|
"""
|
|
14215
14215
|
|
|
14216
|
-
class
|
|
14216
|
+
class _SMSeparation(PyTextualCommandArgumentsSubItem):
|
|
14217
14217
|
"""
|
|
14218
|
-
Argument
|
|
14218
|
+
Argument SMSeparation.
|
|
14219
14219
|
"""
|
|
14220
14220
|
|
|
14221
|
-
class
|
|
14221
|
+
class _ShowSurfaceMeshPreferences(PyParameterCommandArgumentsSubItem):
|
|
14222
14222
|
"""
|
|
14223
|
-
Argument
|
|
14223
|
+
Argument ShowSurfaceMeshPreferences.
|
|
14224
14224
|
"""
|
|
14225
14225
|
|
|
14226
14226
|
class _TVMAutoControlCreation(PyTextualCommandArgumentsSubItem):
|
|
@@ -14228,9 +14228,9 @@ class Root(PyMenu):
|
|
|
14228
14228
|
Argument TVMAutoControlCreation.
|
|
14229
14229
|
"""
|
|
14230
14230
|
|
|
14231
|
-
class
|
|
14231
|
+
class _FoldFaceLimit(PyNumericalCommandArgumentsSubItem):
|
|
14232
14232
|
"""
|
|
14233
|
-
Argument
|
|
14233
|
+
Argument FoldFaceLimit.
|
|
14234
14234
|
"""
|
|
14235
14235
|
|
|
14236
14236
|
class _SMRemoveStep(PyTextualCommandArgumentsSubItem):
|
|
@@ -14360,9 +14360,9 @@ class Root(PyMenu):
|
|
|
14360
14360
|
def __init__(self, parent, attr, service, rules, path):
|
|
14361
14361
|
super().__init__(parent, attr, service, rules, path)
|
|
14362
14362
|
self.NewLabelObjects = self._NewLabelObjects(self, "NewLabelObjects", service, rules, path)
|
|
14363
|
-
self.NewLabels = self._NewLabels(self, "NewLabels", service, rules, path)
|
|
14364
|
-
self.NewLabelType = self._NewLabelType(self, "NewLabelType", service, rules, path)
|
|
14365
14363
|
self.NewLabelResolution = self._NewLabelResolution(self, "NewLabelResolution", service, rules, path)
|
|
14364
|
+
self.NewLabelType = self._NewLabelType(self, "NewLabelType", service, rules, path)
|
|
14365
|
+
self.NewLabels = self._NewLabels(self, "NewLabels", service, rules, path)
|
|
14366
14366
|
self.NewLabelCells = self._NewLabelCells(self, "NewLabelCells", service, rules, path)
|
|
14367
14367
|
self.NewLabelMax = self._NewLabelMax(self, "NewLabelMax", service, rules, path)
|
|
14368
14368
|
self.NewZoneType = self._NewZoneType(self, "NewZoneType", service, rules, path)
|
|
@@ -14374,9 +14374,9 @@ class Root(PyMenu):
|
|
|
14374
14374
|
Argument NewLabelObjects.
|
|
14375
14375
|
"""
|
|
14376
14376
|
|
|
14377
|
-
class
|
|
14377
|
+
class _NewLabelResolution(PyTextualCommandArgumentsSubItem):
|
|
14378
14378
|
"""
|
|
14379
|
-
Argument
|
|
14379
|
+
Argument NewLabelResolution.
|
|
14380
14380
|
"""
|
|
14381
14381
|
|
|
14382
14382
|
class _NewLabelType(PyTextualCommandArgumentsSubItem):
|
|
@@ -14384,9 +14384,9 @@ class Root(PyMenu):
|
|
|
14384
14384
|
Argument NewLabelType.
|
|
14385
14385
|
"""
|
|
14386
14386
|
|
|
14387
|
-
class
|
|
14387
|
+
class _NewLabels(PyTextualCommandArgumentsSubItem):
|
|
14388
14388
|
"""
|
|
14389
|
-
Argument
|
|
14389
|
+
Argument NewLabels.
|
|
14390
14390
|
"""
|
|
14391
14391
|
|
|
14392
14392
|
class _NewLabelCells(PyTextualCommandArgumentsSubItem):
|