ansys-fluent-core 0.34.2__py3-none-any.whl → 0.35.dev1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of ansys-fluent-core might be problematic. Click here for more details.
- ansys/fluent/core/__init__.py +48 -84
- ansys/fluent/core/codegen/allapigen.py +2 -2
- ansys/fluent/core/codegen/builtin_settingsgen.py +54 -28
- ansys/fluent/core/codegen/datamodelgen.py +3 -1
- ansys/fluent/core/codegen/print_fluent_version.py +2 -2
- ansys/fluent/core/codegen/settingsgen.py +4 -1
- ansys/fluent/core/codegen/tuigen.py +4 -4
- ansys/fluent/core/data_model_cache.py +2 -2
- ansys/fluent/core/docker/docker_compose.py +8 -9
- ansys/fluent/core/docker/utils.py +2 -2
- ansys/fluent/core/examples/downloads.py +8 -11
- ansys/fluent/core/fluent_connection.py +23 -15
- ansys/fluent/core/generated/api_tree/api_objects.json +1 -1
- ansys/fluent/core/generated/datamodel_231/flicing.py +50 -50
- ansys/fluent/core/generated/datamodel_231/meshing.py +182 -182
- ansys/fluent/core/generated/datamodel_232/flicing.py +45 -45
- ansys/fluent/core/generated/datamodel_232/meshing.py +172 -172
- ansys/fluent/core/generated/datamodel_241/flicing.py +45 -45
- ansys/fluent/core/generated/datamodel_241/meshing.py +303 -303
- ansys/fluent/core/generated/datamodel_242/flicing.py +50 -50
- ansys/fluent/core/generated/datamodel_242/meshing.py +309 -309
- ansys/fluent/core/generated/datamodel_242/part_management.py +3 -3
- ansys/fluent/core/generated/datamodel_251/flicing.py +50 -50
- ansys/fluent/core/generated/datamodel_251/meshing.py +327 -327
- ansys/fluent/core/generated/datamodel_251/part_management.py +9 -9
- ansys/fluent/core/generated/datamodel_252/flicing.py +30 -30
- ansys/fluent/core/generated/datamodel_252/meshing.py +370 -370
- ansys/fluent/core/generated/datamodel_252/part_management.py +15 -15
- ansys/fluent/core/generated/datamodel_261/flicing.py +35 -35
- ansys/fluent/core/generated/datamodel_261/meshing.py +444 -388
- ansys/fluent/core/generated/datamodel_261/part_management.py +5 -5
- ansys/fluent/core/generated/datamodel_261/preferences.py +28 -0
- ansys/fluent/core/generated/fluent_version_261.py +3 -3
- ansys/fluent/core/generated/meshing/tui_261.py +1247 -1136
- ansys/fluent/core/generated/solver/settings_261.py +9912 -4184
- ansys/fluent/core/generated/solver/settings_261.pyi +6779 -3312
- ansys/fluent/core/generated/solver/settings_builtin.py +515 -27
- ansys/fluent/core/generated/solver/settings_builtin.pyi +2 -18
- ansys/fluent/core/generated/solver/tui_261.py +4439 -3245
- ansys/fluent/core/launcher/container_launcher.py +19 -4
- ansys/fluent/core/launcher/fluent_container.py +51 -39
- ansys/fluent/core/launcher/launch_options.py +5 -4
- ansys/fluent/core/launcher/launcher.py +16 -3
- ansys/fluent/core/launcher/launcher_utils.py +63 -15
- ansys/fluent/core/launcher/pim_launcher.py +17 -3
- ansys/fluent/core/launcher/process_launch_string.py +3 -2
- ansys/fluent/core/launcher/server_info.py +7 -3
- ansys/fluent/core/launcher/slurm_launcher.py +4 -3
- ansys/fluent/core/launcher/standalone_launcher.py +6 -3
- ansys/fluent/core/launcher/watchdog.py +3 -3
- ansys/fluent/core/launcher/watchdog_exec +1 -1
- ansys/fluent/core/logger.py +3 -1
- ansys/fluent/core/module_config.py +363 -0
- ansys/fluent/core/pyfluent_warnings.py +2 -2
- ansys/fluent/core/report.py +0 -2
- ansys/fluent/core/search.py +43 -18
- ansys/fluent/core/services/api_upgrade.py +3 -2
- ansys/fluent/core/services/datamodel_se.py +4 -2
- ansys/fluent/core/services/health_check.py +3 -1
- ansys/fluent/core/services/interceptors.py +8 -6
- ansys/fluent/core/session.py +31 -3
- ansys/fluent/core/session_pure_meshing.py +1 -1
- ansys/fluent/core/session_shared.py +4 -4
- ansys/fluent/core/session_solver.py +13 -6
- ansys/fluent/core/session_utilities.py +7 -0
- ansys/fluent/core/solver/flobject.py +6 -4
- ansys/fluent/core/solver/flunits.py +2 -0
- ansys/fluent/core/solver/settings_builtin_bases.py +3 -3
- ansys/fluent/core/solver/settings_builtin_data.py +2 -14
- ansys/fluent/core/streaming_services/datamodel_event_streaming.py +3 -2
- ansys/fluent/core/streaming_services/datamodel_streaming.py +3 -1
- ansys/fluent/core/streaming_services/events_streaming.py +2 -18
- ansys/fluent/core/system_coupling.py +3 -1
- ansys/fluent/core/utils/__init__.py +0 -7
- ansys/fluent/core/utils/data_transfer.py +3 -3
- ansys/fluent/core/utils/file_transfer_service.py +24 -15
- ansys/fluent/core/utils/fluent_version.py +3 -3
- ansys/fluent/core/utils/networking.py +13 -4
- {ansys_fluent_core-0.34.2.dist-info → ansys_fluent_core-0.35.dev1.dist-info}/METADATA +8 -7
- {ansys_fluent_core-0.34.2.dist-info → ansys_fluent_core-0.35.dev1.dist-info}/RECORD +82 -81
- {ansys_fluent_core-0.34.2.dist-info → ansys_fluent_core-0.35.dev1.dist-info}/WHEEL +1 -1
- {ansys_fluent_core-0.34.2.dist-info → ansys_fluent_core-0.35.dev1.dist-info/licenses}/LICENSE +0 -0
|
@@ -96,6 +96,7 @@ class Root(PyMenu):
|
|
|
96
96
|
self.ModifyMeshRefinement = self.__class__.ModifyMeshRefinement(service, rules, "ModifyMeshRefinement", path)
|
|
97
97
|
self.PartManagement = self.__class__.PartManagement(service, rules, "PartManagement", path)
|
|
98
98
|
self.PartReplacementSettings = self.__class__.PartReplacementSettings(service, rules, "PartReplacementSettings", path)
|
|
99
|
+
self.PrepareForVolumeMeshing = self.__class__.PrepareForVolumeMeshing(service, rules, "PrepareForVolumeMeshing", path)
|
|
99
100
|
self.RemeshSurface = self.__class__.RemeshSurface(service, rules, "RemeshSurface", path)
|
|
100
101
|
self.RunCustomJournal = self.__class__.RunCustomJournal(service, rules, "RunCustomJournal", path)
|
|
101
102
|
self.SeparateContacts = self.__class__.SeparateContacts(service, rules, "SeparateContacts", path)
|
|
@@ -1307,9 +1308,9 @@ class Root(PyMenu):
|
|
|
1307
1308
|
self.Operation = self._Operation(self, "Operation", service, rules, path)
|
|
1308
1309
|
self.FluidLabelWildcard = self._FluidLabelWildcard(self, "FluidLabelWildcard", service, rules, path)
|
|
1309
1310
|
self.STToleranceIncrement = self._STToleranceIncrement(self, "STToleranceIncrement", service, rules, path)
|
|
1310
|
-
self.IntfLabelList = self._IntfLabelList(self, "IntfLabelList", service, rules, path)
|
|
1311
|
-
self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
|
|
1312
1311
|
self.ShowShareTopologyPreferences = self._ShowShareTopologyPreferences(self, "ShowShareTopologyPreferences", service, rules, path)
|
|
1312
|
+
self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
|
|
1313
|
+
self.IntfLabelList = self._IntfLabelList(self, "IntfLabelList", service, rules, path)
|
|
1313
1314
|
self.AdvancedImprove = self._AdvancedImprove(self, "AdvancedImprove", service, rules, path)
|
|
1314
1315
|
self.NumberOfJoinTries = self._NumberOfJoinTries(self, "NumberOfJoinTries", service, rules, path)
|
|
1315
1316
|
|
|
@@ -1363,9 +1364,9 @@ class Root(PyMenu):
|
|
|
1363
1364
|
Specify the increment by which the tolerance changes for each attempt to join face pairs.
|
|
1364
1365
|
"""
|
|
1365
1366
|
|
|
1366
|
-
class
|
|
1367
|
+
class _ShowShareTopologyPreferences(PyParameterCommandArgumentsSubItem):
|
|
1367
1368
|
"""
|
|
1368
|
-
|
|
1369
|
+
Display advanced options that you may want to apply to the task.
|
|
1369
1370
|
"""
|
|
1370
1371
|
|
|
1371
1372
|
class _PerLabelList(PyTextualCommandArgumentsSubItem):
|
|
@@ -1373,9 +1374,9 @@ class Root(PyMenu):
|
|
|
1373
1374
|
Argument PerLabelList.
|
|
1374
1375
|
"""
|
|
1375
1376
|
|
|
1376
|
-
class
|
|
1377
|
+
class _IntfLabelList(PyTextualCommandArgumentsSubItem):
|
|
1377
1378
|
"""
|
|
1378
|
-
|
|
1379
|
+
Enter a text string to filter out the list of labels. Use the Filter Text drop-down to provide text and/or regular expressions in filtering the list (for example, using \\*, ?, and []). Choose Use Wildcard to provide wildcard expressions in filtering the list. When you use either ? or \\* in your expression, the matching list item(s) are automatically selected in the list. Use ^, |, and & in your expression to indicate boolean operations for NOT, OR, and AND, respectively. More...
|
|
1379
1380
|
"""
|
|
1380
1381
|
|
|
1381
1382
|
class _AdvancedImprove(PyTextualCommandArgumentsSubItem):
|
|
@@ -1769,12 +1770,12 @@ class Root(PyMenu):
|
|
|
1769
1770
|
self.SphereRadiusFactorAtInvalidNormals = self._SphereRadiusFactorAtInvalidNormals(self, "SphereRadiusFactorAtInvalidNormals", service, rules, path)
|
|
1770
1771
|
self.SmoothRingsAtInvalidNormals = self._SmoothRingsAtInvalidNormals(self, "SmoothRingsAtInvalidNormals", service, rules, path)
|
|
1771
1772
|
self.Continuous = self._Continuous(self, "Continuous", service, rules, path)
|
|
1772
|
-
self.ModifyAtInvalidNormals = self._ModifyAtInvalidNormals(self, "ModifyAtInvalidNormals", service, rules, path)
|
|
1773
1773
|
self.SplitPrism = self._SplitPrism(self, "SplitPrism", service, rules, path)
|
|
1774
|
+
self.ModifyAtInvalidNormals = self._ModifyAtInvalidNormals(self, "ModifyAtInvalidNormals", service, rules, path)
|
|
1774
1775
|
self.InvalidNormalMethod = self._InvalidNormalMethod(self, "InvalidNormalMethod", service, rules, path)
|
|
1776
|
+
self.ShowLocalPrismPreferences = self._ShowLocalPrismPreferences(self, "ShowLocalPrismPreferences", service, rules, path)
|
|
1775
1777
|
self.NumberOfSplitLayers = self._NumberOfSplitLayers(self, "NumberOfSplitLayers", service, rules, path)
|
|
1776
1778
|
self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
|
|
1777
|
-
self.ShowLocalPrismPreferences = self._ShowLocalPrismPreferences(self, "ShowLocalPrismPreferences", service, rules, path)
|
|
1778
1779
|
self.AllowedTangencyAtInvalidNormals = self._AllowedTangencyAtInvalidNormals(self, "AllowedTangencyAtInvalidNormals", service, rules, path)
|
|
1779
1780
|
self.RemeshAtInvalidNormals = self._RemeshAtInvalidNormals(self, "RemeshAtInvalidNormals", service, rules, path)
|
|
1780
1781
|
self.IgnoreBoundaryLayers = self._IgnoreBoundaryLayers(self, "IgnoreBoundaryLayers", service, rules, path)
|
|
@@ -1804,14 +1805,14 @@ class Root(PyMenu):
|
|
|
1804
1805
|
Specify how you would like to improve the generated boundary layer: as a continuous or stair-stepped boundary layer in the specified area(s).
|
|
1805
1806
|
"""
|
|
1806
1807
|
|
|
1807
|
-
class
|
|
1808
|
+
class _SplitPrism(PyTextualCommandArgumentsSubItem):
|
|
1808
1809
|
"""
|
|
1809
|
-
|
|
1810
|
+
Choose whether or not to add split prisms to each layer along the boundary. Not available when the Offset Method Type is set to last-ratio.
|
|
1810
1811
|
"""
|
|
1811
1812
|
|
|
1812
|
-
class
|
|
1813
|
+
class _ModifyAtInvalidNormals(PyTextualCommandArgumentsSubItem):
|
|
1813
1814
|
"""
|
|
1814
|
-
|
|
1815
|
+
Specify whether to automatically change the surface mesh where invalid normal faces are detected. To grow the boundary layer mesh in the proper direction (away from the boundary), normal vectors (valid) are required at the boundary face nodes of the surface mesh. More...
|
|
1815
1816
|
"""
|
|
1816
1817
|
|
|
1817
1818
|
class _InvalidNormalMethod(PyTextualCommandArgumentsSubItem):
|
|
@@ -1819,6 +1820,11 @@ class Root(PyMenu):
|
|
|
1819
1820
|
Argument InvalidNormalMethod.
|
|
1820
1821
|
"""
|
|
1821
1822
|
|
|
1823
|
+
class _ShowLocalPrismPreferences(PyParameterCommandArgumentsSubItem):
|
|
1824
|
+
"""
|
|
1825
|
+
Display advanced options that you may want to apply to this task.
|
|
1826
|
+
"""
|
|
1827
|
+
|
|
1822
1828
|
class _NumberOfSplitLayers(PyNumericalCommandArgumentsSubItem):
|
|
1823
1829
|
"""
|
|
1824
1830
|
Indicate the number of split prism layers you wish to apply to each layer that you specified for the boundary layer definition.
|
|
@@ -1829,11 +1835,6 @@ class Root(PyMenu):
|
|
|
1829
1835
|
Argument LastRatioNumLayers.
|
|
1830
1836
|
"""
|
|
1831
1837
|
|
|
1832
|
-
class _ShowLocalPrismPreferences(PyParameterCommandArgumentsSubItem):
|
|
1833
|
-
"""
|
|
1834
|
-
Display advanced options that you may want to apply to this task.
|
|
1835
|
-
"""
|
|
1836
|
-
|
|
1837
1838
|
class _AllowedTangencyAtInvalidNormals(PyNumericalCommandArgumentsSubItem):
|
|
1838
1839
|
"""
|
|
1839
1840
|
Controls the tangency of the invalid normal faces. An invalid normal location with all 90 degree angles has a tangency of 1. So, faces are still treated as an invalid normal even if the angle deviates slightly from 90 degrees (resulting in a tangency of 0.98).
|
|
@@ -2090,12 +2091,12 @@ class Root(PyMenu):
|
|
|
2090
2091
|
self.SphereRadiusFactorAtInvalidNormals = self._SphereRadiusFactorAtInvalidNormals(self, "SphereRadiusFactorAtInvalidNormals", service, rules, path)
|
|
2091
2092
|
self.SmoothRingsAtInvalidNormals = self._SmoothRingsAtInvalidNormals(self, "SmoothRingsAtInvalidNormals", service, rules, path)
|
|
2092
2093
|
self.Continuous = self._Continuous(self, "Continuous", service, rules, path)
|
|
2093
|
-
self.ModifyAtInvalidNormals = self._ModifyAtInvalidNormals(self, "ModifyAtInvalidNormals", service, rules, path)
|
|
2094
2094
|
self.SplitPrism = self._SplitPrism(self, "SplitPrism", service, rules, path)
|
|
2095
|
+
self.ModifyAtInvalidNormals = self._ModifyAtInvalidNormals(self, "ModifyAtInvalidNormals", service, rules, path)
|
|
2095
2096
|
self.InvalidNormalMethod = self._InvalidNormalMethod(self, "InvalidNormalMethod", service, rules, path)
|
|
2096
|
-
self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
|
|
2097
2097
|
self.ShowLocalPrismPreferences = self._ShowLocalPrismPreferences(self, "ShowLocalPrismPreferences", service, rules, path)
|
|
2098
2098
|
self.NumberOfSplitLayers = self._NumberOfSplitLayers(self, "NumberOfSplitLayers", service, rules, path)
|
|
2099
|
+
self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
|
|
2099
2100
|
self.AllowedTangencyAtInvalidNormals = self._AllowedTangencyAtInvalidNormals(self, "AllowedTangencyAtInvalidNormals", service, rules, path)
|
|
2100
2101
|
self.RemeshAtInvalidNormals = self._RemeshAtInvalidNormals(self, "RemeshAtInvalidNormals", service, rules, path)
|
|
2101
2102
|
self.IgnoreBoundaryLayers = self._IgnoreBoundaryLayers(self, "IgnoreBoundaryLayers", service, rules, path)
|
|
@@ -2125,24 +2126,19 @@ class Root(PyMenu):
|
|
|
2125
2126
|
Specify how you would like to improve the generated boundary layer: as a continuous or stair-stepped boundary layer in the specified area(s).
|
|
2126
2127
|
"""
|
|
2127
2128
|
|
|
2128
|
-
class _ModifyAtInvalidNormals(PyTextualCommandArgumentsSubItem):
|
|
2129
|
-
"""
|
|
2130
|
-
Specify whether to automatically change the surface mesh where invalid normal faces are detected. To grow the boundary layer mesh in the proper direction (away from the boundary), normal vectors (valid) are required at the boundary face nodes of the surface mesh. More...
|
|
2131
|
-
"""
|
|
2132
|
-
|
|
2133
2129
|
class _SplitPrism(PyTextualCommandArgumentsSubItem):
|
|
2134
2130
|
"""
|
|
2135
2131
|
Choose whether or not to add split prisms to each layer along the boundary. Not available when the Offset Method Type is set to last-ratio.
|
|
2136
2132
|
"""
|
|
2137
2133
|
|
|
2138
|
-
class
|
|
2134
|
+
class _ModifyAtInvalidNormals(PyTextualCommandArgumentsSubItem):
|
|
2139
2135
|
"""
|
|
2140
|
-
|
|
2136
|
+
Specify whether to automatically change the surface mesh where invalid normal faces are detected. To grow the boundary layer mesh in the proper direction (away from the boundary), normal vectors (valid) are required at the boundary face nodes of the surface mesh. More...
|
|
2141
2137
|
"""
|
|
2142
2138
|
|
|
2143
|
-
class
|
|
2139
|
+
class _InvalidNormalMethod(PyTextualCommandArgumentsSubItem):
|
|
2144
2140
|
"""
|
|
2145
|
-
Argument
|
|
2141
|
+
Argument InvalidNormalMethod.
|
|
2146
2142
|
"""
|
|
2147
2143
|
|
|
2148
2144
|
class _ShowLocalPrismPreferences(PyParameterCommandArgumentsSubItem):
|
|
@@ -2155,6 +2151,11 @@ class Root(PyMenu):
|
|
|
2155
2151
|
Indicate the number of split prism layers you wish to apply to each layer that you specified for the boundary layer definition.
|
|
2156
2152
|
"""
|
|
2157
2153
|
|
|
2154
|
+
class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
|
|
2155
|
+
"""
|
|
2156
|
+
Argument LastRatioNumLayers.
|
|
2157
|
+
"""
|
|
2158
|
+
|
|
2158
2159
|
class _AllowedTangencyAtInvalidNormals(PyNumericalCommandArgumentsSubItem):
|
|
2159
2160
|
"""
|
|
2160
2161
|
Controls the tangency of the invalid normal faces. An invalid normal location with all 90 degree angles has a tangency of 1. So, faces are still treated as an invalid normal even if the angle deviates slightly from 90 degrees (resulting in a tangency of 0.98).
|
|
@@ -2301,6 +2302,7 @@ class Root(PyMenu):
|
|
|
2301
2302
|
----------
|
|
2302
2303
|
LocalSettingsName : str
|
|
2303
2304
|
Specify a name for the size control or use the default value.
|
|
2305
|
+
ComputeForSolidOnly : str
|
|
2304
2306
|
SelectionType : str
|
|
2305
2307
|
Choose how you want to make your selection (by object, label, or zone name).
|
|
2306
2308
|
ObjectSelectionList : list[str]
|
|
@@ -2331,6 +2333,7 @@ class Root(PyMenu):
|
|
|
2331
2333
|
def __init__(self, service, rules, command, path, id):
|
|
2332
2334
|
super().__init__(service, rules, command, path, id)
|
|
2333
2335
|
self.LocalSettingsName = self._LocalSettingsName(self, "LocalSettingsName", service, rules, path)
|
|
2336
|
+
self.ComputeForSolidOnly = self._ComputeForSolidOnly(self, "ComputeForSolidOnly", service, rules, path)
|
|
2334
2337
|
self.SelectionType = self._SelectionType(self, "SelectionType", service, rules, path)
|
|
2335
2338
|
self.ObjectSelectionList = self._ObjectSelectionList(self, "ObjectSelectionList", service, rules, path)
|
|
2336
2339
|
self.LabelSelectionList = self._LabelSelectionList(self, "LabelSelectionList", service, rules, path)
|
|
@@ -2349,6 +2352,11 @@ class Root(PyMenu):
|
|
|
2349
2352
|
Specify a name for the size control or use the default value.
|
|
2350
2353
|
"""
|
|
2351
2354
|
|
|
2355
|
+
class _ComputeForSolidOnly(PyTextualCommandArgumentsSubItem):
|
|
2356
|
+
"""
|
|
2357
|
+
Argument ComputeForSolidOnly.
|
|
2358
|
+
"""
|
|
2359
|
+
|
|
2352
2360
|
class _SelectionType(PyTextualCommandArgumentsSubItem):
|
|
2353
2361
|
"""
|
|
2354
2362
|
Choose how you want to make your selection (by object, label, or zone name).
|
|
@@ -2395,9 +2403,9 @@ class Root(PyMenu):
|
|
|
2395
2403
|
self.MinSize = self._MinSize(self, "MinSize", service, rules, path)
|
|
2396
2404
|
self.WrapMax = self._WrapMax(self, "WrapMax", service, rules, path)
|
|
2397
2405
|
self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
|
|
2406
|
+
self.SizingType = self._SizingType(self, "SizingType", service, rules, path)
|
|
2398
2407
|
self.InitialSizeControl = self._InitialSizeControl(self, "InitialSizeControl", service, rules, path)
|
|
2399
2408
|
self.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", service, rules, path)
|
|
2400
|
-
self.SizingType = self._SizingType(self, "SizingType", service, rules, path)
|
|
2401
2409
|
self.CellsPerGap = self._CellsPerGap(self, "CellsPerGap", service, rules, path)
|
|
2402
2410
|
self.WrapCurvatureNormalAngle = self._WrapCurvatureNormalAngle(self, "WrapCurvatureNormalAngle", service, rules, path)
|
|
2403
2411
|
self.TargetSizeControl = self._TargetSizeControl(self, "TargetSizeControl", service, rules, path)
|
|
@@ -2448,6 +2456,11 @@ class Root(PyMenu):
|
|
|
2448
2456
|
Display advanced wrap-specific options that are also applied to the task. See this description for more information about wrap (and target) mesh size controls.
|
|
2449
2457
|
"""
|
|
2450
2458
|
|
|
2459
|
+
class _SizingType(PyTextualCommandArgumentsSubItem):
|
|
2460
|
+
"""
|
|
2461
|
+
Choose the type of sizing control (curvature, proximity, soft, or boi).
|
|
2462
|
+
"""
|
|
2463
|
+
|
|
2451
2464
|
class _InitialSizeControl(PyParameterCommandArgumentsSubItem):
|
|
2452
2465
|
"""
|
|
2453
2466
|
Enable this field to display the initial size control in the graphics window.
|
|
@@ -2458,11 +2471,6 @@ class Root(PyMenu):
|
|
|
2458
2471
|
Specify the increase in element edge length with each succeeding layer of elements.
|
|
2459
2472
|
"""
|
|
2460
2473
|
|
|
2461
|
-
class _SizingType(PyTextualCommandArgumentsSubItem):
|
|
2462
|
-
"""
|
|
2463
|
-
Choose the type of sizing control (curvature, proximity, soft, or boi).
|
|
2464
|
-
"""
|
|
2465
|
-
|
|
2466
2474
|
class _CellsPerGap(PyNumericalCommandArgumentsSubItem):
|
|
2467
2475
|
"""
|
|
2468
2476
|
Specify the minimum number of layers of elements to be generated in the gaps. The number of cells per gap can be a real value, with a minimum value of 0.01.
|
|
@@ -2999,8 +3007,8 @@ class Root(PyMenu):
|
|
|
2999
3007
|
self.SaveSizeFieldFile = self._SaveSizeFieldFile(self, "SaveSizeFieldFile", service, rules, path)
|
|
3000
3008
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
3001
3009
|
self.ScopeProximityTo = self._ScopeProximityTo(self, "ScopeProximityTo", service, rules, path)
|
|
3002
|
-
self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
|
|
3003
3010
|
self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
|
|
3011
|
+
self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
|
|
3004
3012
|
self.SaveSizeField = self._SaveSizeField(self, "SaveSizeField", service, rules, path)
|
|
3005
3013
|
self.UseSizeFiles = self._UseSizeFiles(self, "UseSizeFiles", service, rules, path)
|
|
3006
3014
|
self.AutoCreateScopedSizing = self._AutoCreateScopedSizing(self, "AutoCreateScopedSizing", service, rules, path)
|
|
@@ -3030,14 +3038,14 @@ class Root(PyMenu):
|
|
|
3030
3038
|
Argument ScopeProximityTo.
|
|
3031
3039
|
"""
|
|
3032
3040
|
|
|
3033
|
-
class
|
|
3041
|
+
class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
3034
3042
|
"""
|
|
3035
|
-
Argument
|
|
3043
|
+
Argument CurvatureNormalAngle.
|
|
3036
3044
|
"""
|
|
3037
3045
|
|
|
3038
|
-
class
|
|
3046
|
+
class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
|
|
3039
3047
|
"""
|
|
3040
|
-
Argument
|
|
3048
|
+
Argument PreviewSizefield.
|
|
3041
3049
|
"""
|
|
3042
3050
|
|
|
3043
3051
|
class _SaveSizeField(PyParameterCommandArgumentsSubItem):
|
|
@@ -3253,8 +3261,8 @@ class Root(PyMenu):
|
|
|
3253
3261
|
self.ExposeSide = self._ExposeSide(self, "ExposeSide", service, rules, path)
|
|
3254
3262
|
self.MaxAspectRatio = self._MaxAspectRatio(self, "MaxAspectRatio", service, rules, path)
|
|
3255
3263
|
self.MinAspectRatio = self._MinAspectRatio(self, "MinAspectRatio", service, rules, path)
|
|
3256
|
-
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
3257
3264
|
self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
|
|
3265
|
+
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
3258
3266
|
self.GapFactor = self._GapFactor(self, "GapFactor", service, rules, path)
|
|
3259
3267
|
self.AdjacentAttachAngle = self._AdjacentAttachAngle(self, "AdjacentAttachAngle", service, rules, path)
|
|
3260
3268
|
|
|
@@ -3278,14 +3286,14 @@ class Root(PyMenu):
|
|
|
3278
3286
|
Argument MinAspectRatio.
|
|
3279
3287
|
"""
|
|
3280
3288
|
|
|
3281
|
-
class
|
|
3289
|
+
class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
|
|
3282
3290
|
"""
|
|
3283
|
-
Argument
|
|
3291
|
+
Argument LastRatioNumLayers.
|
|
3284
3292
|
"""
|
|
3285
3293
|
|
|
3286
|
-
class
|
|
3294
|
+
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
3287
3295
|
"""
|
|
3288
|
-
Argument
|
|
3296
|
+
Argument LastRatioPercentage.
|
|
3289
3297
|
"""
|
|
3290
3298
|
|
|
3291
3299
|
class _GapFactor(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4169,9 +4177,9 @@ class Root(PyMenu):
|
|
|
4169
4177
|
self.BoundaryLayers = self._BoundaryLayers(self, "BoundaryLayers", service, rules, path)
|
|
4170
4178
|
self.EdgeProximityComputation = self._EdgeProximityComputation(self, "EdgeProximityComputation", service, rules, path)
|
|
4171
4179
|
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
4180
|
self.SolidFluidRatio = self._SolidFluidRatio(self, "SolidFluidRatio", service, rules, path)
|
|
4181
|
+
self.TargetSizeFieldFileName = self._TargetSizeFieldFileName(self, "TargetSizeFieldFileName", service, rules, path)
|
|
4182
|
+
self.ExistingSizeField = self._ExistingSizeField(self, "ExistingSizeField", service, rules, path)
|
|
4175
4183
|
self.WrapSizeFieldFileName = self._WrapSizeFieldFileName(self, "WrapSizeFieldFileName", service, rules, path)
|
|
4176
4184
|
self.WrapTargetRatio = self._WrapTargetRatio(self, "WrapTargetRatio", service, rules, path)
|
|
4177
4185
|
self.WrapTargetRaio = self._WrapTargetRaio(self, "WrapTargetRaio", service, rules, path)
|
|
@@ -4211,9 +4219,9 @@ class Root(PyMenu):
|
|
|
4211
4219
|
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
4220
|
"""
|
|
4213
4221
|
|
|
4214
|
-
class
|
|
4222
|
+
class _SolidFluidRatio(PyNumericalCommandArgumentsSubItem):
|
|
4215
4223
|
"""
|
|
4216
|
-
|
|
4224
|
+
Argument SolidFluidRatio.
|
|
4217
4225
|
"""
|
|
4218
4226
|
|
|
4219
4227
|
class _TargetSizeFieldFileName(PyTextualCommandArgumentsSubItem):
|
|
@@ -4221,9 +4229,9 @@ class Root(PyMenu):
|
|
|
4221
4229
|
Argument TargetSizeFieldFileName.
|
|
4222
4230
|
"""
|
|
4223
4231
|
|
|
4224
|
-
class
|
|
4232
|
+
class _ExistingSizeField(PyTextualCommandArgumentsSubItem):
|
|
4225
4233
|
"""
|
|
4226
|
-
|
|
4234
|
+
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
4235
|
"""
|
|
4228
4236
|
|
|
4229
4237
|
class _WrapSizeFieldFileName(PyTextualCommandArgumentsSubItem):
|
|
@@ -4508,7 +4516,7 @@ class Root(PyMenu):
|
|
|
4508
4516
|
def __init__(self, parent, attr, service, rules, path):
|
|
4509
4517
|
super().__init__(parent, attr, service, rules, path)
|
|
4510
4518
|
self.SizeRelativeLength = self._SizeRelativeLength(self, "SizeRelativeLength", service, rules, path)
|
|
4511
|
-
self.
|
|
4519
|
+
self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
|
|
4512
4520
|
self.XminRatio = self._XminRatio(self, "XminRatio", service, rules, path)
|
|
4513
4521
|
self.YminRatio = self._YminRatio(self, "YminRatio", service, rules, path)
|
|
4514
4522
|
self.Zmin = self._Zmin(self, "Zmin", service, rules, path)
|
|
@@ -4519,16 +4527,16 @@ class Root(PyMenu):
|
|
|
4519
4527
|
self.Xmin = self._Xmin(self, "Xmin", service, rules, path)
|
|
4520
4528
|
self.YmaxRatio = self._YmaxRatio(self, "YmaxRatio", service, rules, path)
|
|
4521
4529
|
self.ZmaxRatio = self._ZmaxRatio(self, "ZmaxRatio", service, rules, path)
|
|
4522
|
-
self.
|
|
4530
|
+
self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
|
|
4523
4531
|
|
|
4524
4532
|
class _SizeRelativeLength(PyTextualCommandArgumentsSubItem):
|
|
4525
4533
|
"""
|
|
4526
4534
|
Argument SizeRelativeLength.
|
|
4527
4535
|
"""
|
|
4528
4536
|
|
|
4529
|
-
class
|
|
4537
|
+
class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
|
|
4530
4538
|
"""
|
|
4531
|
-
Argument
|
|
4539
|
+
Argument XmaxRatio.
|
|
4532
4540
|
"""
|
|
4533
4541
|
|
|
4534
4542
|
class _XminRatio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4581,9 +4589,9 @@ class Root(PyMenu):
|
|
|
4581
4589
|
Argument ZmaxRatio.
|
|
4582
4590
|
"""
|
|
4583
4591
|
|
|
4584
|
-
class
|
|
4592
|
+
class _Xmax(PyNumericalCommandArgumentsSubItem):
|
|
4585
4593
|
"""
|
|
4586
|
-
Argument
|
|
4594
|
+
Argument Xmax.
|
|
4587
4595
|
"""
|
|
4588
4596
|
|
|
4589
4597
|
class _OffsetObject(PySingletonCommandArgumentsSubItem):
|
|
@@ -4599,17 +4607,17 @@ class Root(PyMenu):
|
|
|
4599
4607
|
self.Y = self._Y(self, "Y", service, rules, path)
|
|
4600
4608
|
self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
|
|
4601
4609
|
self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
|
|
4602
|
-
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
4603
4610
|
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
4611
|
+
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
4604
4612
|
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
|
|
4605
4613
|
self.FlowDirection = self._FlowDirection(self, "FlowDirection", service, rules, path)
|
|
4606
4614
|
self.MptMethodType = self._MptMethodType(self, "MptMethodType", service, rules, path)
|
|
4607
4615
|
self.EdgeSelectionList = self._EdgeSelectionList(self, "EdgeSelectionList", service, rules, path)
|
|
4608
4616
|
self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
|
|
4609
|
-
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
4610
4617
|
self.X = self._X(self, "X", service, rules, path)
|
|
4611
|
-
self.
|
|
4618
|
+
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
4612
4619
|
self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
|
|
4620
|
+
self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
|
|
4613
4621
|
self.FirstHeight = self._FirstHeight(self, "FirstHeight", service, rules, path)
|
|
4614
4622
|
self.BoundaryLayerHeight = self._BoundaryLayerHeight(self, "BoundaryLayerHeight", service, rules, path)
|
|
4615
4623
|
self.CrossWakeGrowthFactor = self._CrossWakeGrowthFactor(self, "CrossWakeGrowthFactor", service, rules, path)
|
|
@@ -4644,14 +4652,14 @@ class Root(PyMenu):
|
|
|
4644
4652
|
Argument AspectRatio.
|
|
4645
4653
|
"""
|
|
4646
4654
|
|
|
4647
|
-
class
|
|
4655
|
+
class _Rate(PyNumericalCommandArgumentsSubItem):
|
|
4648
4656
|
"""
|
|
4649
|
-
Argument
|
|
4657
|
+
Argument Rate.
|
|
4650
4658
|
"""
|
|
4651
4659
|
|
|
4652
|
-
class
|
|
4660
|
+
class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
|
|
4653
4661
|
"""
|
|
4654
|
-
Argument
|
|
4662
|
+
Argument NumberOfLayers.
|
|
4655
4663
|
"""
|
|
4656
4664
|
|
|
4657
4665
|
class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4679,19 +4687,14 @@ class Root(PyMenu):
|
|
|
4679
4687
|
Argument BoundaryLayerLevels.
|
|
4680
4688
|
"""
|
|
4681
4689
|
|
|
4682
|
-
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
4683
|
-
"""
|
|
4684
|
-
Argument LastRatioPercentage.
|
|
4685
|
-
"""
|
|
4686
|
-
|
|
4687
4690
|
class _X(PyNumericalCommandArgumentsSubItem):
|
|
4688
4691
|
"""
|
|
4689
4692
|
Argument X.
|
|
4690
4693
|
"""
|
|
4691
4694
|
|
|
4692
|
-
class
|
|
4695
|
+
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
4693
4696
|
"""
|
|
4694
|
-
Argument
|
|
4697
|
+
Argument LastRatioPercentage.
|
|
4695
4698
|
"""
|
|
4696
4699
|
|
|
4697
4700
|
class _FlipDirection(PyParameterCommandArgumentsSubItem):
|
|
@@ -4699,6 +4702,11 @@ class Root(PyMenu):
|
|
|
4699
4702
|
Argument FlipDirection.
|
|
4700
4703
|
"""
|
|
4701
4704
|
|
|
4705
|
+
class _OffsetMethodType(PyTextualCommandArgumentsSubItem):
|
|
4706
|
+
"""
|
|
4707
|
+
Argument OffsetMethodType.
|
|
4708
|
+
"""
|
|
4709
|
+
|
|
4702
4710
|
class _FirstHeight(PyNumericalCommandArgumentsSubItem):
|
|
4703
4711
|
"""
|
|
4704
4712
|
Argument FirstHeight.
|
|
@@ -4738,8 +4746,8 @@ class Root(PyMenu):
|
|
|
4738
4746
|
self.Radius2 = self._Radius2(self, "Radius2", service, rules, path)
|
|
4739
4747
|
self.Y2 = self._Y2(self, "Y2", service, rules, path)
|
|
4740
4748
|
self.Node3 = self._Node3(self, "Node3", service, rules, path)
|
|
4741
|
-
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
4742
4749
|
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
4750
|
+
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
4743
4751
|
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
4744
4752
|
self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
|
|
4745
4753
|
self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
|
|
@@ -4804,14 +4812,14 @@ class Root(PyMenu):
|
|
|
4804
4812
|
Argument Node3.
|
|
4805
4813
|
"""
|
|
4806
4814
|
|
|
4807
|
-
class
|
|
4815
|
+
class _Y_Offset(PyNumericalCommandArgumentsSubItem):
|
|
4808
4816
|
"""
|
|
4809
|
-
Argument
|
|
4817
|
+
Argument Y-Offset.
|
|
4810
4818
|
"""
|
|
4811
4819
|
|
|
4812
|
-
class
|
|
4820
|
+
class _Node2(PyTextualCommandArgumentsSubItem):
|
|
4813
4821
|
"""
|
|
4814
|
-
Argument
|
|
4822
|
+
Argument Node2.
|
|
4815
4823
|
"""
|
|
4816
4824
|
|
|
4817
4825
|
class _X2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4873,12 +4881,12 @@ class Root(PyMenu):
|
|
|
4873
4881
|
def __init__(self, parent, attr, service, rules, path):
|
|
4874
4882
|
super().__init__(parent, attr, service, rules, path)
|
|
4875
4883
|
self.CylinderZ2 = self._CylinderZ2(self, "CylinderZ2", service, rules, path)
|
|
4876
|
-
self.CylinderX2 = self._CylinderX2(self, "CylinderX2", service, rules, path)
|
|
4877
4884
|
self.BoxYLength = self._BoxYLength(self, "BoxYLength", service, rules, path)
|
|
4885
|
+
self.CylinderX2 = self._CylinderX2(self, "CylinderX2", service, rules, path)
|
|
4878
4886
|
self.CylinderX1 = self._CylinderX1(self, "CylinderX1", service, rules, path)
|
|
4879
|
-
self.BoxZLength = self._BoxZLength(self, "BoxZLength", service, rules, path)
|
|
4880
|
-
self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
|
|
4881
4887
|
self.BoxXLength = self._BoxXLength(self, "BoxXLength", service, rules, path)
|
|
4888
|
+
self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
|
|
4889
|
+
self.BoxZLength = self._BoxZLength(self, "BoxZLength", service, rules, path)
|
|
4882
4890
|
self.BoxCenterY = self._BoxCenterY(self, "BoxCenterY", service, rules, path)
|
|
4883
4891
|
self.CylinderZ1 = self._CylinderZ1(self, "CylinderZ1", service, rules, path)
|
|
4884
4892
|
self.CylinderRadius1 = self._CylinderRadius1(self, "CylinderRadius1", service, rules, path)
|
|
@@ -4892,14 +4900,14 @@ class Root(PyMenu):
|
|
|
4892
4900
|
Argument CylinderZ2.
|
|
4893
4901
|
"""
|
|
4894
4902
|
|
|
4895
|
-
class
|
|
4903
|
+
class _BoxYLength(PyNumericalCommandArgumentsSubItem):
|
|
4896
4904
|
"""
|
|
4897
|
-
Argument
|
|
4905
|
+
Argument BoxYLength.
|
|
4898
4906
|
"""
|
|
4899
4907
|
|
|
4900
|
-
class
|
|
4908
|
+
class _CylinderX2(PyNumericalCommandArgumentsSubItem):
|
|
4901
4909
|
"""
|
|
4902
|
-
Argument
|
|
4910
|
+
Argument CylinderX2.
|
|
4903
4911
|
"""
|
|
4904
4912
|
|
|
4905
4913
|
class _CylinderX1(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4907,9 +4915,9 @@ class Root(PyMenu):
|
|
|
4907
4915
|
Argument CylinderX1.
|
|
4908
4916
|
"""
|
|
4909
4917
|
|
|
4910
|
-
class
|
|
4918
|
+
class _BoxXLength(PyNumericalCommandArgumentsSubItem):
|
|
4911
4919
|
"""
|
|
4912
|
-
Argument
|
|
4920
|
+
Argument BoxXLength.
|
|
4913
4921
|
"""
|
|
4914
4922
|
|
|
4915
4923
|
class _CylinderY1(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4917,9 +4925,9 @@ class Root(PyMenu):
|
|
|
4917
4925
|
Argument CylinderY1.
|
|
4918
4926
|
"""
|
|
4919
4927
|
|
|
4920
|
-
class
|
|
4928
|
+
class _BoxZLength(PyNumericalCommandArgumentsSubItem):
|
|
4921
4929
|
"""
|
|
4922
|
-
Argument
|
|
4930
|
+
Argument BoxZLength.
|
|
4923
4931
|
"""
|
|
4924
4932
|
|
|
4925
4933
|
class _BoxCenterY(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5095,7 +5103,7 @@ class Root(PyMenu):
|
|
|
5095
5103
|
def __init__(self, parent, attr, service, rules, path):
|
|
5096
5104
|
super().__init__(parent, attr, service, rules, path)
|
|
5097
5105
|
self.SizeRelativeLength = self._SizeRelativeLength(self, "SizeRelativeLength", service, rules, path)
|
|
5098
|
-
self.
|
|
5106
|
+
self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
|
|
5099
5107
|
self.XminRatio = self._XminRatio(self, "XminRatio", service, rules, path)
|
|
5100
5108
|
self.YminRatio = self._YminRatio(self, "YminRatio", service, rules, path)
|
|
5101
5109
|
self.Zmin = self._Zmin(self, "Zmin", service, rules, path)
|
|
@@ -5106,16 +5114,16 @@ class Root(PyMenu):
|
|
|
5106
5114
|
self.Xmin = self._Xmin(self, "Xmin", service, rules, path)
|
|
5107
5115
|
self.YmaxRatio = self._YmaxRatio(self, "YmaxRatio", service, rules, path)
|
|
5108
5116
|
self.ZmaxRatio = self._ZmaxRatio(self, "ZmaxRatio", service, rules, path)
|
|
5109
|
-
self.
|
|
5117
|
+
self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
|
|
5110
5118
|
|
|
5111
5119
|
class _SizeRelativeLength(PyTextualCommandArgumentsSubItem):
|
|
5112
5120
|
"""
|
|
5113
5121
|
Argument SizeRelativeLength.
|
|
5114
5122
|
"""
|
|
5115
5123
|
|
|
5116
|
-
class
|
|
5124
|
+
class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
|
|
5117
5125
|
"""
|
|
5118
|
-
|
|
5126
|
+
Argument XmaxRatio.
|
|
5119
5127
|
"""
|
|
5120
5128
|
|
|
5121
5129
|
class _XminRatio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5168,9 +5176,9 @@ class Root(PyMenu):
|
|
|
5168
5176
|
Argument ZmaxRatio.
|
|
5169
5177
|
"""
|
|
5170
5178
|
|
|
5171
|
-
class
|
|
5179
|
+
class _Xmax(PyNumericalCommandArgumentsSubItem):
|
|
5172
5180
|
"""
|
|
5173
|
-
|
|
5181
|
+
Specify the x-coordinate of the offset collar mesh.
|
|
5174
5182
|
"""
|
|
5175
5183
|
|
|
5176
5184
|
class _OffsetObject(PySingletonCommandArgumentsSubItem):
|
|
@@ -5186,13 +5194,13 @@ class Root(PyMenu):
|
|
|
5186
5194
|
self.Y = self._Y(self, "Y", service, rules, path)
|
|
5187
5195
|
self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
|
|
5188
5196
|
self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
|
|
5189
|
-
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
5190
5197
|
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
|
|
5198
|
+
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
5191
5199
|
self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
|
|
5192
5200
|
self.FlowDirection = self._FlowDirection(self, "FlowDirection", service, rules, path)
|
|
5193
5201
|
self.MptMethodType = self._MptMethodType(self, "MptMethodType", service, rules, path)
|
|
5194
5202
|
self.EdgeSelectionList = self._EdgeSelectionList(self, "EdgeSelectionList", service, rules, path)
|
|
5195
|
-
self.
|
|
5203
|
+
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
5196
5204
|
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
5197
5205
|
self.X = self._X(self, "X", service, rules, path)
|
|
5198
5206
|
self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
|
|
@@ -5231,14 +5239,14 @@ class Root(PyMenu):
|
|
|
5231
5239
|
Argument AspectRatio.
|
|
5232
5240
|
"""
|
|
5233
5241
|
|
|
5234
|
-
class
|
|
5242
|
+
class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
|
|
5235
5243
|
"""
|
|
5236
|
-
Argument
|
|
5244
|
+
Argument WakeGrowthFactor.
|
|
5237
5245
|
"""
|
|
5238
5246
|
|
|
5239
|
-
class
|
|
5247
|
+
class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
|
|
5240
5248
|
"""
|
|
5241
|
-
Argument
|
|
5249
|
+
Argument NumberOfLayers.
|
|
5242
5250
|
"""
|
|
5243
5251
|
|
|
5244
5252
|
class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5261,9 +5269,9 @@ class Root(PyMenu):
|
|
|
5261
5269
|
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
5270
|
"""
|
|
5263
5271
|
|
|
5264
|
-
class
|
|
5272
|
+
class _Rate(PyNumericalCommandArgumentsSubItem):
|
|
5265
5273
|
"""
|
|
5266
|
-
Argument
|
|
5274
|
+
Argument Rate.
|
|
5267
5275
|
"""
|
|
5268
5276
|
|
|
5269
5277
|
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5325,8 +5333,8 @@ class Root(PyMenu):
|
|
|
5325
5333
|
self.Radius2 = self._Radius2(self, "Radius2", service, rules, path)
|
|
5326
5334
|
self.Y2 = self._Y2(self, "Y2", service, rules, path)
|
|
5327
5335
|
self.Node3 = self._Node3(self, "Node3", service, rules, path)
|
|
5328
|
-
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
5329
5336
|
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
5337
|
+
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
5330
5338
|
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
5331
5339
|
self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
|
|
5332
5340
|
self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
|
|
@@ -5391,14 +5399,14 @@ class Root(PyMenu):
|
|
|
5391
5399
|
Argument Node3.
|
|
5392
5400
|
"""
|
|
5393
5401
|
|
|
5394
|
-
class
|
|
5402
|
+
class _Y_Offset(PyNumericalCommandArgumentsSubItem):
|
|
5395
5403
|
"""
|
|
5396
|
-
Argument
|
|
5404
|
+
Argument Y-Offset.
|
|
5397
5405
|
"""
|
|
5398
5406
|
|
|
5399
|
-
class
|
|
5407
|
+
class _Node2(PyTextualCommandArgumentsSubItem):
|
|
5400
5408
|
"""
|
|
5401
|
-
Argument
|
|
5409
|
+
Argument Node2.
|
|
5402
5410
|
"""
|
|
5403
5411
|
|
|
5404
5412
|
class _X2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5470,8 +5478,8 @@ class Root(PyMenu):
|
|
|
5470
5478
|
self.CylinderZ1 = self._CylinderZ1(self, "CylinderZ1", service, rules, path)
|
|
5471
5479
|
self.CylinderRadius1 = self._CylinderRadius1(self, "CylinderRadius1", service, rules, path)
|
|
5472
5480
|
self.BoxCenterX = self._BoxCenterX(self, "BoxCenterX", service, rules, path)
|
|
5473
|
-
self.BoxCenterZ = self._BoxCenterZ(self, "BoxCenterZ", service, rules, path)
|
|
5474
5481
|
self.CylinderRadius2 = self._CylinderRadius2(self, "CylinderRadius2", service, rules, path)
|
|
5482
|
+
self.BoxCenterZ = self._BoxCenterZ(self, "BoxCenterZ", service, rules, path)
|
|
5475
5483
|
self.CylinderY2 = self._CylinderY2(self, "CylinderY2", service, rules, path)
|
|
5476
5484
|
|
|
5477
5485
|
class _CylinderZ2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5529,14 +5537,14 @@ class Root(PyMenu):
|
|
|
5529
5537
|
Specify the x-coordinate of the offset collar mesh.
|
|
5530
5538
|
"""
|
|
5531
5539
|
|
|
5532
|
-
class
|
|
5540
|
+
class _CylinderRadius2(PyNumericalCommandArgumentsSubItem):
|
|
5533
5541
|
"""
|
|
5534
|
-
|
|
5542
|
+
Argument CylinderRadius2.
|
|
5535
5543
|
"""
|
|
5536
5544
|
|
|
5537
|
-
class
|
|
5545
|
+
class _BoxCenterZ(PyNumericalCommandArgumentsSubItem):
|
|
5538
5546
|
"""
|
|
5539
|
-
|
|
5547
|
+
Specify the z-coordinate of the offset collar mesh.
|
|
5540
5548
|
"""
|
|
5541
5549
|
|
|
5542
5550
|
class _CylinderY2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5683,7 +5691,7 @@ class Root(PyMenu):
|
|
|
5683
5691
|
def __init__(self, parent, attr, service, rules, path):
|
|
5684
5692
|
super().__init__(parent, attr, service, rules, path)
|
|
5685
5693
|
self.SizeRelativeLength = self._SizeRelativeLength(self, "SizeRelativeLength", service, rules, path)
|
|
5686
|
-
self.
|
|
5694
|
+
self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
|
|
5687
5695
|
self.XminRatio = self._XminRatio(self, "XminRatio", service, rules, path)
|
|
5688
5696
|
self.YminRatio = self._YminRatio(self, "YminRatio", service, rules, path)
|
|
5689
5697
|
self.Zmin = self._Zmin(self, "Zmin", service, rules, path)
|
|
@@ -5694,16 +5702,16 @@ class Root(PyMenu):
|
|
|
5694
5702
|
self.Xmin = self._Xmin(self, "Xmin", service, rules, path)
|
|
5695
5703
|
self.YmaxRatio = self._YmaxRatio(self, "YmaxRatio", service, rules, path)
|
|
5696
5704
|
self.ZmaxRatio = self._ZmaxRatio(self, "ZmaxRatio", service, rules, path)
|
|
5697
|
-
self.
|
|
5705
|
+
self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
|
|
5698
5706
|
|
|
5699
5707
|
class _SizeRelativeLength(PyTextualCommandArgumentsSubItem):
|
|
5700
5708
|
"""
|
|
5701
5709
|
Determine if you would like to specify the bounding box for the component mesh as a ratio of the geometry length, or by specifying a specific location for the minimum and maximum coordinates.
|
|
5702
5710
|
"""
|
|
5703
5711
|
|
|
5704
|
-
class
|
|
5712
|
+
class _Xmax(PyNumericalCommandArgumentsSubItem):
|
|
5705
5713
|
"""
|
|
5706
|
-
Extends the maximum size of the bounding box in the X direction by the specified value.
|
|
5714
|
+
Extends the maximum size of the bounding box in the X direction by the specified value.
|
|
5707
5715
|
"""
|
|
5708
5716
|
|
|
5709
5717
|
class _XminRatio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5756,9 +5764,9 @@ class Root(PyMenu):
|
|
|
5756
5764
|
Extends the maximum size of the bounding box in the Z direction by the specified value. The value is the ratio relative to the geometry size in the Z direction.
|
|
5757
5765
|
"""
|
|
5758
5766
|
|
|
5759
|
-
class
|
|
5767
|
+
class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
|
|
5760
5768
|
"""
|
|
5761
|
-
Extends the maximum size of the bounding box in the X direction by the specified value.
|
|
5769
|
+
Extends the maximum size of the bounding box in the X direction by the specified value. The value is the ratio relative to the geometry size in the X direction.
|
|
5762
5770
|
"""
|
|
5763
5771
|
|
|
5764
5772
|
class _OffsetObject(PySingletonCommandArgumentsSubItem):
|
|
@@ -5775,14 +5783,14 @@ class Root(PyMenu):
|
|
|
5775
5783
|
self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
|
|
5776
5784
|
self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
|
|
5777
5785
|
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
5778
|
-
self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
|
|
5779
5786
|
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
5787
|
+
self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
|
|
5780
5788
|
self.FlowDirection = self._FlowDirection(self, "FlowDirection", service, rules, path)
|
|
5781
5789
|
self.MptMethodType = self._MptMethodType(self, "MptMethodType", service, rules, path)
|
|
5782
5790
|
self.EdgeSelectionList = self._EdgeSelectionList(self, "EdgeSelectionList", service, rules, path)
|
|
5783
5791
|
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
|
|
5784
|
-
self.X = self._X(self, "X", service, rules, path)
|
|
5785
5792
|
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
5793
|
+
self.X = self._X(self, "X", service, rules, path)
|
|
5786
5794
|
self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
|
|
5787
5795
|
self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
|
|
5788
5796
|
self.FirstHeight = self._FirstHeight(self, "FirstHeight", service, rules, path)
|
|
@@ -5824,14 +5832,14 @@ class Root(PyMenu):
|
|
|
5824
5832
|
Specify the rate of growth of the boundary layer.
|
|
5825
5833
|
"""
|
|
5826
5834
|
|
|
5827
|
-
class
|
|
5835
|
+
class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
|
|
5828
5836
|
"""
|
|
5829
|
-
|
|
5837
|
+
Select the number of boundary layers to be generated.
|
|
5830
5838
|
"""
|
|
5831
5839
|
|
|
5832
|
-
class
|
|
5840
|
+
class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
|
|
5833
5841
|
"""
|
|
5834
|
-
|
|
5842
|
+
Argument BoundaryLayerLevels.
|
|
5835
5843
|
"""
|
|
5836
5844
|
|
|
5837
5845
|
class _FlowDirection(PyTextualCommandArgumentsSubItem):
|
|
@@ -5854,14 +5862,14 @@ class Root(PyMenu):
|
|
|
5854
5862
|
Argument WakeGrowthFactor.
|
|
5855
5863
|
"""
|
|
5856
5864
|
|
|
5857
|
-
class
|
|
5865
|
+
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
5858
5866
|
"""
|
|
5859
|
-
|
|
5867
|
+
Specify the offset height of the last layer as a percentage of the local base mesh size.
|
|
5860
5868
|
"""
|
|
5861
5869
|
|
|
5862
|
-
class
|
|
5870
|
+
class _X(PyNumericalCommandArgumentsSubItem):
|
|
5863
5871
|
"""
|
|
5864
|
-
|
|
5872
|
+
Argument X.
|
|
5865
5873
|
"""
|
|
5866
5874
|
|
|
5867
5875
|
class _OffsetMethodType(PyTextualCommandArgumentsSubItem):
|
|
@@ -5901,32 +5909,32 @@ class Root(PyMenu):
|
|
|
5901
5909
|
|
|
5902
5910
|
def __init__(self, parent, attr, service, rules, path):
|
|
5903
5911
|
super().__init__(parent, attr, service, rules, path)
|
|
5904
|
-
self.X_Offset = self._X_Offset(self, "X-Offset", service, rules, path)
|
|
5905
5912
|
self.HeightNode = self._HeightNode(self, "HeightNode", service, rules, path)
|
|
5913
|
+
self.X_Offset = self._X_Offset(self, "X-Offset", service, rules, path)
|
|
5906
5914
|
self.HeightBackInc = self._HeightBackInc(self, "HeightBackInc", service, rules, path)
|
|
5907
5915
|
self.X1 = self._X1(self, "X1", service, rules, path)
|
|
5908
5916
|
self.Y1 = self._Y1(self, "Y1", service, rules, path)
|
|
5909
5917
|
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
5918
|
self.Z2 = self._Z2(self, "Z2", service, rules, path)
|
|
5919
|
+
self.Node1 = self._Node1(self, "Node1", service, rules, path)
|
|
5920
|
+
self.Z1 = self._Z1(self, "Z1", service, rules, path)
|
|
5913
5921
|
self.Radius2 = self._Radius2(self, "Radius2", service, rules, path)
|
|
5914
5922
|
self.Y2 = self._Y2(self, "Y2", service, rules, path)
|
|
5915
5923
|
self.Node3 = self._Node3(self, "Node3", service, rules, path)
|
|
5916
|
-
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
5917
5924
|
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
5925
|
+
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
5918
5926
|
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
5919
5927
|
self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
|
|
5920
5928
|
self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
|
|
5921
5929
|
|
|
5922
|
-
class
|
|
5930
|
+
class _HeightNode(PyTextualCommandArgumentsSubItem):
|
|
5923
5931
|
"""
|
|
5924
|
-
Argument
|
|
5932
|
+
Argument HeightNode.
|
|
5925
5933
|
"""
|
|
5926
5934
|
|
|
5927
|
-
class
|
|
5935
|
+
class _X_Offset(PyNumericalCommandArgumentsSubItem):
|
|
5928
5936
|
"""
|
|
5929
|
-
Argument
|
|
5937
|
+
Argument X-Offset.
|
|
5930
5938
|
"""
|
|
5931
5939
|
|
|
5932
5940
|
class _HeightBackInc(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5949,9 +5957,9 @@ class Root(PyMenu):
|
|
|
5949
5957
|
Argument Z-Offset.
|
|
5950
5958
|
"""
|
|
5951
5959
|
|
|
5952
|
-
class
|
|
5960
|
+
class _Z2(PyNumericalCommandArgumentsSubItem):
|
|
5953
5961
|
"""
|
|
5954
|
-
Argument
|
|
5962
|
+
Argument Z2.
|
|
5955
5963
|
"""
|
|
5956
5964
|
|
|
5957
5965
|
class _Node1(PyTextualCommandArgumentsSubItem):
|
|
@@ -5959,9 +5967,9 @@ class Root(PyMenu):
|
|
|
5959
5967
|
Argument Node1.
|
|
5960
5968
|
"""
|
|
5961
5969
|
|
|
5962
|
-
class
|
|
5970
|
+
class _Z1(PyNumericalCommandArgumentsSubItem):
|
|
5963
5971
|
"""
|
|
5964
|
-
Argument
|
|
5972
|
+
Argument Z1.
|
|
5965
5973
|
"""
|
|
5966
5974
|
|
|
5967
5975
|
class _Radius2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5979,14 +5987,14 @@ class Root(PyMenu):
|
|
|
5979
5987
|
Argument Node3.
|
|
5980
5988
|
"""
|
|
5981
5989
|
|
|
5982
|
-
class
|
|
5990
|
+
class _Node2(PyTextualCommandArgumentsSubItem):
|
|
5983
5991
|
"""
|
|
5984
|
-
Argument
|
|
5992
|
+
Argument Node2.
|
|
5985
5993
|
"""
|
|
5986
5994
|
|
|
5987
|
-
class
|
|
5995
|
+
class _X2(PyNumericalCommandArgumentsSubItem):
|
|
5988
5996
|
"""
|
|
5989
|
-
Argument
|
|
5997
|
+
Argument X2.
|
|
5990
5998
|
"""
|
|
5991
5999
|
|
|
5992
6000
|
class _Y_Offset(PyNumericalCommandArgumentsSubItem):
|
|
@@ -6370,7 +6378,7 @@ class Root(PyMenu):
|
|
|
6370
6378
|
def __init__(self, parent, attr, service, rules, path):
|
|
6371
6379
|
super().__init__(parent, attr, service, rules, path)
|
|
6372
6380
|
self.SizeRelativeLength = self._SizeRelativeLength(self, "SizeRelativeLength", service, rules, path)
|
|
6373
|
-
self.
|
|
6381
|
+
self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
|
|
6374
6382
|
self.XminRatio = self._XminRatio(self, "XminRatio", service, rules, path)
|
|
6375
6383
|
self.YminRatio = self._YminRatio(self, "YminRatio", service, rules, path)
|
|
6376
6384
|
self.Zmin = self._Zmin(self, "Zmin", service, rules, path)
|
|
@@ -6381,16 +6389,16 @@ class Root(PyMenu):
|
|
|
6381
6389
|
self.Xmin = self._Xmin(self, "Xmin", service, rules, path)
|
|
6382
6390
|
self.YmaxRatio = self._YmaxRatio(self, "YmaxRatio", service, rules, path)
|
|
6383
6391
|
self.ZmaxRatio = self._ZmaxRatio(self, "ZmaxRatio", service, rules, path)
|
|
6384
|
-
self.
|
|
6392
|
+
self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
|
|
6385
6393
|
|
|
6386
6394
|
class _SizeRelativeLength(PyTextualCommandArgumentsSubItem):
|
|
6387
6395
|
"""
|
|
6388
6396
|
Determine if you would like to specify the bounding box as a ratio of the geometry length, or by specifying a specific location for the minimum and maximum coordinates.
|
|
6389
6397
|
"""
|
|
6390
6398
|
|
|
6391
|
-
class
|
|
6399
|
+
class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
|
|
6392
6400
|
"""
|
|
6393
|
-
Extends the maximum size of the bounding box in the X direction by the specified value.
|
|
6401
|
+
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.
|
|
6394
6402
|
"""
|
|
6395
6403
|
|
|
6396
6404
|
class _XminRatio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -6443,9 +6451,9 @@ class Root(PyMenu):
|
|
|
6443
6451
|
Extends the maximum size of the bounding box in the Z direction by the specified value. The value is the ratio relative to the geometry size in the Z direction.
|
|
6444
6452
|
"""
|
|
6445
6453
|
|
|
6446
|
-
class
|
|
6454
|
+
class _Xmax(PyNumericalCommandArgumentsSubItem):
|
|
6447
6455
|
"""
|
|
6448
|
-
Extends the maximum size of the bounding box in the X direction by the specified value.
|
|
6456
|
+
Extends the maximum size of the bounding box in the X direction by the specified value.
|
|
6449
6457
|
"""
|
|
6450
6458
|
|
|
6451
6459
|
def create_instance(self) -> _CreateExternalFlowBoundariesCommandArguments:
|
|
@@ -6648,8 +6656,8 @@ class Root(PyMenu):
|
|
|
6648
6656
|
LeakShieldName : str
|
|
6649
6657
|
UseSizeField : str
|
|
6650
6658
|
SizeFieldFileName : str
|
|
6651
|
-
MaxHoleSize : float
|
|
6652
6659
|
MinHoleSize : float
|
|
6660
|
+
MaxHoleSize : float
|
|
6653
6661
|
SpecifyObj : bool
|
|
6654
6662
|
SpecifyLive : bool
|
|
6655
6663
|
SpecifyDead : bool
|
|
@@ -6670,8 +6678,8 @@ class Root(PyMenu):
|
|
|
6670
6678
|
self.LeakShieldName = self._LeakShieldName(self, "LeakShieldName", service, rules, path)
|
|
6671
6679
|
self.UseSizeField = self._UseSizeField(self, "UseSizeField", service, rules, path)
|
|
6672
6680
|
self.SizeFieldFileName = self._SizeFieldFileName(self, "SizeFieldFileName", service, rules, path)
|
|
6673
|
-
self.MaxHoleSize = self._MaxHoleSize(self, "MaxHoleSize", service, rules, path)
|
|
6674
6681
|
self.MinHoleSize = self._MinHoleSize(self, "MinHoleSize", service, rules, path)
|
|
6682
|
+
self.MaxHoleSize = self._MaxHoleSize(self, "MaxHoleSize", service, rules, path)
|
|
6675
6683
|
self.SpecifyObj = self._SpecifyObj(self, "SpecifyObj", service, rules, path)
|
|
6676
6684
|
self.SpecifyLive = self._SpecifyLive(self, "SpecifyLive", service, rules, path)
|
|
6677
6685
|
self.SpecifyDead = self._SpecifyDead(self, "SpecifyDead", service, rules, path)
|
|
@@ -6697,14 +6705,14 @@ class Root(PyMenu):
|
|
|
6697
6705
|
Argument SizeFieldFileName.
|
|
6698
6706
|
"""
|
|
6699
6707
|
|
|
6700
|
-
class
|
|
6708
|
+
class _MinHoleSize(PyNumericalCommandArgumentsSubItem):
|
|
6701
6709
|
"""
|
|
6702
|
-
Argument
|
|
6710
|
+
Argument MinHoleSize.
|
|
6703
6711
|
"""
|
|
6704
6712
|
|
|
6705
|
-
class
|
|
6713
|
+
class _MaxHoleSize(PyNumericalCommandArgumentsSubItem):
|
|
6706
6714
|
"""
|
|
6707
|
-
Argument
|
|
6715
|
+
Argument MaxHoleSize.
|
|
6708
6716
|
"""
|
|
6709
6717
|
|
|
6710
6718
|
class _SpecifyObj(PyParameterCommandArgumentsSubItem):
|
|
@@ -6891,7 +6899,7 @@ class Root(PyMenu):
|
|
|
6891
6899
|
def __init__(self, parent, attr, service, rules, path):
|
|
6892
6900
|
super().__init__(parent, attr, service, rules, path)
|
|
6893
6901
|
self.SizeRelativeLength = self._SizeRelativeLength(self, "SizeRelativeLength", service, rules, path)
|
|
6894
|
-
self.
|
|
6902
|
+
self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
|
|
6895
6903
|
self.XminRatio = self._XminRatio(self, "XminRatio", service, rules, path)
|
|
6896
6904
|
self.YminRatio = self._YminRatio(self, "YminRatio", service, rules, path)
|
|
6897
6905
|
self.Zmin = self._Zmin(self, "Zmin", service, rules, path)
|
|
@@ -6902,16 +6910,16 @@ class Root(PyMenu):
|
|
|
6902
6910
|
self.Xmin = self._Xmin(self, "Xmin", service, rules, path)
|
|
6903
6911
|
self.YmaxRatio = self._YmaxRatio(self, "YmaxRatio", service, rules, path)
|
|
6904
6912
|
self.ZmaxRatio = self._ZmaxRatio(self, "ZmaxRatio", service, rules, path)
|
|
6905
|
-
self.
|
|
6913
|
+
self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
|
|
6906
6914
|
|
|
6907
6915
|
class _SizeRelativeLength(PyTextualCommandArgumentsSubItem):
|
|
6908
6916
|
"""
|
|
6909
6917
|
Determine if you would like to specify the bounding box for the refinement region as a ratio of the geometry length, or by specifying a specific location for the minimum and maximum coordinates.
|
|
6910
6918
|
"""
|
|
6911
6919
|
|
|
6912
|
-
class
|
|
6920
|
+
class _Xmax(PyNumericalCommandArgumentsSubItem):
|
|
6913
6921
|
"""
|
|
6914
|
-
|
|
6922
|
+
Specify the X-coordinate for the initial position of the cylindrical refinement region.
|
|
6915
6923
|
"""
|
|
6916
6924
|
|
|
6917
6925
|
class _XminRatio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -6964,9 +6972,9 @@ class Root(PyMenu):
|
|
|
6964
6972
|
Extends the maximum size of the bounding box in the Z direction by the specified value. The value is the ratio relative to the geometry size in the Z direction.
|
|
6965
6973
|
"""
|
|
6966
6974
|
|
|
6967
|
-
class
|
|
6975
|
+
class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
|
|
6968
6976
|
"""
|
|
6969
|
-
|
|
6977
|
+
Extends the maximum size of the bounding box in the X direction by the specified value. The value is the ratio relative to the geometry size in the X direction.
|
|
6970
6978
|
"""
|
|
6971
6979
|
|
|
6972
6980
|
class _OffsetObject(PySingletonCommandArgumentsSubItem):
|
|
@@ -6982,13 +6990,13 @@ class Root(PyMenu):
|
|
|
6982
6990
|
self.Y = self._Y(self, "Y", service, rules, path)
|
|
6983
6991
|
self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
|
|
6984
6992
|
self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
|
|
6985
|
-
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
6986
6993
|
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
6987
6994
|
self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
|
|
6995
|
+
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
|
|
6988
6996
|
self.FlowDirection = self._FlowDirection(self, "FlowDirection", service, rules, path)
|
|
6989
6997
|
self.MptMethodType = self._MptMethodType(self, "MptMethodType", service, rules, path)
|
|
6990
6998
|
self.EdgeSelectionList = self._EdgeSelectionList(self, "EdgeSelectionList", service, rules, path)
|
|
6991
|
-
self.
|
|
6999
|
+
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
6992
7000
|
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
6993
7001
|
self.X = self._X(self, "X", service, rules, path)
|
|
6994
7002
|
self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
|
|
@@ -7027,11 +7035,6 @@ class Root(PyMenu):
|
|
|
7027
7035
|
Argument AspectRatio.
|
|
7028
7036
|
"""
|
|
7029
7037
|
|
|
7030
|
-
class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
|
|
7031
|
-
"""
|
|
7032
|
-
Argument NumberOfLayers.
|
|
7033
|
-
"""
|
|
7034
|
-
|
|
7035
7038
|
class _Rate(PyNumericalCommandArgumentsSubItem):
|
|
7036
7039
|
"""
|
|
7037
7040
|
Argument Rate.
|
|
@@ -7042,6 +7045,11 @@ class Root(PyMenu):
|
|
|
7042
7045
|
Specify the number of boundary layers that are to be captured in the refinement region.
|
|
7043
7046
|
"""
|
|
7044
7047
|
|
|
7048
|
+
class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
|
|
7049
|
+
"""
|
|
7050
|
+
Specify the factor by which the refinement region expands in the wake of the flow direction.
|
|
7051
|
+
"""
|
|
7052
|
+
|
|
7045
7053
|
class _FlowDirection(PyTextualCommandArgumentsSubItem):
|
|
7046
7054
|
"""
|
|
7047
7055
|
Specify the direction that the flow through this refinement region.
|
|
@@ -7057,9 +7065,9 @@ class Root(PyMenu):
|
|
|
7057
7065
|
Argument EdgeSelectionList.
|
|
7058
7066
|
"""
|
|
7059
7067
|
|
|
7060
|
-
class
|
|
7068
|
+
class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
|
|
7061
7069
|
"""
|
|
7062
|
-
|
|
7070
|
+
Argument NumberOfLayers.
|
|
7063
7071
|
"""
|
|
7064
7072
|
|
|
7065
7073
|
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
@@ -7121,9 +7129,9 @@ class Root(PyMenu):
|
|
|
7121
7129
|
self.Radius2 = self._Radius2(self, "Radius2", service, rules, path)
|
|
7122
7130
|
self.Y2 = self._Y2(self, "Y2", service, rules, path)
|
|
7123
7131
|
self.Node3 = self._Node3(self, "Node3", service, rules, path)
|
|
7124
|
-
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
7125
7132
|
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
7126
7133
|
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
7134
|
+
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
7127
7135
|
self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
|
|
7128
7136
|
self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
|
|
7129
7137
|
|
|
@@ -7187,11 +7195,6 @@ class Root(PyMenu):
|
|
|
7187
7195
|
Argument Node3.
|
|
7188
7196
|
"""
|
|
7189
7197
|
|
|
7190
|
-
class _Y_Offset(PyNumericalCommandArgumentsSubItem):
|
|
7191
|
-
"""
|
|
7192
|
-
Specify the Y-coordinate for the offset of the initial position of the cylinder.
|
|
7193
|
-
"""
|
|
7194
|
-
|
|
7195
7198
|
class _X2(PyNumericalCommandArgumentsSubItem):
|
|
7196
7199
|
"""
|
|
7197
7200
|
Specify the X-coordinate of the second position of the cylinder.
|
|
@@ -7202,6 +7205,11 @@ class Root(PyMenu):
|
|
|
7202
7205
|
Argument Node2.
|
|
7203
7206
|
"""
|
|
7204
7207
|
|
|
7208
|
+
class _Y_Offset(PyNumericalCommandArgumentsSubItem):
|
|
7209
|
+
"""
|
|
7210
|
+
Specify the Y-coordinate for the offset of the initial position of the cylinder.
|
|
7211
|
+
"""
|
|
7212
|
+
|
|
7205
7213
|
class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
|
|
7206
7214
|
"""
|
|
7207
7215
|
Argument HeightFrontInc.
|
|
@@ -7259,9 +7267,9 @@ class Root(PyMenu):
|
|
|
7259
7267
|
self.CylinderX2 = self._CylinderX2(self, "CylinderX2", service, rules, path)
|
|
7260
7268
|
self.BoxYLength = self._BoxYLength(self, "BoxYLength", service, rules, path)
|
|
7261
7269
|
self.CylinderX1 = self._CylinderX1(self, "CylinderX1", service, rules, path)
|
|
7262
|
-
self.BoxXLength = self._BoxXLength(self, "BoxXLength", service, rules, path)
|
|
7263
|
-
self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
|
|
7264
7270
|
self.BoxZLength = self._BoxZLength(self, "BoxZLength", service, rules, path)
|
|
7271
|
+
self.CylinderY1 = self._CylinderY1(self, "CylinderY1", service, rules, path)
|
|
7272
|
+
self.BoxXLength = self._BoxXLength(self, "BoxXLength", service, rules, path)
|
|
7265
7273
|
self.BoxCenterY = self._BoxCenterY(self, "BoxCenterY", service, rules, path)
|
|
7266
7274
|
self.CylinderZ1 = self._CylinderZ1(self, "CylinderZ1", service, rules, path)
|
|
7267
7275
|
self.CylinderRadius1 = self._CylinderRadius1(self, "CylinderRadius1", service, rules, path)
|
|
@@ -7290,9 +7298,9 @@ class Root(PyMenu):
|
|
|
7290
7298
|
Specify the X-coordinate of the first position of the cylinder.
|
|
7291
7299
|
"""
|
|
7292
7300
|
|
|
7293
|
-
class
|
|
7301
|
+
class _BoxZLength(PyNumericalCommandArgumentsSubItem):
|
|
7294
7302
|
"""
|
|
7295
|
-
Argument
|
|
7303
|
+
Argument BoxZLength.
|
|
7296
7304
|
"""
|
|
7297
7305
|
|
|
7298
7306
|
class _CylinderY1(PyNumericalCommandArgumentsSubItem):
|
|
@@ -7300,9 +7308,9 @@ class Root(PyMenu):
|
|
|
7300
7308
|
Specify the Y-coordinate of the first position of the cylinder.
|
|
7301
7309
|
"""
|
|
7302
7310
|
|
|
7303
|
-
class
|
|
7311
|
+
class _BoxXLength(PyNumericalCommandArgumentsSubItem):
|
|
7304
7312
|
"""
|
|
7305
|
-
Argument
|
|
7313
|
+
Argument BoxXLength.
|
|
7306
7314
|
"""
|
|
7307
7315
|
|
|
7308
7316
|
class _BoxCenterY(PyNumericalCommandArgumentsSubItem):
|
|
@@ -7541,8 +7549,8 @@ class Root(PyMenu):
|
|
|
7541
7549
|
self.ZoneSelectionList = self._ZoneSelectionList(self, "ZoneSelectionList", service, rules, path)
|
|
7542
7550
|
self.Thickness = self._Thickness(self, "Thickness", service, rules, path)
|
|
7543
7551
|
self.SelectionType = self._SelectionType(self, "SelectionType", service, rules, path)
|
|
7544
|
-
self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
|
|
7545
7552
|
self.MeshSize = self._MeshSize(self, "MeshSize", service, rules, path)
|
|
7553
|
+
self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
|
|
7546
7554
|
self.BufferSize = self._BufferSize(self, "BufferSize", service, rules, path)
|
|
7547
7555
|
self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
|
|
7548
7556
|
self.NonRectangularBufferSize = self._NonRectangularBufferSize(self, "NonRectangularBufferSize", service, rules, path)
|
|
@@ -7573,14 +7581,14 @@ class Root(PyMenu):
|
|
|
7573
7581
|
Choose how you want to make your selection (by object, zone, or label).
|
|
7574
7582
|
"""
|
|
7575
7583
|
|
|
7576
|
-
class
|
|
7584
|
+
class _MeshSize(PyNumericalCommandArgumentsSubItem):
|
|
7577
7585
|
"""
|
|
7578
|
-
Specify the
|
|
7586
|
+
Specify the cell size for the porous region mesh.
|
|
7579
7587
|
"""
|
|
7580
7588
|
|
|
7581
|
-
class
|
|
7589
|
+
class _FeatureAngle(PyNumericalCommandArgumentsSubItem):
|
|
7582
7590
|
"""
|
|
7583
|
-
Specify the
|
|
7591
|
+
Specify the angle at which features will be extracted for the porous region.
|
|
7584
7592
|
"""
|
|
7585
7593
|
|
|
7586
7594
|
class _BufferSize(PyNumericalCommandArgumentsSubItem):
|
|
@@ -7911,10 +7919,10 @@ class Root(PyMenu):
|
|
|
7911
7919
|
def __init__(self, parent, attr, service, rules, path):
|
|
7912
7920
|
super().__init__(parent, attr, service, rules, path)
|
|
7913
7921
|
self.PorousRegions = self._PorousRegions(self, "PorousRegions", service, rules, path)
|
|
7914
|
-
self.CloseLeakages = self._CloseLeakages(self, "CloseLeakages", service, rules, path)
|
|
7915
|
-
self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
|
|
7916
|
-
self.CloseLeakges = self._CloseLeakges(self, "CloseLeakges", service, rules, path)
|
|
7917
7922
|
self.ZeroThickness = self._ZeroThickness(self, "ZeroThickness", service, rules, path)
|
|
7923
|
+
self.CloseLeakges = self._CloseLeakges(self, "CloseLeakges", service, rules, path)
|
|
7924
|
+
self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
|
|
7925
|
+
self.CloseLeakages = self._CloseLeakages(self, "CloseLeakages", service, rules, path)
|
|
7918
7926
|
self.ExtractEdgeFeatures = self._ExtractEdgeFeatures(self, "ExtractEdgeFeatures", service, rules, path)
|
|
7919
7927
|
self.MovingObjects = self._MovingObjects(self, "MovingObjects", service, rules, path)
|
|
7920
7928
|
self.EnablePrimeWrapper = self._EnablePrimeWrapper(self, "EnablePrimeWrapper", service, rules, path)
|
|
@@ -7926,24 +7934,24 @@ class Root(PyMenu):
|
|
|
7926
7934
|
Specify whether or not you will have any porous regions in your geometry. If so, then a Create Porous Regions task will be added to the workflow. A simple primitive rectangle will be placed over complex and detailed geometry of a porous region (for example, fins and tubes of a heat exchanger). With buffer layer:
|
|
7927
7935
|
"""
|
|
7928
7936
|
|
|
7929
|
-
class
|
|
7937
|
+
class _ZeroThickness(PyTextualCommandArgumentsSubItem):
|
|
7930
7938
|
"""
|
|
7931
|
-
|
|
7939
|
+
Specify whether or not you will need to account for any portions of your geometry with zero-thickness, and apply thickness to them for a more refined surface mesh. If so, then an Add Thickness task will be added to the workflow.
|
|
7932
7940
|
"""
|
|
7933
7941
|
|
|
7934
|
-
class
|
|
7942
|
+
class _CloseLeakges(PyTextualCommandArgumentsSubItem):
|
|
7935
7943
|
"""
|
|
7936
|
-
|
|
7944
|
+
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
7945
|
"""
|
|
7938
7946
|
|
|
7939
|
-
class
|
|
7947
|
+
class _AdvancedOptions(PyParameterCommandArgumentsSubItem):
|
|
7940
7948
|
"""
|
|
7941
|
-
|
|
7949
|
+
Display advanced options that you may want to apply to the workflow.
|
|
7942
7950
|
"""
|
|
7943
7951
|
|
|
7944
|
-
class
|
|
7952
|
+
class _CloseLeakages(PyTextualCommandArgumentsSubItem):
|
|
7945
7953
|
"""
|
|
7946
|
-
|
|
7954
|
+
Argument CloseLeakages.
|
|
7947
7955
|
"""
|
|
7948
7956
|
|
|
7949
7957
|
class _ExtractEdgeFeatures(PyTextualCommandArgumentsSubItem):
|
|
@@ -8179,6 +8187,7 @@ class Root(PyMenu):
|
|
|
8179
8187
|
Choose whether you want the extrusion to be based on a specified Total Height value, or one based on a specified First Height value. The relationship between the two is illustrated by:
|
|
8180
8188
|
SelectionType : str
|
|
8181
8189
|
ExtendToPeriodicPair : bool
|
|
8190
|
+
PreservePeriodicInfo : bool
|
|
8182
8191
|
ExtrudeNormalBased : bool
|
|
8183
8192
|
Specify whether the volume extrusion is derived from normal-based faceting or direction-based faceting. When enabled (the default), the volume extrusion is derived on normal-based faceting, such that for each layer, the normal is calculated and smoothing occurs, and is suitable for non-planar surfaces. For planar surfaces, disable this option to use a direction-based approach where the direction is chosen based on the average normal of the entire surface, and is used to extrude all layers.
|
|
8184
8193
|
ExternalBoundaryZoneList : list[str]
|
|
@@ -8208,6 +8217,7 @@ class Root(PyMenu):
|
|
|
8208
8217
|
self.Method = self._Method(self, "Method", service, rules, path)
|
|
8209
8218
|
self.SelectionType = self._SelectionType(self, "SelectionType", service, rules, path)
|
|
8210
8219
|
self.ExtendToPeriodicPair = self._ExtendToPeriodicPair(self, "ExtendToPeriodicPair", service, rules, path)
|
|
8220
|
+
self.PreservePeriodicInfo = self._PreservePeriodicInfo(self, "PreservePeriodicInfo", service, rules, path)
|
|
8211
8221
|
self.ExtrudeNormalBased = self._ExtrudeNormalBased(self, "ExtrudeNormalBased", service, rules, path)
|
|
8212
8222
|
self.ExternalBoundaryZoneList = self._ExternalBoundaryZoneList(self, "ExternalBoundaryZoneList", service, rules, path)
|
|
8213
8223
|
self.TopologyList = self._TopologyList(self, "TopologyList", service, rules, path)
|
|
@@ -8239,6 +8249,11 @@ class Root(PyMenu):
|
|
|
8239
8249
|
Argument ExtendToPeriodicPair.
|
|
8240
8250
|
"""
|
|
8241
8251
|
|
|
8252
|
+
class _PreservePeriodicInfo(PyParameterCommandArgumentsSubItem):
|
|
8253
|
+
"""
|
|
8254
|
+
Argument PreservePeriodicInfo.
|
|
8255
|
+
"""
|
|
8256
|
+
|
|
8242
8257
|
class _ExtrudeNormalBased(PyParameterCommandArgumentsSubItem):
|
|
8243
8258
|
"""
|
|
8244
8259
|
Specify whether the volume extrusion is derived from normal-based faceting or direction-based faceting. When enabled (the default), the volume extrusion is derived on normal-based faceting, such that for each layer, the normal is calculated and smoothing occurs, and is suitable for non-planar surfaces. For planar surfaces, disable this option to use a direction-based approach where the direction is chosen based on the average normal of the entire surface, and is used to extrude all layers.
|
|
@@ -8288,10 +8303,8 @@ class Root(PyMenu):
|
|
|
8288
8303
|
def __init__(self, parent, attr, service, rules, path):
|
|
8289
8304
|
super().__init__(parent, attr, service, rules, path)
|
|
8290
8305
|
self.MaxLayerHeight = self._MaxLayerHeight(self, "MaxLayerHeight", service, rules, path)
|
|
8291
|
-
self.MidSpanLength = self._MidSpanLength(self, "MidSpanLength", service, rules, path)
|
|
8292
8306
|
self.BiasMethod = self._BiasMethod(self, "BiasMethod", service, rules, path)
|
|
8293
8307
|
self.MergeCellZones = self._MergeCellZones(self, "MergeCellZones", service, rules, path)
|
|
8294
|
-
self.BiasMethodControl = self._BiasMethodControl(self, "BiasMethodControl", service, rules, path)
|
|
8295
8308
|
self.ShowVMExtrudePreferences = self._ShowVMExtrudePreferences(self, "ShowVMExtrudePreferences", service, rules, path)
|
|
8296
8309
|
|
|
8297
8310
|
class _MaxLayerHeight(PyNumericalCommandArgumentsSubItem):
|
|
@@ -8299,11 +8312,6 @@ class Root(PyMenu):
|
|
|
8299
8312
|
Argument MaxLayerHeight.
|
|
8300
8313
|
"""
|
|
8301
8314
|
|
|
8302
|
-
class _MidSpanLength(PyNumericalCommandArgumentsSubItem):
|
|
8303
|
-
"""
|
|
8304
|
-
Argument MidSpanLength.
|
|
8305
|
-
"""
|
|
8306
|
-
|
|
8307
8315
|
class _BiasMethod(PyTextualCommandArgumentsSubItem):
|
|
8308
8316
|
"""
|
|
8309
8317
|
Select from a choice of patterns that you want to apply to your volume mesh extrusion.
|
|
@@ -8314,11 +8322,6 @@ class Root(PyMenu):
|
|
|
8314
8322
|
Indicate whether or not you want to merge the extruded layers with any adjacent regions.
|
|
8315
8323
|
"""
|
|
8316
8324
|
|
|
8317
|
-
class _BiasMethodControl(PyTextualCommandArgumentsSubItem):
|
|
8318
|
-
"""
|
|
8319
|
-
Argument BiasMethodControl.
|
|
8320
|
-
"""
|
|
8321
|
-
|
|
8322
8325
|
class _ShowVMExtrudePreferences(PyParameterCommandArgumentsSubItem):
|
|
8323
8326
|
"""
|
|
8324
8327
|
Display advanced options that you may want to apply to the task.
|
|
@@ -8393,10 +8396,10 @@ class Root(PyMenu):
|
|
|
8393
8396
|
self.MinAspectRatio = self._MinAspectRatio(self, "MinAspectRatio", service, rules, path)
|
|
8394
8397
|
self.RemeshGrowthRate = self._RemeshGrowthRate(self, "RemeshGrowthRate", service, rules, path)
|
|
8395
8398
|
self.LocalRemesh = self._LocalRemesh(self, "LocalRemesh", service, rules, path)
|
|
8396
|
-
self.MaxFaceSkew = self._MaxFaceSkew(self, "MaxFaceSkew", service, rules, path)
|
|
8397
|
-
self.RefineStretchedQuads = self._RefineStretchedQuads(self, "RefineStretchedQuads", service, rules, path)
|
|
8398
8399
|
self.GapFactor = self._GapFactor(self, "GapFactor", service, rules, path)
|
|
8400
|
+
self.RefineStretchedQuads = self._RefineStretchedQuads(self, "RefineStretchedQuads", service, rules, path)
|
|
8399
8401
|
self.ShowPrism2DPreferences = self._ShowPrism2DPreferences(self, "ShowPrism2DPreferences", service, rules, path)
|
|
8402
|
+
self.MaxFaceSkew = self._MaxFaceSkew(self, "MaxFaceSkew", service, rules, path)
|
|
8400
8403
|
self.nOrthogonalLayers = self._nOrthogonalLayers(self, "nOrthogonalLayers", service, rules, path)
|
|
8401
8404
|
|
|
8402
8405
|
class _SplitQuads(PyTextualCommandArgumentsSubItem):
|
|
@@ -8424,9 +8427,9 @@ class Root(PyMenu):
|
|
|
8424
8427
|
Argument LocalRemesh.
|
|
8425
8428
|
"""
|
|
8426
8429
|
|
|
8427
|
-
class
|
|
8430
|
+
class _GapFactor(PyNumericalCommandArgumentsSubItem):
|
|
8428
8431
|
"""
|
|
8429
|
-
Argument
|
|
8432
|
+
Argument GapFactor.
|
|
8430
8433
|
"""
|
|
8431
8434
|
|
|
8432
8435
|
class _RefineStretchedQuads(PyTextualCommandArgumentsSubItem):
|
|
@@ -8434,14 +8437,14 @@ class Root(PyMenu):
|
|
|
8434
8437
|
Argument RefineStretchedQuads.
|
|
8435
8438
|
"""
|
|
8436
8439
|
|
|
8437
|
-
class
|
|
8440
|
+
class _ShowPrism2DPreferences(PyParameterCommandArgumentsSubItem):
|
|
8438
8441
|
"""
|
|
8439
|
-
Argument
|
|
8442
|
+
Argument ShowPrism2DPreferences.
|
|
8440
8443
|
"""
|
|
8441
8444
|
|
|
8442
|
-
class
|
|
8445
|
+
class _MaxFaceSkew(PyNumericalCommandArgumentsSubItem):
|
|
8443
8446
|
"""
|
|
8444
|
-
Argument
|
|
8447
|
+
Argument MaxFaceSkew.
|
|
8445
8448
|
"""
|
|
8446
8449
|
|
|
8447
8450
|
class _nOrthogonalLayers(PyNumericalCommandArgumentsSubItem):
|
|
@@ -8456,18 +8459,18 @@ class Root(PyMenu):
|
|
|
8456
8459
|
|
|
8457
8460
|
def __init__(self, parent, attr, service, rules, path):
|
|
8458
8461
|
super().__init__(parent, attr, service, rules, path)
|
|
8459
|
-
self.MergeEdgeZonesBasedOnLabels = self._MergeEdgeZonesBasedOnLabels(self, "MergeEdgeZonesBasedOnLabels", service, rules, path)
|
|
8460
8462
|
self.MergeFaceZonesBasedOnLabels = self._MergeFaceZonesBasedOnLabels(self, "MergeFaceZonesBasedOnLabels", service, rules, path)
|
|
8463
|
+
self.MergeEdgeZonesBasedOnLabels = self._MergeEdgeZonesBasedOnLabels(self, "MergeEdgeZonesBasedOnLabels", service, rules, path)
|
|
8461
8464
|
self.ShowAdvancedOptions = self._ShowAdvancedOptions(self, "ShowAdvancedOptions", service, rules, path)
|
|
8462
8465
|
|
|
8463
|
-
class
|
|
8466
|
+
class _MergeFaceZonesBasedOnLabels(PyTextualCommandArgumentsSubItem):
|
|
8464
8467
|
"""
|
|
8465
|
-
Argument
|
|
8468
|
+
Argument MergeFaceZonesBasedOnLabels.
|
|
8466
8469
|
"""
|
|
8467
8470
|
|
|
8468
|
-
class
|
|
8471
|
+
class _MergeEdgeZonesBasedOnLabels(PyTextualCommandArgumentsSubItem):
|
|
8469
8472
|
"""
|
|
8470
|
-
Argument
|
|
8473
|
+
Argument MergeEdgeZonesBasedOnLabels.
|
|
8471
8474
|
"""
|
|
8472
8475
|
|
|
8473
8476
|
class _ShowAdvancedOptions(PyParameterCommandArgumentsSubItem):
|
|
@@ -8780,8 +8783,8 @@ class Root(PyMenu):
|
|
|
8780
8783
|
self.SaveSizeFieldFile = self._SaveSizeFieldFile(self, "SaveSizeFieldFile", service, rules, path)
|
|
8781
8784
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
8782
8785
|
self.ScopeProximityTo = self._ScopeProximityTo(self, "ScopeProximityTo", service, rules, path)
|
|
8783
|
-
self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
|
|
8784
8786
|
self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
|
|
8787
|
+
self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
|
|
8785
8788
|
self.SaveSizeField = self._SaveSizeField(self, "SaveSizeField", service, rules, path)
|
|
8786
8789
|
self.UseSizeFiles = self._UseSizeFiles(self, "UseSizeFiles", service, rules, path)
|
|
8787
8790
|
self.AutoCreateScopedSizing = self._AutoCreateScopedSizing(self, "AutoCreateScopedSizing", service, rules, path)
|
|
@@ -8811,14 +8814,14 @@ class Root(PyMenu):
|
|
|
8811
8814
|
Argument ScopeProximityTo.
|
|
8812
8815
|
"""
|
|
8813
8816
|
|
|
8814
|
-
class
|
|
8817
|
+
class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
8815
8818
|
"""
|
|
8816
|
-
Argument
|
|
8819
|
+
Argument CurvatureNormalAngle.
|
|
8817
8820
|
"""
|
|
8818
8821
|
|
|
8819
|
-
class
|
|
8822
|
+
class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
|
|
8820
8823
|
"""
|
|
8821
|
-
Argument
|
|
8824
|
+
Argument PreviewSizefield.
|
|
8822
8825
|
"""
|
|
8823
8826
|
|
|
8824
8827
|
class _SaveSizeField(PyParameterCommandArgumentsSubItem):
|
|
@@ -9168,8 +9171,8 @@ class Root(PyMenu):
|
|
|
9168
9171
|
self.SaveSizeFieldFile = self._SaveSizeFieldFile(self, "SaveSizeFieldFile", service, rules, path)
|
|
9169
9172
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
9170
9173
|
self.ScopeProximityTo = self._ScopeProximityTo(self, "ScopeProximityTo", service, rules, path)
|
|
9171
|
-
self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
|
|
9172
9174
|
self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
|
|
9175
|
+
self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
|
|
9173
9176
|
self.SaveSizeField = self._SaveSizeField(self, "SaveSizeField", service, rules, path)
|
|
9174
9177
|
self.UseSizeFiles = self._UseSizeFiles(self, "UseSizeFiles", service, rules, path)
|
|
9175
9178
|
self.AutoCreateScopedSizing = self._AutoCreateScopedSizing(self, "AutoCreateScopedSizing", service, rules, path)
|
|
@@ -9199,14 +9202,14 @@ class Root(PyMenu):
|
|
|
9199
9202
|
Set proximity based refinement. Edges considers edge-to-edge proximity, while Faces considers face-to-face proximity, and Faces and Edges considers both. More...
|
|
9200
9203
|
"""
|
|
9201
9204
|
|
|
9202
|
-
class
|
|
9205
|
+
class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
9203
9206
|
"""
|
|
9204
|
-
|
|
9207
|
+
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
9208
|
"""
|
|
9206
9209
|
|
|
9207
|
-
class
|
|
9210
|
+
class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
|
|
9208
9211
|
"""
|
|
9209
|
-
|
|
9212
|
+
Enable this option to visualize the size field in the graphics window.
|
|
9210
9213
|
"""
|
|
9211
9214
|
|
|
9212
9215
|
class _SaveSizeField(PyParameterCommandArgumentsSubItem):
|
|
@@ -9307,19 +9310,19 @@ class Root(PyMenu):
|
|
|
9307
9310
|
def __init__(self, parent, attr, service, rules, path):
|
|
9308
9311
|
super().__init__(parent, attr, service, rules, path)
|
|
9309
9312
|
self.SMQualityCollapseLimit = self._SMQualityCollapseLimit(self, "SMQualityCollapseLimit", service, rules, path)
|
|
9310
|
-
self.
|
|
9313
|
+
self.AutoMerge = self._AutoMerge(self, "AutoMerge", service, rules, path)
|
|
9311
9314
|
self.SMSeparation = self._SMSeparation(self, "SMSeparation", service, rules, path)
|
|
9312
|
-
self.SMSeparationAngle = self._SMSeparationAngle(self, "SMSeparationAngle", service, rules, path)
|
|
9313
|
-
self.SMQualityImprove = self._SMQualityImprove(self, "SMQualityImprove", service, rules, path)
|
|
9314
9315
|
self.ShowSurfaceMeshPreferences = self._ShowSurfaceMeshPreferences(self, "ShowSurfaceMeshPreferences", service, rules, path)
|
|
9316
|
+
self.SMQualityImprove = self._SMQualityImprove(self, "SMQualityImprove", service, rules, path)
|
|
9317
|
+
self.SMSeparationAngle = self._SMSeparationAngle(self, "SMSeparationAngle", service, rules, path)
|
|
9315
9318
|
self.TVMAutoControlCreation = self._TVMAutoControlCreation(self, "TVMAutoControlCreation", service, rules, path)
|
|
9316
|
-
self.
|
|
9319
|
+
self.FoldFaceLimit = self._FoldFaceLimit(self, "FoldFaceLimit", service, rules, path)
|
|
9317
9320
|
self.SMRemoveStep = self._SMRemoveStep(self, "SMRemoveStep", service, rules, path)
|
|
9318
9321
|
self.SMStepWidth = self._SMStepWidth(self, "SMStepWidth", service, rules, path)
|
|
9319
9322
|
self.ParallelRegionCompute = self._ParallelRegionCompute(self, "ParallelRegionCompute", service, rules, path)
|
|
9320
|
-
self.VolumeMeshMaxSize = self._VolumeMeshMaxSize(self, "VolumeMeshMaxSize", service, rules, path)
|
|
9321
|
-
self.AutoAssignZoneTypes = self._AutoAssignZoneTypes(self, "AutoAssignZoneTypes", service, rules, path)
|
|
9322
9323
|
self.SMQualityMaxAngle = self._SMQualityMaxAngle(self, "SMQualityMaxAngle", service, rules, path)
|
|
9324
|
+
self.AutoAssignZoneTypes = self._AutoAssignZoneTypes(self, "AutoAssignZoneTypes", service, rules, path)
|
|
9325
|
+
self.VolumeMeshMaxSize = self._VolumeMeshMaxSize(self, "VolumeMeshMaxSize", service, rules, path)
|
|
9323
9326
|
self.SelfIntersectCheck = self._SelfIntersectCheck(self, "SelfIntersectCheck", service, rules, path)
|
|
9324
9327
|
self.AutoSurfaceRemesh = self._AutoSurfaceRemesh(self, "AutoSurfaceRemesh", service, rules, path)
|
|
9325
9328
|
self.SMQualityImproveLimit = self._SMQualityImproveLimit(self, "SMQualityImproveLimit", service, rules, path)
|
|
@@ -9330,9 +9333,9 @@ class Root(PyMenu):
|
|
|
9330
9333
|
Specify the limiting skewness value for cell collapse to improve the mesh. If any remaining triangles are above this limit, these triangles will be aggressively removed using a fixed maximum angle of 120 degrees.
|
|
9331
9334
|
"""
|
|
9332
9335
|
|
|
9333
|
-
class
|
|
9336
|
+
class _AutoMerge(PyParameterCommandArgumentsSubItem):
|
|
9334
9337
|
"""
|
|
9335
|
-
|
|
9338
|
+
Argument AutoMerge.
|
|
9336
9339
|
"""
|
|
9337
9340
|
|
|
9338
9341
|
class _SMSeparation(PyTextualCommandArgumentsSubItem):
|
|
@@ -9340,9 +9343,9 @@ class Root(PyMenu):
|
|
|
9340
9343
|
Choose whether or not to separate zones. This is required to select faces for capping. If Named Selections have already been defined at these locations, then separation is not needed. Performance may be improved if this is disabled.
|
|
9341
9344
|
"""
|
|
9342
9345
|
|
|
9343
|
-
class
|
|
9346
|
+
class _ShowSurfaceMeshPreferences(PyParameterCommandArgumentsSubItem):
|
|
9344
9347
|
"""
|
|
9345
|
-
|
|
9348
|
+
Display advanced options that you may want to apply to the task.
|
|
9346
9349
|
"""
|
|
9347
9350
|
|
|
9348
9351
|
class _SMQualityImprove(PyTextualCommandArgumentsSubItem):
|
|
@@ -9350,9 +9353,9 @@ class Root(PyMenu):
|
|
|
9350
9353
|
Choose whether or not to apply quality measures during surface mesh generation. You should disable this option when using Multizone meshing of very thin structures, relative to the minimum size.
|
|
9351
9354
|
"""
|
|
9352
9355
|
|
|
9353
|
-
class
|
|
9356
|
+
class _SMSeparationAngle(PyNumericalCommandArgumentsSubItem):
|
|
9354
9357
|
"""
|
|
9355
|
-
|
|
9358
|
+
Specify a desired angle for determining separation. Assigning a smaller separation angle will produce more zones.
|
|
9356
9359
|
"""
|
|
9357
9360
|
|
|
9358
9361
|
class _TVMAutoControlCreation(PyTextualCommandArgumentsSubItem):
|
|
@@ -9360,9 +9363,9 @@ class Root(PyMenu):
|
|
|
9360
9363
|
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.
|
|
9361
9364
|
"""
|
|
9362
9365
|
|
|
9363
|
-
class
|
|
9366
|
+
class _FoldFaceLimit(PyNumericalCommandArgumentsSubItem):
|
|
9364
9367
|
"""
|
|
9365
|
-
|
|
9368
|
+
Specify the value limiting when folded faces are smoothed or resolved. Folded faces are resolved while under this limit. Set this value to 0 if the number of free nodes (due to a zero-thickness wall such as a baffle for instance) falls below 10.
|
|
9366
9369
|
"""
|
|
9367
9370
|
|
|
9368
9371
|
class _SMRemoveStep(PyTextualCommandArgumentsSubItem):
|
|
@@ -9380,9 +9383,9 @@ class Root(PyMenu):
|
|
|
9380
9383
|
Argument ParallelRegionCompute.
|
|
9381
9384
|
"""
|
|
9382
9385
|
|
|
9383
|
-
class
|
|
9386
|
+
class _SMQualityMaxAngle(PyNumericalCommandArgumentsSubItem):
|
|
9384
9387
|
"""
|
|
9385
|
-
Specify the maximum
|
|
9388
|
+
Specify the maximum angle between the normals of adjacent faces. This quality measure is useful in locating sharp corners in complicated geometries. The angle value ranges from 0 to 180 degrees. Four consecutive attempts are made to improve the quality, each using a larger adjacent angle, until this maximum value.
|
|
9386
9389
|
"""
|
|
9387
9390
|
|
|
9388
9391
|
class _AutoAssignZoneTypes(PyTextualCommandArgumentsSubItem):
|
|
@@ -9390,9 +9393,9 @@ class Root(PyMenu):
|
|
|
9390
9393
|
Choose whether or not to automatically assign boundary types to zones.
|
|
9391
9394
|
"""
|
|
9392
9395
|
|
|
9393
|
-
class
|
|
9396
|
+
class _VolumeMeshMaxSize(PyNumericalCommandArgumentsSubItem):
|
|
9394
9397
|
"""
|
|
9395
|
-
Specify the maximum
|
|
9398
|
+
Specify the maximum size of the elements for the surface mesh.
|
|
9396
9399
|
"""
|
|
9397
9400
|
|
|
9398
9401
|
class _SelfIntersectCheck(PyTextualCommandArgumentsSubItem):
|
|
@@ -9499,11 +9502,11 @@ class Root(PyMenu):
|
|
|
9499
9502
|
self.CreateCADAssemblies = self._CreateCADAssemblies(self, "CreateCADAssemblies", service, rules, path)
|
|
9500
9503
|
self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
|
|
9501
9504
|
self.OneZonePer = self._OneZonePer(self, "OneZonePer", service, rules, path)
|
|
9502
|
-
self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
|
|
9503
|
-
self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
|
|
9504
9505
|
self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
|
|
9505
|
-
self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
|
|
9506
9506
|
self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
|
|
9507
|
+
self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
|
|
9508
|
+
self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
|
|
9509
|
+
self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
|
|
9507
9510
|
|
|
9508
9511
|
class _SavePMDBIntermediateFile(PyParameterCommandArgumentsSubItem):
|
|
9509
9512
|
"""
|
|
@@ -9535,19 +9538,19 @@ class Root(PyMenu):
|
|
|
9535
9538
|
Argument OneZonePer.
|
|
9536
9539
|
"""
|
|
9537
9540
|
|
|
9538
|
-
class
|
|
9541
|
+
class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
|
|
9539
9542
|
"""
|
|
9540
|
-
Argument
|
|
9543
|
+
Argument ImportCurvatureDataFromCAD.
|
|
9541
9544
|
"""
|
|
9542
9545
|
|
|
9543
|
-
class
|
|
9546
|
+
class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
|
|
9544
9547
|
"""
|
|
9545
|
-
Argument
|
|
9548
|
+
Argument ExtractFeatures.
|
|
9546
9549
|
"""
|
|
9547
9550
|
|
|
9548
|
-
class
|
|
9551
|
+
class _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
|
|
9549
9552
|
"""
|
|
9550
|
-
Argument
|
|
9553
|
+
Argument UsePartOrBodyAsSuffix.
|
|
9551
9554
|
"""
|
|
9552
9555
|
|
|
9553
9556
|
class _ImportPartNames(PyParameterCommandArgumentsSubItem):
|
|
@@ -9555,9 +9558,9 @@ class Root(PyMenu):
|
|
|
9555
9558
|
Argument ImportPartNames.
|
|
9556
9559
|
"""
|
|
9557
9560
|
|
|
9558
|
-
class
|
|
9561
|
+
class _ImportNamedSelections(PyParameterCommandArgumentsSubItem):
|
|
9559
9562
|
"""
|
|
9560
|
-
Argument
|
|
9563
|
+
Argument ImportNamedSelections.
|
|
9561
9564
|
"""
|
|
9562
9565
|
|
|
9563
9566
|
class _ShareTopologyPreferences(PySingletonCommandArgumentsSubItem):
|
|
@@ -9577,9 +9580,9 @@ class Root(PyMenu):
|
|
|
9577
9580
|
self.Operation = self._Operation(self, "Operation", service, rules, path)
|
|
9578
9581
|
self.ShareTopologyAngle = self._ShareTopologyAngle(self, "ShareTopologyAngle", service, rules, path)
|
|
9579
9582
|
self.STToleranceIncrement = self._STToleranceIncrement(self, "STToleranceIncrement", service, rules, path)
|
|
9580
|
-
self.IntfLabelList = self._IntfLabelList(self, "IntfLabelList", service, rules, path)
|
|
9581
|
-
self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
|
|
9582
9583
|
self.ShowShareTopologyPreferences = self._ShowShareTopologyPreferences(self, "ShowShareTopologyPreferences", service, rules, path)
|
|
9584
|
+
self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
|
|
9585
|
+
self.IntfLabelList = self._IntfLabelList(self, "IntfLabelList", service, rules, path)
|
|
9583
9586
|
self.AdvancedImprove = self._AdvancedImprove(self, "AdvancedImprove", service, rules, path)
|
|
9584
9587
|
self.NumberOfJoinTries = self._NumberOfJoinTries(self, "NumberOfJoinTries", service, rules, path)
|
|
9585
9588
|
|
|
@@ -9633,9 +9636,9 @@ class Root(PyMenu):
|
|
|
9633
9636
|
Specify the increment by which the tolerance changes for each attempt to join face pairs.
|
|
9634
9637
|
"""
|
|
9635
9638
|
|
|
9636
|
-
class
|
|
9639
|
+
class _ShowShareTopologyPreferences(PyParameterCommandArgumentsSubItem):
|
|
9637
9640
|
"""
|
|
9638
|
-
|
|
9641
|
+
Display advanced options that you may want to apply to the task.
|
|
9639
9642
|
"""
|
|
9640
9643
|
|
|
9641
9644
|
class _PerLabelList(PyTextualCommandArgumentsSubItem):
|
|
@@ -9643,9 +9646,9 @@ class Root(PyMenu):
|
|
|
9643
9646
|
Argument PerLabelList.
|
|
9644
9647
|
"""
|
|
9645
9648
|
|
|
9646
|
-
class
|
|
9649
|
+
class _IntfLabelList(PyTextualCommandArgumentsSubItem):
|
|
9647
9650
|
"""
|
|
9648
|
-
|
|
9651
|
+
Enter a text string to filter out the list of labels. Use the Filter Text drop-down to provide text and/or regular expressions in filtering the list (for example, using \\*, ?, and []). Choose Use Wildcard to provide wildcard expressions in filtering the list. When you use either ? or \\* in your expression, the matching list item(s) are automatically selected in the list. Use ^, |, and & in your expression to indicate boolean operations for NOT, OR, and AND, respectively. More...
|
|
9649
9652
|
"""
|
|
9650
9653
|
|
|
9651
9654
|
class _AdvancedImprove(PyTextualCommandArgumentsSubItem):
|
|
@@ -10038,9 +10041,9 @@ class Root(PyMenu):
|
|
|
10038
10041
|
def __init__(self, parent, attr, service, rules, path):
|
|
10039
10042
|
super().__init__(parent, attr, service, rules, path)
|
|
10040
10043
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
10041
|
-
self.HexMinCellLength = self._HexMinCellLength(self, "HexMinCellLength", service, rules, path)
|
|
10042
|
-
self.TetPolyMaxCellLength = self._TetPolyMaxCellLength(self, "TetPolyMaxCellLength", service, rules, path)
|
|
10043
10044
|
self.PeelLayers = self._PeelLayers(self, "PeelLayers", service, rules, path)
|
|
10045
|
+
self.TetPolyMaxCellLength = self._TetPolyMaxCellLength(self, "TetPolyMaxCellLength", service, rules, path)
|
|
10046
|
+
self.HexMinCellLength = self._HexMinCellLength(self, "HexMinCellLength", service, rules, path)
|
|
10044
10047
|
self.Type = self._Type(self, "Type", service, rules, path)
|
|
10045
10048
|
self.CellSizing = self._CellSizing(self, "CellSizing", service, rules, path)
|
|
10046
10049
|
self.HexMaxSize = self._HexMaxSize(self, "HexMaxSize", service, rules, path)
|
|
@@ -10053,9 +10056,9 @@ class Root(PyMenu):
|
|
|
10053
10056
|
Argument MaxSize.
|
|
10054
10057
|
"""
|
|
10055
10058
|
|
|
10056
|
-
class
|
|
10059
|
+
class _PeelLayers(PyNumericalCommandArgumentsSubItem):
|
|
10057
10060
|
"""
|
|
10058
|
-
|
|
10061
|
+
Specify the number of layers that control the gap between the hexahedra core and the geometry. This distance is assumed to be the height of an ideal tetrahedral cell on the boundary face.
|
|
10059
10062
|
"""
|
|
10060
10063
|
|
|
10061
10064
|
class _TetPolyMaxCellLength(PyNumericalCommandArgumentsSubItem):
|
|
@@ -10063,9 +10066,9 @@ class Root(PyMenu):
|
|
|
10063
10066
|
The maximum cell length for either the tetrahedron, polyhedron, or poly-hexcore volume fill types.
|
|
10064
10067
|
"""
|
|
10065
10068
|
|
|
10066
|
-
class
|
|
10069
|
+
class _HexMinCellLength(PyNumericalCommandArgumentsSubItem):
|
|
10067
10070
|
"""
|
|
10068
|
-
|
|
10071
|
+
The minimum cell length for the hexcore or poly-hexcore volume fill types.
|
|
10069
10072
|
"""
|
|
10070
10073
|
|
|
10071
10074
|
class _Type(PyTextualCommandArgumentsSubItem):
|
|
@@ -10127,7 +10130,7 @@ class Root(PyMenu):
|
|
|
10127
10130
|
self.SizeFieldPeriodicity = self._SizeFieldPeriodicity(self, "SizeFieldPeriodicity", service, rules, path)
|
|
10128
10131
|
self.UseSizeField = self._UseSizeField(self, "UseSizeField", service, rules, path)
|
|
10129
10132
|
self.QualityMethod = self._QualityMethod(self, "QualityMethod", service, rules, path)
|
|
10130
|
-
self.
|
|
10133
|
+
self.ShowVolumeMeshPreferences = self._ShowVolumeMeshPreferences(self, "ShowVolumeMeshPreferences", service, rules, path)
|
|
10131
10134
|
self.TetInSolids = self._TetInSolids(self, "TetInSolids", service, rules, path)
|
|
10132
10135
|
self.AddMultipleQualityMethods = self._AddMultipleQualityMethods(self, "AddMultipleQualityMethods", service, rules, path)
|
|
10133
10136
|
self.MaxCellSizeChange = self._MaxCellSizeChange(self, "MaxCellSizeChange", service, rules, path)
|
|
@@ -10136,9 +10139,9 @@ class Root(PyMenu):
|
|
|
10136
10139
|
self.CheckSelfProximity = self._CheckSelfProximity(self, "CheckSelfProximity", service, rules, path)
|
|
10137
10140
|
self.Avoid1_8Transition = self._Avoid1_8Transition(self, "Avoid1_8Transition", service, rules, path)
|
|
10138
10141
|
self.MinFaceArea = self._MinFaceArea(self, "MinFaceArea", service, rules, path)
|
|
10139
|
-
self.
|
|
10142
|
+
self.PolyInSolids = self._PolyInSolids(self, "PolyInSolids", service, rules, path)
|
|
10140
10143
|
self.SolidGrowthRate = self._SolidGrowthRate(self, "SolidGrowthRate", service, rules, path)
|
|
10141
|
-
self.
|
|
10144
|
+
self.MinEdgeLength = self._MinEdgeLength(self, "MinEdgeLength", service, rules, path)
|
|
10142
10145
|
self.QualityWarningLimit = self._QualityWarningLimit(self, "QualityWarningLimit", service, rules, path)
|
|
10143
10146
|
|
|
10144
10147
|
class _MergeBodyLabels(PyTextualCommandArgumentsSubItem):
|
|
@@ -10176,9 +10179,9 @@ class Root(PyMenu):
|
|
|
10176
10179
|
Choose from several different types of mesh quality controls (skewness, aspect ratio, change in size, and so on). Choices include Orthogonal (the default for the workflows), Enhanced Orthogonal, and Skewness. For more information, see More... .
|
|
10177
10180
|
"""
|
|
10178
10181
|
|
|
10179
|
-
class
|
|
10182
|
+
class _ShowVolumeMeshPreferences(PyParameterCommandArgumentsSubItem):
|
|
10180
10183
|
"""
|
|
10181
|
-
|
|
10184
|
+
Display advanced options that you may want to apply to the task.
|
|
10182
10185
|
"""
|
|
10183
10186
|
|
|
10184
10187
|
class _TetInSolids(PyTextualCommandArgumentsSubItem):
|
|
@@ -10221,9 +10224,9 @@ class Root(PyMenu):
|
|
|
10221
10224
|
Argument MinFaceArea.
|
|
10222
10225
|
"""
|
|
10223
10226
|
|
|
10224
|
-
class
|
|
10227
|
+
class _PolyInSolids(PyTextualCommandArgumentsSubItem):
|
|
10225
10228
|
"""
|
|
10226
|
-
|
|
10229
|
+
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.
|
|
10227
10230
|
"""
|
|
10228
10231
|
|
|
10229
10232
|
class _SolidGrowthRate(PyNumericalCommandArgumentsSubItem):
|
|
@@ -10231,9 +10234,9 @@ class Root(PyMenu):
|
|
|
10231
10234
|
Specify the rate of growth for a tetrahedron or polyhedron mesh.
|
|
10232
10235
|
"""
|
|
10233
10236
|
|
|
10234
|
-
class
|
|
10237
|
+
class _MinEdgeLength(PyNumericalCommandArgumentsSubItem):
|
|
10235
10238
|
"""
|
|
10236
|
-
|
|
10239
|
+
Argument MinEdgeLength.
|
|
10237
10240
|
"""
|
|
10238
10241
|
|
|
10239
10242
|
class _QualityWarningLimit(PyNumericalCommandArgumentsSubItem):
|
|
@@ -10255,10 +10258,10 @@ class Root(PyMenu):
|
|
|
10255
10258
|
self.PrismGapFactor = self._PrismGapFactor(self, "PrismGapFactor", service, rules, path)
|
|
10256
10259
|
self.IgnoreInflation = self._IgnoreInflation(self, "IgnoreInflation", service, rules, path)
|
|
10257
10260
|
self.MergeBoundaryLayers = self._MergeBoundaryLayers(self, "MergeBoundaryLayers", service, rules, path)
|
|
10258
|
-
self.NormalSmoothRelaxationFactor = self._NormalSmoothRelaxationFactor(self, "NormalSmoothRelaxationFactor", service, rules, path)
|
|
10259
10261
|
self.ShowPrismPreferences = self._ShowPrismPreferences(self, "ShowPrismPreferences", service, rules, path)
|
|
10260
|
-
self.
|
|
10262
|
+
self.NormalSmoothRelaxationFactor = self._NormalSmoothRelaxationFactor(self, "NormalSmoothRelaxationFactor", service, rules, path)
|
|
10261
10263
|
self.StairstepExposedQuads = self._StairstepExposedQuads(self, "StairstepExposedQuads", service, rules, path)
|
|
10264
|
+
self.PrismMinAspectRatio = self._PrismMinAspectRatio(self, "PrismMinAspectRatio", service, rules, path)
|
|
10262
10265
|
self.PrismAdjacentAngle = self._PrismAdjacentAngle(self, "PrismAdjacentAngle", service, rules, path)
|
|
10263
10266
|
|
|
10264
10267
|
class _PrismKeepFirstLayer(PyTextualCommandArgumentsSubItem):
|
|
@@ -10296,19 +10299,14 @@ class Root(PyMenu):
|
|
|
10296
10299
|
Choose whether or not you want to have the boundary layer mesh merged into the bulk mesh.
|
|
10297
10300
|
"""
|
|
10298
10301
|
|
|
10299
|
-
class _NormalSmoothRelaxationFactor(PyNumericalCommandArgumentsSubItem):
|
|
10300
|
-
"""
|
|
10301
|
-
Specify the smoothness factor for normal prism layers. Increasing this value will generate more prism layers especially near sharp corners.
|
|
10302
|
-
"""
|
|
10303
|
-
|
|
10304
10302
|
class _ShowPrismPreferences(PyParameterCommandArgumentsSubItem):
|
|
10305
10303
|
"""
|
|
10306
10304
|
Display global settings for your boundary layers. Note that these settings are not applied for Multizone boundary layers
|
|
10307
10305
|
"""
|
|
10308
10306
|
|
|
10309
|
-
class
|
|
10307
|
+
class _NormalSmoothRelaxationFactor(PyNumericalCommandArgumentsSubItem):
|
|
10310
10308
|
"""
|
|
10311
|
-
|
|
10309
|
+
Specify the smoothness factor for normal prism layers. Increasing this value will generate more prism layers especially near sharp corners.
|
|
10312
10310
|
"""
|
|
10313
10311
|
|
|
10314
10312
|
class _StairstepExposedQuads(PyTextualCommandArgumentsSubItem):
|
|
@@ -10316,6 +10314,11 @@ class Root(PyMenu):
|
|
|
10316
10314
|
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.
|
|
10317
10315
|
"""
|
|
10318
10316
|
|
|
10317
|
+
class _PrismMinAspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
10318
|
+
"""
|
|
10319
|
+
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.
|
|
10320
|
+
"""
|
|
10321
|
+
|
|
10319
10322
|
class _PrismAdjacentAngle(PyNumericalCommandArgumentsSubItem):
|
|
10320
10323
|
"""
|
|
10321
10324
|
Specify the angle for which the boundary layer would imprint on an adjacent boundary.
|
|
@@ -10328,19 +10331,19 @@ class Root(PyMenu):
|
|
|
10328
10331
|
|
|
10329
10332
|
def __init__(self, parent, attr, service, rules, path):
|
|
10330
10333
|
super().__init__(parent, attr, service, rules, path)
|
|
10331
|
-
self.AutoOrderControls = self._AutoOrderControls(self, "AutoOrderControls", service, rules, path)
|
|
10332
10334
|
self.ShowGlobalThinVolumePreferences = self._ShowGlobalThinVolumePreferences(self, "ShowGlobalThinVolumePreferences", service, rules, path)
|
|
10333
|
-
self.StairStep = self._StairStep(self, "StairStep", service, rules, path)
|
|
10334
10335
|
self.MinAspectRatio = self._MinAspectRatio(self, "MinAspectRatio", service, rules, path)
|
|
10336
|
+
self.StairStep = self._StairStep(self, "StairStep", service, rules, path)
|
|
10337
|
+
self.AutoOrderControls = self._AutoOrderControls(self, "AutoOrderControls", service, rules, path)
|
|
10335
10338
|
|
|
10336
|
-
class
|
|
10339
|
+
class _ShowGlobalThinVolumePreferences(PyParameterCommandArgumentsSubItem):
|
|
10337
10340
|
"""
|
|
10338
|
-
|
|
10341
|
+
Display global settings for thin volume meshing.
|
|
10339
10342
|
"""
|
|
10340
10343
|
|
|
10341
|
-
class
|
|
10344
|
+
class _MinAspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
10342
10345
|
"""
|
|
10343
|
-
|
|
10346
|
+
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.
|
|
10344
10347
|
"""
|
|
10345
10348
|
|
|
10346
10349
|
class _StairStep(PyTextualCommandArgumentsSubItem):
|
|
@@ -10348,9 +10351,9 @@ class Root(PyMenu):
|
|
|
10348
10351
|
Use this option to invoke stair-stepping at thin volume mesh regions.
|
|
10349
10352
|
"""
|
|
10350
10353
|
|
|
10351
|
-
class
|
|
10354
|
+
class _AutoOrderControls(PyTextualCommandArgumentsSubItem):
|
|
10352
10355
|
"""
|
|
10353
|
-
|
|
10356
|
+
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.
|
|
10354
10357
|
"""
|
|
10355
10358
|
|
|
10356
10359
|
class _InvokePrimsControl(PyTextualCommandArgumentsSubItem):
|
|
@@ -10500,8 +10503,8 @@ class Root(PyMenu):
|
|
|
10500
10503
|
self.SaveSizeFieldFile = self._SaveSizeFieldFile(self, "SaveSizeFieldFile", service, rules, path)
|
|
10501
10504
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
10502
10505
|
self.ScopeProximityTo = self._ScopeProximityTo(self, "ScopeProximityTo", service, rules, path)
|
|
10503
|
-
self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
|
|
10504
10506
|
self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
|
|
10507
|
+
self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
|
|
10505
10508
|
self.SaveSizeField = self._SaveSizeField(self, "SaveSizeField", service, rules, path)
|
|
10506
10509
|
self.UseSizeFiles = self._UseSizeFiles(self, "UseSizeFiles", service, rules, path)
|
|
10507
10510
|
self.AutoCreateScopedSizing = self._AutoCreateScopedSizing(self, "AutoCreateScopedSizing", service, rules, path)
|
|
@@ -10531,14 +10534,14 @@ class Root(PyMenu):
|
|
|
10531
10534
|
Argument ScopeProximityTo.
|
|
10532
10535
|
"""
|
|
10533
10536
|
|
|
10534
|
-
class
|
|
10537
|
+
class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
10535
10538
|
"""
|
|
10536
|
-
Argument
|
|
10539
|
+
Argument CurvatureNormalAngle.
|
|
10537
10540
|
"""
|
|
10538
10541
|
|
|
10539
|
-
class
|
|
10542
|
+
class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
|
|
10540
10543
|
"""
|
|
10541
|
-
Argument
|
|
10544
|
+
Argument PreviewSizefield.
|
|
10542
10545
|
"""
|
|
10543
10546
|
|
|
10544
10547
|
class _SaveSizeField(PyParameterCommandArgumentsSubItem):
|
|
@@ -11011,32 +11014,32 @@ class Root(PyMenu):
|
|
|
11011
11014
|
|
|
11012
11015
|
def __init__(self, parent, attr, service, rules, path):
|
|
11013
11016
|
super().__init__(parent, attr, service, rules, path)
|
|
11014
|
-
self.HeightNode = self._HeightNode(self, "HeightNode", service, rules, path)
|
|
11015
11017
|
self.X_Offset = self._X_Offset(self, "X-Offset", service, rules, path)
|
|
11018
|
+
self.HeightNode = self._HeightNode(self, "HeightNode", service, rules, path)
|
|
11016
11019
|
self.HeightBackInc = self._HeightBackInc(self, "HeightBackInc", service, rules, path)
|
|
11017
11020
|
self.X1 = self._X1(self, "X1", service, rules, path)
|
|
11018
11021
|
self.Y1 = self._Y1(self, "Y1", service, rules, path)
|
|
11019
11022
|
self.Z_Offset = self._Z_Offset(self, "Z-Offset", service, rules, path)
|
|
11020
|
-
self.Z1 = self._Z1(self, "Z1", service, rules, path)
|
|
11021
|
-
self.Node1 = self._Node1(self, "Node1", service, rules, path)
|
|
11022
11023
|
self.Z2 = self._Z2(self, "Z2", service, rules, path)
|
|
11024
|
+
self.Node1 = self._Node1(self, "Node1", service, rules, path)
|
|
11025
|
+
self.Z1 = self._Z1(self, "Z1", service, rules, path)
|
|
11023
11026
|
self.Radius2 = self._Radius2(self, "Radius2", service, rules, path)
|
|
11024
11027
|
self.Y2 = self._Y2(self, "Y2", service, rules, path)
|
|
11025
11028
|
self.Node3 = self._Node3(self, "Node3", service, rules, path)
|
|
11026
|
-
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
11027
|
-
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
11028
11029
|
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
11030
|
+
self.Y_Offset = self._Y_Offset(self, "Y-Offset", service, rules, path)
|
|
11031
|
+
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
11029
11032
|
self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
|
|
11030
11033
|
self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
|
|
11031
11034
|
|
|
11032
|
-
class
|
|
11035
|
+
class _X_Offset(PyNumericalCommandArgumentsSubItem):
|
|
11033
11036
|
"""
|
|
11034
|
-
Argument
|
|
11037
|
+
Argument X-Offset.
|
|
11035
11038
|
"""
|
|
11036
11039
|
|
|
11037
|
-
class
|
|
11040
|
+
class _HeightNode(PyTextualCommandArgumentsSubItem):
|
|
11038
11041
|
"""
|
|
11039
|
-
Argument
|
|
11042
|
+
Argument HeightNode.
|
|
11040
11043
|
"""
|
|
11041
11044
|
|
|
11042
11045
|
class _HeightBackInc(PyNumericalCommandArgumentsSubItem):
|
|
@@ -11059,9 +11062,9 @@ class Root(PyMenu):
|
|
|
11059
11062
|
Argument Z-Offset.
|
|
11060
11063
|
"""
|
|
11061
11064
|
|
|
11062
|
-
class
|
|
11065
|
+
class _Z2(PyNumericalCommandArgumentsSubItem):
|
|
11063
11066
|
"""
|
|
11064
|
-
Argument
|
|
11067
|
+
Argument Z2.
|
|
11065
11068
|
"""
|
|
11066
11069
|
|
|
11067
11070
|
class _Node1(PyTextualCommandArgumentsSubItem):
|
|
@@ -11069,9 +11072,9 @@ class Root(PyMenu):
|
|
|
11069
11072
|
Argument Node1.
|
|
11070
11073
|
"""
|
|
11071
11074
|
|
|
11072
|
-
class
|
|
11075
|
+
class _Z1(PyNumericalCommandArgumentsSubItem):
|
|
11073
11076
|
"""
|
|
11074
|
-
Argument
|
|
11077
|
+
Argument Z1.
|
|
11075
11078
|
"""
|
|
11076
11079
|
|
|
11077
11080
|
class _Radius2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -11089,9 +11092,9 @@ class Root(PyMenu):
|
|
|
11089
11092
|
Argument Node3.
|
|
11090
11093
|
"""
|
|
11091
11094
|
|
|
11092
|
-
class
|
|
11095
|
+
class _X2(PyNumericalCommandArgumentsSubItem):
|
|
11093
11096
|
"""
|
|
11094
|
-
Argument
|
|
11097
|
+
Argument X2.
|
|
11095
11098
|
"""
|
|
11096
11099
|
|
|
11097
11100
|
class _Y_Offset(PyNumericalCommandArgumentsSubItem):
|
|
@@ -11099,9 +11102,9 @@ class Root(PyMenu):
|
|
|
11099
11102
|
Argument Y-Offset.
|
|
11100
11103
|
"""
|
|
11101
11104
|
|
|
11102
|
-
class
|
|
11105
|
+
class _Node2(PyTextualCommandArgumentsSubItem):
|
|
11103
11106
|
"""
|
|
11104
|
-
Argument
|
|
11107
|
+
Argument Node2.
|
|
11105
11108
|
"""
|
|
11106
11109
|
|
|
11107
11110
|
class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
|
|
@@ -11635,9 +11638,9 @@ class Root(PyMenu):
|
|
|
11635
11638
|
self.OneZonePer = self._OneZonePer(self, "OneZonePer", service, rules, path)
|
|
11636
11639
|
self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
|
|
11637
11640
|
self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
|
|
11638
|
-
self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
|
|
11639
|
-
self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
|
|
11640
11641
|
self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
|
|
11642
|
+
self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
|
|
11643
|
+
self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
|
|
11641
11644
|
|
|
11642
11645
|
class _SavePMDBIntermediateFile(PyParameterCommandArgumentsSubItem):
|
|
11643
11646
|
"""
|
|
@@ -11679,9 +11682,9 @@ class Root(PyMenu):
|
|
|
11679
11682
|
Argument ExtractFeatures.
|
|
11680
11683
|
"""
|
|
11681
11684
|
|
|
11682
|
-
class
|
|
11685
|
+
class _ImportNamedSelections(PyParameterCommandArgumentsSubItem):
|
|
11683
11686
|
"""
|
|
11684
|
-
Argument
|
|
11687
|
+
Argument ImportNamedSelections.
|
|
11685
11688
|
"""
|
|
11686
11689
|
|
|
11687
11690
|
class _ImportPartNames(PyParameterCommandArgumentsSubItem):
|
|
@@ -11689,9 +11692,9 @@ class Root(PyMenu):
|
|
|
11689
11692
|
Argument ImportPartNames.
|
|
11690
11693
|
"""
|
|
11691
11694
|
|
|
11692
|
-
class
|
|
11695
|
+
class _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
|
|
11693
11696
|
"""
|
|
11694
|
-
Argument
|
|
11697
|
+
Argument UsePartOrBodyAsSuffix.
|
|
11695
11698
|
"""
|
|
11696
11699
|
|
|
11697
11700
|
def create_instance(self) -> _ImportBodyOfInfluenceGeometryCommandArguments:
|
|
@@ -11782,12 +11785,14 @@ class Root(PyMenu):
|
|
|
11782
11785
|
def __init__(self, parent, attr, service, rules, path):
|
|
11783
11786
|
super().__init__(parent, attr, service, rules, path)
|
|
11784
11787
|
self.EdgeLabel = self._EdgeLabel(self, "EdgeLabel", service, rules, path)
|
|
11785
|
-
self.
|
|
11788
|
+
self.MaxFacetLengthOption = self._MaxFacetLengthOption(self, "MaxFacetLengthOption", service, rules, path)
|
|
11786
11789
|
self.CISeparation = self._CISeparation(self, "CISeparation", service, rules, path)
|
|
11787
|
-
self.
|
|
11790
|
+
self.FacetedBodies = self._FacetedBodies(self, "FacetedBodies", service, rules, path)
|
|
11788
11791
|
self.CIRefaceting = self._CIRefaceting(self, "CIRefaceting", service, rules, path)
|
|
11792
|
+
self.MergeNodes = self._MergeNodes(self, "MergeNodes", service, rules, path)
|
|
11789
11793
|
self.AutomaticObjectCreation = self._AutomaticObjectCreation(self, "AutomaticObjectCreation", service, rules, path)
|
|
11790
11794
|
self.MaxFacetLength = self._MaxFacetLength(self, "MaxFacetLength", service, rules, path)
|
|
11795
|
+
self.MaxFacetLengthRatio = self._MaxFacetLengthRatio(self, "MaxFacetLengthRatio", service, rules, path)
|
|
11791
11796
|
self.ShowImportCadPreferences = self._ShowImportCadPreferences(self, "ShowImportCadPreferences", service, rules, path)
|
|
11792
11797
|
self.ExtractAngle = self._ExtractAngle(self, "ExtractAngle", service, rules, path)
|
|
11793
11798
|
self.CISeparationAngle = self._CISeparationAngle(self, "CISeparationAngle", service, rules, path)
|
|
@@ -11798,9 +11803,9 @@ class Root(PyMenu):
|
|
|
11798
11803
|
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.
|
|
11799
11804
|
"""
|
|
11800
11805
|
|
|
11801
|
-
class
|
|
11806
|
+
class _MaxFacetLengthOption(PyTextualCommandArgumentsSubItem):
|
|
11802
11807
|
"""
|
|
11803
|
-
|
|
11808
|
+
Argument MaxFacetLengthOption.
|
|
11804
11809
|
"""
|
|
11805
11810
|
|
|
11806
11811
|
class _CISeparation(PyTextualCommandArgumentsSubItem):
|
|
@@ -11808,9 +11813,9 @@ class Root(PyMenu):
|
|
|
11808
11813
|
Choose whether or not you are going to separate zones upon import based on a region, a region and a specified separation angle, a face, or neither. This is required to select faces for local sizing. If Named Selections have already been defined at these locations, then separation is not needed.
|
|
11809
11814
|
"""
|
|
11810
11815
|
|
|
11811
|
-
class
|
|
11816
|
+
class _FacetedBodies(PyTextualCommandArgumentsSubItem):
|
|
11812
11817
|
"""
|
|
11813
|
-
|
|
11818
|
+
When performing faceting and wrapping operations in your CAD tool lead to non-CAD geometries, set this option to yes to be able to use such geometries in the workflow. To ensure a relatively good quality surface mesh, you should shrink wrap any faceted bodies. In addition, each shrink-wrapped faceted body should be defined in its own unique component within the CAD environment.
|
|
11814
11819
|
"""
|
|
11815
11820
|
|
|
11816
11821
|
class _CIRefaceting(PyParameterCommandArgumentsSubItem):
|
|
@@ -11818,6 +11823,11 @@ class Root(PyMenu):
|
|
|
11818
11823
|
Enable this option to be able to set the Tolerance and the Max Facet Length custom faceting options for the imported geometry.
|
|
11819
11824
|
"""
|
|
11820
11825
|
|
|
11826
|
+
class _MergeNodes(PyTextualCommandArgumentsSubItem):
|
|
11827
|
+
"""
|
|
11828
|
+
Argument MergeNodes.
|
|
11829
|
+
"""
|
|
11830
|
+
|
|
11821
11831
|
class _AutomaticObjectCreation(PyTextualCommandArgumentsSubItem):
|
|
11822
11832
|
"""
|
|
11823
11833
|
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.
|
|
@@ -11828,6 +11838,11 @@ class Root(PyMenu):
|
|
|
11828
11838
|
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.
|
|
11829
11839
|
"""
|
|
11830
11840
|
|
|
11841
|
+
class _MaxFacetLengthRatio(PyNumericalCommandArgumentsSubItem):
|
|
11842
|
+
"""
|
|
11843
|
+
Argument MaxFacetLengthRatio.
|
|
11844
|
+
"""
|
|
11845
|
+
|
|
11831
11846
|
class _ShowImportCadPreferences(PyParameterCommandArgumentsSubItem):
|
|
11832
11847
|
"""
|
|
11833
11848
|
Display advanced options that you may want to apply to the task.
|
|
@@ -11898,9 +11913,9 @@ class Root(PyMenu):
|
|
|
11898
11913
|
self.OneZonePer = self._OneZonePer(self, "OneZonePer", service, rules, path)
|
|
11899
11914
|
self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
|
|
11900
11915
|
self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
|
|
11901
|
-
self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
|
|
11902
|
-
self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
|
|
11903
11916
|
self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
|
|
11917
|
+
self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
|
|
11918
|
+
self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
|
|
11904
11919
|
|
|
11905
11920
|
class _SavePMDBIntermediateFile(PyParameterCommandArgumentsSubItem):
|
|
11906
11921
|
"""
|
|
@@ -11942,9 +11957,9 @@ class Root(PyMenu):
|
|
|
11942
11957
|
Argument ImportNamedSelections.
|
|
11943
11958
|
"""
|
|
11944
11959
|
|
|
11945
|
-
class
|
|
11960
|
+
class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
|
|
11946
11961
|
"""
|
|
11947
|
-
Argument
|
|
11962
|
+
Argument ExtractFeatures.
|
|
11948
11963
|
"""
|
|
11949
11964
|
|
|
11950
11965
|
class _ImportPartNames(PyParameterCommandArgumentsSubItem):
|
|
@@ -11952,9 +11967,9 @@ class Root(PyMenu):
|
|
|
11952
11967
|
Argument ImportPartNames.
|
|
11953
11968
|
"""
|
|
11954
11969
|
|
|
11955
|
-
class
|
|
11970
|
+
class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
|
|
11956
11971
|
"""
|
|
11957
|
-
Argument
|
|
11972
|
+
Argument ImportCurvatureDataFromCAD.
|
|
11958
11973
|
"""
|
|
11959
11974
|
|
|
11960
11975
|
def create_instance(self) -> _ImportGeometryCommandArguments:
|
|
@@ -12280,8 +12295,8 @@ class Root(PyMenu):
|
|
|
12280
12295
|
def __init__(self, parent, attr, service, rules, path):
|
|
12281
12296
|
super().__init__(parent, attr, service, rules, path)
|
|
12282
12297
|
self.FirstNumber = self._FirstNumber(self, "FirstNumber", service, rules, path)
|
|
12283
|
-
self.NbCellsPerUnit = self._NbCellsPerUnit(self, "NbCellsPerUnit", service, rules, path)
|
|
12284
12298
|
self.CustomPatternString = self._CustomPatternString(self, "CustomPatternString", service, rules, path)
|
|
12299
|
+
self.NbCellsPerUnit = self._NbCellsPerUnit(self, "NbCellsPerUnit", service, rules, path)
|
|
12285
12300
|
self.InvokeBatteryModelingOptions = self._InvokeBatteryModelingOptions(self, "InvokeBatteryModelingOptions", service, rules, path)
|
|
12286
12301
|
self.UseCustomPattern = self._UseCustomPattern(self, "UseCustomPattern", service, rules, path)
|
|
12287
12302
|
|
|
@@ -12290,14 +12305,14 @@ class Root(PyMenu):
|
|
|
12290
12305
|
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...
|
|
12291
12306
|
"""
|
|
12292
12307
|
|
|
12293
|
-
class
|
|
12308
|
+
class _CustomPatternString(PyTextualCommandArgumentsSubItem):
|
|
12294
12309
|
"""
|
|
12295
|
-
|
|
12310
|
+
Argument CustomPatternString.
|
|
12296
12311
|
"""
|
|
12297
12312
|
|
|
12298
|
-
class
|
|
12313
|
+
class _NbCellsPerUnit(PyNumericalCommandArgumentsSubItem):
|
|
12299
12314
|
"""
|
|
12300
|
-
|
|
12315
|
+
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...
|
|
12301
12316
|
"""
|
|
12302
12317
|
|
|
12303
12318
|
class _InvokeBatteryModelingOptions(PyTextualCommandArgumentsSubItem):
|
|
@@ -12390,9 +12405,9 @@ class Root(PyMenu):
|
|
|
12390
12405
|
super().__init__(parent, attr, service, rules, path)
|
|
12391
12406
|
self.FacetMaxEdgeLength = self._FacetMaxEdgeLength(self, "FacetMaxEdgeLength", service, rules, path)
|
|
12392
12407
|
self.FacetResolution = self._FacetResolution(self, "FacetResolution", service, rules, path)
|
|
12393
|
-
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
12394
|
-
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
12395
12408
|
self.MaxEdgeLengthFactor = self._MaxEdgeLengthFactor(self, "MaxEdgeLengthFactor", service, rules, path)
|
|
12409
|
+
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
12410
|
+
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
12396
12411
|
self.MaxEdgeLength = self._MaxEdgeLength(self, "MaxEdgeLength", service, rules, path)
|
|
12397
12412
|
self.CustomNormalAngle = self._CustomNormalAngle(self, "CustomNormalAngle", service, rules, path)
|
|
12398
12413
|
self.CustomDeviation = self._CustomDeviation(self, "CustomDeviation", service, rules, path)
|
|
@@ -12408,9 +12423,9 @@ class Root(PyMenu):
|
|
|
12408
12423
|
Argument FacetResolution.
|
|
12409
12424
|
"""
|
|
12410
12425
|
|
|
12411
|
-
class
|
|
12426
|
+
class _MaxEdgeLengthFactor(PyNumericalCommandArgumentsSubItem):
|
|
12412
12427
|
"""
|
|
12413
|
-
Argument
|
|
12428
|
+
Argument MaxEdgeLengthFactor.
|
|
12414
12429
|
"""
|
|
12415
12430
|
|
|
12416
12431
|
class _NormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
@@ -12418,9 +12433,9 @@ class Root(PyMenu):
|
|
|
12418
12433
|
Argument NormalAngle.
|
|
12419
12434
|
"""
|
|
12420
12435
|
|
|
12421
|
-
class
|
|
12436
|
+
class _Deviation(PyNumericalCommandArgumentsSubItem):
|
|
12422
12437
|
"""
|
|
12423
|
-
Argument
|
|
12438
|
+
Argument Deviation.
|
|
12424
12439
|
"""
|
|
12425
12440
|
|
|
12426
12441
|
class _MaxEdgeLength(PyNumericalCommandArgumentsSubItem):
|
|
@@ -12548,8 +12563,8 @@ class Root(PyMenu):
|
|
|
12548
12563
|
self.WrapMax = self._WrapMax(self, "WrapMax", service, rules, path)
|
|
12549
12564
|
self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
|
|
12550
12565
|
self.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", service, rules, path)
|
|
12551
|
-
self.InitialSizeControl = self._InitialSizeControl(self, "InitialSizeControl", service, rules, path)
|
|
12552
12566
|
self.SizingType = self._SizingType(self, "SizingType", service, rules, path)
|
|
12567
|
+
self.InitialSizeControl = self._InitialSizeControl(self, "InitialSizeControl", service, rules, path)
|
|
12553
12568
|
self.WrapCurvatureNormalAngle = self._WrapCurvatureNormalAngle(self, "WrapCurvatureNormalAngle", service, rules, path)
|
|
12554
12569
|
self.CellsPerGap = self._CellsPerGap(self, "CellsPerGap", service, rules, path)
|
|
12555
12570
|
self.TargetSizeControl = self._TargetSizeControl(self, "TargetSizeControl", service, rules, path)
|
|
@@ -12605,14 +12620,14 @@ class Root(PyMenu):
|
|
|
12605
12620
|
Specify the increase in element edge length with each succeeding layer of elements.
|
|
12606
12621
|
"""
|
|
12607
12622
|
|
|
12608
|
-
class
|
|
12623
|
+
class _SizingType(PyTextualCommandArgumentsSubItem):
|
|
12609
12624
|
"""
|
|
12610
|
-
|
|
12625
|
+
Choose the type of sizing control (curvature, proximity, soft, or boi).
|
|
12611
12626
|
"""
|
|
12612
12627
|
|
|
12613
|
-
class
|
|
12628
|
+
class _InitialSizeControl(PyParameterCommandArgumentsSubItem):
|
|
12614
12629
|
"""
|
|
12615
|
-
|
|
12630
|
+
Enable this field to display the initial size control in the graphics window.
|
|
12616
12631
|
"""
|
|
12617
12632
|
|
|
12618
12633
|
class _WrapCurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
@@ -13006,8 +13021,8 @@ class Root(PyMenu):
|
|
|
13006
13021
|
self.SaveSizeFieldFile = self._SaveSizeFieldFile(self, "SaveSizeFieldFile", service, rules, path)
|
|
13007
13022
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
13008
13023
|
self.ScopeProximityTo = self._ScopeProximityTo(self, "ScopeProximityTo", service, rules, path)
|
|
13009
|
-
self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
|
|
13010
13024
|
self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
|
|
13025
|
+
self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
|
|
13011
13026
|
self.SaveSizeField = self._SaveSizeField(self, "SaveSizeField", service, rules, path)
|
|
13012
13027
|
self.UseSizeFiles = self._UseSizeFiles(self, "UseSizeFiles", service, rules, path)
|
|
13013
13028
|
self.AutoCreateScopedSizing = self._AutoCreateScopedSizing(self, "AutoCreateScopedSizing", service, rules, path)
|
|
@@ -13037,14 +13052,14 @@ class Root(PyMenu):
|
|
|
13037
13052
|
Argument ScopeProximityTo.
|
|
13038
13053
|
"""
|
|
13039
13054
|
|
|
13040
|
-
class
|
|
13055
|
+
class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
13041
13056
|
"""
|
|
13042
|
-
Argument
|
|
13057
|
+
Argument CurvatureNormalAngle.
|
|
13043
13058
|
"""
|
|
13044
13059
|
|
|
13045
|
-
class
|
|
13060
|
+
class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
|
|
13046
13061
|
"""
|
|
13047
|
-
Argument
|
|
13062
|
+
Argument PreviewSizefield.
|
|
13048
13063
|
"""
|
|
13049
13064
|
|
|
13050
13065
|
class _SaveSizeField(PyParameterCommandArgumentsSubItem):
|
|
@@ -13326,8 +13341,8 @@ class Root(PyMenu):
|
|
|
13326
13341
|
super().__init__(parent, attr, service, rules, path)
|
|
13327
13342
|
self.FacetMaxEdgeLength = self._FacetMaxEdgeLength(self, "FacetMaxEdgeLength", service, rules, path)
|
|
13328
13343
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
13329
|
-
self.MaxEdgeLengthFactor = self._MaxEdgeLengthFactor(self, "MaxEdgeLengthFactor", service, rules, path)
|
|
13330
13344
|
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
13345
|
+
self.MaxEdgeLengthFactor = self._MaxEdgeLengthFactor(self, "MaxEdgeLengthFactor", service, rules, path)
|
|
13331
13346
|
self.Refacet = self._Refacet(self, "Refacet", service, rules, path)
|
|
13332
13347
|
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
13333
13348
|
|
|
@@ -13341,14 +13356,14 @@ class Root(PyMenu):
|
|
|
13341
13356
|
Specify a maximum element size for the imported model to avoid very large facets during the file import.
|
|
13342
13357
|
"""
|
|
13343
13358
|
|
|
13344
|
-
class
|
|
13359
|
+
class _NormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
13345
13360
|
"""
|
|
13346
|
-
|
|
13361
|
+
Specify a rotational angle (in degrees) of transformation.
|
|
13347
13362
|
"""
|
|
13348
13363
|
|
|
13349
|
-
class
|
|
13364
|
+
class _MaxEdgeLengthFactor(PyNumericalCommandArgumentsSubItem):
|
|
13350
13365
|
"""
|
|
13351
|
-
|
|
13366
|
+
Specifies the maximum size of the facets relative to the bounding box of the geometry.
|
|
13352
13367
|
"""
|
|
13353
13368
|
|
|
13354
13369
|
class _Refacet(PyParameterCommandArgumentsSubItem):
|
|
@@ -13572,6 +13587,47 @@ class Root(PyMenu):
|
|
|
13572
13587
|
if args is not None:
|
|
13573
13588
|
return self._PartReplacementSettingsCommandArguments(*args)
|
|
13574
13589
|
|
|
13590
|
+
class PrepareForVolumeMeshing(PyCommand):
|
|
13591
|
+
"""
|
|
13592
|
+
Command PrepareForVolumeMeshing.
|
|
13593
|
+
|
|
13594
|
+
Parameters
|
|
13595
|
+
----------
|
|
13596
|
+
MergeZonesBasedOnLabels : bool
|
|
13597
|
+
SoftTargetSkewness : float
|
|
13598
|
+
HardTargetSkewness : float
|
|
13599
|
+
|
|
13600
|
+
Returns
|
|
13601
|
+
-------
|
|
13602
|
+
bool
|
|
13603
|
+
"""
|
|
13604
|
+
class _PrepareForVolumeMeshingCommandArguments(PyCommandArguments):
|
|
13605
|
+
def __init__(self, service, rules, command, path, id):
|
|
13606
|
+
super().__init__(service, rules, command, path, id)
|
|
13607
|
+
self.MergeZonesBasedOnLabels = self._MergeZonesBasedOnLabels(self, "MergeZonesBasedOnLabels", service, rules, path)
|
|
13608
|
+
self.SoftTargetSkewness = self._SoftTargetSkewness(self, "SoftTargetSkewness", service, rules, path)
|
|
13609
|
+
self.HardTargetSkewness = self._HardTargetSkewness(self, "HardTargetSkewness", service, rules, path)
|
|
13610
|
+
|
|
13611
|
+
class _MergeZonesBasedOnLabels(PyParameterCommandArgumentsSubItem):
|
|
13612
|
+
"""
|
|
13613
|
+
Argument MergeZonesBasedOnLabels.
|
|
13614
|
+
"""
|
|
13615
|
+
|
|
13616
|
+
class _SoftTargetSkewness(PyNumericalCommandArgumentsSubItem):
|
|
13617
|
+
"""
|
|
13618
|
+
Argument SoftTargetSkewness.
|
|
13619
|
+
"""
|
|
13620
|
+
|
|
13621
|
+
class _HardTargetSkewness(PyNumericalCommandArgumentsSubItem):
|
|
13622
|
+
"""
|
|
13623
|
+
Argument HardTargetSkewness.
|
|
13624
|
+
"""
|
|
13625
|
+
|
|
13626
|
+
def create_instance(self) -> _PrepareForVolumeMeshingCommandArguments:
|
|
13627
|
+
args = self._get_create_instance_args()
|
|
13628
|
+
if args is not None:
|
|
13629
|
+
return self._PrepareForVolumeMeshingCommandArguments(*args)
|
|
13630
|
+
|
|
13575
13631
|
class RemeshSurface(PyCommand):
|
|
13576
13632
|
"""
|
|
13577
13633
|
Command RemeshSurface.
|
|
@@ -14032,10 +14088,10 @@ class Root(PyMenu):
|
|
|
14032
14088
|
self.ConnectLabelWildcard = self._ConnectLabelWildcard(self, "ConnectLabelWildcard", service, rules, path)
|
|
14033
14089
|
self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
|
|
14034
14090
|
self.RelativeShareTopologyTolerance = self._RelativeShareTopologyTolerance(self, "RelativeShareTopologyTolerance", service, rules, path)
|
|
14035
|
-
self.
|
|
14091
|
+
self.ShareTopologyAngle = self._ShareTopologyAngle(self, "ShareTopologyAngle", service, rules, path)
|
|
14036
14092
|
self.ExecuteJoinIntersect = self._ExecuteJoinIntersect(self, "ExecuteJoinIntersect", service, rules, path)
|
|
14037
14093
|
self.Operation = self._Operation(self, "Operation", service, rules, path)
|
|
14038
|
-
self.
|
|
14094
|
+
self.FluidLabelWildcard = self._FluidLabelWildcard(self, "FluidLabelWildcard", service, rules, path)
|
|
14039
14095
|
self.STToleranceIncrement = self._STToleranceIncrement(self, "STToleranceIncrement", service, rules, path)
|
|
14040
14096
|
self.IntfLabelList = self._IntfLabelList(self, "IntfLabelList", service, rules, path)
|
|
14041
14097
|
self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
|
|
@@ -14068,9 +14124,9 @@ class Root(PyMenu):
|
|
|
14068
14124
|
Specify the relative tolerance for joining or intersecting face pairs, or the relative tolerance for connecting edge and face pairs.
|
|
14069
14125
|
"""
|
|
14070
14126
|
|
|
14071
|
-
class
|
|
14127
|
+
class _ShareTopologyAngle(PyNumericalCommandArgumentsSubItem):
|
|
14072
14128
|
"""
|
|
14073
|
-
|
|
14129
|
+
Specify the threshold angle for joining face pairs.
|
|
14074
14130
|
"""
|
|
14075
14131
|
|
|
14076
14132
|
class _ExecuteJoinIntersect(PyTextualCommandArgumentsSubItem):
|
|
@@ -14083,9 +14139,9 @@ class Root(PyMenu):
|
|
|
14083
14139
|
Choose whether to apply share topology using the Join-Intersect method where you join and/or intersect the problematic faces, or using the Interface Connect method where you connect edges of overlapping face pairs. Note that imprinting of overlapping faces in SCDM/Discovery is highly recommended for the Interface Connect method.
|
|
14084
14140
|
"""
|
|
14085
14141
|
|
|
14086
|
-
class
|
|
14142
|
+
class _FluidLabelWildcard(PyTextualCommandArgumentsSubItem):
|
|
14087
14143
|
"""
|
|
14088
|
-
|
|
14144
|
+
Argument FluidLabelWildcard.
|
|
14089
14145
|
"""
|
|
14090
14146
|
|
|
14091
14147
|
class _STToleranceIncrement(PyNumericalCommandArgumentsSubItem):
|
|
@@ -14198,12 +14254,12 @@ class Root(PyMenu):
|
|
|
14198
14254
|
self.SMRemoveStep = self._SMRemoveStep(self, "SMRemoveStep", service, rules, path)
|
|
14199
14255
|
self.ParallelRegionCompute = self._ParallelRegionCompute(self, "ParallelRegionCompute", service, rules, path)
|
|
14200
14256
|
self.SMStepWidth = self._SMStepWidth(self, "SMStepWidth", service, rules, path)
|
|
14201
|
-
self.VolumeMeshMaxSize = self._VolumeMeshMaxSize(self, "VolumeMeshMaxSize", service, rules, path)
|
|
14202
|
-
self.AutoAssignZoneTypes = self._AutoAssignZoneTypes(self, "AutoAssignZoneTypes", service, rules, path)
|
|
14203
14257
|
self.SMQualityMaxAngle = self._SMQualityMaxAngle(self, "SMQualityMaxAngle", service, rules, path)
|
|
14204
|
-
self.
|
|
14205
|
-
self.
|
|
14258
|
+
self.AutoAssignZoneTypes = self._AutoAssignZoneTypes(self, "AutoAssignZoneTypes", service, rules, path)
|
|
14259
|
+
self.VolumeMeshMaxSize = self._VolumeMeshMaxSize(self, "VolumeMeshMaxSize", service, rules, path)
|
|
14206
14260
|
self.SMQualityImproveLimit = self._SMQualityImproveLimit(self, "SMQualityImproveLimit", service, rules, path)
|
|
14261
|
+
self.AutoSurfaceRemesh = self._AutoSurfaceRemesh(self, "AutoSurfaceRemesh", service, rules, path)
|
|
14262
|
+
self.SelfIntersectCheck = self._SelfIntersectCheck(self, "SelfIntersectCheck", service, rules, path)
|
|
14207
14263
|
self.SetVolumeMeshMaxSize = self._SetVolumeMeshMaxSize(self, "SetVolumeMeshMaxSize", service, rules, path)
|
|
14208
14264
|
|
|
14209
14265
|
class _SMQualityCollapseLimit(PyNumericalCommandArgumentsSubItem):
|
|
@@ -14261,9 +14317,9 @@ class Root(PyMenu):
|
|
|
14261
14317
|
Argument SMStepWidth.
|
|
14262
14318
|
"""
|
|
14263
14319
|
|
|
14264
|
-
class
|
|
14320
|
+
class _SMQualityMaxAngle(PyNumericalCommandArgumentsSubItem):
|
|
14265
14321
|
"""
|
|
14266
|
-
Argument
|
|
14322
|
+
Argument SMQualityMaxAngle.
|
|
14267
14323
|
"""
|
|
14268
14324
|
|
|
14269
14325
|
class _AutoAssignZoneTypes(PyTextualCommandArgumentsSubItem):
|
|
@@ -14271,14 +14327,14 @@ class Root(PyMenu):
|
|
|
14271
14327
|
Argument AutoAssignZoneTypes.
|
|
14272
14328
|
"""
|
|
14273
14329
|
|
|
14274
|
-
class
|
|
14330
|
+
class _VolumeMeshMaxSize(PyNumericalCommandArgumentsSubItem):
|
|
14275
14331
|
"""
|
|
14276
|
-
Argument
|
|
14332
|
+
Argument VolumeMeshMaxSize.
|
|
14277
14333
|
"""
|
|
14278
14334
|
|
|
14279
|
-
class
|
|
14335
|
+
class _SMQualityImproveLimit(PyNumericalCommandArgumentsSubItem):
|
|
14280
14336
|
"""
|
|
14281
|
-
Argument
|
|
14337
|
+
Argument SMQualityImproveLimit.
|
|
14282
14338
|
"""
|
|
14283
14339
|
|
|
14284
14340
|
class _AutoSurfaceRemesh(PyTextualCommandArgumentsSubItem):
|
|
@@ -14286,9 +14342,9 @@ class Root(PyMenu):
|
|
|
14286
14342
|
Argument AutoSurfaceRemesh.
|
|
14287
14343
|
"""
|
|
14288
14344
|
|
|
14289
|
-
class
|
|
14345
|
+
class _SelfIntersectCheck(PyTextualCommandArgumentsSubItem):
|
|
14290
14346
|
"""
|
|
14291
|
-
Argument
|
|
14347
|
+
Argument SelfIntersectCheck.
|
|
14292
14348
|
"""
|
|
14293
14349
|
|
|
14294
14350
|
class _SetVolumeMeshMaxSize(PyTextualCommandArgumentsSubItem):
|
|
@@ -14380,8 +14436,8 @@ class Root(PyMenu):
|
|
|
14380
14436
|
self.NewLabelObjects = self._NewLabelObjects(self, "NewLabelObjects", service, rules, path)
|
|
14381
14437
|
self.NewLabelCells = self._NewLabelCells(self, "NewLabelCells", service, rules, path)
|
|
14382
14438
|
self.NewLabelType = self._NewLabelType(self, "NewLabelType", service, rules, path)
|
|
14383
|
-
self.NewLabelResolution = self._NewLabelResolution(self, "NewLabelResolution", service, rules, path)
|
|
14384
14439
|
self.NewLabels = self._NewLabels(self, "NewLabels", service, rules, path)
|
|
14440
|
+
self.NewLabelResolution = self._NewLabelResolution(self, "NewLabelResolution", service, rules, path)
|
|
14385
14441
|
self.NewLabelMax = self._NewLabelMax(self, "NewLabelMax", service, rules, path)
|
|
14386
14442
|
self.NewZoneType = self._NewZoneType(self, "NewZoneType", service, rules, path)
|
|
14387
14443
|
self.NewLabelCurvature = self._NewLabelCurvature(self, "NewLabelCurvature", service, rules, path)
|
|
@@ -14402,14 +14458,14 @@ class Root(PyMenu):
|
|
|
14402
14458
|
Argument NewLabelType.
|
|
14403
14459
|
"""
|
|
14404
14460
|
|
|
14405
|
-
class
|
|
14461
|
+
class _NewLabels(PyTextualCommandArgumentsSubItem):
|
|
14406
14462
|
"""
|
|
14407
|
-
Argument
|
|
14463
|
+
Argument NewLabels.
|
|
14408
14464
|
"""
|
|
14409
14465
|
|
|
14410
|
-
class
|
|
14466
|
+
class _NewLabelResolution(PyTextualCommandArgumentsSubItem):
|
|
14411
14467
|
"""
|
|
14412
|
-
Argument
|
|
14468
|
+
Argument NewLabelResolution.
|
|
14413
14469
|
"""
|
|
14414
14470
|
|
|
14415
14471
|
class _NewLabelMax(PyTextualCommandArgumentsSubItem):
|