ansys-fluent-core 0.34.1__py3-none-any.whl → 0.35.dev0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of ansys-fluent-core might be problematic. Click here for more details.
- ansys/fluent/core/__init__.py +48 -84
- ansys/fluent/core/codegen/allapigen.py +2 -2
- ansys/fluent/core/codegen/builtin_settingsgen.py +50 -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 +1 -1
- ansys/fluent/core/codegen/tuigen.py +4 -4
- ansys/fluent/core/data_model_cache.py +2 -2
- ansys/fluent/core/docker/docker_compose.py +8 -9
- ansys/fluent/core/docker/utils.py +1 -1
- ansys/fluent/core/examples/downloads.py +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 +55 -55
- ansys/fluent/core/generated/datamodel_231/meshing.py +209 -209
- ansys/fluent/core/generated/datamodel_232/flicing.py +45 -45
- ansys/fluent/core/generated/datamodel_232/meshing.py +205 -205
- ansys/fluent/core/generated/datamodel_241/flicing.py +30 -30
- ansys/fluent/core/generated/datamodel_241/meshing.py +298 -298
- ansys/fluent/core/generated/datamodel_242/flicing.py +35 -35
- ansys/fluent/core/generated/datamodel_242/meshing.py +321 -321
- ansys/fluent/core/generated/datamodel_242/part_management.py +3 -3
- ansys/fluent/core/generated/datamodel_251/flicing.py +40 -40
- ansys/fluent/core/generated/datamodel_251/meshing.py +315 -315
- ansys/fluent/core/generated/datamodel_251/part_management.py +6 -6
- ansys/fluent/core/generated/datamodel_252/flicing.py +45 -45
- ansys/fluent/core/generated/datamodel_252/meshing.py +398 -398
- ansys/fluent/core/generated/datamodel_261/flicing.py +50 -50
- ansys/fluent/core/generated/datamodel_261/meshing.py +406 -406
- ansys/fluent/core/generated/datamodel_261/meshing_utilities.py +616 -296
- ansys/fluent/core/generated/datamodel_261/part_management.py +10 -10
- ansys/fluent/core/generated/fluent_version_252.py +1 -1
- ansys/fluent/core/generated/fluent_version_261.py +3 -3
- ansys/fluent/core/generated/meshing/tui_261.py +1178 -1133
- ansys/fluent/core/generated/solver/settings_261.py +2378 -3023
- ansys/fluent/core/generated/solver/settings_261.pyi +1537 -1456
- 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 +2606 -3483
- ansys/fluent/core/launcher/container_launcher.py +19 -4
- ansys/fluent/core/launcher/fluent_container.py +48 -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 -2
- ansys/fluent/core/launcher/standalone_launcher.py +6 -3
- ansys/fluent/core/launcher/watchdog.py +3 -3
- ansys/fluent/core/launcher/watchdog_exec +1 -1
- ansys/fluent/core/logger.py +3 -1
- ansys/fluent/core/module_config.py +358 -0
- ansys/fluent/core/pyfluent_warnings.py +2 -2
- ansys/fluent/core/report.py +0 -2
- ansys/fluent/core/search.py +31 -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 +8 -2
- ansys/fluent/core/session_utilities.py +7 -0
- ansys/fluent/core/solver/flobject.py +6 -4
- 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 +2 -2
- {ansys_fluent_core-0.34.1.dist-info → ansys_fluent_core-0.35.dev0.dist-info}/METADATA +1 -1
- {ansys_fluent_core-0.34.1.dist-info → ansys_fluent_core-0.35.dev0.dist-info}/RECORD +81 -80
- {ansys_fluent_core-0.34.1.dist-info → ansys_fluent_core-0.35.dev0.dist-info}/LICENSE +0 -0
- {ansys_fluent_core-0.34.1.dist-info → ansys_fluent_core-0.35.dev0.dist-info}/WHEEL +0 -0
|
@@ -1302,10 +1302,10 @@ class Root(PyMenu):
|
|
|
1302
1302
|
self.ConnectLabelWildcard = self._ConnectLabelWildcard(self, "ConnectLabelWildcard", service, rules, path)
|
|
1303
1303
|
self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
|
|
1304
1304
|
self.RelativeShareTopologyTolerance = self._RelativeShareTopologyTolerance(self, "RelativeShareTopologyTolerance", service, rules, path)
|
|
1305
|
-
self.
|
|
1305
|
+
self.FluidLabelWildcard = self._FluidLabelWildcard(self, "FluidLabelWildcard", service, rules, path)
|
|
1306
1306
|
self.ExecuteJoinIntersect = self._ExecuteJoinIntersect(self, "ExecuteJoinIntersect", service, rules, path)
|
|
1307
1307
|
self.Operation = self._Operation(self, "Operation", service, rules, path)
|
|
1308
|
-
self.
|
|
1308
|
+
self.ShareTopologyAngle = self._ShareTopologyAngle(self, "ShareTopologyAngle", service, rules, path)
|
|
1309
1309
|
self.STToleranceIncrement = self._STToleranceIncrement(self, "STToleranceIncrement", service, rules, path)
|
|
1310
1310
|
self.ShowShareTopologyPreferences = self._ShowShareTopologyPreferences(self, "ShowShareTopologyPreferences", service, rules, path)
|
|
1311
1311
|
self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
|
|
@@ -1338,9 +1338,9 @@ class Root(PyMenu):
|
|
|
1338
1338
|
Specify the relative tolerance for joining or intersecting face pairs, or the relative tolerance for connecting edge and face pairs.
|
|
1339
1339
|
"""
|
|
1340
1340
|
|
|
1341
|
-
class
|
|
1341
|
+
class _FluidLabelWildcard(PyTextualCommandArgumentsSubItem):
|
|
1342
1342
|
"""
|
|
1343
|
-
|
|
1343
|
+
Argument FluidLabelWildcard.
|
|
1344
1344
|
"""
|
|
1345
1345
|
|
|
1346
1346
|
class _ExecuteJoinIntersect(PyTextualCommandArgumentsSubItem):
|
|
@@ -1353,9 +1353,9 @@ class Root(PyMenu):
|
|
|
1353
1353
|
Choose whether to apply share topology using the Join-Intersect method where you join and/or intersect the problematic faces, or using the Interface Connect method where you connect edges of overlapping face pairs. Note that imprinting of overlapping faces in SCDM/Discovery is highly recommended for the Interface Connect method.
|
|
1354
1354
|
"""
|
|
1355
1355
|
|
|
1356
|
-
class
|
|
1356
|
+
class _ShareTopologyAngle(PyNumericalCommandArgumentsSubItem):
|
|
1357
1357
|
"""
|
|
1358
|
-
|
|
1358
|
+
Specify the threshold angle for joining face pairs.
|
|
1359
1359
|
"""
|
|
1360
1360
|
|
|
1361
1361
|
class _STToleranceIncrement(PyNumericalCommandArgumentsSubItem):
|
|
@@ -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):
|
|
@@ -1772,9 +1772,9 @@ class Root(PyMenu):
|
|
|
1772
1772
|
self.ModifyAtInvalidNormals = self._ModifyAtInvalidNormals(self, "ModifyAtInvalidNormals", service, rules, path)
|
|
1773
1773
|
self.SplitPrism = self._SplitPrism(self, "SplitPrism", 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
|
-
self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
|
|
1777
1775
|
self.NumberOfSplitLayers = self._NumberOfSplitLayers(self, "NumberOfSplitLayers", service, rules, path)
|
|
1776
|
+
self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
|
|
1777
|
+
self.ShowLocalPrismPreferences = self._ShowLocalPrismPreferences(self, "ShowLocalPrismPreferences", 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)
|
|
1780
1780
|
self.IgnoreBoundaryLayers = self._IgnoreBoundaryLayers(self, "IgnoreBoundaryLayers", service, rules, path)
|
|
@@ -1819,9 +1819,9 @@ 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
1827
|
class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
|
|
@@ -1829,9 +1829,9 @@ class Root(PyMenu):
|
|
|
1829
1829
|
Argument LastRatioNumLayers.
|
|
1830
1830
|
"""
|
|
1831
1831
|
|
|
1832
|
-
class
|
|
1832
|
+
class _ShowLocalPrismPreferences(PyParameterCommandArgumentsSubItem):
|
|
1833
1833
|
"""
|
|
1834
|
-
|
|
1834
|
+
Display advanced options that you may want to apply to this task.
|
|
1835
1835
|
"""
|
|
1836
1836
|
|
|
1837
1837
|
class _AllowedTangencyAtInvalidNormals(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.ShowLocalPrismPreferences = self._ShowLocalPrismPreferences(self, "ShowLocalPrismPreferences", service, rules, path)
|
|
2097
|
-
self.NumberOfSplitLayers = self._NumberOfSplitLayers(self, "NumberOfSplitLayers", service, rules, path)
|
|
2098
2096
|
self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
|
|
2097
|
+
self.NumberOfSplitLayers = self._NumberOfSplitLayers(self, "NumberOfSplitLayers", service, rules, path)
|
|
2098
|
+
self.ShowLocalPrismPreferences = self._ShowLocalPrismPreferences(self, "ShowLocalPrismPreferences", 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,9 +2140,9 @@ class Root(PyMenu):
|
|
|
2140
2140
|
Argument InvalidNormalMethod.
|
|
2141
2141
|
"""
|
|
2142
2142
|
|
|
2143
|
-
class
|
|
2143
|
+
class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
|
|
2144
2144
|
"""
|
|
2145
|
-
|
|
2145
|
+
Argument LastRatioNumLayers.
|
|
2146
2146
|
"""
|
|
2147
2147
|
|
|
2148
2148
|
class _NumberOfSplitLayers(PyNumericalCommandArgumentsSubItem):
|
|
@@ -2150,9 +2150,9 @@ class Root(PyMenu):
|
|
|
2150
2150
|
Indicate the number of split prism layers you wish to apply to each layer that you specified for the boundary layer definition.
|
|
2151
2151
|
"""
|
|
2152
2152
|
|
|
2153
|
-
class
|
|
2153
|
+
class _ShowLocalPrismPreferences(PyParameterCommandArgumentsSubItem):
|
|
2154
2154
|
"""
|
|
2155
|
-
|
|
2155
|
+
Display advanced options that you may want to apply to this task.
|
|
2156
2156
|
"""
|
|
2157
2157
|
|
|
2158
2158
|
class _AllowedTangencyAtInvalidNormals(PyNumericalCommandArgumentsSubItem):
|
|
@@ -2395,11 +2395,11 @@ 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.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", service, rules, path)
|
|
2399
2398
|
self.SizingType = self._SizingType(self, "SizingType", service, rules, path)
|
|
2400
2399
|
self.InitialSizeControl = self._InitialSizeControl(self, "InitialSizeControl", service, rules, path)
|
|
2401
|
-
self.
|
|
2400
|
+
self.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", service, rules, path)
|
|
2402
2401
|
self.WrapCurvatureNormalAngle = self._WrapCurvatureNormalAngle(self, "WrapCurvatureNormalAngle", service, rules, path)
|
|
2402
|
+
self.CellsPerGap = self._CellsPerGap(self, "CellsPerGap", service, rules, path)
|
|
2403
2403
|
self.TargetSizeControl = self._TargetSizeControl(self, "TargetSizeControl", service, rules, path)
|
|
2404
2404
|
self.GrowthRate = self._GrowthRate(self, "GrowthRate", service, rules, path)
|
|
2405
2405
|
|
|
@@ -2448,11 +2448,6 @@ 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 _WrapGrowthRate(PyNumericalCommandArgumentsSubItem):
|
|
2452
|
-
"""
|
|
2453
|
-
Specify the increase in element edge length with each succeeding layer of elements.
|
|
2454
|
-
"""
|
|
2455
|
-
|
|
2456
2451
|
class _SizingType(PyTextualCommandArgumentsSubItem):
|
|
2457
2452
|
"""
|
|
2458
2453
|
Choose the type of sizing control (curvature, proximity, soft, or boi).
|
|
@@ -2463,9 +2458,9 @@ class Root(PyMenu):
|
|
|
2463
2458
|
Enable this field to display the initial size control in the graphics window.
|
|
2464
2459
|
"""
|
|
2465
2460
|
|
|
2466
|
-
class
|
|
2461
|
+
class _WrapGrowthRate(PyNumericalCommandArgumentsSubItem):
|
|
2467
2462
|
"""
|
|
2468
|
-
Specify the
|
|
2463
|
+
Specify the increase in element edge length with each succeeding layer of elements.
|
|
2469
2464
|
"""
|
|
2470
2465
|
|
|
2471
2466
|
class _WrapCurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
@@ -2473,6 +2468,11 @@ class Root(PyMenu):
|
|
|
2473
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.
|
|
2474
2469
|
"""
|
|
2475
2470
|
|
|
2471
|
+
class _CellsPerGap(PyNumericalCommandArgumentsSubItem):
|
|
2472
|
+
"""
|
|
2473
|
+
Specify the minimum number of layers of elements to be generated in the gaps. The number of cells per gap can be a real value, with a minimum value of 0.01.
|
|
2474
|
+
"""
|
|
2475
|
+
|
|
2476
2476
|
class _TargetSizeControl(PyParameterCommandArgumentsSubItem):
|
|
2477
2477
|
"""
|
|
2478
2478
|
Enable this field to display the target size control in the graphics window.
|
|
@@ -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.TargeSizeFieldFileName = self._TargeSizeFieldFileName(self, "TargeSizeFieldFileName", service, rules, path)
|
|
4166
4166
|
self.WrapTargetSizeFieldRatio = self._WrapTargetSizeFieldRatio(self, "WrapTargetSizeFieldRatio", service, rules, path)
|
|
4167
4167
|
self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", 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
4171
|
self.WrapTargetBothOptions = self._WrapTargetBothOptions(self, "WrapTargetBothOptions", service, rules, path)
|
|
4172
|
-
self.ExistingSizeField = self._ExistingSizeField(self, "ExistingSizeField", service, rules, path)
|
|
4173
|
-
self.TargetSizeFieldFileName = self._TargetSizeFieldFileName(self, "TargetSizeFieldFileName", service, rules, path)
|
|
4174
4172
|
self.SolidFluidRatio = self._SolidFluidRatio(self, "SolidFluidRatio", service, rules, path)
|
|
4173
|
+
self.TargetSizeFieldFileName = self._TargetSizeFieldFileName(self, "TargetSizeFieldFileName", service, rules, path)
|
|
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.WrapTargetRatio = self._WrapTargetRatio(self, "WrapTargetRatio", service, rules, path)
|
|
4177
4177
|
self.WrapTargetRaio = self._WrapTargetRaio(self, "WrapTargetRaio", service, rules, path)
|
|
4178
4178
|
|
|
4179
|
-
class
|
|
4179
|
+
class _TargeSizeFieldFileName(PyTextualCommandArgumentsSubItem):
|
|
4180
4180
|
"""
|
|
4181
|
-
|
|
4181
|
+
Indicate the name and location of the target size field file (\\*.sf).
|
|
4182
4182
|
"""
|
|
4183
4183
|
|
|
4184
4184
|
class _WrapTargetSizeFieldRatio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4211,9 +4211,9 @@ class Root(PyMenu):
|
|
|
4211
4211
|
Determine how the size controls are calculated in the Add Local Sizing task: using Both Wrap and Target values, by Target Only (the default), or by Wrap Only. For complex models, computational expense can be lowered by choosing one of the other options. If either Wrap Only or Target Only is selected, then the other values are determined using the Wrap/Target Size Ratio value.
|
|
4212
4212
|
"""
|
|
4213
4213
|
|
|
4214
|
-
class
|
|
4214
|
+
class _SolidFluidRatio(PyNumericalCommandArgumentsSubItem):
|
|
4215
4215
|
"""
|
|
4216
|
-
|
|
4216
|
+
Argument SolidFluidRatio.
|
|
4217
4217
|
"""
|
|
4218
4218
|
|
|
4219
4219
|
class _TargetSizeFieldFileName(PyTextualCommandArgumentsSubItem):
|
|
@@ -4221,9 +4221,9 @@ class Root(PyMenu):
|
|
|
4221
4221
|
Argument TargetSizeFieldFileName.
|
|
4222
4222
|
"""
|
|
4223
4223
|
|
|
4224
|
-
class
|
|
4224
|
+
class _ExistingSizeField(PyTextualCommandArgumentsSubItem):
|
|
4225
4225
|
"""
|
|
4226
|
-
|
|
4226
|
+
Determine which existing size field files will be used: Both Wrap and Target (the default), Target Only, or Wrap Only. For complex models, computational expense can be lowered by choosing one of the other options. If either Wrap Only or Target Only is selected, then the other values are determined using the Wrap/Target Size Ratio value.
|
|
4227
4227
|
"""
|
|
4228
4228
|
|
|
4229
4229
|
class _WrapSizeFieldFileName(PyTextualCommandArgumentsSubItem):
|
|
@@ -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 _WrapTargetRatio(PyNumericalCommandArgumentsSubItem):
|
|
4235
4235
|
"""
|
|
4236
|
-
|
|
4236
|
+
Argument WrapTargetRatio.
|
|
4237
4237
|
"""
|
|
4238
4238
|
|
|
4239
4239
|
class _WrapTargetRaio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4599,17 +4599,17 @@ 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.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
4603
|
-
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
|
|
4604
4602
|
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
4603
|
+
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", 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.X = self._X(self, "X", service, rules, path)
|
|
4608
|
+
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
4610
4609
|
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
4611
|
-
self.
|
|
4610
|
+
self.X = self._X(self, "X", service, rules, path)
|
|
4612
4611
|
self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
|
|
4612
|
+
self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
|
|
4613
4613
|
self.FirstHeight = self._FirstHeight(self, "FirstHeight", service, rules, path)
|
|
4614
4614
|
self.BoundaryLayerHeight = self._BoundaryLayerHeight(self, "BoundaryLayerHeight", service, rules, path)
|
|
4615
4615
|
self.CrossWakeGrowthFactor = self._CrossWakeGrowthFactor(self, "CrossWakeGrowthFactor", service, rules, path)
|
|
@@ -4644,9 +4644,9 @@ class Root(PyMenu):
|
|
|
4644
4644
|
Argument AspectRatio.
|
|
4645
4645
|
"""
|
|
4646
4646
|
|
|
4647
|
-
class
|
|
4647
|
+
class _Rate(PyNumericalCommandArgumentsSubItem):
|
|
4648
4648
|
"""
|
|
4649
|
-
Argument
|
|
4649
|
+
Argument Rate.
|
|
4650
4650
|
"""
|
|
4651
4651
|
|
|
4652
4652
|
class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4654,9 +4654,9 @@ class Root(PyMenu):
|
|
|
4654
4654
|
Argument WakeGrowthFactor.
|
|
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,14 +4674,9 @@ class Root(PyMenu):
|
|
|
4674
4674
|
Argument EdgeSelectionList.
|
|
4675
4675
|
"""
|
|
4676
4676
|
|
|
4677
|
-
class
|
|
4678
|
-
"""
|
|
4679
|
-
Argument BoundaryLayerLevels.
|
|
4680
|
-
"""
|
|
4681
|
-
|
|
4682
|
-
class _X(PyNumericalCommandArgumentsSubItem):
|
|
4677
|
+
class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
|
|
4683
4678
|
"""
|
|
4684
|
-
Argument
|
|
4679
|
+
Argument NumberOfLayers.
|
|
4685
4680
|
"""
|
|
4686
4681
|
|
|
4687
4682
|
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4689,9 +4684,9 @@ class Root(PyMenu):
|
|
|
4689
4684
|
Argument LastRatioPercentage.
|
|
4690
4685
|
"""
|
|
4691
4686
|
|
|
4692
|
-
class
|
|
4687
|
+
class _X(PyNumericalCommandArgumentsSubItem):
|
|
4693
4688
|
"""
|
|
4694
|
-
Argument
|
|
4689
|
+
Argument X.
|
|
4695
4690
|
"""
|
|
4696
4691
|
|
|
4697
4692
|
class _FlipDirection(PyParameterCommandArgumentsSubItem):
|
|
@@ -4699,6 +4694,11 @@ class Root(PyMenu):
|
|
|
4699
4694
|
Argument FlipDirection.
|
|
4700
4695
|
"""
|
|
4701
4696
|
|
|
4697
|
+
class _OffsetMethodType(PyTextualCommandArgumentsSubItem):
|
|
4698
|
+
"""
|
|
4699
|
+
Argument OffsetMethodType.
|
|
4700
|
+
"""
|
|
4701
|
+
|
|
4702
4702
|
class _FirstHeight(PyNumericalCommandArgumentsSubItem):
|
|
4703
4703
|
"""
|
|
4704
4704
|
Argument FirstHeight.
|
|
@@ -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
|
-
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
4743
4741
|
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
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,9 +4804,9 @@ class Root(PyMenu):
|
|
|
4804
4804
|
Argument Node3.
|
|
4805
4805
|
"""
|
|
4806
4806
|
|
|
4807
|
-
class
|
|
4807
|
+
class _X2(PyNumericalCommandArgumentsSubItem):
|
|
4808
4808
|
"""
|
|
4809
|
-
Argument
|
|
4809
|
+
Argument X2.
|
|
4810
4810
|
"""
|
|
4811
4811
|
|
|
4812
4812
|
class _Node2(PyTextualCommandArgumentsSubItem):
|
|
@@ -4814,9 +4814,9 @@ class Root(PyMenu):
|
|
|
4814
4814
|
Argument Node2.
|
|
4815
4815
|
"""
|
|
4816
4816
|
|
|
4817
|
-
class
|
|
4817
|
+
class _Y_Offset(PyNumericalCommandArgumentsSubItem):
|
|
4818
4818
|
"""
|
|
4819
|
-
Argument
|
|
4819
|
+
Argument Y-Offset.
|
|
4820
4820
|
"""
|
|
4821
4821
|
|
|
4822
4822
|
class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
|
|
@@ -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.BoxCenterZ = self._BoxCenterZ(self, "BoxCenterZ", service, rules, path)
|
|
4887
4886
|
self.CylinderRadius2 = self._CylinderRadius2(self, "CylinderRadius2", service, rules, path)
|
|
4887
|
+
self.BoxCenterZ = self._BoxCenterZ(self, "BoxCenterZ", service, rules, path)
|
|
4888
4888
|
self.CylinderY2 = self._CylinderY2(self, "CylinderY2", service, rules, path)
|
|
4889
4889
|
|
|
4890
4890
|
class _CylinderZ2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4942,14 +4942,14 @@ class Root(PyMenu):
|
|
|
4942
4942
|
Argument BoxCenterX.
|
|
4943
4943
|
"""
|
|
4944
4944
|
|
|
4945
|
-
class
|
|
4945
|
+
class _CylinderRadius2(PyNumericalCommandArgumentsSubItem):
|
|
4946
4946
|
"""
|
|
4947
|
-
Argument
|
|
4947
|
+
Argument CylinderRadius2.
|
|
4948
4948
|
"""
|
|
4949
4949
|
|
|
4950
|
-
class
|
|
4950
|
+
class _BoxCenterZ(PyNumericalCommandArgumentsSubItem):
|
|
4951
4951
|
"""
|
|
4952
|
-
Argument
|
|
4952
|
+
Argument BoxCenterZ.
|
|
4953
4953
|
"""
|
|
4954
4954
|
|
|
4955
4955
|
class _CylinderY2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5095,7 +5095,7 @@ class Root(PyMenu):
|
|
|
5095
5095
|
def __init__(self, parent, attr, service, rules, path):
|
|
5096
5096
|
super().__init__(parent, attr, service, rules, path)
|
|
5097
5097
|
self.SizeRelativeLength = self._SizeRelativeLength(self, "SizeRelativeLength", service, rules, path)
|
|
5098
|
-
self.
|
|
5098
|
+
self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
|
|
5099
5099
|
self.XminRatio = self._XminRatio(self, "XminRatio", service, rules, path)
|
|
5100
5100
|
self.YminRatio = self._YminRatio(self, "YminRatio", service, rules, path)
|
|
5101
5101
|
self.Zmin = self._Zmin(self, "Zmin", service, rules, path)
|
|
@@ -5106,16 +5106,16 @@ class Root(PyMenu):
|
|
|
5106
5106
|
self.Xmin = self._Xmin(self, "Xmin", service, rules, path)
|
|
5107
5107
|
self.YmaxRatio = self._YmaxRatio(self, "YmaxRatio", service, rules, path)
|
|
5108
5108
|
self.ZmaxRatio = self._ZmaxRatio(self, "ZmaxRatio", service, rules, path)
|
|
5109
|
-
self.
|
|
5109
|
+
self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
|
|
5110
5110
|
|
|
5111
5111
|
class _SizeRelativeLength(PyTextualCommandArgumentsSubItem):
|
|
5112
5112
|
"""
|
|
5113
5113
|
Argument SizeRelativeLength.
|
|
5114
5114
|
"""
|
|
5115
5115
|
|
|
5116
|
-
class
|
|
5116
|
+
class _Xmax(PyNumericalCommandArgumentsSubItem):
|
|
5117
5117
|
"""
|
|
5118
|
-
|
|
5118
|
+
Specify the x-coordinate of the offset collar mesh.
|
|
5119
5119
|
"""
|
|
5120
5120
|
|
|
5121
5121
|
class _XminRatio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5168,9 +5168,9 @@ class Root(PyMenu):
|
|
|
5168
5168
|
Argument ZmaxRatio.
|
|
5169
5169
|
"""
|
|
5170
5170
|
|
|
5171
|
-
class
|
|
5171
|
+
class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
|
|
5172
5172
|
"""
|
|
5173
|
-
|
|
5173
|
+
Argument XmaxRatio.
|
|
5174
5174
|
"""
|
|
5175
5175
|
|
|
5176
5176
|
class _OffsetObject(PySingletonCommandArgumentsSubItem):
|
|
@@ -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
5189
|
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
5191
5190
|
self.AspectRatio = self._AspectRatio(self, "AspectRatio", 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.
|
|
5196
|
-
self.X = self._X(self, "X", service, rules, path)
|
|
5195
|
+
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
5197
5196
|
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
5198
|
-
self.
|
|
5197
|
+
self.X = self._X(self, "X", service, rules, path)
|
|
5199
5198
|
self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
|
|
5199
|
+
self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", 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,11 +5231,6 @@ class Root(PyMenu):
|
|
|
5231
5231
|
Argument BoundaryLayerLevels.
|
|
5232
5232
|
"""
|
|
5233
5233
|
|
|
5234
|
-
class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
|
|
5235
|
-
"""
|
|
5236
|
-
Argument NumberOfLayers.
|
|
5237
|
-
"""
|
|
5238
|
-
|
|
5239
5234
|
class _Rate(PyNumericalCommandArgumentsSubItem):
|
|
5240
5235
|
"""
|
|
5241
5236
|
Argument Rate.
|
|
@@ -5246,6 +5241,11 @@ class Root(PyMenu):
|
|
|
5246
5241
|
Argument AspectRatio.
|
|
5247
5242
|
"""
|
|
5248
5243
|
|
|
5244
|
+
class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
|
|
5245
|
+
"""
|
|
5246
|
+
Argument WakeGrowthFactor.
|
|
5247
|
+
"""
|
|
5248
|
+
|
|
5249
5249
|
class _FlowDirection(PyTextualCommandArgumentsSubItem):
|
|
5250
5250
|
"""
|
|
5251
5251
|
Argument FlowDirection.
|
|
@@ -5261,14 +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
|
|
5265
|
-
"""
|
|
5266
|
-
Argument WakeGrowthFactor.
|
|
5267
|
-
"""
|
|
5268
|
-
|
|
5269
|
-
class _X(PyNumericalCommandArgumentsSubItem):
|
|
5264
|
+
class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
|
|
5270
5265
|
"""
|
|
5271
|
-
|
|
5266
|
+
Argument NumberOfLayers.
|
|
5272
5267
|
"""
|
|
5273
5268
|
|
|
5274
5269
|
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5276,9 +5271,9 @@ class Root(PyMenu):
|
|
|
5276
5271
|
Argument LastRatioPercentage.
|
|
5277
5272
|
"""
|
|
5278
5273
|
|
|
5279
|
-
class
|
|
5274
|
+
class _X(PyNumericalCommandArgumentsSubItem):
|
|
5280
5275
|
"""
|
|
5281
|
-
|
|
5276
|
+
Specify the x-coordinate of the offset collar mesh.
|
|
5282
5277
|
"""
|
|
5283
5278
|
|
|
5284
5279
|
class _FlipDirection(PyParameterCommandArgumentsSubItem):
|
|
@@ -5286,6 +5281,11 @@ class Root(PyMenu):
|
|
|
5286
5281
|
Argument FlipDirection.
|
|
5287
5282
|
"""
|
|
5288
5283
|
|
|
5284
|
+
class _OffsetMethodType(PyTextualCommandArgumentsSubItem):
|
|
5285
|
+
"""
|
|
5286
|
+
Argument OffsetMethodType.
|
|
5287
|
+
"""
|
|
5288
|
+
|
|
5289
5289
|
class _FirstHeight(PyNumericalCommandArgumentsSubItem):
|
|
5290
5290
|
"""
|
|
5291
5291
|
Argument FirstHeight.
|
|
@@ -5325,9 +5325,9 @@ 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.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
5329
|
-
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
5330
5328
|
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
5329
|
+
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
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
|
|
|
@@ -5391,9 +5391,9 @@ class Root(PyMenu):
|
|
|
5391
5391
|
Argument Node3.
|
|
5392
5392
|
"""
|
|
5393
5393
|
|
|
5394
|
-
class
|
|
5394
|
+
class _Y_Offset(PyNumericalCommandArgumentsSubItem):
|
|
5395
5395
|
"""
|
|
5396
|
-
Argument
|
|
5396
|
+
Argument Y-Offset.
|
|
5397
5397
|
"""
|
|
5398
5398
|
|
|
5399
5399
|
class _X2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5401,9 +5401,9 @@ class Root(PyMenu):
|
|
|
5401
5401
|
Argument X2.
|
|
5402
5402
|
"""
|
|
5403
5403
|
|
|
5404
|
-
class
|
|
5404
|
+
class _Node2(PyTextualCommandArgumentsSubItem):
|
|
5405
5405
|
"""
|
|
5406
|
-
Argument
|
|
5406
|
+
Argument Node2.
|
|
5407
5407
|
"""
|
|
5408
5408
|
|
|
5409
5409
|
class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5460,12 +5460,12 @@ 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
|
-
self.BoxZLength = self._BoxZLength(self, "BoxZLength", service, rules, path)
|
|
5467
|
-
self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
|
|
5468
5466
|
self.BoxXLength = self._BoxXLength(self, "BoxXLength", service, rules, path)
|
|
5467
|
+
self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
|
|
5468
|
+
self.BoxZLength = self._BoxZLength(self, "BoxZLength", service, rules, path)
|
|
5469
5469
|
self.BoxCenterY = self._BoxCenterY(self, "BoxCenterY", service, rules, path)
|
|
5470
5470
|
self.CylinderZ1 = self._CylinderZ1(self, "CylinderZ1", service, rules, path)
|
|
5471
5471
|
self.CylinderRadius1 = self._CylinderRadius1(self, "CylinderRadius1", 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):
|
|
@@ -5494,9 +5494,9 @@ class Root(PyMenu):
|
|
|
5494
5494
|
Argument CylinderX1.
|
|
5495
5495
|
"""
|
|
5496
5496
|
|
|
5497
|
-
class
|
|
5497
|
+
class _BoxXLength(PyNumericalCommandArgumentsSubItem):
|
|
5498
5498
|
"""
|
|
5499
|
-
Argument
|
|
5499
|
+
Argument BoxXLength.
|
|
5500
5500
|
"""
|
|
5501
5501
|
|
|
5502
5502
|
class _CylinderY1(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5504,9 +5504,9 @@ class Root(PyMenu):
|
|
|
5504
5504
|
Argument CylinderY1.
|
|
5505
5505
|
"""
|
|
5506
5506
|
|
|
5507
|
-
class
|
|
5507
|
+
class _BoxZLength(PyNumericalCommandArgumentsSubItem):
|
|
5508
5508
|
"""
|
|
5509
|
-
Argument
|
|
5509
|
+
Argument BoxZLength.
|
|
5510
5510
|
"""
|
|
5511
5511
|
|
|
5512
5512
|
class _BoxCenterY(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5776,15 +5776,15 @@ class Root(PyMenu):
|
|
|
5776
5776
|
self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
|
|
5777
5777
|
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
5778
5778
|
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
|
|
5779
|
-
self.
|
|
5779
|
+
self.Rate = self._Rate(self, "Rate", 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.
|
|
5784
|
-
self.X = self._X(self, "X", service, rules, path)
|
|
5783
|
+
self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
|
|
5785
5784
|
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
5786
|
-
self.
|
|
5785
|
+
self.X = self._X(self, "X", 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)
|
|
@@ -5829,9 +5829,9 @@ class Root(PyMenu):
|
|
|
5829
5829
|
Argument WakeGrowthFactor.
|
|
5830
5830
|
"""
|
|
5831
5831
|
|
|
5832
|
-
class
|
|
5832
|
+
class _Rate(PyNumericalCommandArgumentsSubItem):
|
|
5833
5833
|
"""
|
|
5834
|
-
|
|
5834
|
+
Specify the rate of growth of the boundary layer.
|
|
5835
5835
|
"""
|
|
5836
5836
|
|
|
5837
5837
|
class _FlowDirection(PyTextualCommandArgumentsSubItem):
|
|
@@ -5849,24 +5849,19 @@ 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
|
-
class
|
|
5858
|
-
"""
|
|
5859
|
-
Argument X.
|
|
5860
|
-
"""
|
|
5861
|
-
|
|
5862
|
-
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
5857
|
+
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
5863
5858
|
"""
|
|
5864
5859
|
Specify the offset height of the last layer as a percentage of the local base mesh size.
|
|
5865
5860
|
"""
|
|
5866
5861
|
|
|
5867
|
-
class
|
|
5862
|
+
class _X(PyNumericalCommandArgumentsSubItem):
|
|
5868
5863
|
"""
|
|
5869
|
-
Argument
|
|
5864
|
+
Argument X.
|
|
5870
5865
|
"""
|
|
5871
5866
|
|
|
5872
5867
|
class _OffsetMethodType(PyTextualCommandArgumentsSubItem):
|
|
@@ -5874,6 +5869,11 @@ class Root(PyMenu):
|
|
|
5874
5869
|
Choose the method that will be used to create the boundary layer, or prism, controls.
|
|
5875
5870
|
"""
|
|
5876
5871
|
|
|
5872
|
+
class _FlipDirection(PyParameterCommandArgumentsSubItem):
|
|
5873
|
+
"""
|
|
5874
|
+
Argument FlipDirection.
|
|
5875
|
+
"""
|
|
5876
|
+
|
|
5877
5877
|
class _FirstHeight(PyNumericalCommandArgumentsSubItem):
|
|
5878
5878
|
"""
|
|
5879
5879
|
Specify the height of the first layer of cells in the boundary layer.
|
|
@@ -5907,15 +5907,15 @@ class Root(PyMenu):
|
|
|
5907
5907
|
self.X1 = self._X1(self, "X1", service, rules, path)
|
|
5908
5908
|
self.Y1 = self._Y1(self, "Y1", service, rules, path)
|
|
5909
5909
|
self.Z_Offset = self._Z_Offset(self, "Z-Offset", service, rules, path)
|
|
5910
|
-
self.Z1 = self._Z1(self, "Z1", service, rules, path)
|
|
5911
|
-
self.Node1 = self._Node1(self, "Node1", service, rules, path)
|
|
5912
5910
|
self.Z2 = self._Z2(self, "Z2", service, rules, path)
|
|
5911
|
+
self.Node1 = self._Node1(self, "Node1", service, rules, path)
|
|
5912
|
+
self.Z1 = self._Z1(self, "Z1", service, rules, path)
|
|
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.X2 = self._X2(self, "X2", service, rules, path)
|
|
5917
|
-
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
5918
5916
|
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
5917
|
+
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
5918
|
+
self.X2 = self._X2(self, "X2", 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
|
|
|
@@ -5949,9 +5949,9 @@ class Root(PyMenu):
|
|
|
5949
5949
|
Argument Z-Offset.
|
|
5950
5950
|
"""
|
|
5951
5951
|
|
|
5952
|
-
class
|
|
5952
|
+
class _Z2(PyNumericalCommandArgumentsSubItem):
|
|
5953
5953
|
"""
|
|
5954
|
-
Argument
|
|
5954
|
+
Argument Z2.
|
|
5955
5955
|
"""
|
|
5956
5956
|
|
|
5957
5957
|
class _Node1(PyTextualCommandArgumentsSubItem):
|
|
@@ -5959,9 +5959,9 @@ class Root(PyMenu):
|
|
|
5959
5959
|
Argument Node1.
|
|
5960
5960
|
"""
|
|
5961
5961
|
|
|
5962
|
-
class
|
|
5962
|
+
class _Z1(PyNumericalCommandArgumentsSubItem):
|
|
5963
5963
|
"""
|
|
5964
|
-
Argument
|
|
5964
|
+
Argument Z1.
|
|
5965
5965
|
"""
|
|
5966
5966
|
|
|
5967
5967
|
class _Radius2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -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 _Y_Offset(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5989,9 +5989,9 @@ class Root(PyMenu):
|
|
|
5989
5989
|
Argument Y-Offset.
|
|
5990
5990
|
"""
|
|
5991
5991
|
|
|
5992
|
-
class
|
|
5992
|
+
class _X2(PyNumericalCommandArgumentsSubItem):
|
|
5993
5993
|
"""
|
|
5994
|
-
Argument
|
|
5994
|
+
Argument X2.
|
|
5995
5995
|
"""
|
|
5996
5996
|
|
|
5997
5997
|
class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
|
|
@@ -6048,12 +6048,12 @@ class Root(PyMenu):
|
|
|
6048
6048
|
def __init__(self, parent, attr, service, rules, path):
|
|
6049
6049
|
super().__init__(parent, attr, service, rules, path)
|
|
6050
6050
|
self.CylinderZ2 = self._CylinderZ2(self, "CylinderZ2", service, rules, path)
|
|
6051
|
-
self.CylinderX2 = self._CylinderX2(self, "CylinderX2", service, rules, path)
|
|
6052
6051
|
self.BoxYLength = self._BoxYLength(self, "BoxYLength", service, rules, path)
|
|
6052
|
+
self.CylinderX2 = self._CylinderX2(self, "CylinderX2", service, rules, path)
|
|
6053
6053
|
self.CylinderX1 = self._CylinderX1(self, "CylinderX1", service, rules, path)
|
|
6054
|
-
self.BoxXLength = self._BoxXLength(self, "BoxXLength", service, rules, path)
|
|
6055
|
-
self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
|
|
6056
6054
|
self.BoxZLength = self._BoxZLength(self, "BoxZLength", service, rules, path)
|
|
6055
|
+
self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
|
|
6056
|
+
self.BoxXLength = self._BoxXLength(self, "BoxXLength", service, rules, path)
|
|
6057
6057
|
self.BoxCenterY = self._BoxCenterY(self, "BoxCenterY", service, rules, path)
|
|
6058
6058
|
self.CylinderZ1 = self._CylinderZ1(self, "CylinderZ1", service, rules, path)
|
|
6059
6059
|
self.CylinderRadius1 = self._CylinderRadius1(self, "CylinderRadius1", service, rules, path)
|
|
@@ -6067,14 +6067,14 @@ class Root(PyMenu):
|
|
|
6067
6067
|
Argument CylinderZ2.
|
|
6068
6068
|
"""
|
|
6069
6069
|
|
|
6070
|
-
class
|
|
6070
|
+
class _BoxYLength(PyNumericalCommandArgumentsSubItem):
|
|
6071
6071
|
"""
|
|
6072
|
-
Argument
|
|
6072
|
+
Argument BoxYLength.
|
|
6073
6073
|
"""
|
|
6074
6074
|
|
|
6075
|
-
class
|
|
6075
|
+
class _CylinderX2(PyNumericalCommandArgumentsSubItem):
|
|
6076
6076
|
"""
|
|
6077
|
-
Argument
|
|
6077
|
+
Argument CylinderX2.
|
|
6078
6078
|
"""
|
|
6079
6079
|
|
|
6080
6080
|
class _CylinderX1(PyNumericalCommandArgumentsSubItem):
|
|
@@ -6082,9 +6082,9 @@ class Root(PyMenu):
|
|
|
6082
6082
|
Argument CylinderX1.
|
|
6083
6083
|
"""
|
|
6084
6084
|
|
|
6085
|
-
class
|
|
6085
|
+
class _BoxZLength(PyNumericalCommandArgumentsSubItem):
|
|
6086
6086
|
"""
|
|
6087
|
-
Argument
|
|
6087
|
+
Argument BoxZLength.
|
|
6088
6088
|
"""
|
|
6089
6089
|
|
|
6090
6090
|
class _CylinderY1(PyNumericalCommandArgumentsSubItem):
|
|
@@ -6092,9 +6092,9 @@ class Root(PyMenu):
|
|
|
6092
6092
|
Argument CylinderY1.
|
|
6093
6093
|
"""
|
|
6094
6094
|
|
|
6095
|
-
class
|
|
6095
|
+
class _BoxXLength(PyNumericalCommandArgumentsSubItem):
|
|
6096
6096
|
"""
|
|
6097
|
-
Argument
|
|
6097
|
+
Argument BoxXLength.
|
|
6098
6098
|
"""
|
|
6099
6099
|
|
|
6100
6100
|
class _BoxCenterY(PyNumericalCommandArgumentsSubItem):
|
|
@@ -6982,17 +6982,17 @@ 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.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
6985
6986
|
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
6986
|
-
self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
|
|
6987
6987
|
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", 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)
|
|
6991
|
-
self.
|
|
6992
|
-
self.X = self._X(self, "X", service, rules, path)
|
|
6991
|
+
self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
|
|
6993
6992
|
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
6994
|
-
self.
|
|
6993
|
+
self.X = self._X(self, "X", service, rules, path)
|
|
6995
6994
|
self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
|
|
6995
|
+
self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
|
|
6996
6996
|
self.FirstHeight = self._FirstHeight(self, "FirstHeight", service, rules, path)
|
|
6997
6997
|
self.BoundaryLayerHeight = self._BoundaryLayerHeight(self, "BoundaryLayerHeight", service, rules, path)
|
|
6998
6998
|
self.CrossWakeGrowthFactor = self._CrossWakeGrowthFactor(self, "CrossWakeGrowthFactor", service, rules, path)
|
|
@@ -7027,14 +7027,14 @@ 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
|
|
7030
|
+
class _Rate(PyNumericalCommandArgumentsSubItem):
|
|
7031
7031
|
"""
|
|
7032
|
-
Argument
|
|
7032
|
+
Argument Rate.
|
|
7033
7033
|
"""
|
|
7034
7034
|
|
|
7035
|
-
class
|
|
7035
|
+
class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
|
|
7036
7036
|
"""
|
|
7037
|
-
Argument
|
|
7037
|
+
Argument NumberOfLayers.
|
|
7038
7038
|
"""
|
|
7039
7039
|
|
|
7040
7040
|
class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
|
|
@@ -7057,14 +7057,9 @@ class Root(PyMenu):
|
|
|
7057
7057
|
Argument EdgeSelectionList.
|
|
7058
7058
|
"""
|
|
7059
7059
|
|
|
7060
|
-
class
|
|
7061
|
-
"""
|
|
7062
|
-
Argument Rate.
|
|
7063
|
-
"""
|
|
7064
|
-
|
|
7065
|
-
class _X(PyNumericalCommandArgumentsSubItem):
|
|
7060
|
+
class _AspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
7066
7061
|
"""
|
|
7067
|
-
|
|
7062
|
+
Argument AspectRatio.
|
|
7068
7063
|
"""
|
|
7069
7064
|
|
|
7070
7065
|
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
@@ -7072,9 +7067,9 @@ class Root(PyMenu):
|
|
|
7072
7067
|
Argument LastRatioPercentage.
|
|
7073
7068
|
"""
|
|
7074
7069
|
|
|
7075
|
-
class
|
|
7070
|
+
class _X(PyNumericalCommandArgumentsSubItem):
|
|
7076
7071
|
"""
|
|
7077
|
-
|
|
7072
|
+
Specify the X-coordinate for the initial position of the cylindrical refinement region.
|
|
7078
7073
|
"""
|
|
7079
7074
|
|
|
7080
7075
|
class _FlipDirection(PyParameterCommandArgumentsSubItem):
|
|
@@ -7082,6 +7077,11 @@ class Root(PyMenu):
|
|
|
7082
7077
|
Reverses the orientation of the refinement region.
|
|
7083
7078
|
"""
|
|
7084
7079
|
|
|
7080
|
+
class _OffsetMethodType(PyTextualCommandArgumentsSubItem):
|
|
7081
|
+
"""
|
|
7082
|
+
Argument OffsetMethodType.
|
|
7083
|
+
"""
|
|
7084
|
+
|
|
7085
7085
|
class _FirstHeight(PyNumericalCommandArgumentsSubItem):
|
|
7086
7086
|
"""
|
|
7087
7087
|
Argument FirstHeight.
|
|
@@ -7115,15 +7115,15 @@ class Root(PyMenu):
|
|
|
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.Z2 = self._Z2(self, "Z2", service, rules, path)
|
|
7119
|
-
self.Node1 = self._Node1(self, "Node1", service, rules, path)
|
|
7120
7118
|
self.Z1 = self._Z1(self, "Z1", service, rules, path)
|
|
7119
|
+
self.Node1 = self._Node1(self, "Node1", service, rules, path)
|
|
7120
|
+
self.Z2 = self._Z2(self, "Z2", 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)
|
|
7124
|
+
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
7124
7125
|
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
7125
7126
|
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
7126
|
-
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
7127
7127
|
self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
|
|
7128
7128
|
self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
|
|
7129
7129
|
|
|
@@ -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 _Z1(PyNumericalCommandArgumentsSubItem):
|
|
7161
7161
|
"""
|
|
7162
|
-
Specify the Z-coordinate of the
|
|
7162
|
+
Specify the Z-coordinate of the first 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 _Z2(PyNumericalCommandArgumentsSubItem):
|
|
7171
7171
|
"""
|
|
7172
|
-
Specify the Z-coordinate of the
|
|
7172
|
+
Specify the Z-coordinate of the second position of the cylinder.
|
|
7173
7173
|
"""
|
|
7174
7174
|
|
|
7175
7175
|
class _Radius2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -7187,6 +7187,11 @@ class Root(PyMenu):
|
|
|
7187
7187
|
Argument Node3.
|
|
7188
7188
|
"""
|
|
7189
7189
|
|
|
7190
|
+
class _X2(PyNumericalCommandArgumentsSubItem):
|
|
7191
|
+
"""
|
|
7192
|
+
Specify the X-coordinate of the second position of the cylinder.
|
|
7193
|
+
"""
|
|
7194
|
+
|
|
7190
7195
|
class _Y_Offset(PyNumericalCommandArgumentsSubItem):
|
|
7191
7196
|
"""
|
|
7192
7197
|
Specify the Y-coordinate for the offset of the initial position of the cylinder.
|
|
@@ -7197,11 +7202,6 @@ class Root(PyMenu):
|
|
|
7197
7202
|
Argument Node2.
|
|
7198
7203
|
"""
|
|
7199
7204
|
|
|
7200
|
-
class _X2(PyNumericalCommandArgumentsSubItem):
|
|
7201
|
-
"""
|
|
7202
|
-
Specify the X-coordinate of the second position of the cylinder.
|
|
7203
|
-
"""
|
|
7204
|
-
|
|
7205
7205
|
class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
|
|
7206
7206
|
"""
|
|
7207
7207
|
Argument HeightFrontInc.
|
|
@@ -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.BoxXLength = self._BoxXLength(self, "BoxXLength", service, rules, path)
|
|
7263
7263
|
self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
|
|
@@ -7266,8 +7266,8 @@ class Root(PyMenu):
|
|
|
7266
7266
|
self.CylinderZ1 = self._CylinderZ1(self, "CylinderZ1", service, rules, path)
|
|
7267
7267
|
self.CylinderRadius1 = self._CylinderRadius1(self, "CylinderRadius1", service, rules, path)
|
|
7268
7268
|
self.BoxCenterX = self._BoxCenterX(self, "BoxCenterX", service, rules, path)
|
|
7269
|
-
self.BoxCenterZ = self._BoxCenterZ(self, "BoxCenterZ", service, rules, path)
|
|
7270
7269
|
self.CylinderRadius2 = self._CylinderRadius2(self, "CylinderRadius2", service, rules, path)
|
|
7270
|
+
self.BoxCenterZ = self._BoxCenterZ(self, "BoxCenterZ", service, rules, path)
|
|
7271
7271
|
self.CylinderY2 = self._CylinderY2(self, "CylinderY2", service, rules, path)
|
|
7272
7272
|
|
|
7273
7273
|
class _CylinderZ2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -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):
|
|
@@ -7325,14 +7325,14 @@ class Root(PyMenu):
|
|
|
7325
7325
|
Specify the X-coordinate for the initial position of the cylindrical refinement region.
|
|
7326
7326
|
"""
|
|
7327
7327
|
|
|
7328
|
-
class
|
|
7328
|
+
class _CylinderRadius2(PyNumericalCommandArgumentsSubItem):
|
|
7329
7329
|
"""
|
|
7330
|
-
Specify the
|
|
7330
|
+
Specify the radius of the cylinder at the second position.
|
|
7331
7331
|
"""
|
|
7332
7332
|
|
|
7333
|
-
class
|
|
7333
|
+
class _BoxCenterZ(PyNumericalCommandArgumentsSubItem):
|
|
7334
7334
|
"""
|
|
7335
|
-
Specify the
|
|
7335
|
+
Specify the Z-coordinate for the initial position of the cylindrical refinement region.
|
|
7336
7336
|
"""
|
|
7337
7337
|
|
|
7338
7338
|
class _CylinderY2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -7537,12 +7537,12 @@ class Root(PyMenu):
|
|
|
7537
7537
|
def __init__(self, parent, attr, service, rules, path):
|
|
7538
7538
|
super().__init__(parent, attr, service, rules, path)
|
|
7539
7539
|
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
7540
|
+
self.Thickness = self._Thickness(self, "Thickness", service, rules, path)
|
|
7541
|
+
self.SelectionType = self._SelectionType(self, "SelectionType", service, rules, path)
|
|
7540
7542
|
self.LabelSelectionList = self._LabelSelectionList(self, "LabelSelectionList", service, rules, path)
|
|
7541
7543
|
self.ZoneSelectionList = self._ZoneSelectionList(self, "ZoneSelectionList", service, rules, path)
|
|
7542
|
-
self.SelectionType = self._SelectionType(self, "SelectionType", service, rules, path)
|
|
7543
|
-
self.Thickness = self._Thickness(self, "Thickness", service, rules, path)
|
|
7544
|
-
self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
|
|
7545
7544
|
self.MeshSize = self._MeshSize(self, "MeshSize", service, rules, path)
|
|
7545
|
+
self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", 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)
|
|
@@ -7553,14 +7553,9 @@ class Root(PyMenu):
|
|
|
7553
7553
|
Specify the number of layers, or divisions, along the thickness of the porous region.
|
|
7554
7554
|
"""
|
|
7555
7555
|
|
|
7556
|
-
class
|
|
7557
|
-
"""
|
|
7558
|
-
Select a single label that will correspond to the porous region. Use the Filter Text field to provide text and/or regular expressions in filtering the list. The matching list item(s) are automatically displayed in the list. Use ^, |, and & in your expression to indicate boolean operations for NOT, OR, and AND, respectively. More...
|
|
7559
|
-
"""
|
|
7560
|
-
|
|
7561
|
-
class _ZoneSelectionList(PyTextualCommandArgumentsSubItem):
|
|
7556
|
+
class _Thickness(PyNumericalCommandArgumentsSubItem):
|
|
7562
7557
|
"""
|
|
7563
|
-
|
|
7558
|
+
Specify the thickness (or the total height) of the porous region.
|
|
7564
7559
|
"""
|
|
7565
7560
|
|
|
7566
7561
|
class _SelectionType(PyTextualCommandArgumentsSubItem):
|
|
@@ -7568,14 +7563,14 @@ class Root(PyMenu):
|
|
|
7568
7563
|
Choose how you want to make your selection (by object, zone, or label).
|
|
7569
7564
|
"""
|
|
7570
7565
|
|
|
7571
|
-
class
|
|
7566
|
+
class _LabelSelectionList(PyTextualCommandArgumentsSubItem):
|
|
7572
7567
|
"""
|
|
7573
|
-
|
|
7568
|
+
Select a single label that will correspond to the porous region. Use the Filter Text field to provide text and/or regular expressions in filtering the list. The matching list item(s) are automatically displayed in the list. Use ^, |, and & in your expression to indicate boolean operations for NOT, OR, and AND, respectively. More...
|
|
7574
7569
|
"""
|
|
7575
7570
|
|
|
7576
|
-
class
|
|
7571
|
+
class _ZoneSelectionList(PyTextualCommandArgumentsSubItem):
|
|
7577
7572
|
"""
|
|
7578
|
-
|
|
7573
|
+
Choose a single face zone from the list below. Use the Filter Text field to provide text and/or regular expressions in filtering the list. The matching list item(s) are automatically displayed in the list. Use ^, |, and & in your expression to indicate boolean operations for NOT, OR, and AND, respectively. More...
|
|
7579
7574
|
"""
|
|
7580
7575
|
|
|
7581
7576
|
class _MeshSize(PyNumericalCommandArgumentsSubItem):
|
|
@@ -7583,6 +7578,11 @@ class Root(PyMenu):
|
|
|
7583
7578
|
Specify the cell size for the porous region mesh.
|
|
7584
7579
|
"""
|
|
7585
7580
|
|
|
7581
|
+
class _FeatureAngle(PyNumericalCommandArgumentsSubItem):
|
|
7582
|
+
"""
|
|
7583
|
+
Specify the angle at which features will be extracted for the porous region.
|
|
7584
|
+
"""
|
|
7585
|
+
|
|
7586
7586
|
class _BufferSize(PyNumericalCommandArgumentsSubItem):
|
|
7587
7587
|
"""
|
|
7588
7588
|
Specify a value for the buffer size. The buffer is created as an extra layer. The thickness is equivalent to the product of the buffer size ratio and the core thickness. The core thickness is the distance between P1 and P4.
|
|
@@ -7912,9 +7912,9 @@ class Root(PyMenu):
|
|
|
7912
7912
|
super().__init__(parent, attr, service, rules, path)
|
|
7913
7913
|
self.PorousRegions = self._PorousRegions(self, "PorousRegions", service, rules, path)
|
|
7914
7914
|
self.CloseLeakages = self._CloseLeakages(self, "CloseLeakages", service, rules, path)
|
|
7915
|
-
self.CloseLeakges = self._CloseLeakges(self, "CloseLeakges", service, rules, path)
|
|
7916
7915
|
self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
|
|
7917
7916
|
self.ZeroThickness = self._ZeroThickness(self, "ZeroThickness", service, rules, path)
|
|
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)
|
|
7920
7920
|
self.EnablePrimeWrapper = self._EnablePrimeWrapper(self, "EnablePrimeWrapper", service, rules, path)
|
|
@@ -7931,11 +7931,6 @@ class Root(PyMenu):
|
|
|
7931
7931
|
Argument CloseLeakages.
|
|
7932
7932
|
"""
|
|
7933
7933
|
|
|
7934
|
-
class _CloseLeakges(PyTextualCommandArgumentsSubItem):
|
|
7935
|
-
"""
|
|
7936
|
-
Specify whether or not your geometry contains any problems (such as gaps or overlapping/intersecting surfaces) that may create leakages that need to be closed. If so, then a Define Leakage Threshold task is added to the workflow.
|
|
7937
|
-
"""
|
|
7938
|
-
|
|
7939
7934
|
class _AdvancedOptions(PyParameterCommandArgumentsSubItem):
|
|
7940
7935
|
"""
|
|
7941
7936
|
Display advanced options that you may want to apply to the workflow.
|
|
@@ -7946,6 +7941,11 @@ class Root(PyMenu):
|
|
|
7946
7941
|
Specify whether or not you will need to account for any portions of your geometry with zero-thickness, and apply thickness to them for a more refined surface mesh. If so, then an Add Thickness task will be added to the workflow.
|
|
7947
7942
|
"""
|
|
7948
7943
|
|
|
7944
|
+
class _CloseLeakges(PyTextualCommandArgumentsSubItem):
|
|
7945
|
+
"""
|
|
7946
|
+
Specify whether or not your geometry contains any problems (such as gaps or overlapping/intersecting surfaces) that may create leakages that need to be closed. If so, then a Define Leakage Threshold task is added to the workflow.
|
|
7947
|
+
"""
|
|
7948
|
+
|
|
7949
7949
|
class _ExtractEdgeFeatures(PyTextualCommandArgumentsSubItem):
|
|
7950
7950
|
"""
|
|
7951
7951
|
Specify whether or not you will need to extract additional edge features from your imported geometry. These edge features will be captured. If so, then an Extract Edge Features task will be added to the workflow.
|
|
@@ -8389,9 +8389,9 @@ class Root(PyMenu):
|
|
|
8389
8389
|
self.LocalRemesh = self._LocalRemesh(self, "LocalRemesh", service, rules, path)
|
|
8390
8390
|
self.RemeshGrowthRate = self._RemeshGrowthRate(self, "RemeshGrowthRate", service, rules, path)
|
|
8391
8391
|
self.GapFactor = self._GapFactor(self, "GapFactor", service, rules, path)
|
|
8392
|
+
self.RefineStretchedQuads = self._RefineStretchedQuads(self, "RefineStretchedQuads", service, rules, path)
|
|
8392
8393
|
self.ShowPrism2DPreferences = self._ShowPrism2DPreferences(self, "ShowPrism2DPreferences", service, rules, path)
|
|
8393
8394
|
self.MaxFaceSkew = self._MaxFaceSkew(self, "MaxFaceSkew", service, rules, path)
|
|
8394
|
-
self.RefineStretchedQuads = self._RefineStretchedQuads(self, "RefineStretchedQuads", service, rules, path)
|
|
8395
8395
|
self.nOrthogonalLayers = self._nOrthogonalLayers(self, "nOrthogonalLayers", service, rules, path)
|
|
8396
8396
|
|
|
8397
8397
|
class _SplitQuads(PyTextualCommandArgumentsSubItem):
|
|
@@ -8424,6 +8424,11 @@ class Root(PyMenu):
|
|
|
8424
8424
|
Argument GapFactor.
|
|
8425
8425
|
"""
|
|
8426
8426
|
|
|
8427
|
+
class _RefineStretchedQuads(PyTextualCommandArgumentsSubItem):
|
|
8428
|
+
"""
|
|
8429
|
+
Argument RefineStretchedQuads.
|
|
8430
|
+
"""
|
|
8431
|
+
|
|
8427
8432
|
class _ShowPrism2DPreferences(PyParameterCommandArgumentsSubItem):
|
|
8428
8433
|
"""
|
|
8429
8434
|
Argument ShowPrism2DPreferences.
|
|
@@ -8434,11 +8439,6 @@ class Root(PyMenu):
|
|
|
8434
8439
|
Argument MaxFaceSkew.
|
|
8435
8440
|
"""
|
|
8436
8441
|
|
|
8437
|
-
class _RefineStretchedQuads(PyTextualCommandArgumentsSubItem):
|
|
8438
|
-
"""
|
|
8439
|
-
Argument RefineStretchedQuads.
|
|
8440
|
-
"""
|
|
8441
|
-
|
|
8442
8442
|
class _nOrthogonalLayers(PyNumericalCommandArgumentsSubItem):
|
|
8443
8443
|
"""
|
|
8444
8444
|
Argument nOrthogonalLayers.
|
|
@@ -8451,18 +8451,18 @@ class Root(PyMenu):
|
|
|
8451
8451
|
|
|
8452
8452
|
def __init__(self, parent, attr, service, rules, path):
|
|
8453
8453
|
super().__init__(parent, attr, service, rules, path)
|
|
8454
|
-
self.MergeEdgeZonesBasedOnLabels = self._MergeEdgeZonesBasedOnLabels(self, "MergeEdgeZonesBasedOnLabels", service, rules, path)
|
|
8455
8454
|
self.MergeFaceZonesBasedOnLabels = self._MergeFaceZonesBasedOnLabels(self, "MergeFaceZonesBasedOnLabels", service, rules, path)
|
|
8455
|
+
self.MergeEdgeZonesBasedOnLabels = self._MergeEdgeZonesBasedOnLabels(self, "MergeEdgeZonesBasedOnLabels", service, rules, path)
|
|
8456
8456
|
self.ShowAdvancedOptions = self._ShowAdvancedOptions(self, "ShowAdvancedOptions", service, rules, path)
|
|
8457
8457
|
|
|
8458
|
-
class
|
|
8458
|
+
class _MergeFaceZonesBasedOnLabels(PyTextualCommandArgumentsSubItem):
|
|
8459
8459
|
"""
|
|
8460
|
-
Argument
|
|
8460
|
+
Argument MergeFaceZonesBasedOnLabels.
|
|
8461
8461
|
"""
|
|
8462
8462
|
|
|
8463
|
-
class
|
|
8463
|
+
class _MergeEdgeZonesBasedOnLabels(PyTextualCommandArgumentsSubItem):
|
|
8464
8464
|
"""
|
|
8465
|
-
Argument
|
|
8465
|
+
Argument MergeEdgeZonesBasedOnLabels.
|
|
8466
8466
|
"""
|
|
8467
8467
|
|
|
8468
8468
|
class _ShowAdvancedOptions(PyParameterCommandArgumentsSubItem):
|
|
@@ -8775,8 +8775,8 @@ class Root(PyMenu):
|
|
|
8775
8775
|
self.SaveSizeFieldFile = self._SaveSizeFieldFile(self, "SaveSizeFieldFile", service, rules, path)
|
|
8776
8776
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
8777
8777
|
self.ScopeProximityTo = self._ScopeProximityTo(self, "ScopeProximityTo", service, rules, path)
|
|
8778
|
-
self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
|
|
8779
8778
|
self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
|
|
8779
|
+
self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
|
|
8780
8780
|
self.SaveSizeField = self._SaveSizeField(self, "SaveSizeField", service, rules, path)
|
|
8781
8781
|
self.UseSizeFiles = self._UseSizeFiles(self, "UseSizeFiles", service, rules, path)
|
|
8782
8782
|
self.AutoCreateScopedSizing = self._AutoCreateScopedSizing(self, "AutoCreateScopedSizing", service, rules, path)
|
|
@@ -8806,14 +8806,14 @@ class Root(PyMenu):
|
|
|
8806
8806
|
Argument ScopeProximityTo.
|
|
8807
8807
|
"""
|
|
8808
8808
|
|
|
8809
|
-
class
|
|
8809
|
+
class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
8810
8810
|
"""
|
|
8811
|
-
Argument
|
|
8811
|
+
Argument CurvatureNormalAngle.
|
|
8812
8812
|
"""
|
|
8813
8813
|
|
|
8814
|
-
class
|
|
8814
|
+
class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
|
|
8815
8815
|
"""
|
|
8816
|
-
Argument
|
|
8816
|
+
Argument PreviewSizefield.
|
|
8817
8817
|
"""
|
|
8818
8818
|
|
|
8819
8819
|
class _SaveSizeField(PyParameterCommandArgumentsSubItem):
|
|
@@ -9163,8 +9163,8 @@ class Root(PyMenu):
|
|
|
9163
9163
|
self.SaveSizeFieldFile = self._SaveSizeFieldFile(self, "SaveSizeFieldFile", service, rules, path)
|
|
9164
9164
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
9165
9165
|
self.ScopeProximityTo = self._ScopeProximityTo(self, "ScopeProximityTo", service, rules, path)
|
|
9166
|
-
self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
|
|
9167
9166
|
self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
|
|
9167
|
+
self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
|
|
9168
9168
|
self.SaveSizeField = self._SaveSizeField(self, "SaveSizeField", service, rules, path)
|
|
9169
9169
|
self.UseSizeFiles = self._UseSizeFiles(self, "UseSizeFiles", service, rules, path)
|
|
9170
9170
|
self.AutoCreateScopedSizing = self._AutoCreateScopedSizing(self, "AutoCreateScopedSizing", service, rules, path)
|
|
@@ -9194,14 +9194,14 @@ class Root(PyMenu):
|
|
|
9194
9194
|
Set proximity based refinement. Edges considers edge-to-edge proximity, while Faces considers face-to-face proximity, and Faces and Edges considers both. More...
|
|
9195
9195
|
"""
|
|
9196
9196
|
|
|
9197
|
-
class
|
|
9197
|
+
class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
|
|
9198
9198
|
"""
|
|
9199
|
-
|
|
9199
|
+
Enable this option to visualize the size field in the graphics window.
|
|
9200
9200
|
"""
|
|
9201
9201
|
|
|
9202
|
-
class
|
|
9202
|
+
class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
9203
9203
|
"""
|
|
9204
|
-
|
|
9204
|
+
Specify the maximum allowable angle (from 0 to 180 degrees) that one element edge is allowed to span given a particular geometry curvature. You can use this field to limit the number of elements that are generated along a curve or surface if the minimum size is too small for that particular curve. More...
|
|
9205
9205
|
"""
|
|
9206
9206
|
|
|
9207
9207
|
class _SaveSizeField(PyParameterCommandArgumentsSubItem):
|
|
@@ -9304,14 +9304,14 @@ class Root(PyMenu):
|
|
|
9304
9304
|
self.SMQualityCollapseLimit = self._SMQualityCollapseLimit(self, "SMQualityCollapseLimit", service, rules, path)
|
|
9305
9305
|
self.FoldFaceLimit = self._FoldFaceLimit(self, "FoldFaceLimit", service, rules, path)
|
|
9306
9306
|
self.SMQualityImprove = self._SMQualityImprove(self, "SMQualityImprove", service, rules, path)
|
|
9307
|
+
self.ShowSurfaceMeshPreferences = self._ShowSurfaceMeshPreferences(self, "ShowSurfaceMeshPreferences", service, rules, path)
|
|
9307
9308
|
self.SMSeparationAngle = self._SMSeparationAngle(self, "SMSeparationAngle", service, rules, path)
|
|
9308
9309
|
self.AutoMerge = self._AutoMerge(self, "AutoMerge", service, rules, path)
|
|
9309
|
-
self.ShowSurfaceMeshPreferences = self._ShowSurfaceMeshPreferences(self, "ShowSurfaceMeshPreferences", service, rules, path)
|
|
9310
9310
|
self.TVMAutoControlCreation = self._TVMAutoControlCreation(self, "TVMAutoControlCreation", service, rules, path)
|
|
9311
9311
|
self.SMSeparation = self._SMSeparation(self, "SMSeparation", service, rules, path)
|
|
9312
9312
|
self.SMRemoveStep = self._SMRemoveStep(self, "SMRemoveStep", service, rules, path)
|
|
9313
|
-
self.SMStepWidth = self._SMStepWidth(self, "SMStepWidth", service, rules, path)
|
|
9314
9313
|
self.ParallelRegionCompute = self._ParallelRegionCompute(self, "ParallelRegionCompute", service, rules, path)
|
|
9314
|
+
self.SMStepWidth = self._SMStepWidth(self, "SMStepWidth", service, rules, path)
|
|
9315
9315
|
self.VolumeMeshMaxSize = self._VolumeMeshMaxSize(self, "VolumeMeshMaxSize", service, rules, path)
|
|
9316
9316
|
self.AutoAssignZoneTypes = self._AutoAssignZoneTypes(self, "AutoAssignZoneTypes", service, rules, path)
|
|
9317
9317
|
self.SMQualityMaxAngle = self._SMQualityMaxAngle(self, "SMQualityMaxAngle", service, rules, path)
|
|
@@ -9335,6 +9335,11 @@ class Root(PyMenu):
|
|
|
9335
9335
|
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.
|
|
9336
9336
|
"""
|
|
9337
9337
|
|
|
9338
|
+
class _ShowSurfaceMeshPreferences(PyParameterCommandArgumentsSubItem):
|
|
9339
|
+
"""
|
|
9340
|
+
Display advanced options that you may want to apply to the task.
|
|
9341
|
+
"""
|
|
9342
|
+
|
|
9338
9343
|
class _SMSeparationAngle(PyNumericalCommandArgumentsSubItem):
|
|
9339
9344
|
"""
|
|
9340
9345
|
Specify a desired angle for determining separation. Assigning a smaller separation angle will produce more zones.
|
|
@@ -9345,11 +9350,6 @@ class Root(PyMenu):
|
|
|
9345
9350
|
Argument AutoMerge.
|
|
9346
9351
|
"""
|
|
9347
9352
|
|
|
9348
|
-
class _ShowSurfaceMeshPreferences(PyParameterCommandArgumentsSubItem):
|
|
9349
|
-
"""
|
|
9350
|
-
Display advanced options that you may want to apply to the task.
|
|
9351
|
-
"""
|
|
9352
|
-
|
|
9353
9353
|
class _TVMAutoControlCreation(PyTextualCommandArgumentsSubItem):
|
|
9354
9354
|
"""
|
|
9355
9355
|
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.
|
|
@@ -9365,14 +9365,14 @@ class Root(PyMenu):
|
|
|
9365
9365
|
Indicate if there are any small imperfections (ledge or step artifacts from the original CAD geometry) that can be removed as part of this task. If you select yes, then you must specify a Max Step Width.
|
|
9366
9366
|
"""
|
|
9367
9367
|
|
|
9368
|
-
class
|
|
9368
|
+
class _ParallelRegionCompute(PyTextualCommandArgumentsSubItem):
|
|
9369
9369
|
"""
|
|
9370
|
-
|
|
9370
|
+
Argument ParallelRegionCompute.
|
|
9371
9371
|
"""
|
|
9372
9372
|
|
|
9373
|
-
class
|
|
9373
|
+
class _SMStepWidth(PyNumericalCommandArgumentsSubItem):
|
|
9374
9374
|
"""
|
|
9375
|
-
|
|
9375
|
+
Specify the width of the step that you wish to remove.
|
|
9376
9376
|
"""
|
|
9377
9377
|
|
|
9378
9378
|
class _VolumeMeshMaxSize(PyNumericalCommandArgumentsSubItem):
|
|
@@ -9495,10 +9495,10 @@ class Root(PyMenu):
|
|
|
9495
9495
|
self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
|
|
9496
9496
|
self.OneZonePer = self._OneZonePer(self, "OneZonePer", service, rules, path)
|
|
9497
9497
|
self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
|
|
9498
|
+
self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
|
|
9498
9499
|
self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
|
|
9499
|
-
self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
|
|
9500
9500
|
self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
|
|
9501
|
-
self.
|
|
9501
|
+
self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
|
|
9502
9502
|
|
|
9503
9503
|
class _SavePMDBIntermediateFile(PyParameterCommandArgumentsSubItem):
|
|
9504
9504
|
"""
|
|
@@ -9535,14 +9535,14 @@ class Root(PyMenu):
|
|
|
9535
9535
|
Argument ImportCurvatureDataFromCAD.
|
|
9536
9536
|
"""
|
|
9537
9537
|
|
|
9538
|
-
class
|
|
9538
|
+
class _ImportNamedSelections(PyParameterCommandArgumentsSubItem):
|
|
9539
9539
|
"""
|
|
9540
|
-
Argument
|
|
9540
|
+
Argument ImportNamedSelections.
|
|
9541
9541
|
"""
|
|
9542
9542
|
|
|
9543
|
-
class
|
|
9543
|
+
class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
|
|
9544
9544
|
"""
|
|
9545
|
-
Argument
|
|
9545
|
+
Argument ExtractFeatures.
|
|
9546
9546
|
"""
|
|
9547
9547
|
|
|
9548
9548
|
class _ImportPartNames(PyParameterCommandArgumentsSubItem):
|
|
@@ -9550,9 +9550,9 @@ class Root(PyMenu):
|
|
|
9550
9550
|
Argument ImportPartNames.
|
|
9551
9551
|
"""
|
|
9552
9552
|
|
|
9553
|
-
class
|
|
9553
|
+
class _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
|
|
9554
9554
|
"""
|
|
9555
|
-
Argument
|
|
9555
|
+
Argument UsePartOrBodyAsSuffix.
|
|
9556
9556
|
"""
|
|
9557
9557
|
|
|
9558
9558
|
class _ShareTopologyPreferences(PySingletonCommandArgumentsSubItem):
|
|
@@ -9567,10 +9567,10 @@ class Root(PyMenu):
|
|
|
9567
9567
|
self.ConnectLabelWildcard = self._ConnectLabelWildcard(self, "ConnectLabelWildcard", service, rules, path)
|
|
9568
9568
|
self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
|
|
9569
9569
|
self.RelativeShareTopologyTolerance = self._RelativeShareTopologyTolerance(self, "RelativeShareTopologyTolerance", service, rules, path)
|
|
9570
|
-
self.
|
|
9570
|
+
self.ShareTopologyAngle = self._ShareTopologyAngle(self, "ShareTopologyAngle", service, rules, path)
|
|
9571
9571
|
self.ExecuteJoinIntersect = self._ExecuteJoinIntersect(self, "ExecuteJoinIntersect", service, rules, path)
|
|
9572
9572
|
self.Operation = self._Operation(self, "Operation", service, rules, path)
|
|
9573
|
-
self.
|
|
9573
|
+
self.FluidLabelWildcard = self._FluidLabelWildcard(self, "FluidLabelWildcard", service, rules, path)
|
|
9574
9574
|
self.STToleranceIncrement = self._STToleranceIncrement(self, "STToleranceIncrement", service, rules, path)
|
|
9575
9575
|
self.IntfLabelList = self._IntfLabelList(self, "IntfLabelList", service, rules, path)
|
|
9576
9576
|
self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
|
|
@@ -9603,9 +9603,9 @@ class Root(PyMenu):
|
|
|
9603
9603
|
Specify the relative tolerance for joining or intersecting face pairs, or the relative tolerance for connecting edge and face pairs.
|
|
9604
9604
|
"""
|
|
9605
9605
|
|
|
9606
|
-
class
|
|
9606
|
+
class _ShareTopologyAngle(PyNumericalCommandArgumentsSubItem):
|
|
9607
9607
|
"""
|
|
9608
|
-
|
|
9608
|
+
Specify the threshold angle for joining face pairs.
|
|
9609
9609
|
"""
|
|
9610
9610
|
|
|
9611
9611
|
class _ExecuteJoinIntersect(PyTextualCommandArgumentsSubItem):
|
|
@@ -9618,9 +9618,9 @@ class Root(PyMenu):
|
|
|
9618
9618
|
Choose whether to apply share topology using the Join-Intersect method where you join and/or intersect the problematic faces, or using the Interface Connect method where you connect edges of overlapping face pairs. Note that imprinting of overlapping faces in SCDM/Discovery is highly recommended for the Interface Connect method.
|
|
9619
9619
|
"""
|
|
9620
9620
|
|
|
9621
|
-
class
|
|
9621
|
+
class _FluidLabelWildcard(PyTextualCommandArgumentsSubItem):
|
|
9622
9622
|
"""
|
|
9623
|
-
|
|
9623
|
+
Argument FluidLabelWildcard.
|
|
9624
9624
|
"""
|
|
9625
9625
|
|
|
9626
9626
|
class _STToleranceIncrement(PyNumericalCommandArgumentsSubItem):
|
|
@@ -10115,14 +10115,14 @@ class Root(PyMenu):
|
|
|
10115
10115
|
|
|
10116
10116
|
def __init__(self, parent, attr, service, rules, path):
|
|
10117
10117
|
super().__init__(parent, attr, service, rules, path)
|
|
10118
|
-
self.
|
|
10118
|
+
self.UseSizeField = self._UseSizeField(self, "UseSizeField", service, rules, path)
|
|
10119
10119
|
self.QualityMethod = self._QualityMethod(self, "QualityMethod", service, rules, path)
|
|
10120
10120
|
self.MinPolySize = self._MinPolySize(self, "MinPolySize", service, rules, path)
|
|
10121
10121
|
self.PolyFeatureAngle = self._PolyFeatureAngle(self, "PolyFeatureAngle", service, rules, path)
|
|
10122
10122
|
self.SizeFieldPeriodicity = self._SizeFieldPeriodicity(self, "SizeFieldPeriodicity", service, rules, path)
|
|
10123
10123
|
self.MergeBodyLabels = self._MergeBodyLabels(self, "MergeBodyLabels", service, rules, path)
|
|
10124
|
-
self.
|
|
10125
|
-
self.
|
|
10124
|
+
self.UseSizeFieldInSolids = self._UseSizeFieldInSolids(self, "UseSizeFieldInSolids", service, rules, path)
|
|
10125
|
+
self.ShowVolumeMeshPreferences = self._ShowVolumeMeshPreferences(self, "ShowVolumeMeshPreferences", service, rules, path)
|
|
10126
10126
|
self.TetInSolids = self._TetInSolids(self, "TetInSolids", service, rules, path)
|
|
10127
10127
|
self.AddMultipleQualityMethods = self._AddMultipleQualityMethods(self, "AddMultipleQualityMethods", service, rules, path)
|
|
10128
10128
|
self.MaxCellSizeChange = self._MaxCellSizeChange(self, "MaxCellSizeChange", service, rules, path)
|
|
@@ -10130,15 +10130,15 @@ class Root(PyMenu):
|
|
|
10130
10130
|
self.PrepareZoneNames = self._PrepareZoneNames(self, "PrepareZoneNames", service, rules, path)
|
|
10131
10131
|
self.CheckSelfProximity = self._CheckSelfProximity(self, "CheckSelfProximity", service, rules, path)
|
|
10132
10132
|
self.Avoid1_8Transition = self._Avoid1_8Transition(self, "Avoid1_8Transition", service, rules, path)
|
|
10133
|
-
self.
|
|
10134
|
-
self.MinEdgeLength = self._MinEdgeLength(self, "MinEdgeLength", service, rules, path)
|
|
10135
|
-
self.SolidGrowthRate = self._SolidGrowthRate(self, "SolidGrowthRate", service, rules, path)
|
|
10133
|
+
self.PolyInSolids = self._PolyInSolids(self, "PolyInSolids", service, rules, path)
|
|
10136
10134
|
self.MinFaceArea = self._MinFaceArea(self, "MinFaceArea", service, rules, path)
|
|
10135
|
+
self.SolidGrowthRate = self._SolidGrowthRate(self, "SolidGrowthRate", service, rules, path)
|
|
10136
|
+
self.MinEdgeLength = self._MinEdgeLength(self, "MinEdgeLength", service, rules, path)
|
|
10137
10137
|
self.QualityWarningLimit = self._QualityWarningLimit(self, "QualityWarningLimit", service, rules, path)
|
|
10138
10138
|
|
|
10139
|
-
class
|
|
10139
|
+
class _UseSizeField(PyTextualCommandArgumentsSubItem):
|
|
10140
10140
|
"""
|
|
10141
|
-
|
|
10141
|
+
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.
|
|
10142
10142
|
"""
|
|
10143
10143
|
|
|
10144
10144
|
class _QualityMethod(PyTextualCommandArgumentsSubItem):
|
|
@@ -10166,14 +10166,14 @@ class Root(PyMenu):
|
|
|
10166
10166
|
Determine whether or not you would like to merge bodies that contain multiple body labels when generating the volume mesh (the default is yes)
|
|
10167
10167
|
"""
|
|
10168
10168
|
|
|
10169
|
-
class
|
|
10169
|
+
class _UseSizeFieldInSolids(PyTextualCommandArgumentsSubItem):
|
|
10170
10170
|
"""
|
|
10171
|
-
|
|
10171
|
+
This option is available when both the Use Size Field? and Fill Polyhedra in Solids? options are enabled for the poly-hexcore fill method. By default this option is set to no, which specifies growth-rate-based sizing for polyhedra regions during poly-hexcore generation. Selecting yes for this option specifies the sizing for polyhedra regions to be size-field based and is recommended when BOI(s) or body sizing have been defined that include the polyhedra region.
|
|
10172
10172
|
"""
|
|
10173
10173
|
|
|
10174
|
-
class
|
|
10174
|
+
class _ShowVolumeMeshPreferences(PyParameterCommandArgumentsSubItem):
|
|
10175
10175
|
"""
|
|
10176
|
-
|
|
10176
|
+
Display advanced options that you may want to apply to the task.
|
|
10177
10177
|
"""
|
|
10178
10178
|
|
|
10179
10179
|
class _TetInSolids(PyTextualCommandArgumentsSubItem):
|
|
@@ -10211,14 +10211,14 @@ class Root(PyMenu):
|
|
|
10211
10211
|
Indicate whether or not you want to avoid any potential 1:8 cell transition in the hexcore region of the volume mesh, replacing any abrupt change in the cell size with polyhedral cells to improve solver performance in such transitional areas.
|
|
10212
10212
|
"""
|
|
10213
10213
|
|
|
10214
|
-
class
|
|
10214
|
+
class _PolyInSolids(PyTextualCommandArgumentsSubItem):
|
|
10215
10215
|
"""
|
|
10216
|
-
|
|
10216
|
+
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.
|
|
10217
10217
|
"""
|
|
10218
10218
|
|
|
10219
|
-
class
|
|
10219
|
+
class _MinFaceArea(PyNumericalCommandArgumentsSubItem):
|
|
10220
10220
|
"""
|
|
10221
|
-
Argument
|
|
10221
|
+
Argument MinFaceArea.
|
|
10222
10222
|
"""
|
|
10223
10223
|
|
|
10224
10224
|
class _SolidGrowthRate(PyNumericalCommandArgumentsSubItem):
|
|
@@ -10226,9 +10226,9 @@ class Root(PyMenu):
|
|
|
10226
10226
|
Specify the rate of growth for a tetrahedron or polyhedron mesh.
|
|
10227
10227
|
"""
|
|
10228
10228
|
|
|
10229
|
-
class
|
|
10229
|
+
class _MinEdgeLength(PyNumericalCommandArgumentsSubItem):
|
|
10230
10230
|
"""
|
|
10231
|
-
Argument
|
|
10231
|
+
Argument MinEdgeLength.
|
|
10232
10232
|
"""
|
|
10233
10233
|
|
|
10234
10234
|
class _QualityWarningLimit(PyNumericalCommandArgumentsSubItem):
|
|
@@ -10252,8 +10252,8 @@ class Root(PyMenu):
|
|
|
10252
10252
|
self.MergeBoundaryLayers = self._MergeBoundaryLayers(self, "MergeBoundaryLayers", service, rules, path)
|
|
10253
10253
|
self.NormalSmoothRelaxationFactor = self._NormalSmoothRelaxationFactor(self, "NormalSmoothRelaxationFactor", service, rules, path)
|
|
10254
10254
|
self.ShowPrismPreferences = self._ShowPrismPreferences(self, "ShowPrismPreferences", service, rules, path)
|
|
10255
|
-
self.PrismMinAspectRatio = self._PrismMinAspectRatio(self, "PrismMinAspectRatio", service, rules, path)
|
|
10256
10255
|
self.StairstepExposedQuads = self._StairstepExposedQuads(self, "StairstepExposedQuads", service, rules, path)
|
|
10256
|
+
self.PrismMinAspectRatio = self._PrismMinAspectRatio(self, "PrismMinAspectRatio", service, rules, path)
|
|
10257
10257
|
self.PrismAdjacentAngle = self._PrismAdjacentAngle(self, "PrismAdjacentAngle", service, rules, path)
|
|
10258
10258
|
|
|
10259
10259
|
class _PrismKeepFirstLayer(PyTextualCommandArgumentsSubItem):
|
|
@@ -10301,14 +10301,14 @@ class Root(PyMenu):
|
|
|
10301
10301
|
Display global settings for your boundary layers. Note that these settings are not applied for Multizone boundary layers
|
|
10302
10302
|
"""
|
|
10303
10303
|
|
|
10304
|
-
class
|
|
10304
|
+
class _StairstepExposedQuads(PyTextualCommandArgumentsSubItem):
|
|
10305
10305
|
"""
|
|
10306
|
-
|
|
10306
|
+
This option can be used when generating a tetrahedral mesh with prism cells and is set to No by default. Selecting Yes for this option will enable stair-stepping for exposed quadrilateral faces (exposed quads) on prism cells. Stair-stepping will prevent pyramids from being created on these exposed quads, which generally would lead to poor quality in the exposed quad location.
|
|
10307
10307
|
"""
|
|
10308
10308
|
|
|
10309
|
-
class
|
|
10309
|
+
class _PrismMinAspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
10310
10310
|
"""
|
|
10311
|
-
|
|
10311
|
+
Controls the minimum aspect ratio for cells at the boundary of the thin volume mesh regions. By default, this option is set to 0.3, other than for Stacked Plates, where it is set to 0.1. For flat parallel plates (not including stacked plates), it is recommended to use a value of 0.1 to produce a high quality thin volume mesh.
|
|
10312
10312
|
"""
|
|
10313
10313
|
|
|
10314
10314
|
class _PrismAdjacentAngle(PyNumericalCommandArgumentsSubItem):
|
|
@@ -10324,18 +10324,18 @@ class Root(PyMenu):
|
|
|
10324
10324
|
def __init__(self, parent, attr, service, rules, path):
|
|
10325
10325
|
super().__init__(parent, attr, service, rules, path)
|
|
10326
10326
|
self.ShowGlobalThinVolumePreferences = self._ShowGlobalThinVolumePreferences(self, "ShowGlobalThinVolumePreferences", service, rules, path)
|
|
10327
|
-
self.AutoOrderControls = self._AutoOrderControls(self, "AutoOrderControls", service, rules, path)
|
|
10328
|
-
self.StairStep = self._StairStep(self, "StairStep", service, rules, path)
|
|
10329
10327
|
self.MinAspectRatio = self._MinAspectRatio(self, "MinAspectRatio", service, rules, path)
|
|
10328
|
+
self.StairStep = self._StairStep(self, "StairStep", service, rules, path)
|
|
10329
|
+
self.AutoOrderControls = self._AutoOrderControls(self, "AutoOrderControls", service, rules, path)
|
|
10330
10330
|
|
|
10331
10331
|
class _ShowGlobalThinVolumePreferences(PyParameterCommandArgumentsSubItem):
|
|
10332
10332
|
"""
|
|
10333
10333
|
Display global settings for thin volume meshing.
|
|
10334
10334
|
"""
|
|
10335
10335
|
|
|
10336
|
-
class
|
|
10336
|
+
class _MinAspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
10337
10337
|
"""
|
|
10338
|
-
|
|
10338
|
+
Controls the minimum aspect ratio for cells at the boundary of the thin volume mesh regions. By default, this option is set to 0.3, other than for Stacked Plates, where it is set to 0.1. For flat parallel plates (not including stacked plates), it is recommended to use a value of 0.1 to produce a high quality thin volume mesh.
|
|
10339
10339
|
"""
|
|
10340
10340
|
|
|
10341
10341
|
class _StairStep(PyTextualCommandArgumentsSubItem):
|
|
@@ -10343,9 +10343,9 @@ class Root(PyMenu):
|
|
|
10343
10343
|
Use this option to invoke stair-stepping at thin volume mesh regions.
|
|
10344
10344
|
"""
|
|
10345
10345
|
|
|
10346
|
-
class
|
|
10346
|
+
class _AutoOrderControls(PyTextualCommandArgumentsSubItem):
|
|
10347
10347
|
"""
|
|
10348
|
-
|
|
10348
|
+
When set to yes, will automatically swap source and target faces in order to increase the success rate of the thin volume mesh generation. This option is set to yes by default for conventional thin volume meshing and is set to no when Stacked Plates is enabled.
|
|
10349
10349
|
"""
|
|
10350
10350
|
|
|
10351
10351
|
class _InvokePrimsControl(PyTextualCommandArgumentsSubItem):
|
|
@@ -10750,10 +10750,10 @@ class Root(PyMenu):
|
|
|
10750
10750
|
self.SIQualityIterations = self._SIQualityIterations(self, "SIQualityIterations", service, rules, path)
|
|
10751
10751
|
self.SIQualityMaxAngle = self._SIQualityMaxAngle(self, "SIQualityMaxAngle", service, rules, path)
|
|
10752
10752
|
self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
|
|
10753
|
-
self.
|
|
10753
|
+
self.SIRemoveStep = self._SIRemoveStep(self, "SIRemoveStep", service, rules, path)
|
|
10754
10754
|
self.AdvancedImprove = self._AdvancedImprove(self, "AdvancedImprove", service, rules, path)
|
|
10755
10755
|
self.SIStepWidth = self._SIStepWidth(self, "SIStepWidth", service, rules, path)
|
|
10756
|
-
self.
|
|
10756
|
+
self.ShowSMImprovePreferences = self._ShowSMImprovePreferences(self, "ShowSMImprovePreferences", service, rules, path)
|
|
10757
10757
|
|
|
10758
10758
|
class _SIStepQualityLimit(PyNumericalCommandArgumentsSubItem):
|
|
10759
10759
|
"""
|
|
@@ -10780,9 +10780,9 @@ class Root(PyMenu):
|
|
|
10780
10780
|
Argument AllowDefeaturing.
|
|
10781
10781
|
"""
|
|
10782
10782
|
|
|
10783
|
-
class
|
|
10783
|
+
class _SIRemoveStep(PyTextualCommandArgumentsSubItem):
|
|
10784
10784
|
"""
|
|
10785
|
-
Argument
|
|
10785
|
+
Argument SIRemoveStep.
|
|
10786
10786
|
"""
|
|
10787
10787
|
|
|
10788
10788
|
class _AdvancedImprove(PyTextualCommandArgumentsSubItem):
|
|
@@ -10795,9 +10795,9 @@ class Root(PyMenu):
|
|
|
10795
10795
|
Argument SIStepWidth.
|
|
10796
10796
|
"""
|
|
10797
10797
|
|
|
10798
|
-
class
|
|
10798
|
+
class _ShowSMImprovePreferences(PyParameterCommandArgumentsSubItem):
|
|
10799
10799
|
"""
|
|
10800
|
-
Argument
|
|
10800
|
+
Argument ShowSMImprovePreferences.
|
|
10801
10801
|
"""
|
|
10802
10802
|
|
|
10803
10803
|
def create_instance(self) -> _GeometrySetupCommandArguments:
|
|
@@ -11018,9 +11018,9 @@ class Root(PyMenu):
|
|
|
11018
11018
|
self.Radius2 = self._Radius2(self, "Radius2", service, rules, path)
|
|
11019
11019
|
self.Y2 = self._Y2(self, "Y2", service, rules, path)
|
|
11020
11020
|
self.Node3 = self._Node3(self, "Node3", service, rules, path)
|
|
11021
|
+
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
11021
11022
|
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
11022
11023
|
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
11023
|
-
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
11024
11024
|
self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
|
|
11025
11025
|
self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
|
|
11026
11026
|
|
|
@@ -11084,6 +11084,11 @@ class Root(PyMenu):
|
|
|
11084
11084
|
Argument Node3.
|
|
11085
11085
|
"""
|
|
11086
11086
|
|
|
11087
|
+
class _Y_Offset(PyNumericalCommandArgumentsSubItem):
|
|
11088
|
+
"""
|
|
11089
|
+
Argument Y-Offset.
|
|
11090
|
+
"""
|
|
11091
|
+
|
|
11087
11092
|
class _X2(PyNumericalCommandArgumentsSubItem):
|
|
11088
11093
|
"""
|
|
11089
11094
|
Argument X2.
|
|
@@ -11094,11 +11099,6 @@ class Root(PyMenu):
|
|
|
11094
11099
|
Argument Node2.
|
|
11095
11100
|
"""
|
|
11096
11101
|
|
|
11097
|
-
class _Y_Offset(PyNumericalCommandArgumentsSubItem):
|
|
11098
|
-
"""
|
|
11099
|
-
Argument Y-Offset.
|
|
11100
|
-
"""
|
|
11101
|
-
|
|
11102
11102
|
class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
|
|
11103
11103
|
"""
|
|
11104
11104
|
Argument HeightFrontInc.
|
|
@@ -11122,7 +11122,7 @@ class Root(PyMenu):
|
|
|
11122
11122
|
def __init__(self, parent, attr, service, rules, path):
|
|
11123
11123
|
super().__init__(parent, attr, service, rules, path)
|
|
11124
11124
|
self.SizeRelativeLength = self._SizeRelativeLength(self, "SizeRelativeLength", service, rules, path)
|
|
11125
|
-
self.
|
|
11125
|
+
self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
|
|
11126
11126
|
self.XminRatio = self._XminRatio(self, "XminRatio", service, rules, path)
|
|
11127
11127
|
self.YminRatio = self._YminRatio(self, "YminRatio", service, rules, path)
|
|
11128
11128
|
self.Zmin = self._Zmin(self, "Zmin", service, rules, path)
|
|
@@ -11133,16 +11133,16 @@ class Root(PyMenu):
|
|
|
11133
11133
|
self.Xmin = self._Xmin(self, "Xmin", service, rules, path)
|
|
11134
11134
|
self.YmaxRatio = self._YmaxRatio(self, "YmaxRatio", service, rules, path)
|
|
11135
11135
|
self.ZmaxRatio = self._ZmaxRatio(self, "ZmaxRatio", service, rules, path)
|
|
11136
|
-
self.
|
|
11136
|
+
self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
|
|
11137
11137
|
|
|
11138
11138
|
class _SizeRelativeLength(PyTextualCommandArgumentsSubItem):
|
|
11139
11139
|
"""
|
|
11140
11140
|
Determine if you would like to specify the bounding box for the construction surface as a ratio of the geometry length, or by specifying a specific location for the minimum and maximum coordinates.
|
|
11141
11141
|
"""
|
|
11142
11142
|
|
|
11143
|
-
class
|
|
11143
|
+
class _Xmax(PyNumericalCommandArgumentsSubItem):
|
|
11144
11144
|
"""
|
|
11145
|
-
Extends the maximum size of the bounding box in the X direction by the specified value.
|
|
11145
|
+
Extends the maximum size of the bounding box in the X direction by the specified value.
|
|
11146
11146
|
"""
|
|
11147
11147
|
|
|
11148
11148
|
class _XminRatio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -11195,9 +11195,9 @@ class Root(PyMenu):
|
|
|
11195
11195
|
Extends the maximum size of the bounding box in the Z direction by the specified value. The value is the ratio relative to the geometry size in the Z direction.
|
|
11196
11196
|
"""
|
|
11197
11197
|
|
|
11198
|
-
class
|
|
11198
|
+
class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
|
|
11199
11199
|
"""
|
|
11200
|
-
Extends the maximum size of the bounding box in the X direction by the specified value.
|
|
11200
|
+
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.
|
|
11201
11201
|
"""
|
|
11202
11202
|
|
|
11203
11203
|
def create_instance(self) -> _IdentifyConstructionSurfacesCommandArguments:
|
|
@@ -11628,11 +11628,11 @@ class Root(PyMenu):
|
|
|
11628
11628
|
self.CreateCADAssemblies = self._CreateCADAssemblies(self, "CreateCADAssemblies", service, rules, path)
|
|
11629
11629
|
self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
|
|
11630
11630
|
self.OneZonePer = self._OneZonePer(self, "OneZonePer", service, rules, path)
|
|
11631
|
-
self.
|
|
11632
|
-
self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
|
|
11631
|
+
self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
|
|
11633
11632
|
self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
|
|
11633
|
+
self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
|
|
11634
11634
|
self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
|
|
11635
|
-
self.
|
|
11635
|
+
self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
|
|
11636
11636
|
|
|
11637
11637
|
class _SavePMDBIntermediateFile(PyParameterCommandArgumentsSubItem):
|
|
11638
11638
|
"""
|
|
@@ -11664,19 +11664,19 @@ class Root(PyMenu):
|
|
|
11664
11664
|
Argument OneZonePer.
|
|
11665
11665
|
"""
|
|
11666
11666
|
|
|
11667
|
-
class
|
|
11667
|
+
class _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
|
|
11668
11668
|
"""
|
|
11669
|
-
Argument
|
|
11669
|
+
Argument UsePartOrBodyAsSuffix.
|
|
11670
11670
|
"""
|
|
11671
11671
|
|
|
11672
|
-
class
|
|
11672
|
+
class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
|
|
11673
11673
|
"""
|
|
11674
|
-
Argument
|
|
11674
|
+
Argument ExtractFeatures.
|
|
11675
11675
|
"""
|
|
11676
11676
|
|
|
11677
|
-
class
|
|
11677
|
+
class _ImportNamedSelections(PyParameterCommandArgumentsSubItem):
|
|
11678
11678
|
"""
|
|
11679
|
-
Argument
|
|
11679
|
+
Argument ImportNamedSelections.
|
|
11680
11680
|
"""
|
|
11681
11681
|
|
|
11682
11682
|
class _ImportPartNames(PyParameterCommandArgumentsSubItem):
|
|
@@ -11684,9 +11684,9 @@ class Root(PyMenu):
|
|
|
11684
11684
|
Argument ImportPartNames.
|
|
11685
11685
|
"""
|
|
11686
11686
|
|
|
11687
|
-
class
|
|
11687
|
+
class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
|
|
11688
11688
|
"""
|
|
11689
|
-
Argument
|
|
11689
|
+
Argument ImportCurvatureDataFromCAD.
|
|
11690
11690
|
"""
|
|
11691
11691
|
|
|
11692
11692
|
def create_instance(self) -> _ImportBodyOfInfluenceGeometryCommandArguments:
|
|
@@ -11776,23 +11776,23 @@ class Root(PyMenu):
|
|
|
11776
11776
|
|
|
11777
11777
|
def __init__(self, parent, attr, service, rules, path):
|
|
11778
11778
|
super().__init__(parent, attr, service, rules, path)
|
|
11779
|
-
self.
|
|
11779
|
+
self.ExtractAngle = self._ExtractAngle(self, "ExtractAngle", service, rules, path)
|
|
11780
11780
|
self.MaxFacetLengthOption = self._MaxFacetLengthOption(self, "MaxFacetLengthOption", service, rules, path)
|
|
11781
11781
|
self.CISeparation = self._CISeparation(self, "CISeparation", service, rules, path)
|
|
11782
11782
|
self.FacetedBodies = self._FacetedBodies(self, "FacetedBodies", service, rules, path)
|
|
11783
11783
|
self.CIRefaceting = self._CIRefaceting(self, "CIRefaceting", service, rules, path)
|
|
11784
|
-
self.
|
|
11784
|
+
self.CITolerence = self._CITolerence(self, "CITolerence", service, rules, path)
|
|
11785
11785
|
self.AutomaticObjectCreation = self._AutomaticObjectCreation(self, "AutomaticObjectCreation", service, rules, path)
|
|
11786
|
-
self.MaxFacetLengthRatio = self._MaxFacetLengthRatio(self, "MaxFacetLengthRatio", service, rules, path)
|
|
11787
11786
|
self.MaxFacetLength = self._MaxFacetLength(self, "MaxFacetLength", service, rules, path)
|
|
11787
|
+
self.MaxFacetLengthRatio = self._MaxFacetLengthRatio(self, "MaxFacetLengthRatio", service, rules, path)
|
|
11788
11788
|
self.ShowImportCadPreferences = self._ShowImportCadPreferences(self, "ShowImportCadPreferences", service, rules, path)
|
|
11789
|
-
self.
|
|
11789
|
+
self.MergeNodes = self._MergeNodes(self, "MergeNodes", service, rules, path)
|
|
11790
11790
|
self.CISeparationAngle = self._CISeparationAngle(self, "CISeparationAngle", service, rules, path)
|
|
11791
|
-
self.
|
|
11791
|
+
self.EdgeLabel = self._EdgeLabel(self, "EdgeLabel", service, rules, path)
|
|
11792
11792
|
|
|
11793
|
-
class
|
|
11793
|
+
class _ExtractAngle(PyNumericalCommandArgumentsSubItem):
|
|
11794
11794
|
"""
|
|
11795
|
-
|
|
11795
|
+
Argument ExtractAngle.
|
|
11796
11796
|
"""
|
|
11797
11797
|
|
|
11798
11798
|
class _MaxFacetLengthOption(PyTextualCommandArgumentsSubItem):
|
|
@@ -11815,9 +11815,9 @@ class Root(PyMenu):
|
|
|
11815
11815
|
Enable this option to be able to set the Tolerance and the Max Facet Length custom faceting options for the imported geometry.
|
|
11816
11816
|
"""
|
|
11817
11817
|
|
|
11818
|
-
class
|
|
11818
|
+
class _CITolerence(PyNumericalCommandArgumentsSubItem):
|
|
11819
11819
|
"""
|
|
11820
|
-
|
|
11820
|
+
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.
|
|
11821
11821
|
"""
|
|
11822
11822
|
|
|
11823
11823
|
class _AutomaticObjectCreation(PyTextualCommandArgumentsSubItem):
|
|
@@ -11825,14 +11825,14 @@ class Root(PyMenu):
|
|
|
11825
11825
|
Determine whether or not mesh objects and labels are automatically created upon import, potentially and dramatically increasing the mesh import speed for very large cases. By default, this is set to yes however, if it is set to no, then no labels are created and a single mesh object is created employing all zones.
|
|
11826
11826
|
"""
|
|
11827
11827
|
|
|
11828
|
-
class
|
|
11828
|
+
class _MaxFacetLength(PyNumericalCommandArgumentsSubItem):
|
|
11829
11829
|
"""
|
|
11830
|
-
|
|
11830
|
+
Enables you to specify a maximum facet size for the imported model to avoid very large facets during the file import. Depending on the CAD geometry, this may yield more accuracy.
|
|
11831
11831
|
"""
|
|
11832
11832
|
|
|
11833
|
-
class
|
|
11833
|
+
class _MaxFacetLengthRatio(PyNumericalCommandArgumentsSubItem):
|
|
11834
11834
|
"""
|
|
11835
|
-
|
|
11835
|
+
Argument MaxFacetLengthRatio.
|
|
11836
11836
|
"""
|
|
11837
11837
|
|
|
11838
11838
|
class _ShowImportCadPreferences(PyParameterCommandArgumentsSubItem):
|
|
@@ -11840,9 +11840,9 @@ class Root(PyMenu):
|
|
|
11840
11840
|
Display advanced options that you may want to apply to the task.
|
|
11841
11841
|
"""
|
|
11842
11842
|
|
|
11843
|
-
class
|
|
11843
|
+
class _MergeNodes(PyTextualCommandArgumentsSubItem):
|
|
11844
11844
|
"""
|
|
11845
|
-
Argument
|
|
11845
|
+
Argument MergeNodes.
|
|
11846
11846
|
"""
|
|
11847
11847
|
|
|
11848
11848
|
class _CISeparationAngle(PyNumericalCommandArgumentsSubItem):
|
|
@@ -11850,9 +11850,9 @@ class Root(PyMenu):
|
|
|
11850
11850
|
Specify the angle at which features will be extracted from the CAD model on import. Assigning a smaller separation angle will produce more zones.
|
|
11851
11851
|
"""
|
|
11852
11852
|
|
|
11853
|
-
class
|
|
11853
|
+
class _EdgeLabel(PyTextualCommandArgumentsSubItem):
|
|
11854
11854
|
"""
|
|
11855
|
-
Specify
|
|
11855
|
+
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.
|
|
11856
11856
|
"""
|
|
11857
11857
|
|
|
11858
11858
|
class _FileName(PyTextualCommandArgumentsSubItem):
|
|
@@ -11903,11 +11903,11 @@ class Root(PyMenu):
|
|
|
11903
11903
|
self.CreateCADAssemblies = self._CreateCADAssemblies(self, "CreateCADAssemblies", service, rules, path)
|
|
11904
11904
|
self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
|
|
11905
11905
|
self.OneZonePer = self._OneZonePer(self, "OneZonePer", service, rules, path)
|
|
11906
|
-
self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
|
|
11907
|
-
self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
|
|
11908
11906
|
self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
|
|
11909
|
-
self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
|
|
11910
11907
|
self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
|
|
11908
|
+
self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
|
|
11909
|
+
self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
|
|
11910
|
+
self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
|
|
11911
11911
|
|
|
11912
11912
|
class _SavePMDBIntermediateFile(PyParameterCommandArgumentsSubItem):
|
|
11913
11913
|
"""
|
|
@@ -11939,19 +11939,19 @@ class Root(PyMenu):
|
|
|
11939
11939
|
Argument OneZonePer.
|
|
11940
11940
|
"""
|
|
11941
11941
|
|
|
11942
|
-
class
|
|
11942
|
+
class _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
|
|
11943
11943
|
"""
|
|
11944
|
-
Argument
|
|
11944
|
+
Argument UsePartOrBodyAsSuffix.
|
|
11945
11945
|
"""
|
|
11946
11946
|
|
|
11947
|
-
class
|
|
11947
|
+
class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
|
|
11948
11948
|
"""
|
|
11949
|
-
Argument
|
|
11949
|
+
Argument ExtractFeatures.
|
|
11950
11950
|
"""
|
|
11951
11951
|
|
|
11952
|
-
class
|
|
11952
|
+
class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
|
|
11953
11953
|
"""
|
|
11954
|
-
Argument
|
|
11954
|
+
Argument ImportCurvatureDataFromCAD.
|
|
11955
11955
|
"""
|
|
11956
11956
|
|
|
11957
11957
|
class _ImportPartNames(PyParameterCommandArgumentsSubItem):
|
|
@@ -11959,9 +11959,9 @@ class Root(PyMenu):
|
|
|
11959
11959
|
Argument ImportPartNames.
|
|
11960
11960
|
"""
|
|
11961
11961
|
|
|
11962
|
-
class
|
|
11962
|
+
class _ImportNamedSelections(PyParameterCommandArgumentsSubItem):
|
|
11963
11963
|
"""
|
|
11964
|
-
Argument
|
|
11964
|
+
Argument ImportNamedSelections.
|
|
11965
11965
|
"""
|
|
11966
11966
|
|
|
11967
11967
|
def create_instance(self) -> _ImportGeometryCommandArguments:
|
|
@@ -12287,8 +12287,8 @@ class Root(PyMenu):
|
|
|
12287
12287
|
def __init__(self, parent, attr, service, rules, path):
|
|
12288
12288
|
super().__init__(parent, attr, service, rules, path)
|
|
12289
12289
|
self.FirstNumber = self._FirstNumber(self, "FirstNumber", service, rules, path)
|
|
12290
|
-
self.NbCellsPerUnit = self._NbCellsPerUnit(self, "NbCellsPerUnit", service, rules, path)
|
|
12291
12290
|
self.CustomPatternString = self._CustomPatternString(self, "CustomPatternString", service, rules, path)
|
|
12291
|
+
self.NbCellsPerUnit = self._NbCellsPerUnit(self, "NbCellsPerUnit", service, rules, path)
|
|
12292
12292
|
self.InvokeBatteryModelingOptions = self._InvokeBatteryModelingOptions(self, "InvokeBatteryModelingOptions", service, rules, path)
|
|
12293
12293
|
self.UseCustomPattern = self._UseCustomPattern(self, "UseCustomPattern", service, rules, path)
|
|
12294
12294
|
|
|
@@ -12297,14 +12297,14 @@ class Root(PyMenu):
|
|
|
12297
12297
|
Specify the numerical value that will be appended to the name of the first unit associated with the meshing pattern object. This value also dictates the labeling for mesh objects associated with this mesh pattern. More...
|
|
12298
12298
|
"""
|
|
12299
12299
|
|
|
12300
|
-
class
|
|
12300
|
+
class _CustomPatternString(PyTextualCommandArgumentsSubItem):
|
|
12301
12301
|
"""
|
|
12302
|
-
|
|
12302
|
+
Argument CustomPatternString.
|
|
12303
12303
|
"""
|
|
12304
12304
|
|
|
12305
|
-
class
|
|
12305
|
+
class _NbCellsPerUnit(PyNumericalCommandArgumentsSubItem):
|
|
12306
12306
|
"""
|
|
12307
|
-
|
|
12307
|
+
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...
|
|
12308
12308
|
"""
|
|
12309
12309
|
|
|
12310
12310
|
class _InvokeBatteryModelingOptions(PyTextualCommandArgumentsSubItem):
|
|
@@ -12398,8 +12398,8 @@ class Root(PyMenu):
|
|
|
12398
12398
|
self.FacetMaxEdgeLength = self._FacetMaxEdgeLength(self, "FacetMaxEdgeLength", service, rules, path)
|
|
12399
12399
|
self.FacetResolution = self._FacetResolution(self, "FacetResolution", service, rules, path)
|
|
12400
12400
|
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
12401
|
-
self.MaxEdgeLengthFactor = self._MaxEdgeLengthFactor(self, "MaxEdgeLengthFactor", service, rules, path)
|
|
12402
12401
|
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
12402
|
+
self.MaxEdgeLengthFactor = self._MaxEdgeLengthFactor(self, "MaxEdgeLengthFactor", service, rules, path)
|
|
12403
12403
|
self.MaxEdgeLength = self._MaxEdgeLength(self, "MaxEdgeLength", service, rules, path)
|
|
12404
12404
|
self.CustomNormalAngle = self._CustomNormalAngle(self, "CustomNormalAngle", service, rules, path)
|
|
12405
12405
|
self.CustomDeviation = self._CustomDeviation(self, "CustomDeviation", service, rules, path)
|
|
@@ -12420,14 +12420,14 @@ class Root(PyMenu):
|
|
|
12420
12420
|
Argument Deviation.
|
|
12421
12421
|
"""
|
|
12422
12422
|
|
|
12423
|
-
class
|
|
12423
|
+
class _NormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
12424
12424
|
"""
|
|
12425
|
-
Argument
|
|
12425
|
+
Argument NormalAngle.
|
|
12426
12426
|
"""
|
|
12427
12427
|
|
|
12428
|
-
class
|
|
12428
|
+
class _MaxEdgeLengthFactor(PyNumericalCommandArgumentsSubItem):
|
|
12429
12429
|
"""
|
|
12430
|
-
Argument
|
|
12430
|
+
Argument MaxEdgeLengthFactor.
|
|
12431
12431
|
"""
|
|
12432
12432
|
|
|
12433
12433
|
class _MaxEdgeLength(PyNumericalCommandArgumentsSubItem):
|
|
@@ -12554,11 +12554,11 @@ class Root(PyMenu):
|
|
|
12554
12554
|
self.MinSize = self._MinSize(self, "MinSize", service, rules, path)
|
|
12555
12555
|
self.WrapMax = self._WrapMax(self, "WrapMax", service, rules, path)
|
|
12556
12556
|
self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
|
|
12557
|
-
self.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", service, rules, path)
|
|
12558
12557
|
self.InitialSizeControl = self._InitialSizeControl(self, "InitialSizeControl", service, rules, path)
|
|
12558
|
+
self.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", service, rules, path)
|
|
12559
12559
|
self.SizingType = self._SizingType(self, "SizingType", service, rules, path)
|
|
12560
|
-
self.WrapCurvatureNormalAngle = self._WrapCurvatureNormalAngle(self, "WrapCurvatureNormalAngle", service, rules, path)
|
|
12561
12560
|
self.CellsPerGap = self._CellsPerGap(self, "CellsPerGap", service, rules, path)
|
|
12561
|
+
self.WrapCurvatureNormalAngle = self._WrapCurvatureNormalAngle(self, "WrapCurvatureNormalAngle", service, rules, path)
|
|
12562
12562
|
self.TargetSizeControl = self._TargetSizeControl(self, "TargetSizeControl", service, rules, path)
|
|
12563
12563
|
self.GrowthRate = self._GrowthRate(self, "GrowthRate", service, rules, path)
|
|
12564
12564
|
|
|
@@ -12607,14 +12607,14 @@ class Root(PyMenu):
|
|
|
12607
12607
|
Display advanced wrap-specific options that are also applied to the task. See this description for more information about wrap (and target) mesh size controls.
|
|
12608
12608
|
"""
|
|
12609
12609
|
|
|
12610
|
-
class
|
|
12610
|
+
class _InitialSizeControl(PyParameterCommandArgumentsSubItem):
|
|
12611
12611
|
"""
|
|
12612
|
-
|
|
12612
|
+
Enable this field to display the initial size control in the graphics window.
|
|
12613
12613
|
"""
|
|
12614
12614
|
|
|
12615
|
-
class
|
|
12615
|
+
class _WrapGrowthRate(PyNumericalCommandArgumentsSubItem):
|
|
12616
12616
|
"""
|
|
12617
|
-
|
|
12617
|
+
Specify the increase in element edge length with each succeeding layer of elements.
|
|
12618
12618
|
"""
|
|
12619
12619
|
|
|
12620
12620
|
class _SizingType(PyTextualCommandArgumentsSubItem):
|
|
@@ -12622,14 +12622,14 @@ class Root(PyMenu):
|
|
|
12622
12622
|
Choose the type of sizing control (curvature, proximity, soft, or boi).
|
|
12623
12623
|
"""
|
|
12624
12624
|
|
|
12625
|
-
class
|
|
12625
|
+
class _CellsPerGap(PyNumericalCommandArgumentsSubItem):
|
|
12626
12626
|
"""
|
|
12627
|
-
Specify the
|
|
12627
|
+
Specify the minimum number of layers of elements to be generated in the gaps. The number of cells per gap can be a real value, with a minimum value of 0.01.
|
|
12628
12628
|
"""
|
|
12629
12629
|
|
|
12630
|
-
class
|
|
12630
|
+
class _WrapCurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
12631
12631
|
"""
|
|
12632
|
-
Specify the
|
|
12632
|
+
Specify the maximum allowable angle (from 0 to 180 degrees) that one element edge is allowed to span given a particular geometry curvature. You can use this field to limit the number of elements that are generated along a curve or surface if the minimum size is too small for that particular curve.
|
|
12633
12633
|
"""
|
|
12634
12634
|
|
|
12635
12635
|
class _TargetSizeControl(PyParameterCommandArgumentsSubItem):
|
|
@@ -13334,9 +13334,9 @@ class Root(PyMenu):
|
|
|
13334
13334
|
self.FacetMaxEdgeLength = self._FacetMaxEdgeLength(self, "FacetMaxEdgeLength", service, rules, path)
|
|
13335
13335
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
13336
13336
|
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
13337
|
-
self.MaxEdgeLengthFactor = self._MaxEdgeLengthFactor(self, "MaxEdgeLengthFactor", service, rules, path)
|
|
13338
|
-
self.Refacet = self._Refacet(self, "Refacet", service, rules, path)
|
|
13339
13337
|
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
13338
|
+
self.Refacet = self._Refacet(self, "Refacet", service, rules, path)
|
|
13339
|
+
self.MaxEdgeLengthFactor = self._MaxEdgeLengthFactor(self, "MaxEdgeLengthFactor", service, rules, path)
|
|
13340
13340
|
|
|
13341
13341
|
class _FacetMaxEdgeLength(PyTextualCommandArgumentsSubItem):
|
|
13342
13342
|
"""
|
|
@@ -13353,9 +13353,9 @@ class Root(PyMenu):
|
|
|
13353
13353
|
Specify the distance between facet edges and the geometry edges. Decreasing this value will result in more facets along curved edges.
|
|
13354
13354
|
"""
|
|
13355
13355
|
|
|
13356
|
-
class
|
|
13356
|
+
class _NormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
13357
13357
|
"""
|
|
13358
|
-
|
|
13358
|
+
Specify a rotational angle (in degrees) of transformation.
|
|
13359
13359
|
"""
|
|
13360
13360
|
|
|
13361
13361
|
class _Refacet(PyParameterCommandArgumentsSubItem):
|
|
@@ -13363,9 +13363,9 @@ class Root(PyMenu):
|
|
|
13363
13363
|
Select this option when you want to change faceting of the selected object. Refaceting will refacet the original CAD geometry. Only the faceted CAD geometry is used during the meshing process. The refaceting settings control how far the facet edges are from the model and the size of the facets. More...
|
|
13364
13364
|
"""
|
|
13365
13365
|
|
|
13366
|
-
class
|
|
13366
|
+
class _MaxEdgeLengthFactor(PyNumericalCommandArgumentsSubItem):
|
|
13367
13367
|
"""
|
|
13368
|
-
|
|
13368
|
+
Specifies the maximum size of the facets relative to the bounding box of the geometry.
|
|
13369
13369
|
"""
|
|
13370
13370
|
|
|
13371
13371
|
class _IgnoreSolidNames(PyParameterCommandArgumentsSubItem):
|
|
@@ -13428,8 +13428,8 @@ class Root(PyMenu):
|
|
|
13428
13428
|
super().__init__(parent, attr, service, rules, path)
|
|
13429
13429
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
13430
13430
|
self.RefacetDuringLoad = self._RefacetDuringLoad(self, "RefacetDuringLoad", service, rules, path)
|
|
13431
|
-
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
13432
13431
|
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
13432
|
+
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
13433
13433
|
|
|
13434
13434
|
class _MaxSize(PyNumericalCommandArgumentsSubItem):
|
|
13435
13435
|
"""
|
|
@@ -13441,14 +13441,14 @@ class Root(PyMenu):
|
|
|
13441
13441
|
This option is available when DSCO is selected for the Import Route. When enabled, this option will refacet the geometry as it is converted to a .fmd file. This option eliminates the need for any refaceting operation after the geometry is loaded, which can be expensive.
|
|
13442
13442
|
"""
|
|
13443
13443
|
|
|
13444
|
-
class
|
|
13444
|
+
class _NormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
13445
13445
|
"""
|
|
13446
|
-
Specify
|
|
13446
|
+
Specify a rotational angle (in degrees) of transformation.
|
|
13447
13447
|
"""
|
|
13448
13448
|
|
|
13449
|
-
class
|
|
13449
|
+
class _Deviation(PyNumericalCommandArgumentsSubItem):
|
|
13450
13450
|
"""
|
|
13451
|
-
Specify
|
|
13451
|
+
Specify the distance between facet edges and the geometry edges. Decreasing this value will result in more facets along curved edges.
|
|
13452
13452
|
"""
|
|
13453
13453
|
|
|
13454
13454
|
def create_instance(self) -> _PartManagementCommandArguments:
|
|
@@ -14039,10 +14039,10 @@ class Root(PyMenu):
|
|
|
14039
14039
|
self.ConnectLabelWildcard = self._ConnectLabelWildcard(self, "ConnectLabelWildcard", service, rules, path)
|
|
14040
14040
|
self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
|
|
14041
14041
|
self.RelativeShareTopologyTolerance = self._RelativeShareTopologyTolerance(self, "RelativeShareTopologyTolerance", service, rules, path)
|
|
14042
|
-
self.
|
|
14042
|
+
self.ShareTopologyAngle = self._ShareTopologyAngle(self, "ShareTopologyAngle", service, rules, path)
|
|
14043
14043
|
self.ExecuteJoinIntersect = self._ExecuteJoinIntersect(self, "ExecuteJoinIntersect", service, rules, path)
|
|
14044
14044
|
self.Operation = self._Operation(self, "Operation", service, rules, path)
|
|
14045
|
-
self.
|
|
14045
|
+
self.FluidLabelWildcard = self._FluidLabelWildcard(self, "FluidLabelWildcard", service, rules, path)
|
|
14046
14046
|
self.STToleranceIncrement = self._STToleranceIncrement(self, "STToleranceIncrement", service, rules, path)
|
|
14047
14047
|
self.IntfLabelList = self._IntfLabelList(self, "IntfLabelList", service, rules, path)
|
|
14048
14048
|
self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
|
|
@@ -14075,9 +14075,9 @@ class Root(PyMenu):
|
|
|
14075
14075
|
Specify the relative tolerance for joining or intersecting face pairs, or the relative tolerance for connecting edge and face pairs.
|
|
14076
14076
|
"""
|
|
14077
14077
|
|
|
14078
|
-
class
|
|
14078
|
+
class _ShareTopologyAngle(PyNumericalCommandArgumentsSubItem):
|
|
14079
14079
|
"""
|
|
14080
|
-
|
|
14080
|
+
Specify the threshold angle for joining face pairs.
|
|
14081
14081
|
"""
|
|
14082
14082
|
|
|
14083
14083
|
class _ExecuteJoinIntersect(PyTextualCommandArgumentsSubItem):
|
|
@@ -14090,9 +14090,9 @@ class Root(PyMenu):
|
|
|
14090
14090
|
Choose whether to apply share topology using the Join-Intersect method where you join and/or intersect the problematic faces, or using the Interface Connect method where you connect edges of overlapping face pairs. Note that imprinting of overlapping faces in SCDM/Discovery is highly recommended for the Interface Connect method.
|
|
14091
14091
|
"""
|
|
14092
14092
|
|
|
14093
|
-
class
|
|
14093
|
+
class _FluidLabelWildcard(PyTextualCommandArgumentsSubItem):
|
|
14094
14094
|
"""
|
|
14095
|
-
|
|
14095
|
+
Argument FluidLabelWildcard.
|
|
14096
14096
|
"""
|
|
14097
14097
|
|
|
14098
14098
|
class _STToleranceIncrement(PyNumericalCommandArgumentsSubItem):
|
|
@@ -14195,13 +14195,13 @@ class Root(PyMenu):
|
|
|
14195
14195
|
def __init__(self, parent, attr, service, rules, path):
|
|
14196
14196
|
super().__init__(parent, attr, service, rules, path)
|
|
14197
14197
|
self.SMQualityCollapseLimit = self._SMQualityCollapseLimit(self, "SMQualityCollapseLimit", service, rules, path)
|
|
14198
|
-
self.
|
|
14198
|
+
self.AutoMerge = self._AutoMerge(self, "AutoMerge", service, rules, path)
|
|
14199
14199
|
self.SMQualityImprove = self._SMQualityImprove(self, "SMQualityImprove", service, rules, path)
|
|
14200
|
+
self.ShowSurfaceMeshPreferences = self._ShowSurfaceMeshPreferences(self, "ShowSurfaceMeshPreferences", service, rules, path)
|
|
14200
14201
|
self.SMSeparationAngle = self._SMSeparationAngle(self, "SMSeparationAngle", service, rules, path)
|
|
14201
14202
|
self.SMSeparation = self._SMSeparation(self, "SMSeparation", service, rules, path)
|
|
14202
|
-
self.ShowSurfaceMeshPreferences = self._ShowSurfaceMeshPreferences(self, "ShowSurfaceMeshPreferences", service, rules, path)
|
|
14203
14203
|
self.TVMAutoControlCreation = self._TVMAutoControlCreation(self, "TVMAutoControlCreation", service, rules, path)
|
|
14204
|
-
self.
|
|
14204
|
+
self.FoldFaceLimit = self._FoldFaceLimit(self, "FoldFaceLimit", service, rules, path)
|
|
14205
14205
|
self.SMRemoveStep = self._SMRemoveStep(self, "SMRemoveStep", service, rules, path)
|
|
14206
14206
|
self.ParallelRegionCompute = self._ParallelRegionCompute(self, "ParallelRegionCompute", service, rules, path)
|
|
14207
14207
|
self.SMStepWidth = self._SMStepWidth(self, "SMStepWidth", service, rules, path)
|
|
@@ -14218,9 +14218,9 @@ class Root(PyMenu):
|
|
|
14218
14218
|
Argument SMQualityCollapseLimit.
|
|
14219
14219
|
"""
|
|
14220
14220
|
|
|
14221
|
-
class
|
|
14221
|
+
class _AutoMerge(PyParameterCommandArgumentsSubItem):
|
|
14222
14222
|
"""
|
|
14223
|
-
Argument
|
|
14223
|
+
Argument AutoMerge.
|
|
14224
14224
|
"""
|
|
14225
14225
|
|
|
14226
14226
|
class _SMQualityImprove(PyTextualCommandArgumentsSubItem):
|
|
@@ -14228,6 +14228,11 @@ class Root(PyMenu):
|
|
|
14228
14228
|
Argument SMQualityImprove.
|
|
14229
14229
|
"""
|
|
14230
14230
|
|
|
14231
|
+
class _ShowSurfaceMeshPreferences(PyParameterCommandArgumentsSubItem):
|
|
14232
|
+
"""
|
|
14233
|
+
Argument ShowSurfaceMeshPreferences.
|
|
14234
|
+
"""
|
|
14235
|
+
|
|
14231
14236
|
class _SMSeparationAngle(PyNumericalCommandArgumentsSubItem):
|
|
14232
14237
|
"""
|
|
14233
14238
|
Argument SMSeparationAngle.
|
|
@@ -14238,19 +14243,14 @@ class Root(PyMenu):
|
|
|
14238
14243
|
Argument SMSeparation.
|
|
14239
14244
|
"""
|
|
14240
14245
|
|
|
14241
|
-
class _ShowSurfaceMeshPreferences(PyParameterCommandArgumentsSubItem):
|
|
14242
|
-
"""
|
|
14243
|
-
Argument ShowSurfaceMeshPreferences.
|
|
14244
|
-
"""
|
|
14245
|
-
|
|
14246
14246
|
class _TVMAutoControlCreation(PyTextualCommandArgumentsSubItem):
|
|
14247
14247
|
"""
|
|
14248
14248
|
Argument TVMAutoControlCreation.
|
|
14249
14249
|
"""
|
|
14250
14250
|
|
|
14251
|
-
class
|
|
14251
|
+
class _FoldFaceLimit(PyNumericalCommandArgumentsSubItem):
|
|
14252
14252
|
"""
|
|
14253
|
-
Argument
|
|
14253
|
+
Argument FoldFaceLimit.
|
|
14254
14254
|
"""
|
|
14255
14255
|
|
|
14256
14256
|
class _SMRemoveStep(PyTextualCommandArgumentsSubItem):
|
|
@@ -14385,10 +14385,10 @@ class Root(PyMenu):
|
|
|
14385
14385
|
def __init__(self, parent, attr, service, rules, path):
|
|
14386
14386
|
super().__init__(parent, attr, service, rules, path)
|
|
14387
14387
|
self.NewLabelObjects = self._NewLabelObjects(self, "NewLabelObjects", service, rules, path)
|
|
14388
|
-
self.NewLabelCells = self._NewLabelCells(self, "NewLabelCells", service, rules, path)
|
|
14389
|
-
self.NewLabelType = self._NewLabelType(self, "NewLabelType", service, rules, path)
|
|
14390
14388
|
self.NewLabels = self._NewLabels(self, "NewLabels", service, rules, path)
|
|
14389
|
+
self.NewLabelType = self._NewLabelType(self, "NewLabelType", service, rules, path)
|
|
14391
14390
|
self.NewLabelResolution = self._NewLabelResolution(self, "NewLabelResolution", service, rules, path)
|
|
14391
|
+
self.NewLabelCells = self._NewLabelCells(self, "NewLabelCells", service, rules, path)
|
|
14392
14392
|
self.NewLabelMax = self._NewLabelMax(self, "NewLabelMax", service, rules, path)
|
|
14393
14393
|
self.NewZoneType = self._NewZoneType(self, "NewZoneType", service, rules, path)
|
|
14394
14394
|
self.NewLabelCurvature = self._NewLabelCurvature(self, "NewLabelCurvature", service, rules, path)
|
|
@@ -14399,9 +14399,9 @@ class Root(PyMenu):
|
|
|
14399
14399
|
Argument NewLabelObjects.
|
|
14400
14400
|
"""
|
|
14401
14401
|
|
|
14402
|
-
class
|
|
14402
|
+
class _NewLabels(PyTextualCommandArgumentsSubItem):
|
|
14403
14403
|
"""
|
|
14404
|
-
Argument
|
|
14404
|
+
Argument NewLabels.
|
|
14405
14405
|
"""
|
|
14406
14406
|
|
|
14407
14407
|
class _NewLabelType(PyTextualCommandArgumentsSubItem):
|
|
@@ -14409,14 +14409,14 @@ class Root(PyMenu):
|
|
|
14409
14409
|
Argument NewLabelType.
|
|
14410
14410
|
"""
|
|
14411
14411
|
|
|
14412
|
-
class
|
|
14412
|
+
class _NewLabelResolution(PyTextualCommandArgumentsSubItem):
|
|
14413
14413
|
"""
|
|
14414
|
-
Argument
|
|
14414
|
+
Argument NewLabelResolution.
|
|
14415
14415
|
"""
|
|
14416
14416
|
|
|
14417
|
-
class
|
|
14417
|
+
class _NewLabelCells(PyTextualCommandArgumentsSubItem):
|
|
14418
14418
|
"""
|
|
14419
|
-
Argument
|
|
14419
|
+
Argument NewLabelCells.
|
|
14420
14420
|
"""
|
|
14421
14421
|
|
|
14422
14422
|
class _NewLabelMax(PyTextualCommandArgumentsSubItem):
|