ansys-fluent-core 0.35.dev0__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 +2 -2
- ansys/fluent/core/codegen/builtin_settingsgen.py +4 -0
- ansys/fluent/core/codegen/settingsgen.py +3 -0
- ansys/fluent/core/generated/api_tree/api_objects.json +1 -1
- ansys/fluent/core/generated/datamodel_231/flicing.py +15 -15
- ansys/fluent/core/generated/datamodel_231/meshing.py +204 -204
- ansys/fluent/core/generated/datamodel_232/flicing.py +55 -55
- ansys/fluent/core/generated/datamodel_232/meshing.py +151 -151
- ansys/fluent/core/generated/datamodel_241/flicing.py +35 -35
- ansys/fluent/core/generated/datamodel_241/meshing.py +256 -256
- ansys/fluent/core/generated/datamodel_242/flicing.py +35 -35
- ansys/fluent/core/generated/datamodel_242/meshing.py +309 -309
- ansys/fluent/core/generated/datamodel_242/part_management.py +6 -6
- ansys/fluent/core/generated/datamodel_251/flicing.py +40 -40
- ansys/fluent/core/generated/datamodel_251/meshing.py +325 -325
- ansys/fluent/core/generated/datamodel_251/part_management.py +3 -3
- ansys/fluent/core/generated/datamodel_252/flicing.py +55 -55
- ansys/fluent/core/generated/datamodel_252/meshing.py +375 -375
- ansys/fluent/core/generated/datamodel_252/part_management.py +10 -10
- ansys/fluent/core/generated/datamodel_261/flicing.py +35 -35
- ansys/fluent/core/generated/datamodel_261/meshing.py +441 -392
- ansys/fluent/core/generated/datamodel_261/meshing_utilities.py +296 -616
- 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 +20 -0
- ansys/fluent/core/generated/solver/settings_261.py +7475 -2873
- ansys/fluent/core/generated/solver/settings_261.pyi +4946 -1937
- ansys/fluent/core/generated/solver/tui_261.py +1762 -678
- ansys/fluent/core/launcher/fluent_container.py +4 -0
- ansys/fluent/core/module_config.py +5 -0
- ansys/fluent/core/search.py +12 -0
- ansys/fluent/core/session_solver.py +5 -4
- ansys/fluent/core/solver/flunits.py +2 -0
- ansys/fluent/core/utils/networking.py +11 -2
- {ansys_fluent_core-0.35.dev0.dist-info → ansys_fluent_core-0.35.dev1.dist-info}/METADATA +8 -7
- {ansys_fluent_core-0.35.dev0.dist-info → ansys_fluent_core-0.35.dev1.dist-info}/RECORD +39 -39
- {ansys_fluent_core-0.35.dev0.dist-info → ansys_fluent_core-0.35.dev1.dist-info}/WHEEL +1 -1
- {ansys_fluent_core-0.35.dev0.dist-info → ansys_fluent_core-0.35.dev1.dist-info/licenses}/LICENSE +0 -0
|
@@ -857,9 +857,9 @@ class Root(PyMenu):
|
|
|
857
857
|
self.SplitPrism = self._SplitPrism(self, "SplitPrism", service, rules, path)
|
|
858
858
|
self.ModifyAtInvalidNormals = self._ModifyAtInvalidNormals(self, "ModifyAtInvalidNormals", service, rules, path)
|
|
859
859
|
self.InvalidNormalMethod = self._InvalidNormalMethod(self, "InvalidNormalMethod", service, rules, path)
|
|
860
|
-
self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
|
|
861
|
-
self.ShowLocalPrismPreferences = self._ShowLocalPrismPreferences(self, "ShowLocalPrismPreferences", service, rules, path)
|
|
862
860
|
self.NumberOfSplitLayers = self._NumberOfSplitLayers(self, "NumberOfSplitLayers", service, rules, path)
|
|
861
|
+
self.ShowLocalPrismPreferences = self._ShowLocalPrismPreferences(self, "ShowLocalPrismPreferences", service, rules, path)
|
|
862
|
+
self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
|
|
863
863
|
self.AllowedTangencyAtInvalidNormals = self._AllowedTangencyAtInvalidNormals(self, "AllowedTangencyAtInvalidNormals", service, rules, path)
|
|
864
864
|
self.RemeshAtInvalidNormals = self._RemeshAtInvalidNormals(self, "RemeshAtInvalidNormals", service, rules, path)
|
|
865
865
|
self.IgnoreBoundaryLayers = self._IgnoreBoundaryLayers(self, "IgnoreBoundaryLayers", service, rules, path)
|
|
@@ -904,9 +904,9 @@ class Root(PyMenu):
|
|
|
904
904
|
Argument InvalidNormalMethod.
|
|
905
905
|
"""
|
|
906
906
|
|
|
907
|
-
class
|
|
907
|
+
class _NumberOfSplitLayers(PyNumericalCommandArgumentsSubItem):
|
|
908
908
|
"""
|
|
909
|
-
Argument
|
|
909
|
+
Argument NumberOfSplitLayers.
|
|
910
910
|
"""
|
|
911
911
|
|
|
912
912
|
class _ShowLocalPrismPreferences(PyParameterCommandArgumentsSubItem):
|
|
@@ -914,9 +914,9 @@ class Root(PyMenu):
|
|
|
914
914
|
Argument ShowLocalPrismPreferences.
|
|
915
915
|
"""
|
|
916
916
|
|
|
917
|
-
class
|
|
917
|
+
class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
|
|
918
918
|
"""
|
|
919
|
-
Argument
|
|
919
|
+
Argument LastRatioNumLayers.
|
|
920
920
|
"""
|
|
921
921
|
|
|
922
922
|
class _AllowedTangencyAtInvalidNormals(PyNumericalCommandArgumentsSubItem):
|
|
@@ -1172,11 +1172,11 @@ class Root(PyMenu):
|
|
|
1172
1172
|
self.SphereRadiusFactorAtInvalidNormals = self._SphereRadiusFactorAtInvalidNormals(self, "SphereRadiusFactorAtInvalidNormals", service, rules, path)
|
|
1173
1173
|
self.SmoothRingsAtInvalidNormals = self._SmoothRingsAtInvalidNormals(self, "SmoothRingsAtInvalidNormals", service, rules, path)
|
|
1174
1174
|
self.Continuous = self._Continuous(self, "Continuous", service, rules, path)
|
|
1175
|
-
self.SplitPrism = self._SplitPrism(self, "SplitPrism", service, rules, path)
|
|
1176
1175
|
self.ModifyAtInvalidNormals = self._ModifyAtInvalidNormals(self, "ModifyAtInvalidNormals", service, rules, path)
|
|
1176
|
+
self.SplitPrism = self._SplitPrism(self, "SplitPrism", service, rules, path)
|
|
1177
1177
|
self.InvalidNormalMethod = self._InvalidNormalMethod(self, "InvalidNormalMethod", service, rules, path)
|
|
1178
|
-
self.ShowLocalPrismPreferences = self._ShowLocalPrismPreferences(self, "ShowLocalPrismPreferences", service, rules, path)
|
|
1179
1178
|
self.LastRatioNumLayers = self._LastRatioNumLayers(self, "LastRatioNumLayers", service, rules, path)
|
|
1179
|
+
self.ShowLocalPrismPreferences = self._ShowLocalPrismPreferences(self, "ShowLocalPrismPreferences", service, rules, path)
|
|
1180
1180
|
self.NumberOfSplitLayers = self._NumberOfSplitLayers(self, "NumberOfSplitLayers", service, rules, path)
|
|
1181
1181
|
self.AllowedTangencyAtInvalidNormals = self._AllowedTangencyAtInvalidNormals(self, "AllowedTangencyAtInvalidNormals", service, rules, path)
|
|
1182
1182
|
self.RemeshAtInvalidNormals = self._RemeshAtInvalidNormals(self, "RemeshAtInvalidNormals", service, rules, path)
|
|
@@ -1207,14 +1207,14 @@ class Root(PyMenu):
|
|
|
1207
1207
|
Argument Continuous.
|
|
1208
1208
|
"""
|
|
1209
1209
|
|
|
1210
|
-
class
|
|
1210
|
+
class _ModifyAtInvalidNormals(PyTextualCommandArgumentsSubItem):
|
|
1211
1211
|
"""
|
|
1212
|
-
Argument
|
|
1212
|
+
Argument ModifyAtInvalidNormals.
|
|
1213
1213
|
"""
|
|
1214
1214
|
|
|
1215
|
-
class
|
|
1215
|
+
class _SplitPrism(PyTextualCommandArgumentsSubItem):
|
|
1216
1216
|
"""
|
|
1217
|
-
Argument
|
|
1217
|
+
Argument SplitPrism.
|
|
1218
1218
|
"""
|
|
1219
1219
|
|
|
1220
1220
|
class _InvalidNormalMethod(PyTextualCommandArgumentsSubItem):
|
|
@@ -1222,14 +1222,14 @@ class Root(PyMenu):
|
|
|
1222
1222
|
Argument InvalidNormalMethod.
|
|
1223
1223
|
"""
|
|
1224
1224
|
|
|
1225
|
-
class
|
|
1225
|
+
class _LastRatioNumLayers(PyNumericalCommandArgumentsSubItem):
|
|
1226
1226
|
"""
|
|
1227
|
-
Argument
|
|
1227
|
+
Argument LastRatioNumLayers.
|
|
1228
1228
|
"""
|
|
1229
1229
|
|
|
1230
|
-
class
|
|
1230
|
+
class _ShowLocalPrismPreferences(PyParameterCommandArgumentsSubItem):
|
|
1231
1231
|
"""
|
|
1232
|
-
Argument
|
|
1232
|
+
Argument ShowLocalPrismPreferences.
|
|
1233
1233
|
"""
|
|
1234
1234
|
|
|
1235
1235
|
class _NumberOfSplitLayers(PyNumericalCommandArgumentsSubItem):
|
|
@@ -1475,11 +1475,11 @@ class Root(PyMenu):
|
|
|
1475
1475
|
self.MinSize = self._MinSize(self, "MinSize", service, rules, path)
|
|
1476
1476
|
self.WrapMax = self._WrapMax(self, "WrapMax", service, rules, path)
|
|
1477
1477
|
self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
|
|
1478
|
+
self.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", service, rules, path)
|
|
1478
1479
|
self.InitialSizeControl = self._InitialSizeControl(self, "InitialSizeControl", service, rules, path)
|
|
1479
1480
|
self.SizingType = self._SizingType(self, "SizingType", service, rules, path)
|
|
1480
|
-
self.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", service, rules, path)
|
|
1481
|
-
self.CellsPerGap = self._CellsPerGap(self, "CellsPerGap", service, rules, path)
|
|
1482
1481
|
self.WrapCurvatureNormalAngle = self._WrapCurvatureNormalAngle(self, "WrapCurvatureNormalAngle", service, rules, path)
|
|
1482
|
+
self.CellsPerGap = self._CellsPerGap(self, "CellsPerGap", service, rules, path)
|
|
1483
1483
|
self.TargetSizeControl = self._TargetSizeControl(self, "TargetSizeControl", service, rules, path)
|
|
1484
1484
|
self.GrowthRate = self._GrowthRate(self, "GrowthRate", service, rules, path)
|
|
1485
1485
|
|
|
@@ -1528,6 +1528,11 @@ class Root(PyMenu):
|
|
|
1528
1528
|
Argument AdvancedOptions.
|
|
1529
1529
|
"""
|
|
1530
1530
|
|
|
1531
|
+
class _WrapGrowthRate(PyNumericalCommandArgumentsSubItem):
|
|
1532
|
+
"""
|
|
1533
|
+
Argument WrapGrowthRate.
|
|
1534
|
+
"""
|
|
1535
|
+
|
|
1531
1536
|
class _InitialSizeControl(PyParameterCommandArgumentsSubItem):
|
|
1532
1537
|
"""
|
|
1533
1538
|
Argument InitialSizeControl.
|
|
@@ -1538,9 +1543,9 @@ class Root(PyMenu):
|
|
|
1538
1543
|
Argument SizingType.
|
|
1539
1544
|
"""
|
|
1540
1545
|
|
|
1541
|
-
class
|
|
1546
|
+
class _WrapCurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
1542
1547
|
"""
|
|
1543
|
-
Argument
|
|
1548
|
+
Argument WrapCurvatureNormalAngle.
|
|
1544
1549
|
"""
|
|
1545
1550
|
|
|
1546
1551
|
class _CellsPerGap(PyNumericalCommandArgumentsSubItem):
|
|
@@ -1548,11 +1553,6 @@ class Root(PyMenu):
|
|
|
1548
1553
|
Argument CellsPerGap.
|
|
1549
1554
|
"""
|
|
1550
1555
|
|
|
1551
|
-
class _WrapCurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
1552
|
-
"""
|
|
1553
|
-
Argument WrapCurvatureNormalAngle.
|
|
1554
|
-
"""
|
|
1555
|
-
|
|
1556
1556
|
class _TargetSizeControl(PyParameterCommandArgumentsSubItem):
|
|
1557
1557
|
"""
|
|
1558
1558
|
Argument TargetSizeControl.
|
|
@@ -2052,8 +2052,8 @@ class Root(PyMenu):
|
|
|
2052
2052
|
self.SaveSizeFieldFile = self._SaveSizeFieldFile(self, "SaveSizeFieldFile", service, rules, path)
|
|
2053
2053
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
2054
2054
|
self.ScopeProximityTo = self._ScopeProximityTo(self, "ScopeProximityTo", service, rules, path)
|
|
2055
|
-
self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
|
|
2056
2055
|
self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
|
|
2056
|
+
self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
|
|
2057
2057
|
self.SaveSizeField = self._SaveSizeField(self, "SaveSizeField", service, rules, path)
|
|
2058
2058
|
self.UseSizeFiles = self._UseSizeFiles(self, "UseSizeFiles", service, rules, path)
|
|
2059
2059
|
self.AutoCreateScopedSizing = self._AutoCreateScopedSizing(self, "AutoCreateScopedSizing", service, rules, path)
|
|
@@ -2082,14 +2082,14 @@ class Root(PyMenu):
|
|
|
2082
2082
|
Argument ScopeProximityTo.
|
|
2083
2083
|
"""
|
|
2084
2084
|
|
|
2085
|
-
class
|
|
2085
|
+
class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
2086
2086
|
"""
|
|
2087
|
-
Argument
|
|
2087
|
+
Argument CurvatureNormalAngle.
|
|
2088
2088
|
"""
|
|
2089
2089
|
|
|
2090
|
-
class
|
|
2090
|
+
class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
|
|
2091
2091
|
"""
|
|
2092
|
-
Argument
|
|
2092
|
+
Argument PreviewSizefield.
|
|
2093
2093
|
"""
|
|
2094
2094
|
|
|
2095
2095
|
class _SaveSizeField(PyParameterCommandArgumentsSubItem):
|
|
@@ -2296,21 +2296,21 @@ class Root(PyMenu):
|
|
|
2296
2296
|
|
|
2297
2297
|
def __init__(self, parent, attr, service, rules, path):
|
|
2298
2298
|
super().__init__(parent, attr, service, rules, path)
|
|
2299
|
-
self.
|
|
2300
|
-
self.
|
|
2299
|
+
self.MinAspectRatio = self._MinAspectRatio(self, "MinAspectRatio", service, rules, path)
|
|
2300
|
+
self.ExposeSide = self._ExposeSide(self, "ExposeSide", service, rules, path)
|
|
2301
2301
|
self.GapFactor = self._GapFactor(self, "GapFactor", service, rules, path)
|
|
2302
2302
|
self.MaxAspectRatio = self._MaxAspectRatio(self, "MaxAspectRatio", service, rules, path)
|
|
2303
|
-
self.
|
|
2304
|
-
self.
|
|
2303
|
+
self.ShowShellBLAdvancedOptions = self._ShowShellBLAdvancedOptions(self, "ShowShellBLAdvancedOptions", service, rules, path)
|
|
2304
|
+
self.AdjacentAttachAngle = self._AdjacentAttachAngle(self, "AdjacentAttachAngle", service, rules, path)
|
|
2305
2305
|
|
|
2306
|
-
class
|
|
2306
|
+
class _MinAspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
2307
2307
|
"""
|
|
2308
|
-
Argument
|
|
2308
|
+
Argument MinAspectRatio.
|
|
2309
2309
|
"""
|
|
2310
2310
|
|
|
2311
|
-
class
|
|
2311
|
+
class _ExposeSide(PyTextualCommandArgumentsSubItem):
|
|
2312
2312
|
"""
|
|
2313
|
-
Argument
|
|
2313
|
+
Argument ExposeSide.
|
|
2314
2314
|
"""
|
|
2315
2315
|
|
|
2316
2316
|
class _GapFactor(PyNumericalCommandArgumentsSubItem):
|
|
@@ -2323,14 +2323,14 @@ class Root(PyMenu):
|
|
|
2323
2323
|
Argument MaxAspectRatio.
|
|
2324
2324
|
"""
|
|
2325
2325
|
|
|
2326
|
-
class
|
|
2326
|
+
class _ShowShellBLAdvancedOptions(PyParameterCommandArgumentsSubItem):
|
|
2327
2327
|
"""
|
|
2328
|
-
Argument
|
|
2328
|
+
Argument ShowShellBLAdvancedOptions.
|
|
2329
2329
|
"""
|
|
2330
2330
|
|
|
2331
|
-
class
|
|
2331
|
+
class _AdjacentAttachAngle(PyNumericalCommandArgumentsSubItem):
|
|
2332
2332
|
"""
|
|
2333
|
-
Argument
|
|
2333
|
+
Argument AdjacentAttachAngle.
|
|
2334
2334
|
"""
|
|
2335
2335
|
|
|
2336
2336
|
def create_instance(self) -> _AddShellBoundaryLayerControlsCommandArguments:
|
|
@@ -3426,14 +3426,14 @@ class Root(PyMenu):
|
|
|
3426
3426
|
self.ShowCoordinates = self._ShowCoordinates(self, "ShowCoordinates", service, rules, path)
|
|
3427
3427
|
self.Y = self._Y(self, "Y", service, rules, path)
|
|
3428
3428
|
self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
|
|
3429
|
-
self.
|
|
3429
|
+
self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
|
|
3430
3430
|
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
3431
|
+
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
3431
3432
|
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
|
|
3432
|
-
self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
|
|
3433
3433
|
self.FlowDirection = self._FlowDirection(self, "FlowDirection", service, rules, path)
|
|
3434
3434
|
self.MptMethodType = self._MptMethodType(self, "MptMethodType", service, rules, path)
|
|
3435
3435
|
self.EdgeSelectionList = self._EdgeSelectionList(self, "EdgeSelectionList", service, rules, path)
|
|
3436
|
-
self.
|
|
3436
|
+
self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
|
|
3437
3437
|
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
3438
3438
|
self.X = self._X(self, "X", service, rules, path)
|
|
3439
3439
|
self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
|
|
@@ -3467,9 +3467,9 @@ class Root(PyMenu):
|
|
|
3467
3467
|
Argument DefeaturingSize.
|
|
3468
3468
|
"""
|
|
3469
3469
|
|
|
3470
|
-
class
|
|
3470
|
+
class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
|
|
3471
3471
|
"""
|
|
3472
|
-
Argument
|
|
3472
|
+
Argument BoundaryLayerLevels.
|
|
3473
3473
|
"""
|
|
3474
3474
|
|
|
3475
3475
|
class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
|
|
@@ -3477,14 +3477,14 @@ class Root(PyMenu):
|
|
|
3477
3477
|
Argument NumberOfLayers.
|
|
3478
3478
|
"""
|
|
3479
3479
|
|
|
3480
|
-
class
|
|
3480
|
+
class _Rate(PyNumericalCommandArgumentsSubItem):
|
|
3481
3481
|
"""
|
|
3482
|
-
Argument
|
|
3482
|
+
Argument Rate.
|
|
3483
3483
|
"""
|
|
3484
3484
|
|
|
3485
|
-
class
|
|
3485
|
+
class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
|
|
3486
3486
|
"""
|
|
3487
|
-
Argument
|
|
3487
|
+
Argument WakeGrowthFactor.
|
|
3488
3488
|
"""
|
|
3489
3489
|
|
|
3490
3490
|
class _FlowDirection(PyTextualCommandArgumentsSubItem):
|
|
@@ -3502,9 +3502,9 @@ class Root(PyMenu):
|
|
|
3502
3502
|
Argument EdgeSelectionList.
|
|
3503
3503
|
"""
|
|
3504
3504
|
|
|
3505
|
-
class
|
|
3505
|
+
class _AspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
3506
3506
|
"""
|
|
3507
|
-
Argument
|
|
3507
|
+
Argument AspectRatio.
|
|
3508
3508
|
"""
|
|
3509
3509
|
|
|
3510
3510
|
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
@@ -3553,16 +3553,16 @@ class Root(PyMenu):
|
|
|
3553
3553
|
self.HeightBackInc = self._HeightBackInc(self, "HeightBackInc", service, rules, path)
|
|
3554
3554
|
self.X1 = self._X1(self, "X1", service, rules, path)
|
|
3555
3555
|
self.Y1 = self._Y1(self, "Y1", service, rules, path)
|
|
3556
|
-
self.Z1 = self._Z1(self, "Z1", service, rules, path)
|
|
3557
|
-
self.Node1 = self._Node1(self, "Node1", service, rules, path)
|
|
3558
3556
|
self.Z2 = self._Z2(self, "Z2", service, rules, path)
|
|
3557
|
+
self.Node1 = self._Node1(self, "Node1", service, rules, path)
|
|
3558
|
+
self.Z1 = self._Z1(self, "Z1", service, rules, path)
|
|
3559
3559
|
self.Radius2 = self._Radius2(self, "Radius2", service, rules, path)
|
|
3560
3560
|
self.Options = self._Options(self, "Options", service, rules, path)
|
|
3561
3561
|
self.Y2 = self._Y2(self, "Y2", service, rules, path)
|
|
3562
3562
|
self.Node3 = self._Node3(self, "Node3", service, rules, path)
|
|
3563
3563
|
self.Length = self._Length(self, "Length", service, rules, path)
|
|
3564
|
-
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
3565
3564
|
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
3565
|
+
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
3566
3566
|
self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
|
|
3567
3567
|
self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
|
|
3568
3568
|
|
|
@@ -3586,9 +3586,9 @@ class Root(PyMenu):
|
|
|
3586
3586
|
Argument Y1.
|
|
3587
3587
|
"""
|
|
3588
3588
|
|
|
3589
|
-
class
|
|
3589
|
+
class _Z2(PyNumericalCommandArgumentsSubItem):
|
|
3590
3590
|
"""
|
|
3591
|
-
Argument
|
|
3591
|
+
Argument Z2.
|
|
3592
3592
|
"""
|
|
3593
3593
|
|
|
3594
3594
|
class _Node1(PyTextualCommandArgumentsSubItem):
|
|
@@ -3596,9 +3596,9 @@ class Root(PyMenu):
|
|
|
3596
3596
|
Argument Node1.
|
|
3597
3597
|
"""
|
|
3598
3598
|
|
|
3599
|
-
class
|
|
3599
|
+
class _Z1(PyNumericalCommandArgumentsSubItem):
|
|
3600
3600
|
"""
|
|
3601
|
-
Argument
|
|
3601
|
+
Argument Z1.
|
|
3602
3602
|
"""
|
|
3603
3603
|
|
|
3604
3604
|
class _Radius2(PyNumericalCommandArgumentsSubItem):
|
|
@@ -3626,14 +3626,14 @@ class Root(PyMenu):
|
|
|
3626
3626
|
Argument Length.
|
|
3627
3627
|
"""
|
|
3628
3628
|
|
|
3629
|
-
class
|
|
3629
|
+
class _X2(PyNumericalCommandArgumentsSubItem):
|
|
3630
3630
|
"""
|
|
3631
|
-
Argument
|
|
3631
|
+
Argument X2.
|
|
3632
3632
|
"""
|
|
3633
3633
|
|
|
3634
|
-
class
|
|
3634
|
+
class _Node2(PyTextualCommandArgumentsSubItem):
|
|
3635
3635
|
"""
|
|
3636
|
-
Argument
|
|
3636
|
+
Argument Node2.
|
|
3637
3637
|
"""
|
|
3638
3638
|
|
|
3639
3639
|
class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
|
|
@@ -3809,7 +3809,7 @@ class Root(PyMenu):
|
|
|
3809
3809
|
def __init__(self, parent, attr, service, rules, path):
|
|
3810
3810
|
super().__init__(parent, attr, service, rules, path)
|
|
3811
3811
|
self.SizeRelativeLength = self._SizeRelativeLength(self, "SizeRelativeLength", service, rules, path)
|
|
3812
|
-
self.
|
|
3812
|
+
self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
|
|
3813
3813
|
self.XminRatio = self._XminRatio(self, "XminRatio", service, rules, path)
|
|
3814
3814
|
self.YminRatio = self._YminRatio(self, "YminRatio", service, rules, path)
|
|
3815
3815
|
self.Zmin = self._Zmin(self, "Zmin", service, rules, path)
|
|
@@ -3820,16 +3820,16 @@ class Root(PyMenu):
|
|
|
3820
3820
|
self.Xmin = self._Xmin(self, "Xmin", service, rules, path)
|
|
3821
3821
|
self.YmaxRatio = self._YmaxRatio(self, "YmaxRatio", service, rules, path)
|
|
3822
3822
|
self.ZmaxRatio = self._ZmaxRatio(self, "ZmaxRatio", service, rules, path)
|
|
3823
|
-
self.
|
|
3823
|
+
self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
|
|
3824
3824
|
|
|
3825
3825
|
class _SizeRelativeLength(PyTextualCommandArgumentsSubItem):
|
|
3826
3826
|
"""
|
|
3827
3827
|
Argument SizeRelativeLength.
|
|
3828
3828
|
"""
|
|
3829
3829
|
|
|
3830
|
-
class
|
|
3830
|
+
class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
|
|
3831
3831
|
"""
|
|
3832
|
-
Argument
|
|
3832
|
+
Argument XmaxRatio.
|
|
3833
3833
|
"""
|
|
3834
3834
|
|
|
3835
3835
|
class _XminRatio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -3882,9 +3882,9 @@ class Root(PyMenu):
|
|
|
3882
3882
|
Argument ZmaxRatio.
|
|
3883
3883
|
"""
|
|
3884
3884
|
|
|
3885
|
-
class
|
|
3885
|
+
class _Xmax(PyNumericalCommandArgumentsSubItem):
|
|
3886
3886
|
"""
|
|
3887
|
-
Argument
|
|
3887
|
+
Argument Xmax.
|
|
3888
3888
|
"""
|
|
3889
3889
|
|
|
3890
3890
|
class _OffsetObject(PySingletonCommandArgumentsSubItem):
|
|
@@ -3899,18 +3899,18 @@ class Root(PyMenu):
|
|
|
3899
3899
|
self.ShowCoordinates = self._ShowCoordinates(self, "ShowCoordinates", service, rules, path)
|
|
3900
3900
|
self.Y = self._Y(self, "Y", service, rules, path)
|
|
3901
3901
|
self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
|
|
3902
|
-
self.
|
|
3902
|
+
self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
|
|
3903
3903
|
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
3904
3904
|
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
|
|
3905
|
-
self.
|
|
3905
|
+
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
3906
3906
|
self.FlowDirection = self._FlowDirection(self, "FlowDirection", service, rules, path)
|
|
3907
3907
|
self.MptMethodType = self._MptMethodType(self, "MptMethodType", service, rules, path)
|
|
3908
3908
|
self.EdgeSelectionList = self._EdgeSelectionList(self, "EdgeSelectionList", service, rules, path)
|
|
3909
|
-
self.
|
|
3910
|
-
self.X = self._X(self, "X", service, rules, path)
|
|
3909
|
+
self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
|
|
3911
3910
|
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
3912
|
-
self.
|
|
3911
|
+
self.X = self._X(self, "X", service, rules, path)
|
|
3913
3912
|
self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
|
|
3913
|
+
self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
|
|
3914
3914
|
self.FirstHeight = self._FirstHeight(self, "FirstHeight", service, rules, path)
|
|
3915
3915
|
self.BoundaryLayerHeight = self._BoundaryLayerHeight(self, "BoundaryLayerHeight", service, rules, path)
|
|
3916
3916
|
self.CrossWakeGrowthFactor = self._CrossWakeGrowthFactor(self, "CrossWakeGrowthFactor", service, rules, path)
|
|
@@ -3940,9 +3940,9 @@ class Root(PyMenu):
|
|
|
3940
3940
|
Argument DefeaturingSize.
|
|
3941
3941
|
"""
|
|
3942
3942
|
|
|
3943
|
-
class
|
|
3943
|
+
class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
|
|
3944
3944
|
"""
|
|
3945
|
-
Argument
|
|
3945
|
+
Argument BoundaryLayerLevels.
|
|
3946
3946
|
"""
|
|
3947
3947
|
|
|
3948
3948
|
class _Rate(PyNumericalCommandArgumentsSubItem):
|
|
@@ -3955,9 +3955,9 @@ class Root(PyMenu):
|
|
|
3955
3955
|
Argument WakeGrowthFactor.
|
|
3956
3956
|
"""
|
|
3957
3957
|
|
|
3958
|
-
class
|
|
3958
|
+
class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
|
|
3959
3959
|
"""
|
|
3960
|
-
Argument
|
|
3960
|
+
Argument NumberOfLayers.
|
|
3961
3961
|
"""
|
|
3962
3962
|
|
|
3963
3963
|
class _FlowDirection(PyTextualCommandArgumentsSubItem):
|
|
@@ -3975,14 +3975,9 @@ class Root(PyMenu):
|
|
|
3975
3975
|
Argument EdgeSelectionList.
|
|
3976
3976
|
"""
|
|
3977
3977
|
|
|
3978
|
-
class
|
|
3979
|
-
"""
|
|
3980
|
-
Argument NumberOfLayers.
|
|
3981
|
-
"""
|
|
3982
|
-
|
|
3983
|
-
class _X(PyNumericalCommandArgumentsSubItem):
|
|
3978
|
+
class _AspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
3984
3979
|
"""
|
|
3985
|
-
Argument
|
|
3980
|
+
Argument AspectRatio.
|
|
3986
3981
|
"""
|
|
3987
3982
|
|
|
3988
3983
|
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
@@ -3990,9 +3985,9 @@ class Root(PyMenu):
|
|
|
3990
3985
|
Argument LastRatioPercentage.
|
|
3991
3986
|
"""
|
|
3992
3987
|
|
|
3993
|
-
class
|
|
3988
|
+
class _X(PyNumericalCommandArgumentsSubItem):
|
|
3994
3989
|
"""
|
|
3995
|
-
Argument
|
|
3990
|
+
Argument X.
|
|
3996
3991
|
"""
|
|
3997
3992
|
|
|
3998
3993
|
class _OffsetMethodType(PyTextualCommandArgumentsSubItem):
|
|
@@ -4000,6 +3995,11 @@ class Root(PyMenu):
|
|
|
4000
3995
|
Argument OffsetMethodType.
|
|
4001
3996
|
"""
|
|
4002
3997
|
|
|
3998
|
+
class _FlipDirection(PyParameterCommandArgumentsSubItem):
|
|
3999
|
+
"""
|
|
4000
|
+
Argument FlipDirection.
|
|
4001
|
+
"""
|
|
4002
|
+
|
|
4003
4003
|
class _FirstHeight(PyNumericalCommandArgumentsSubItem):
|
|
4004
4004
|
"""
|
|
4005
4005
|
Argument FirstHeight.
|
|
@@ -4034,8 +4034,8 @@ class Root(PyMenu):
|
|
|
4034
4034
|
self.Y2 = self._Y2(self, "Y2", service, rules, path)
|
|
4035
4035
|
self.Node3 = self._Node3(self, "Node3", service, rules, path)
|
|
4036
4036
|
self.Length = self._Length(self, "Length", service, rules, path)
|
|
4037
|
-
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
4038
4037
|
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
4038
|
+
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
4039
4039
|
self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
|
|
4040
4040
|
self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
|
|
4041
4041
|
|
|
@@ -4099,14 +4099,14 @@ class Root(PyMenu):
|
|
|
4099
4099
|
Argument Length.
|
|
4100
4100
|
"""
|
|
4101
4101
|
|
|
4102
|
-
class
|
|
4102
|
+
class _X2(PyNumericalCommandArgumentsSubItem):
|
|
4103
4103
|
"""
|
|
4104
|
-
Argument
|
|
4104
|
+
Argument X2.
|
|
4105
4105
|
"""
|
|
4106
4106
|
|
|
4107
|
-
class
|
|
4107
|
+
class _Node2(PyTextualCommandArgumentsSubItem):
|
|
4108
4108
|
"""
|
|
4109
|
-
Argument
|
|
4109
|
+
Argument Node2.
|
|
4110
4110
|
"""
|
|
4111
4111
|
|
|
4112
4112
|
class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4283,7 +4283,7 @@ class Root(PyMenu):
|
|
|
4283
4283
|
def __init__(self, parent, attr, service, rules, path):
|
|
4284
4284
|
super().__init__(parent, attr, service, rules, path)
|
|
4285
4285
|
self.SizeRelativeLength = self._SizeRelativeLength(self, "SizeRelativeLength", service, rules, path)
|
|
4286
|
-
self.
|
|
4286
|
+
self.XmaxRatio = self._XmaxRatio(self, "XmaxRatio", service, rules, path)
|
|
4287
4287
|
self.XminRatio = self._XminRatio(self, "XminRatio", service, rules, path)
|
|
4288
4288
|
self.YminRatio = self._YminRatio(self, "YminRatio", service, rules, path)
|
|
4289
4289
|
self.Zmin = self._Zmin(self, "Zmin", service, rules, path)
|
|
@@ -4294,16 +4294,16 @@ class Root(PyMenu):
|
|
|
4294
4294
|
self.Xmin = self._Xmin(self, "Xmin", service, rules, path)
|
|
4295
4295
|
self.YmaxRatio = self._YmaxRatio(self, "YmaxRatio", service, rules, path)
|
|
4296
4296
|
self.ZmaxRatio = self._ZmaxRatio(self, "ZmaxRatio", service, rules, path)
|
|
4297
|
-
self.
|
|
4297
|
+
self.Xmax = self._Xmax(self, "Xmax", service, rules, path)
|
|
4298
4298
|
|
|
4299
4299
|
class _SizeRelativeLength(PyTextualCommandArgumentsSubItem):
|
|
4300
4300
|
"""
|
|
4301
4301
|
Argument SizeRelativeLength.
|
|
4302
4302
|
"""
|
|
4303
4303
|
|
|
4304
|
-
class
|
|
4304
|
+
class _XmaxRatio(PyNumericalCommandArgumentsSubItem):
|
|
4305
4305
|
"""
|
|
4306
|
-
Argument
|
|
4306
|
+
Argument XmaxRatio.
|
|
4307
4307
|
"""
|
|
4308
4308
|
|
|
4309
4309
|
class _XminRatio(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4356,9 +4356,9 @@ class Root(PyMenu):
|
|
|
4356
4356
|
Argument ZmaxRatio.
|
|
4357
4357
|
"""
|
|
4358
4358
|
|
|
4359
|
-
class
|
|
4359
|
+
class _Xmax(PyNumericalCommandArgumentsSubItem):
|
|
4360
4360
|
"""
|
|
4361
|
-
Argument
|
|
4361
|
+
Argument Xmax.
|
|
4362
4362
|
"""
|
|
4363
4363
|
|
|
4364
4364
|
class _OffsetObject(PySingletonCommandArgumentsSubItem):
|
|
@@ -4375,16 +4375,16 @@ class Root(PyMenu):
|
|
|
4375
4375
|
self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
|
|
4376
4376
|
self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
|
|
4377
4377
|
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
4378
|
-
self.
|
|
4378
|
+
self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
|
|
4379
4379
|
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
|
|
4380
4380
|
self.FlowDirection = self._FlowDirection(self, "FlowDirection", service, rules, path)
|
|
4381
4381
|
self.MptMethodType = self._MptMethodType(self, "MptMethodType", service, rules, path)
|
|
4382
4382
|
self.EdgeSelectionList = self._EdgeSelectionList(self, "EdgeSelectionList", service, rules, path)
|
|
4383
|
-
self.
|
|
4384
|
-
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
4383
|
+
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
4385
4384
|
self.X = self._X(self, "X", service, rules, path)
|
|
4386
|
-
self.
|
|
4385
|
+
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
4387
4386
|
self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
|
|
4387
|
+
self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
|
|
4388
4388
|
self.FirstHeight = self._FirstHeight(self, "FirstHeight", service, rules, path)
|
|
4389
4389
|
self.BoundaryLayerHeight = self._BoundaryLayerHeight(self, "BoundaryLayerHeight", service, rules, path)
|
|
4390
4390
|
self.CrossWakeGrowthFactor = self._CrossWakeGrowthFactor(self, "CrossWakeGrowthFactor", service, rules, path)
|
|
@@ -4424,9 +4424,9 @@ class Root(PyMenu):
|
|
|
4424
4424
|
Argument Rate.
|
|
4425
4425
|
"""
|
|
4426
4426
|
|
|
4427
|
-
class
|
|
4427
|
+
class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
|
|
4428
4428
|
"""
|
|
4429
|
-
Argument
|
|
4429
|
+
Argument BoundaryLayerLevels.
|
|
4430
4430
|
"""
|
|
4431
4431
|
|
|
4432
4432
|
class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4449,14 +4449,9 @@ class Root(PyMenu):
|
|
|
4449
4449
|
Argument EdgeSelectionList.
|
|
4450
4450
|
"""
|
|
4451
4451
|
|
|
4452
|
-
class
|
|
4453
|
-
"""
|
|
4454
|
-
Argument BoundaryLayerLevels.
|
|
4455
|
-
"""
|
|
4456
|
-
|
|
4457
|
-
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
4452
|
+
class _NumberOfLayers(PyNumericalCommandArgumentsSubItem):
|
|
4458
4453
|
"""
|
|
4459
|
-
Argument
|
|
4454
|
+
Argument NumberOfLayers.
|
|
4460
4455
|
"""
|
|
4461
4456
|
|
|
4462
4457
|
class _X(PyNumericalCommandArgumentsSubItem):
|
|
@@ -4464,9 +4459,9 @@ class Root(PyMenu):
|
|
|
4464
4459
|
Argument X.
|
|
4465
4460
|
"""
|
|
4466
4461
|
|
|
4467
|
-
class
|
|
4462
|
+
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
4468
4463
|
"""
|
|
4469
|
-
Argument
|
|
4464
|
+
Argument LastRatioPercentage.
|
|
4470
4465
|
"""
|
|
4471
4466
|
|
|
4472
4467
|
class _FlipDirection(PyParameterCommandArgumentsSubItem):
|
|
@@ -4474,6 +4469,11 @@ class Root(PyMenu):
|
|
|
4474
4469
|
Argument FlipDirection.
|
|
4475
4470
|
"""
|
|
4476
4471
|
|
|
4472
|
+
class _OffsetMethodType(PyTextualCommandArgumentsSubItem):
|
|
4473
|
+
"""
|
|
4474
|
+
Argument OffsetMethodType.
|
|
4475
|
+
"""
|
|
4476
|
+
|
|
4477
4477
|
class _FirstHeight(PyNumericalCommandArgumentsSubItem):
|
|
4478
4478
|
"""
|
|
4479
4479
|
Argument FirstHeight.
|
|
@@ -4508,8 +4508,8 @@ class Root(PyMenu):
|
|
|
4508
4508
|
self.Y2 = self._Y2(self, "Y2", service, rules, path)
|
|
4509
4509
|
self.Node3 = self._Node3(self, "Node3", service, rules, path)
|
|
4510
4510
|
self.Length = self._Length(self, "Length", service, rules, path)
|
|
4511
|
-
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
4512
4511
|
self.X2 = self._X2(self, "X2", service, rules, path)
|
|
4512
|
+
self.Node2 = self._Node2(self, "Node2", service, rules, path)
|
|
4513
4513
|
self.HeightFrontInc = self._HeightFrontInc(self, "HeightFrontInc", service, rules, path)
|
|
4514
4514
|
self.Radius1 = self._Radius1(self, "Radius1", service, rules, path)
|
|
4515
4515
|
|
|
@@ -4573,14 +4573,14 @@ class Root(PyMenu):
|
|
|
4573
4573
|
Argument Length.
|
|
4574
4574
|
"""
|
|
4575
4575
|
|
|
4576
|
-
class
|
|
4576
|
+
class _X2(PyNumericalCommandArgumentsSubItem):
|
|
4577
4577
|
"""
|
|
4578
|
-
Argument
|
|
4578
|
+
Argument X2.
|
|
4579
4579
|
"""
|
|
4580
4580
|
|
|
4581
|
-
class
|
|
4581
|
+
class _Node2(PyTextualCommandArgumentsSubItem):
|
|
4582
4582
|
"""
|
|
4583
|
-
Argument
|
|
4583
|
+
Argument Node2.
|
|
4584
4584
|
"""
|
|
4585
4585
|
|
|
4586
4586
|
class _HeightFrontInc(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5310,16 +5310,16 @@ class Root(PyMenu):
|
|
|
5310
5310
|
self.ShowCoordinates = self._ShowCoordinates(self, "ShowCoordinates", service, rules, path)
|
|
5311
5311
|
self.Y = self._Y(self, "Y", service, rules, path)
|
|
5312
5312
|
self.DefeaturingSize = self._DefeaturingSize(self, "DefeaturingSize", service, rules, path)
|
|
5313
|
-
self.
|
|
5313
|
+
self.AspectRatio = self._AspectRatio(self, "AspectRatio", service, rules, path)
|
|
5314
5314
|
self.Rate = self._Rate(self, "Rate", service, rules, path)
|
|
5315
5315
|
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
5316
|
-
self.
|
|
5316
|
+
self.WakeGrowthFactor = self._WakeGrowthFactor(self, "WakeGrowthFactor", service, rules, path)
|
|
5317
5317
|
self.FlowDirection = self._FlowDirection(self, "FlowDirection", service, rules, path)
|
|
5318
5318
|
self.MptMethodType = self._MptMethodType(self, "MptMethodType", service, rules, path)
|
|
5319
5319
|
self.EdgeSelectionList = self._EdgeSelectionList(self, "EdgeSelectionList", service, rules, path)
|
|
5320
|
-
self.
|
|
5321
|
-
self.X = self._X(self, "X", service, rules, path)
|
|
5320
|
+
self.BoundaryLayerLevels = self._BoundaryLayerLevels(self, "BoundaryLayerLevels", service, rules, path)
|
|
5322
5321
|
self.LastRatioPercentage = self._LastRatioPercentage(self, "LastRatioPercentage", service, rules, path)
|
|
5322
|
+
self.X = self._X(self, "X", service, rules, path)
|
|
5323
5323
|
self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
|
|
5324
5324
|
self.OffsetMethodType = self._OffsetMethodType(self, "OffsetMethodType", service, rules, path)
|
|
5325
5325
|
self.FirstHeight = self._FirstHeight(self, "FirstHeight", service, rules, path)
|
|
@@ -5351,9 +5351,9 @@ class Root(PyMenu):
|
|
|
5351
5351
|
Argument DefeaturingSize.
|
|
5352
5352
|
"""
|
|
5353
5353
|
|
|
5354
|
-
class
|
|
5354
|
+
class _AspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
5355
5355
|
"""
|
|
5356
|
-
Argument
|
|
5356
|
+
Argument AspectRatio.
|
|
5357
5357
|
"""
|
|
5358
5358
|
|
|
5359
5359
|
class _Rate(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5366,9 +5366,9 @@ class Root(PyMenu):
|
|
|
5366
5366
|
Argument NumberOfLayers.
|
|
5367
5367
|
"""
|
|
5368
5368
|
|
|
5369
|
-
class
|
|
5369
|
+
class _WakeGrowthFactor(PyNumericalCommandArgumentsSubItem):
|
|
5370
5370
|
"""
|
|
5371
|
-
Argument
|
|
5371
|
+
Argument WakeGrowthFactor.
|
|
5372
5372
|
"""
|
|
5373
5373
|
|
|
5374
5374
|
class _FlowDirection(PyTextualCommandArgumentsSubItem):
|
|
@@ -5386,19 +5386,19 @@ class Root(PyMenu):
|
|
|
5386
5386
|
Argument EdgeSelectionList.
|
|
5387
5387
|
"""
|
|
5388
5388
|
|
|
5389
|
-
class
|
|
5389
|
+
class _BoundaryLayerLevels(PyNumericalCommandArgumentsSubItem):
|
|
5390
5390
|
"""
|
|
5391
|
-
Argument
|
|
5391
|
+
Argument BoundaryLayerLevels.
|
|
5392
5392
|
"""
|
|
5393
5393
|
|
|
5394
|
-
class
|
|
5394
|
+
class _LastRatioPercentage(PyNumericalCommandArgumentsSubItem):
|
|
5395
5395
|
"""
|
|
5396
|
-
Argument
|
|
5396
|
+
Argument LastRatioPercentage.
|
|
5397
5397
|
"""
|
|
5398
5398
|
|
|
5399
|
-
class
|
|
5399
|
+
class _X(PyNumericalCommandArgumentsSubItem):
|
|
5400
5400
|
"""
|
|
5401
|
-
Argument
|
|
5401
|
+
Argument X.
|
|
5402
5402
|
"""
|
|
5403
5403
|
|
|
5404
5404
|
class _FlipDirection(PyParameterCommandArgumentsSubItem):
|
|
@@ -5755,10 +5755,10 @@ class Root(PyMenu):
|
|
|
5755
5755
|
self.NumberOfLayers = self._NumberOfLayers(self, "NumberOfLayers", service, rules, path)
|
|
5756
5756
|
self.LabelSelectionList = self._LabelSelectionList(self, "LabelSelectionList", service, rules, path)
|
|
5757
5757
|
self.SelectionType = self._SelectionType(self, "SelectionType", service, rules, path)
|
|
5758
|
-
self.ZoneSelectionList = self._ZoneSelectionList(self, "ZoneSelectionList", service, rules, path)
|
|
5759
5758
|
self.Thickness = self._Thickness(self, "Thickness", service, rules, path)
|
|
5760
|
-
self.
|
|
5759
|
+
self.ZoneSelectionList = self._ZoneSelectionList(self, "ZoneSelectionList", service, rules, path)
|
|
5761
5760
|
self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
|
|
5761
|
+
self.MeshSize = self._MeshSize(self, "MeshSize", service, rules, path)
|
|
5762
5762
|
self.BufferSize = self._BufferSize(self, "BufferSize", service, rules, path)
|
|
5763
5763
|
self.FlipDirection = self._FlipDirection(self, "FlipDirection", service, rules, path)
|
|
5764
5764
|
self.NonRectangularBufferSize = self._NonRectangularBufferSize(self, "NonRectangularBufferSize", service, rules, path)
|
|
@@ -5779,19 +5779,14 @@ class Root(PyMenu):
|
|
|
5779
5779
|
Argument SelectionType.
|
|
5780
5780
|
"""
|
|
5781
5781
|
|
|
5782
|
-
class _ZoneSelectionList(PyTextualCommandArgumentsSubItem):
|
|
5783
|
-
"""
|
|
5784
|
-
Argument ZoneSelectionList.
|
|
5785
|
-
"""
|
|
5786
|
-
|
|
5787
5782
|
class _Thickness(PyNumericalCommandArgumentsSubItem):
|
|
5788
5783
|
"""
|
|
5789
5784
|
Argument Thickness.
|
|
5790
5785
|
"""
|
|
5791
5786
|
|
|
5792
|
-
class
|
|
5787
|
+
class _ZoneSelectionList(PyTextualCommandArgumentsSubItem):
|
|
5793
5788
|
"""
|
|
5794
|
-
Argument
|
|
5789
|
+
Argument ZoneSelectionList.
|
|
5795
5790
|
"""
|
|
5796
5791
|
|
|
5797
5792
|
class _FeatureAngle(PyNumericalCommandArgumentsSubItem):
|
|
@@ -5799,6 +5794,11 @@ class Root(PyMenu):
|
|
|
5799
5794
|
Argument FeatureAngle.
|
|
5800
5795
|
"""
|
|
5801
5796
|
|
|
5797
|
+
class _MeshSize(PyNumericalCommandArgumentsSubItem):
|
|
5798
|
+
"""
|
|
5799
|
+
Argument MeshSize.
|
|
5800
|
+
"""
|
|
5801
|
+
|
|
5802
5802
|
class _BufferSize(PyNumericalCommandArgumentsSubItem):
|
|
5803
5803
|
"""
|
|
5804
5804
|
Argument BufferSize.
|
|
@@ -6571,12 +6571,12 @@ class Root(PyMenu):
|
|
|
6571
6571
|
self.SplitQuads = self._SplitQuads(self, "SplitQuads", service, rules, path)
|
|
6572
6572
|
self.MaxAspectRatio = self._MaxAspectRatio(self, "MaxAspectRatio", service, rules, path)
|
|
6573
6573
|
self.MinAspectRatio = self._MinAspectRatio(self, "MinAspectRatio", service, rules, path)
|
|
6574
|
-
self.LocalRemesh = self._LocalRemesh(self, "LocalRemesh", service, rules, path)
|
|
6575
6574
|
self.RemeshGrowthRate = self._RemeshGrowthRate(self, "RemeshGrowthRate", service, rules, path)
|
|
6575
|
+
self.LocalRemesh = self._LocalRemesh(self, "LocalRemesh", service, rules, path)
|
|
6576
6576
|
self.GapFactor = self._GapFactor(self, "GapFactor", service, rules, path)
|
|
6577
|
-
self.RefineStretchedQuads = self._RefineStretchedQuads(self, "RefineStretchedQuads", service, rules, path)
|
|
6578
|
-
self.MaxFaceSkew = self._MaxFaceSkew(self, "MaxFaceSkew", service, rules, path)
|
|
6579
6577
|
self.ShowPrism2DPreferences = self._ShowPrism2DPreferences(self, "ShowPrism2DPreferences", service, rules, path)
|
|
6578
|
+
self.MaxFaceSkew = self._MaxFaceSkew(self, "MaxFaceSkew", service, rules, path)
|
|
6579
|
+
self.RefineStretchedQuads = self._RefineStretchedQuads(self, "RefineStretchedQuads", service, rules, path)
|
|
6580
6580
|
self.nOrthogonalLayers = self._nOrthogonalLayers(self, "nOrthogonalLayers", service, rules, path)
|
|
6581
6581
|
|
|
6582
6582
|
class _SplitQuads(PyTextualCommandArgumentsSubItem):
|
|
@@ -6594,14 +6594,14 @@ class Root(PyMenu):
|
|
|
6594
6594
|
Argument MinAspectRatio.
|
|
6595
6595
|
"""
|
|
6596
6596
|
|
|
6597
|
-
class
|
|
6597
|
+
class _RemeshGrowthRate(PyNumericalCommandArgumentsSubItem):
|
|
6598
6598
|
"""
|
|
6599
|
-
Argument
|
|
6599
|
+
Argument RemeshGrowthRate.
|
|
6600
6600
|
"""
|
|
6601
6601
|
|
|
6602
|
-
class
|
|
6602
|
+
class _LocalRemesh(PyTextualCommandArgumentsSubItem):
|
|
6603
6603
|
"""
|
|
6604
|
-
Argument
|
|
6604
|
+
Argument LocalRemesh.
|
|
6605
6605
|
"""
|
|
6606
6606
|
|
|
6607
6607
|
class _GapFactor(PyNumericalCommandArgumentsSubItem):
|
|
@@ -6609,9 +6609,9 @@ class Root(PyMenu):
|
|
|
6609
6609
|
Argument GapFactor.
|
|
6610
6610
|
"""
|
|
6611
6611
|
|
|
6612
|
-
class
|
|
6612
|
+
class _ShowPrism2DPreferences(PyParameterCommandArgumentsSubItem):
|
|
6613
6613
|
"""
|
|
6614
|
-
Argument
|
|
6614
|
+
Argument ShowPrism2DPreferences.
|
|
6615
6615
|
"""
|
|
6616
6616
|
|
|
6617
6617
|
class _MaxFaceSkew(PyNumericalCommandArgumentsSubItem):
|
|
@@ -6619,9 +6619,9 @@ class Root(PyMenu):
|
|
|
6619
6619
|
Argument MaxFaceSkew.
|
|
6620
6620
|
"""
|
|
6621
6621
|
|
|
6622
|
-
class
|
|
6622
|
+
class _RefineStretchedQuads(PyTextualCommandArgumentsSubItem):
|
|
6623
6623
|
"""
|
|
6624
|
-
Argument
|
|
6624
|
+
Argument RefineStretchedQuads.
|
|
6625
6625
|
"""
|
|
6626
6626
|
|
|
6627
6627
|
class _nOrthogonalLayers(PyNumericalCommandArgumentsSubItem):
|
|
@@ -6944,8 +6944,8 @@ class Root(PyMenu):
|
|
|
6944
6944
|
self.SaveSizeFieldFile = self._SaveSizeFieldFile(self, "SaveSizeFieldFile", service, rules, path)
|
|
6945
6945
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
6946
6946
|
self.ScopeProximityTo = self._ScopeProximityTo(self, "ScopeProximityTo", service, rules, path)
|
|
6947
|
-
self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
|
|
6948
6947
|
self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
|
|
6948
|
+
self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
|
|
6949
6949
|
self.SaveSizeField = self._SaveSizeField(self, "SaveSizeField", service, rules, path)
|
|
6950
6950
|
self.UseSizeFiles = self._UseSizeFiles(self, "UseSizeFiles", service, rules, path)
|
|
6951
6951
|
self.AutoCreateScopedSizing = self._AutoCreateScopedSizing(self, "AutoCreateScopedSizing", service, rules, path)
|
|
@@ -6974,14 +6974,14 @@ class Root(PyMenu):
|
|
|
6974
6974
|
Argument ScopeProximityTo.
|
|
6975
6975
|
"""
|
|
6976
6976
|
|
|
6977
|
-
class
|
|
6977
|
+
class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
|
|
6978
6978
|
"""
|
|
6979
|
-
Argument
|
|
6979
|
+
Argument PreviewSizefield.
|
|
6980
6980
|
"""
|
|
6981
6981
|
|
|
6982
|
-
class
|
|
6982
|
+
class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
6983
6983
|
"""
|
|
6984
|
-
Argument
|
|
6984
|
+
Argument CurvatureNormalAngle.
|
|
6985
6985
|
"""
|
|
6986
6986
|
|
|
6987
6987
|
class _SaveSizeField(PyParameterCommandArgumentsSubItem):
|
|
@@ -7621,11 +7621,11 @@ class Root(PyMenu):
|
|
|
7621
7621
|
self.CreateCADAssemblies = self._CreateCADAssemblies(self, "CreateCADAssemblies", service, rules, path)
|
|
7622
7622
|
self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
|
|
7623
7623
|
self.OneZonePer = self._OneZonePer(self, "OneZonePer", service, rules, path)
|
|
7624
|
-
self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
|
|
7625
|
-
self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
|
|
7626
7624
|
self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
|
|
7627
|
-
self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
|
|
7628
7625
|
self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
|
|
7626
|
+
self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
|
|
7627
|
+
self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
|
|
7628
|
+
self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
|
|
7629
7629
|
|
|
7630
7630
|
class _SavePMDBIntermediateFile(PyParameterCommandArgumentsSubItem):
|
|
7631
7631
|
"""
|
|
@@ -7657,19 +7657,19 @@ class Root(PyMenu):
|
|
|
7657
7657
|
Argument OneZonePer.
|
|
7658
7658
|
"""
|
|
7659
7659
|
|
|
7660
|
-
class
|
|
7660
|
+
class _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
|
|
7661
7661
|
"""
|
|
7662
|
-
Argument
|
|
7662
|
+
Argument UsePartOrBodyAsSuffix.
|
|
7663
7663
|
"""
|
|
7664
7664
|
|
|
7665
|
-
class
|
|
7665
|
+
class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
|
|
7666
7666
|
"""
|
|
7667
|
-
Argument
|
|
7667
|
+
Argument ExtractFeatures.
|
|
7668
7668
|
"""
|
|
7669
7669
|
|
|
7670
|
-
class
|
|
7670
|
+
class _ImportNamedSelections(PyParameterCommandArgumentsSubItem):
|
|
7671
7671
|
"""
|
|
7672
|
-
Argument
|
|
7672
|
+
Argument ImportNamedSelections.
|
|
7673
7673
|
"""
|
|
7674
7674
|
|
|
7675
7675
|
class _ImportPartNames(PyParameterCommandArgumentsSubItem):
|
|
@@ -7677,9 +7677,9 @@ class Root(PyMenu):
|
|
|
7677
7677
|
Argument ImportPartNames.
|
|
7678
7678
|
"""
|
|
7679
7679
|
|
|
7680
|
-
class
|
|
7680
|
+
class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
|
|
7681
7681
|
"""
|
|
7682
|
-
Argument
|
|
7682
|
+
Argument ImportCurvatureDataFromCAD.
|
|
7683
7683
|
"""
|
|
7684
7684
|
|
|
7685
7685
|
class _ShareTopologyPreferences(PySingletonCommandArgumentsSubItem):
|
|
@@ -7699,9 +7699,9 @@ class Root(PyMenu):
|
|
|
7699
7699
|
self.Operation = self._Operation(self, "Operation", service, rules, path)
|
|
7700
7700
|
self.FluidLabelWildcard = self._FluidLabelWildcard(self, "FluidLabelWildcard", service, rules, path)
|
|
7701
7701
|
self.STToleranceIncrement = self._STToleranceIncrement(self, "STToleranceIncrement", service, rules, path)
|
|
7702
|
-
self.ShowShareTopologyPreferences = self._ShowShareTopologyPreferences(self, "ShowShareTopologyPreferences", service, rules, path)
|
|
7703
|
-
self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
|
|
7704
7702
|
self.IntfLabelList = self._IntfLabelList(self, "IntfLabelList", service, rules, path)
|
|
7703
|
+
self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
|
|
7704
|
+
self.ShowShareTopologyPreferences = self._ShowShareTopologyPreferences(self, "ShowShareTopologyPreferences", service, rules, path)
|
|
7705
7705
|
self.AdvancedImprove = self._AdvancedImprove(self, "AdvancedImprove", service, rules, path)
|
|
7706
7706
|
self.NumberOfJoinTries = self._NumberOfJoinTries(self, "NumberOfJoinTries", service, rules, path)
|
|
7707
7707
|
|
|
@@ -7755,9 +7755,9 @@ class Root(PyMenu):
|
|
|
7755
7755
|
Argument STToleranceIncrement.
|
|
7756
7756
|
"""
|
|
7757
7757
|
|
|
7758
|
-
class
|
|
7758
|
+
class _IntfLabelList(PyTextualCommandArgumentsSubItem):
|
|
7759
7759
|
"""
|
|
7760
|
-
Argument
|
|
7760
|
+
Argument IntfLabelList.
|
|
7761
7761
|
"""
|
|
7762
7762
|
|
|
7763
7763
|
class _PerLabelList(PyTextualCommandArgumentsSubItem):
|
|
@@ -7765,9 +7765,9 @@ class Root(PyMenu):
|
|
|
7765
7765
|
Argument PerLabelList.
|
|
7766
7766
|
"""
|
|
7767
7767
|
|
|
7768
|
-
class
|
|
7768
|
+
class _ShowShareTopologyPreferences(PyParameterCommandArgumentsSubItem):
|
|
7769
7769
|
"""
|
|
7770
|
-
Argument
|
|
7770
|
+
Argument ShowShareTopologyPreferences.
|
|
7771
7771
|
"""
|
|
7772
7772
|
|
|
7773
7773
|
class _AdvancedImprove(PyTextualCommandArgumentsSubItem):
|
|
@@ -8235,23 +8235,23 @@ class Root(PyMenu):
|
|
|
8235
8235
|
|
|
8236
8236
|
def __init__(self, parent, attr, service, rules, path):
|
|
8237
8237
|
super().__init__(parent, attr, service, rules, path)
|
|
8238
|
-
self.
|
|
8238
|
+
self.ShowVolumeMeshPreferences = self._ShowVolumeMeshPreferences(self, "ShowVolumeMeshPreferences", service, rules, path)
|
|
8239
8239
|
self.WritePrismControlFile = self._WritePrismControlFile(self, "WritePrismControlFile", service, rules, path)
|
|
8240
8240
|
self.PrepareZoneNames = self._PrepareZoneNames(self, "PrepareZoneNames", service, rules, path)
|
|
8241
8241
|
self.CheckSelfProximity = self._CheckSelfProximity(self, "CheckSelfProximity", service, rules, path)
|
|
8242
8242
|
self.Avoid1_8Transition = self._Avoid1_8Transition(self, "Avoid1_8Transition", service, rules, path)
|
|
8243
|
-
self.
|
|
8243
|
+
self.MergeBodyLabels = self._MergeBodyLabels(self, "MergeBodyLabels", service, rules, path)
|
|
8244
8244
|
self.PolyFeatureAngle = self._PolyFeatureAngle(self, "PolyFeatureAngle", service, rules, path)
|
|
8245
8245
|
self.SolidGrowthRate = self._SolidGrowthRate(self, "SolidGrowthRate", service, rules, path)
|
|
8246
|
-
self.
|
|
8246
|
+
self.UseSizeField = self._UseSizeField(self, "UseSizeField", service, rules, path)
|
|
8247
8247
|
self.QualityWarningLimit = self._QualityWarningLimit(self, "QualityWarningLimit", service, rules, path)
|
|
8248
|
+
self.QualityMethod = self._QualityMethod(self, "QualityMethod", service, rules, path)
|
|
8248
8249
|
self.UseSizeFieldInSolids = self._UseSizeFieldInSolids(self, "UseSizeFieldInSolids", service, rules, path)
|
|
8249
|
-
self.
|
|
8250
|
-
self.ShowVolumeMeshPreferences = self._ShowVolumeMeshPreferences(self, "ShowVolumeMeshPreferences", service, rules, path)
|
|
8250
|
+
self.PolyInSolids = self._PolyInSolids(self, "PolyInSolids", service, rules, path)
|
|
8251
8251
|
|
|
8252
|
-
class
|
|
8252
|
+
class _ShowVolumeMeshPreferences(PyParameterCommandArgumentsSubItem):
|
|
8253
8253
|
"""
|
|
8254
|
-
Argument
|
|
8254
|
+
Argument ShowVolumeMeshPreferences.
|
|
8255
8255
|
"""
|
|
8256
8256
|
|
|
8257
8257
|
class _WritePrismControlFile(PyTextualCommandArgumentsSubItem):
|
|
@@ -8274,9 +8274,9 @@ class Root(PyMenu):
|
|
|
8274
8274
|
Argument Avoid1_8Transition.
|
|
8275
8275
|
"""
|
|
8276
8276
|
|
|
8277
|
-
class
|
|
8277
|
+
class _MergeBodyLabels(PyTextualCommandArgumentsSubItem):
|
|
8278
8278
|
"""
|
|
8279
|
-
Argument
|
|
8279
|
+
Argument MergeBodyLabels.
|
|
8280
8280
|
"""
|
|
8281
8281
|
|
|
8282
8282
|
class _PolyFeatureAngle(PyNumericalCommandArgumentsSubItem):
|
|
@@ -8289,9 +8289,9 @@ class Root(PyMenu):
|
|
|
8289
8289
|
Argument SolidGrowthRate.
|
|
8290
8290
|
"""
|
|
8291
8291
|
|
|
8292
|
-
class
|
|
8292
|
+
class _UseSizeField(PyTextualCommandArgumentsSubItem):
|
|
8293
8293
|
"""
|
|
8294
|
-
Argument
|
|
8294
|
+
Argument UseSizeField.
|
|
8295
8295
|
"""
|
|
8296
8296
|
|
|
8297
8297
|
class _QualityWarningLimit(PyNumericalCommandArgumentsSubItem):
|
|
@@ -8299,19 +8299,19 @@ class Root(PyMenu):
|
|
|
8299
8299
|
Argument QualityWarningLimit.
|
|
8300
8300
|
"""
|
|
8301
8301
|
|
|
8302
|
-
class
|
|
8302
|
+
class _QualityMethod(PyTextualCommandArgumentsSubItem):
|
|
8303
8303
|
"""
|
|
8304
|
-
Argument
|
|
8304
|
+
Argument QualityMethod.
|
|
8305
8305
|
"""
|
|
8306
8306
|
|
|
8307
|
-
class
|
|
8307
|
+
class _UseSizeFieldInSolids(PyTextualCommandArgumentsSubItem):
|
|
8308
8308
|
"""
|
|
8309
|
-
Argument
|
|
8309
|
+
Argument UseSizeFieldInSolids.
|
|
8310
8310
|
"""
|
|
8311
8311
|
|
|
8312
|
-
class
|
|
8312
|
+
class _PolyInSolids(PyTextualCommandArgumentsSubItem):
|
|
8313
8313
|
"""
|
|
8314
|
-
Argument
|
|
8314
|
+
Argument PolyInSolids.
|
|
8315
8315
|
"""
|
|
8316
8316
|
|
|
8317
8317
|
class _PrismPreferences(PySingletonCommandArgumentsSubItem):
|
|
@@ -8329,8 +8329,8 @@ class Root(PyMenu):
|
|
|
8329
8329
|
self.MergeBoundaryLayers = self._MergeBoundaryLayers(self, "MergeBoundaryLayers", service, rules, path)
|
|
8330
8330
|
self.NormalSmoothRelaxationFactor = self._NormalSmoothRelaxationFactor(self, "NormalSmoothRelaxationFactor", service, rules, path)
|
|
8331
8331
|
self.ShowPrismPreferences = self._ShowPrismPreferences(self, "ShowPrismPreferences", service, rules, path)
|
|
8332
|
-
self.PrismMinAspectRatio = self._PrismMinAspectRatio(self, "PrismMinAspectRatio", service, rules, path)
|
|
8333
8332
|
self.StairstepExposedQuads = self._StairstepExposedQuads(self, "StairstepExposedQuads", service, rules, path)
|
|
8333
|
+
self.PrismMinAspectRatio = self._PrismMinAspectRatio(self, "PrismMinAspectRatio", service, rules, path)
|
|
8334
8334
|
self.PrismAdjacentAngle = self._PrismAdjacentAngle(self, "PrismAdjacentAngle", service, rules, path)
|
|
8335
8335
|
|
|
8336
8336
|
class _PrismKeepFirstLayer(PyTextualCommandArgumentsSubItem):
|
|
@@ -8373,14 +8373,14 @@ class Root(PyMenu):
|
|
|
8373
8373
|
Argument ShowPrismPreferences.
|
|
8374
8374
|
"""
|
|
8375
8375
|
|
|
8376
|
-
class
|
|
8376
|
+
class _StairstepExposedQuads(PyTextualCommandArgumentsSubItem):
|
|
8377
8377
|
"""
|
|
8378
|
-
Argument
|
|
8378
|
+
Argument StairstepExposedQuads.
|
|
8379
8379
|
"""
|
|
8380
8380
|
|
|
8381
|
-
class
|
|
8381
|
+
class _PrismMinAspectRatio(PyNumericalCommandArgumentsSubItem):
|
|
8382
8382
|
"""
|
|
8383
|
-
Argument
|
|
8383
|
+
Argument PrismMinAspectRatio.
|
|
8384
8384
|
"""
|
|
8385
8385
|
|
|
8386
8386
|
class _PrismAdjacentAngle(PyNumericalCommandArgumentsSubItem):
|
|
@@ -8535,8 +8535,8 @@ class Root(PyMenu):
|
|
|
8535
8535
|
self.SaveSizeFieldFile = self._SaveSizeFieldFile(self, "SaveSizeFieldFile", service, rules, path)
|
|
8536
8536
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
8537
8537
|
self.ScopeProximityTo = self._ScopeProximityTo(self, "ScopeProximityTo", service, rules, path)
|
|
8538
|
-
self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
|
|
8539
8538
|
self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
|
|
8539
|
+
self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
|
|
8540
8540
|
self.SaveSizeField = self._SaveSizeField(self, "SaveSizeField", service, rules, path)
|
|
8541
8541
|
self.UseSizeFiles = self._UseSizeFiles(self, "UseSizeFiles", service, rules, path)
|
|
8542
8542
|
self.AutoCreateScopedSizing = self._AutoCreateScopedSizing(self, "AutoCreateScopedSizing", service, rules, path)
|
|
@@ -8565,14 +8565,14 @@ class Root(PyMenu):
|
|
|
8565
8565
|
Argument ScopeProximityTo.
|
|
8566
8566
|
"""
|
|
8567
8567
|
|
|
8568
|
-
class
|
|
8568
|
+
class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
|
|
8569
8569
|
"""
|
|
8570
|
-
Argument
|
|
8570
|
+
Argument PreviewSizefield.
|
|
8571
8571
|
"""
|
|
8572
8572
|
|
|
8573
|
-
class
|
|
8573
|
+
class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
8574
8574
|
"""
|
|
8575
|
-
Argument
|
|
8575
|
+
Argument CurvatureNormalAngle.
|
|
8576
8576
|
"""
|
|
8577
8577
|
|
|
8578
8578
|
class _SaveSizeField(PyParameterCommandArgumentsSubItem):
|
|
@@ -8771,10 +8771,10 @@ class Root(PyMenu):
|
|
|
8771
8771
|
self.SIQualityIterations = self._SIQualityIterations(self, "SIQualityIterations", service, rules, path)
|
|
8772
8772
|
self.SIQualityMaxAngle = self._SIQualityMaxAngle(self, "SIQualityMaxAngle", service, rules, path)
|
|
8773
8773
|
self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
|
|
8774
|
-
self.
|
|
8774
|
+
self.SIRemoveStep = self._SIRemoveStep(self, "SIRemoveStep", service, rules, path)
|
|
8775
8775
|
self.AdvancedImprove = self._AdvancedImprove(self, "AdvancedImprove", service, rules, path)
|
|
8776
8776
|
self.SIStepWidth = self._SIStepWidth(self, "SIStepWidth", service, rules, path)
|
|
8777
|
-
self.
|
|
8777
|
+
self.ShowSMImprovePreferences = self._ShowSMImprovePreferences(self, "ShowSMImprovePreferences", service, rules, path)
|
|
8778
8778
|
|
|
8779
8779
|
class _SIStepQualityLimit(PyNumericalCommandArgumentsSubItem):
|
|
8780
8780
|
"""
|
|
@@ -8801,9 +8801,9 @@ class Root(PyMenu):
|
|
|
8801
8801
|
Argument AllowDefeaturing.
|
|
8802
8802
|
"""
|
|
8803
8803
|
|
|
8804
|
-
class
|
|
8804
|
+
class _SIRemoveStep(PyTextualCommandArgumentsSubItem):
|
|
8805
8805
|
"""
|
|
8806
|
-
Argument
|
|
8806
|
+
Argument SIRemoveStep.
|
|
8807
8807
|
"""
|
|
8808
8808
|
|
|
8809
8809
|
class _AdvancedImprove(PyTextualCommandArgumentsSubItem):
|
|
@@ -8816,9 +8816,9 @@ class Root(PyMenu):
|
|
|
8816
8816
|
Argument SIStepWidth.
|
|
8817
8817
|
"""
|
|
8818
8818
|
|
|
8819
|
-
class
|
|
8819
|
+
class _ShowSMImprovePreferences(PyParameterCommandArgumentsSubItem):
|
|
8820
8820
|
"""
|
|
8821
|
-
Argument
|
|
8821
|
+
Argument ShowSMImprovePreferences.
|
|
8822
8822
|
"""
|
|
8823
8823
|
|
|
8824
8824
|
def create_instance(self) -> _GeometrySetupCommandArguments:
|
|
@@ -9641,10 +9641,10 @@ class Root(PyMenu):
|
|
|
9641
9641
|
self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
|
|
9642
9642
|
self.OneZonePer = self._OneZonePer(self, "OneZonePer", service, rules, path)
|
|
9643
9643
|
self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
|
|
9644
|
-
self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
|
|
9645
9644
|
self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
|
|
9646
|
-
self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
|
|
9647
9645
|
self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
|
|
9646
|
+
self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
|
|
9647
|
+
self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
|
|
9648
9648
|
|
|
9649
9649
|
class _SavePMDBIntermediateFile(PyParameterCommandArgumentsSubItem):
|
|
9650
9650
|
"""
|
|
@@ -9681,14 +9681,14 @@ class Root(PyMenu):
|
|
|
9681
9681
|
Argument ImportCurvatureDataFromCAD.
|
|
9682
9682
|
"""
|
|
9683
9683
|
|
|
9684
|
-
class
|
|
9684
|
+
class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
|
|
9685
9685
|
"""
|
|
9686
|
-
Argument
|
|
9686
|
+
Argument ExtractFeatures.
|
|
9687
9687
|
"""
|
|
9688
9688
|
|
|
9689
|
-
class
|
|
9689
|
+
class _UsePartOrBodyAsSuffix(PyParameterCommandArgumentsSubItem):
|
|
9690
9690
|
"""
|
|
9691
|
-
Argument
|
|
9691
|
+
Argument UsePartOrBodyAsSuffix.
|
|
9692
9692
|
"""
|
|
9693
9693
|
|
|
9694
9694
|
class _ImportPartNames(PyParameterCommandArgumentsSubItem):
|
|
@@ -9696,9 +9696,9 @@ class Root(PyMenu):
|
|
|
9696
9696
|
Argument ImportPartNames.
|
|
9697
9697
|
"""
|
|
9698
9698
|
|
|
9699
|
-
class
|
|
9699
|
+
class _ImportNamedSelections(PyParameterCommandArgumentsSubItem):
|
|
9700
9700
|
"""
|
|
9701
|
-
Argument
|
|
9701
|
+
Argument ImportNamedSelections.
|
|
9702
9702
|
"""
|
|
9703
9703
|
|
|
9704
9704
|
def create_instance(self) -> _ImportBodyOfInfluenceGeometryCommandArguments:
|
|
@@ -9788,20 +9788,20 @@ class Root(PyMenu):
|
|
|
9788
9788
|
|
|
9789
9789
|
def __init__(self, parent, attr, service, rules, path):
|
|
9790
9790
|
super().__init__(parent, attr, service, rules, path)
|
|
9791
|
-
self.
|
|
9791
|
+
self.CITolerence = self._CITolerence(self, "CITolerence", service, rules, path)
|
|
9792
9792
|
self.FacetedBodies = self._FacetedBodies(self, "FacetedBodies", service, rules, path)
|
|
9793
9793
|
self.CISeparation = self._CISeparation(self, "CISeparation", service, rules, path)
|
|
9794
9794
|
self.CIRefaceting = self._CIRefaceting(self, "CIRefaceting", service, rules, path)
|
|
9795
9795
|
self.AutomaticObjectCreation = self._AutomaticObjectCreation(self, "AutomaticObjectCreation", service, rules, path)
|
|
9796
|
-
self.ShowImportCadPreferences = self._ShowImportCadPreferences(self, "ShowImportCadPreferences", service, rules, path)
|
|
9797
9796
|
self.MaxFacetLength = self._MaxFacetLength(self, "MaxFacetLength", service, rules, path)
|
|
9797
|
+
self.ShowImportCadPreferences = self._ShowImportCadPreferences(self, "ShowImportCadPreferences", service, rules, path)
|
|
9798
9798
|
self.MergeNodes = self._MergeNodes(self, "MergeNodes", service, rules, path)
|
|
9799
9799
|
self.CISeparationAngle = self._CISeparationAngle(self, "CISeparationAngle", service, rules, path)
|
|
9800
|
-
self.
|
|
9800
|
+
self.EdgeLabel = self._EdgeLabel(self, "EdgeLabel", service, rules, path)
|
|
9801
9801
|
|
|
9802
|
-
class
|
|
9802
|
+
class _CITolerence(PyNumericalCommandArgumentsSubItem):
|
|
9803
9803
|
"""
|
|
9804
|
-
Argument
|
|
9804
|
+
Argument CITolerence.
|
|
9805
9805
|
"""
|
|
9806
9806
|
|
|
9807
9807
|
class _FacetedBodies(PyTextualCommandArgumentsSubItem):
|
|
@@ -9824,14 +9824,14 @@ class Root(PyMenu):
|
|
|
9824
9824
|
Argument AutomaticObjectCreation.
|
|
9825
9825
|
"""
|
|
9826
9826
|
|
|
9827
|
-
class
|
|
9827
|
+
class _MaxFacetLength(PyNumericalCommandArgumentsSubItem):
|
|
9828
9828
|
"""
|
|
9829
|
-
Argument
|
|
9829
|
+
Argument MaxFacetLength.
|
|
9830
9830
|
"""
|
|
9831
9831
|
|
|
9832
|
-
class
|
|
9832
|
+
class _ShowImportCadPreferences(PyParameterCommandArgumentsSubItem):
|
|
9833
9833
|
"""
|
|
9834
|
-
Argument
|
|
9834
|
+
Argument ShowImportCadPreferences.
|
|
9835
9835
|
"""
|
|
9836
9836
|
|
|
9837
9837
|
class _MergeNodes(PyTextualCommandArgumentsSubItem):
|
|
@@ -9844,9 +9844,9 @@ class Root(PyMenu):
|
|
|
9844
9844
|
Argument CISeparationAngle.
|
|
9845
9845
|
"""
|
|
9846
9846
|
|
|
9847
|
-
class
|
|
9847
|
+
class _EdgeLabel(PyTextualCommandArgumentsSubItem):
|
|
9848
9848
|
"""
|
|
9849
|
-
Argument
|
|
9849
|
+
Argument EdgeLabel.
|
|
9850
9850
|
"""
|
|
9851
9851
|
|
|
9852
9852
|
class _FileName(PyTextualCommandArgumentsSubItem):
|
|
@@ -9898,10 +9898,10 @@ class Root(PyMenu):
|
|
|
9898
9898
|
self.FeatureAngle = self._FeatureAngle(self, "FeatureAngle", service, rules, path)
|
|
9899
9899
|
self.OneZonePer = self._OneZonePer(self, "OneZonePer", service, rules, path)
|
|
9900
9900
|
self.UsePartOrBodyAsSuffix = self._UsePartOrBodyAsSuffix(self, "UsePartOrBodyAsSuffix", service, rules, path)
|
|
9901
|
-
self.
|
|
9901
|
+
self.ImportNamedSelections = self._ImportNamedSelections(self, "ImportNamedSelections", service, rules, path)
|
|
9902
9902
|
self.ImportCurvatureDataFromCAD = self._ImportCurvatureDataFromCAD(self, "ImportCurvatureDataFromCAD", service, rules, path)
|
|
9903
9903
|
self.ImportPartNames = self._ImportPartNames(self, "ImportPartNames", service, rules, path)
|
|
9904
|
-
self.
|
|
9904
|
+
self.ExtractFeatures = self._ExtractFeatures(self, "ExtractFeatures", service, rules, path)
|
|
9905
9905
|
|
|
9906
9906
|
class _SavePMDBIntermediateFile(PyParameterCommandArgumentsSubItem):
|
|
9907
9907
|
"""
|
|
@@ -9938,9 +9938,9 @@ class Root(PyMenu):
|
|
|
9938
9938
|
Argument UsePartOrBodyAsSuffix.
|
|
9939
9939
|
"""
|
|
9940
9940
|
|
|
9941
|
-
class
|
|
9941
|
+
class _ImportNamedSelections(PyParameterCommandArgumentsSubItem):
|
|
9942
9942
|
"""
|
|
9943
|
-
Argument
|
|
9943
|
+
Argument ImportNamedSelections.
|
|
9944
9944
|
"""
|
|
9945
9945
|
|
|
9946
9946
|
class _ImportCurvatureDataFromCAD(PyParameterCommandArgumentsSubItem):
|
|
@@ -9953,9 +9953,9 @@ class Root(PyMenu):
|
|
|
9953
9953
|
Argument ImportPartNames.
|
|
9954
9954
|
"""
|
|
9955
9955
|
|
|
9956
|
-
class
|
|
9956
|
+
class _ExtractFeatures(PyParameterCommandArgumentsSubItem):
|
|
9957
9957
|
"""
|
|
9958
|
-
Argument
|
|
9958
|
+
Argument ExtractFeatures.
|
|
9959
9959
|
"""
|
|
9960
9960
|
|
|
9961
9961
|
def create_instance(self) -> _ImportGeometryCommandArguments:
|
|
@@ -10241,8 +10241,8 @@ class Root(PyMenu):
|
|
|
10241
10241
|
def __init__(self, parent, attr, service, rules, path):
|
|
10242
10242
|
super().__init__(parent, attr, service, rules, path)
|
|
10243
10243
|
self.FirstNumber = self._FirstNumber(self, "FirstNumber", service, rules, path)
|
|
10244
|
-
self.CustomPatternString = self._CustomPatternString(self, "CustomPatternString", service, rules, path)
|
|
10245
10244
|
self.NbCellsPerUnit = self._NbCellsPerUnit(self, "NbCellsPerUnit", service, rules, path)
|
|
10245
|
+
self.CustomPatternString = self._CustomPatternString(self, "CustomPatternString", service, rules, path)
|
|
10246
10246
|
self.InvokeBatteryModelingOptions = self._InvokeBatteryModelingOptions(self, "InvokeBatteryModelingOptions", service, rules, path)
|
|
10247
10247
|
self.UseCustomPattern = self._UseCustomPattern(self, "UseCustomPattern", service, rules, path)
|
|
10248
10248
|
|
|
@@ -10251,14 +10251,14 @@ class Root(PyMenu):
|
|
|
10251
10251
|
Argument FirstNumber.
|
|
10252
10252
|
"""
|
|
10253
10253
|
|
|
10254
|
-
class
|
|
10254
|
+
class _NbCellsPerUnit(PyNumericalCommandArgumentsSubItem):
|
|
10255
10255
|
"""
|
|
10256
|
-
Argument
|
|
10256
|
+
Argument NbCellsPerUnit.
|
|
10257
10257
|
"""
|
|
10258
10258
|
|
|
10259
|
-
class
|
|
10259
|
+
class _CustomPatternString(PyTextualCommandArgumentsSubItem):
|
|
10260
10260
|
"""
|
|
10261
|
-
Argument
|
|
10261
|
+
Argument CustomPatternString.
|
|
10262
10262
|
"""
|
|
10263
10263
|
|
|
10264
10264
|
class _InvokeBatteryModelingOptions(PyTextualCommandArgumentsSubItem):
|
|
@@ -10351,8 +10351,8 @@ class Root(PyMenu):
|
|
|
10351
10351
|
super().__init__(parent, attr, service, rules, path)
|
|
10352
10352
|
self.FacetMaxEdgeLength = self._FacetMaxEdgeLength(self, "FacetMaxEdgeLength", service, rules, path)
|
|
10353
10353
|
self.FacetResolution = self._FacetResolution(self, "FacetResolution", service, rules, path)
|
|
10354
|
-
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
10355
10354
|
self.MaxEdgeLengthFactor = self._MaxEdgeLengthFactor(self, "MaxEdgeLengthFactor", service, rules, path)
|
|
10355
|
+
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
10356
10356
|
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
10357
10357
|
self.MaxEdgeLength = self._MaxEdgeLength(self, "MaxEdgeLength", service, rules, path)
|
|
10358
10358
|
self.CustomNormalAngle = self._CustomNormalAngle(self, "CustomNormalAngle", service, rules, path)
|
|
@@ -10369,14 +10369,14 @@ class Root(PyMenu):
|
|
|
10369
10369
|
Argument FacetResolution.
|
|
10370
10370
|
"""
|
|
10371
10371
|
|
|
10372
|
-
class
|
|
10372
|
+
class _MaxEdgeLengthFactor(PyNumericalCommandArgumentsSubItem):
|
|
10373
10373
|
"""
|
|
10374
|
-
Argument
|
|
10374
|
+
Argument MaxEdgeLengthFactor.
|
|
10375
10375
|
"""
|
|
10376
10376
|
|
|
10377
|
-
class
|
|
10377
|
+
class _Deviation(PyNumericalCommandArgumentsSubItem):
|
|
10378
10378
|
"""
|
|
10379
|
-
Argument
|
|
10379
|
+
Argument Deviation.
|
|
10380
10380
|
"""
|
|
10381
10381
|
|
|
10382
10382
|
class _NormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
@@ -10506,11 +10506,11 @@ class Root(PyMenu):
|
|
|
10506
10506
|
self.MinSize = self._MinSize(self, "MinSize", service, rules, path)
|
|
10507
10507
|
self.WrapMax = self._WrapMax(self, "WrapMax", service, rules, path)
|
|
10508
10508
|
self.AdvancedOptions = self._AdvancedOptions(self, "AdvancedOptions", service, rules, path)
|
|
10509
|
-
self.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", service, rules, path)
|
|
10510
|
-
self.SizingType = self._SizingType(self, "SizingType", service, rules, path)
|
|
10511
10509
|
self.InitialSizeControl = self._InitialSizeControl(self, "InitialSizeControl", service, rules, path)
|
|
10512
|
-
self.
|
|
10510
|
+
self.SizingType = self._SizingType(self, "SizingType", service, rules, path)
|
|
10511
|
+
self.WrapGrowthRate = self._WrapGrowthRate(self, "WrapGrowthRate", service, rules, path)
|
|
10513
10512
|
self.WrapCurvatureNormalAngle = self._WrapCurvatureNormalAngle(self, "WrapCurvatureNormalAngle", service, rules, path)
|
|
10513
|
+
self.CellsPerGap = self._CellsPerGap(self, "CellsPerGap", service, rules, path)
|
|
10514
10514
|
self.TargetSizeControl = self._TargetSizeControl(self, "TargetSizeControl", service, rules, path)
|
|
10515
10515
|
self.GrowthRate = self._GrowthRate(self, "GrowthRate", service, rules, path)
|
|
10516
10516
|
|
|
@@ -10559,9 +10559,9 @@ class Root(PyMenu):
|
|
|
10559
10559
|
Argument AdvancedOptions.
|
|
10560
10560
|
"""
|
|
10561
10561
|
|
|
10562
|
-
class
|
|
10562
|
+
class _InitialSizeControl(PyParameterCommandArgumentsSubItem):
|
|
10563
10563
|
"""
|
|
10564
|
-
Argument
|
|
10564
|
+
Argument InitialSizeControl.
|
|
10565
10565
|
"""
|
|
10566
10566
|
|
|
10567
10567
|
class _SizingType(PyTextualCommandArgumentsSubItem):
|
|
@@ -10569,19 +10569,19 @@ class Root(PyMenu):
|
|
|
10569
10569
|
Argument SizingType.
|
|
10570
10570
|
"""
|
|
10571
10571
|
|
|
10572
|
-
class
|
|
10572
|
+
class _WrapGrowthRate(PyNumericalCommandArgumentsSubItem):
|
|
10573
10573
|
"""
|
|
10574
|
-
Argument
|
|
10574
|
+
Argument WrapGrowthRate.
|
|
10575
10575
|
"""
|
|
10576
10576
|
|
|
10577
|
-
class
|
|
10577
|
+
class _WrapCurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
10578
10578
|
"""
|
|
10579
|
-
Argument
|
|
10579
|
+
Argument WrapCurvatureNormalAngle.
|
|
10580
10580
|
"""
|
|
10581
10581
|
|
|
10582
|
-
class
|
|
10582
|
+
class _CellsPerGap(PyNumericalCommandArgumentsSubItem):
|
|
10583
10583
|
"""
|
|
10584
|
-
Argument
|
|
10584
|
+
Argument CellsPerGap.
|
|
10585
10585
|
"""
|
|
10586
10586
|
|
|
10587
10587
|
class _TargetSizeControl(PyParameterCommandArgumentsSubItem):
|
|
@@ -10958,8 +10958,8 @@ class Root(PyMenu):
|
|
|
10958
10958
|
self.SaveSizeFieldFile = self._SaveSizeFieldFile(self, "SaveSizeFieldFile", service, rules, path)
|
|
10959
10959
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
10960
10960
|
self.ScopeProximityTo = self._ScopeProximityTo(self, "ScopeProximityTo", service, rules, path)
|
|
10961
|
-
self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
|
|
10962
10961
|
self.PreviewSizefield = self._PreviewSizefield(self, "PreviewSizefield", service, rules, path)
|
|
10962
|
+
self.CurvatureNormalAngle = self._CurvatureNormalAngle(self, "CurvatureNormalAngle", service, rules, path)
|
|
10963
10963
|
self.SaveSizeField = self._SaveSizeField(self, "SaveSizeField", service, rules, path)
|
|
10964
10964
|
self.UseSizeFiles = self._UseSizeFiles(self, "UseSizeFiles", service, rules, path)
|
|
10965
10965
|
self.AutoCreateScopedSizing = self._AutoCreateScopedSizing(self, "AutoCreateScopedSizing", service, rules, path)
|
|
@@ -10988,14 +10988,14 @@ class Root(PyMenu):
|
|
|
10988
10988
|
Argument ScopeProximityTo.
|
|
10989
10989
|
"""
|
|
10990
10990
|
|
|
10991
|
-
class
|
|
10991
|
+
class _PreviewSizefield(PyParameterCommandArgumentsSubItem):
|
|
10992
10992
|
"""
|
|
10993
|
-
Argument
|
|
10993
|
+
Argument PreviewSizefield.
|
|
10994
10994
|
"""
|
|
10995
10995
|
|
|
10996
|
-
class
|
|
10996
|
+
class _CurvatureNormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
10997
10997
|
"""
|
|
10998
|
-
Argument
|
|
10998
|
+
Argument CurvatureNormalAngle.
|
|
10999
10999
|
"""
|
|
11000
11000
|
|
|
11001
11001
|
class _SaveSizeField(PyParameterCommandArgumentsSubItem):
|
|
@@ -11271,8 +11271,8 @@ class Root(PyMenu):
|
|
|
11271
11271
|
def __init__(self, parent, attr, service, rules, path):
|
|
11272
11272
|
super().__init__(parent, attr, service, rules, path)
|
|
11273
11273
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
11274
|
-
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
11275
11274
|
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
11275
|
+
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
11276
11276
|
self.Refacet = self._Refacet(self, "Refacet", service, rules, path)
|
|
11277
11277
|
|
|
11278
11278
|
class _MaxSize(PyNumericalCommandArgumentsSubItem):
|
|
@@ -11280,14 +11280,14 @@ class Root(PyMenu):
|
|
|
11280
11280
|
Argument MaxSize.
|
|
11281
11281
|
"""
|
|
11282
11282
|
|
|
11283
|
-
class
|
|
11283
|
+
class _NormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
11284
11284
|
"""
|
|
11285
|
-
Argument
|
|
11285
|
+
Argument NormalAngle.
|
|
11286
11286
|
"""
|
|
11287
11287
|
|
|
11288
|
-
class
|
|
11288
|
+
class _Deviation(PyNumericalCommandArgumentsSubItem):
|
|
11289
11289
|
"""
|
|
11290
|
-
Argument
|
|
11290
|
+
Argument Deviation.
|
|
11291
11291
|
"""
|
|
11292
11292
|
|
|
11293
11293
|
class _Refacet(PyParameterCommandArgumentsSubItem):
|
|
@@ -11355,8 +11355,8 @@ class Root(PyMenu):
|
|
|
11355
11355
|
super().__init__(parent, attr, service, rules, path)
|
|
11356
11356
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
11357
11357
|
self.RefacetDuringLoad = self._RefacetDuringLoad(self, "RefacetDuringLoad", service, rules, path)
|
|
11358
|
-
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
11359
11358
|
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
11359
|
+
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
11360
11360
|
|
|
11361
11361
|
class _MaxSize(PyNumericalCommandArgumentsSubItem):
|
|
11362
11362
|
"""
|
|
@@ -11368,14 +11368,14 @@ class Root(PyMenu):
|
|
|
11368
11368
|
Argument RefacetDuringLoad.
|
|
11369
11369
|
"""
|
|
11370
11370
|
|
|
11371
|
-
class
|
|
11371
|
+
class _Deviation(PyNumericalCommandArgumentsSubItem):
|
|
11372
11372
|
"""
|
|
11373
|
-
Argument
|
|
11373
|
+
Argument Deviation.
|
|
11374
11374
|
"""
|
|
11375
11375
|
|
|
11376
|
-
class
|
|
11376
|
+
class _NormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
11377
11377
|
"""
|
|
11378
|
-
Argument
|
|
11378
|
+
Argument NormalAngle.
|
|
11379
11379
|
"""
|
|
11380
11380
|
|
|
11381
11381
|
def create_instance(self) -> _PartManagementCommandArguments:
|
|
@@ -11965,10 +11965,10 @@ class Root(PyMenu):
|
|
|
11965
11965
|
self.ConnectLabelWildcard = self._ConnectLabelWildcard(self, "ConnectLabelWildcard", service, rules, path)
|
|
11966
11966
|
self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
|
|
11967
11967
|
self.RelativeShareTopologyTolerance = self._RelativeShareTopologyTolerance(self, "RelativeShareTopologyTolerance", service, rules, path)
|
|
11968
|
-
self.
|
|
11968
|
+
self.FluidLabelWildcard = self._FluidLabelWildcard(self, "FluidLabelWildcard", service, rules, path)
|
|
11969
11969
|
self.ExecuteJoinIntersect = self._ExecuteJoinIntersect(self, "ExecuteJoinIntersect", service, rules, path)
|
|
11970
11970
|
self.Operation = self._Operation(self, "Operation", service, rules, path)
|
|
11971
|
-
self.
|
|
11971
|
+
self.ShareTopologyAngle = self._ShareTopologyAngle(self, "ShareTopologyAngle", service, rules, path)
|
|
11972
11972
|
self.STToleranceIncrement = self._STToleranceIncrement(self, "STToleranceIncrement", service, rules, path)
|
|
11973
11973
|
self.IntfLabelList = self._IntfLabelList(self, "IntfLabelList", service, rules, path)
|
|
11974
11974
|
self.PerLabelList = self._PerLabelList(self, "PerLabelList", service, rules, path)
|
|
@@ -12001,9 +12001,9 @@ class Root(PyMenu):
|
|
|
12001
12001
|
Argument RelativeShareTopologyTolerance.
|
|
12002
12002
|
"""
|
|
12003
12003
|
|
|
12004
|
-
class
|
|
12004
|
+
class _FluidLabelWildcard(PyTextualCommandArgumentsSubItem):
|
|
12005
12005
|
"""
|
|
12006
|
-
Argument
|
|
12006
|
+
Argument FluidLabelWildcard.
|
|
12007
12007
|
"""
|
|
12008
12008
|
|
|
12009
12009
|
class _ExecuteJoinIntersect(PyTextualCommandArgumentsSubItem):
|
|
@@ -12016,9 +12016,9 @@ class Root(PyMenu):
|
|
|
12016
12016
|
Argument Operation.
|
|
12017
12017
|
"""
|
|
12018
12018
|
|
|
12019
|
-
class
|
|
12019
|
+
class _ShareTopologyAngle(PyNumericalCommandArgumentsSubItem):
|
|
12020
12020
|
"""
|
|
12021
|
-
Argument
|
|
12021
|
+
Argument ShareTopologyAngle.
|
|
12022
12022
|
"""
|
|
12023
12023
|
|
|
12024
12024
|
class _STToleranceIncrement(PyNumericalCommandArgumentsSubItem):
|
|
@@ -12063,10 +12063,10 @@ class Root(PyMenu):
|
|
|
12063
12063
|
self.SIQualityIterations = self._SIQualityIterations(self, "SIQualityIterations", service, rules, path)
|
|
12064
12064
|
self.SIQualityMaxAngle = self._SIQualityMaxAngle(self, "SIQualityMaxAngle", service, rules, path)
|
|
12065
12065
|
self.AllowDefeaturing = self._AllowDefeaturing(self, "AllowDefeaturing", service, rules, path)
|
|
12066
|
-
self.
|
|
12066
|
+
self.ShowSMImprovePreferences = self._ShowSMImprovePreferences(self, "ShowSMImprovePreferences", service, rules, path)
|
|
12067
12067
|
self.AdvancedImprove = self._AdvancedImprove(self, "AdvancedImprove", service, rules, path)
|
|
12068
12068
|
self.SIStepWidth = self._SIStepWidth(self, "SIStepWidth", service, rules, path)
|
|
12069
|
-
self.
|
|
12069
|
+
self.SIRemoveStep = self._SIRemoveStep(self, "SIRemoveStep", service, rules, path)
|
|
12070
12070
|
|
|
12071
12071
|
class _SIStepQualityLimit(PyNumericalCommandArgumentsSubItem):
|
|
12072
12072
|
"""
|
|
@@ -12093,9 +12093,9 @@ class Root(PyMenu):
|
|
|
12093
12093
|
Argument AllowDefeaturing.
|
|
12094
12094
|
"""
|
|
12095
12095
|
|
|
12096
|
-
class
|
|
12096
|
+
class _ShowSMImprovePreferences(PyParameterCommandArgumentsSubItem):
|
|
12097
12097
|
"""
|
|
12098
|
-
Argument
|
|
12098
|
+
Argument ShowSMImprovePreferences.
|
|
12099
12099
|
"""
|
|
12100
12100
|
|
|
12101
12101
|
class _AdvancedImprove(PyTextualCommandArgumentsSubItem):
|
|
@@ -12108,9 +12108,9 @@ class Root(PyMenu):
|
|
|
12108
12108
|
Argument SIStepWidth.
|
|
12109
12109
|
"""
|
|
12110
12110
|
|
|
12111
|
-
class
|
|
12111
|
+
class _SIRemoveStep(PyTextualCommandArgumentsSubItem):
|
|
12112
12112
|
"""
|
|
12113
|
-
Argument
|
|
12113
|
+
Argument SIRemoveStep.
|
|
12114
12114
|
"""
|
|
12115
12115
|
|
|
12116
12116
|
class _SurfaceMeshPreferences(PySingletonCommandArgumentsSubItem):
|
|
@@ -12121,17 +12121,17 @@ class Root(PyMenu):
|
|
|
12121
12121
|
def __init__(self, parent, attr, service, rules, path):
|
|
12122
12122
|
super().__init__(parent, attr, service, rules, path)
|
|
12123
12123
|
self.SMQualityCollapseLimit = self._SMQualityCollapseLimit(self, "SMQualityCollapseLimit", service, rules, path)
|
|
12124
|
-
self.
|
|
12125
|
-
self.SMQualityImprove = self._SMQualityImprove(self, "SMQualityImprove", service, rules, path)
|
|
12126
|
-
self.ShowSurfaceMeshPreferences = self._ShowSurfaceMeshPreferences(self, "ShowSurfaceMeshPreferences", service, rules, path)
|
|
12124
|
+
self.AutoMerge = self._AutoMerge(self, "AutoMerge", service, rules, path)
|
|
12127
12125
|
self.SMSeparation = self._SMSeparation(self, "SMSeparation", service, rules, path)
|
|
12126
|
+
self.ShowSurfaceMeshPreferences = self._ShowSurfaceMeshPreferences(self, "ShowSurfaceMeshPreferences", service, rules, path)
|
|
12128
12127
|
self.SMSeparationAngle = self._SMSeparationAngle(self, "SMSeparationAngle", service, rules, path)
|
|
12129
|
-
self.
|
|
12128
|
+
self.SMQualityImprove = self._SMQualityImprove(self, "SMQualityImprove", service, rules, path)
|
|
12129
|
+
self.FoldFaceLimit = self._FoldFaceLimit(self, "FoldFaceLimit", service, rules, path)
|
|
12130
12130
|
self.SMRemoveStep = self._SMRemoveStep(self, "SMRemoveStep", service, rules, path)
|
|
12131
12131
|
self.SMStepWidth = self._SMStepWidth(self, "SMStepWidth", service, rules, path)
|
|
12132
|
-
self.VolumeMeshMaxSize = self._VolumeMeshMaxSize(self, "VolumeMeshMaxSize", service, rules, path)
|
|
12133
|
-
self.AutoAssignZoneTypes = self._AutoAssignZoneTypes(self, "AutoAssignZoneTypes", service, rules, path)
|
|
12134
12132
|
self.SMQualityMaxAngle = self._SMQualityMaxAngle(self, "SMQualityMaxAngle", service, rules, path)
|
|
12133
|
+
self.AutoAssignZoneTypes = self._AutoAssignZoneTypes(self, "AutoAssignZoneTypes", service, rules, path)
|
|
12134
|
+
self.VolumeMeshMaxSize = self._VolumeMeshMaxSize(self, "VolumeMeshMaxSize", service, rules, path)
|
|
12135
12135
|
self.SMQualityImproveLimit = self._SMQualityImproveLimit(self, "SMQualityImproveLimit", service, rules, path)
|
|
12136
12136
|
self.AutoSurfaceRemesh = self._AutoSurfaceRemesh(self, "AutoSurfaceRemesh", service, rules, path)
|
|
12137
12137
|
self.SelfIntersectCheck = self._SelfIntersectCheck(self, "SelfIntersectCheck", service, rules, path)
|
|
@@ -12142,14 +12142,14 @@ class Root(PyMenu):
|
|
|
12142
12142
|
Argument SMQualityCollapseLimit.
|
|
12143
12143
|
"""
|
|
12144
12144
|
|
|
12145
|
-
class
|
|
12145
|
+
class _AutoMerge(PyParameterCommandArgumentsSubItem):
|
|
12146
12146
|
"""
|
|
12147
|
-
Argument
|
|
12147
|
+
Argument AutoMerge.
|
|
12148
12148
|
"""
|
|
12149
12149
|
|
|
12150
|
-
class
|
|
12150
|
+
class _SMSeparation(PyTextualCommandArgumentsSubItem):
|
|
12151
12151
|
"""
|
|
12152
|
-
Argument
|
|
12152
|
+
Argument SMSeparation.
|
|
12153
12153
|
"""
|
|
12154
12154
|
|
|
12155
12155
|
class _ShowSurfaceMeshPreferences(PyParameterCommandArgumentsSubItem):
|
|
@@ -12157,19 +12157,19 @@ class Root(PyMenu):
|
|
|
12157
12157
|
Argument ShowSurfaceMeshPreferences.
|
|
12158
12158
|
"""
|
|
12159
12159
|
|
|
12160
|
-
class
|
|
12160
|
+
class _SMSeparationAngle(PyNumericalCommandArgumentsSubItem):
|
|
12161
12161
|
"""
|
|
12162
|
-
Argument
|
|
12162
|
+
Argument SMSeparationAngle.
|
|
12163
12163
|
"""
|
|
12164
12164
|
|
|
12165
|
-
class
|
|
12165
|
+
class _SMQualityImprove(PyTextualCommandArgumentsSubItem):
|
|
12166
12166
|
"""
|
|
12167
|
-
Argument
|
|
12167
|
+
Argument SMQualityImprove.
|
|
12168
12168
|
"""
|
|
12169
12169
|
|
|
12170
|
-
class
|
|
12170
|
+
class _FoldFaceLimit(PyNumericalCommandArgumentsSubItem):
|
|
12171
12171
|
"""
|
|
12172
|
-
Argument
|
|
12172
|
+
Argument FoldFaceLimit.
|
|
12173
12173
|
"""
|
|
12174
12174
|
|
|
12175
12175
|
class _SMRemoveStep(PyTextualCommandArgumentsSubItem):
|
|
@@ -12182,9 +12182,9 @@ class Root(PyMenu):
|
|
|
12182
12182
|
Argument SMStepWidth.
|
|
12183
12183
|
"""
|
|
12184
12184
|
|
|
12185
|
-
class
|
|
12185
|
+
class _SMQualityMaxAngle(PyNumericalCommandArgumentsSubItem):
|
|
12186
12186
|
"""
|
|
12187
|
-
Argument
|
|
12187
|
+
Argument SMQualityMaxAngle.
|
|
12188
12188
|
"""
|
|
12189
12189
|
|
|
12190
12190
|
class _AutoAssignZoneTypes(PyTextualCommandArgumentsSubItem):
|
|
@@ -12192,9 +12192,9 @@ class Root(PyMenu):
|
|
|
12192
12192
|
Argument AutoAssignZoneTypes.
|
|
12193
12193
|
"""
|
|
12194
12194
|
|
|
12195
|
-
class
|
|
12195
|
+
class _VolumeMeshMaxSize(PyNumericalCommandArgumentsSubItem):
|
|
12196
12196
|
"""
|
|
12197
|
-
Argument
|
|
12197
|
+
Argument VolumeMeshMaxSize.
|
|
12198
12198
|
"""
|
|
12199
12199
|
|
|
12200
12200
|
class _SMQualityImproveLimit(PyNumericalCommandArgumentsSubItem):
|
|
@@ -12300,10 +12300,10 @@ class Root(PyMenu):
|
|
|
12300
12300
|
def __init__(self, parent, attr, service, rules, path):
|
|
12301
12301
|
super().__init__(parent, attr, service, rules, path)
|
|
12302
12302
|
self.NewLabelObjects = self._NewLabelObjects(self, "NewLabelObjects", service, rules, path)
|
|
12303
|
-
self.
|
|
12303
|
+
self.NewLabelCells = self._NewLabelCells(self, "NewLabelCells", service, rules, path)
|
|
12304
12304
|
self.NewLabelType = self._NewLabelType(self, "NewLabelType", service, rules, path)
|
|
12305
|
+
self.NewLabelResolution = self._NewLabelResolution(self, "NewLabelResolution", service, rules, path)
|
|
12305
12306
|
self.NewLabels = self._NewLabels(self, "NewLabels", service, rules, path)
|
|
12306
|
-
self.NewLabelCells = self._NewLabelCells(self, "NewLabelCells", service, rules, path)
|
|
12307
12307
|
self.NewLabelMax = self._NewLabelMax(self, "NewLabelMax", service, rules, path)
|
|
12308
12308
|
self.NewZoneType = self._NewZoneType(self, "NewZoneType", service, rules, path)
|
|
12309
12309
|
self.NewLabelCurvature = self._NewLabelCurvature(self, "NewLabelCurvature", service, rules, path)
|
|
@@ -12314,9 +12314,9 @@ class Root(PyMenu):
|
|
|
12314
12314
|
Argument NewLabelObjects.
|
|
12315
12315
|
"""
|
|
12316
12316
|
|
|
12317
|
-
class
|
|
12317
|
+
class _NewLabelCells(PyTextualCommandArgumentsSubItem):
|
|
12318
12318
|
"""
|
|
12319
|
-
Argument
|
|
12319
|
+
Argument NewLabelCells.
|
|
12320
12320
|
"""
|
|
12321
12321
|
|
|
12322
12322
|
class _NewLabelType(PyTextualCommandArgumentsSubItem):
|
|
@@ -12324,14 +12324,14 @@ class Root(PyMenu):
|
|
|
12324
12324
|
Argument NewLabelType.
|
|
12325
12325
|
"""
|
|
12326
12326
|
|
|
12327
|
-
class
|
|
12327
|
+
class _NewLabelResolution(PyTextualCommandArgumentsSubItem):
|
|
12328
12328
|
"""
|
|
12329
|
-
Argument
|
|
12329
|
+
Argument NewLabelResolution.
|
|
12330
12330
|
"""
|
|
12331
12331
|
|
|
12332
|
-
class
|
|
12332
|
+
class _NewLabels(PyTextualCommandArgumentsSubItem):
|
|
12333
12333
|
"""
|
|
12334
|
-
Argument
|
|
12334
|
+
Argument NewLabels.
|
|
12335
12335
|
"""
|
|
12336
12336
|
|
|
12337
12337
|
class _NewLabelMax(PyTextualCommandArgumentsSubItem):
|