ansys-fluent-core 0.35.dev1__py3-none-any.whl → 0.36.dev0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of ansys-fluent-core might be problematic. Click here for more details.
- ansys/fluent/core/__init__.py +2 -2
- ansys/fluent/core/codegen/__init__.py +1 -0
- ansys/fluent/core/codegen/datamodelgen.py +13 -2
- ansys/fluent/core/codegen/settingsgen.py +4 -0
- ansys/fluent/core/docker/docker_compose.py +30 -1
- ansys/fluent/core/examples/downloads.py +3 -4
- ansys/fluent/core/fluent_connection.py +2 -3
- ansys/fluent/core/generated/api_tree/api_objects.json +1 -1
- ansys/fluent/core/generated/datamodel_231/flicing.py +25 -25
- ansys/fluent/core/generated/datamodel_231/meshing.py +202 -202
- ansys/fluent/core/generated/datamodel_232/flicing.py +25 -25
- ansys/fluent/core/generated/datamodel_232/meshing.py +161 -161
- ansys/fluent/core/generated/datamodel_241/flicing.py +30 -30
- ansys/fluent/core/generated/datamodel_241/meshing.py +241 -241
- ansys/fluent/core/generated/datamodel_242/flicing.py +45 -45
- ansys/fluent/core/generated/datamodel_242/meshing.py +318 -318
- ansys/fluent/core/generated/datamodel_242/part_management.py +9 -9
- ansys/fluent/core/generated/datamodel_251/flicing.py +25 -25
- ansys/fluent/core/generated/datamodel_251/meshing.py +395 -395
- ansys/fluent/core/generated/datamodel_251/part_management.py +6 -6
- ansys/fluent/core/generated/datamodel_252/flicing.py +45 -45
- ansys/fluent/core/generated/datamodel_252/meshing.py +394 -394
- ansys/fluent/core/generated/datamodel_252/part_management.py +5 -5
- ansys/fluent/core/generated/datamodel_261/flicing.py +20 -20
- ansys/fluent/core/generated/datamodel_261/meshing.py +500 -493
- ansys/fluent/core/generated/datamodel_261/meshing_workflow.py +61694 -0
- 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/datamodel_261/solver_workflow.py +14 -0
- ansys/fluent/core/generated/fluent_version_261.py +3 -3
- ansys/fluent/core/generated/meshing/tui_261.py +388 -10
- ansys/fluent/core/generated/solver/settings_261.py +8273 -3465
- ansys/fluent/core/generated/solver/settings_261.pyi +5805 -2181
- ansys/fluent/core/generated/solver/tui_261.py +1049 -335
- ansys/fluent/core/launcher/container_launcher.py +12 -3
- ansys/fluent/core/launcher/fluent_container.py +5 -3
- ansys/fluent/core/launcher/launch_options.py +2 -2
- ansys/fluent/core/launcher/launcher.py +2 -6
- ansys/fluent/core/launcher/pim_launcher.py +76 -3
- ansys/fluent/core/launcher/process_launch_string.py +1 -2
- ansys/fluent/core/launcher/slurm_launcher.py +4 -3
- ansys/fluent/core/launcher/standalone_launcher.py +3 -2
- ansys/fluent/core/module_config.py +5 -10
- ansys/fluent/core/report.py +1 -1
- ansys/fluent/core/services/__init__.py +2 -0
- ansys/fluent/core/services/datamodel_se.py +4 -1
- ansys/fluent/core/services/field_data.py +24 -0
- ansys/fluent/core/services/reduction.py +2 -0
- ansys/fluent/core/services/settings.py +1 -1
- ansys/fluent/core/services/solution_variables.py +92 -0
- ansys/fluent/core/session.py +1 -2
- ansys/fluent/core/session_base_meshing.py +8 -0
- ansys/fluent/core/session_meshing.py +5 -0
- ansys/fluent/core/session_pure_meshing.py +6 -0
- ansys/fluent/core/session_pure_meshing.pyi +5 -0
- ansys/fluent/core/session_utilities.py +8 -5
- ansys/fluent/core/solver/flobject.py +19 -0
- ansys/fluent/core/solver/function/reduction.py +2 -0
- ansys/fluent/core/ui/__init__.py +64 -0
- ansys/fluent/core/ui/jupyter_ui.py +203 -0
- ansys/fluent/core/ui/standalone_web_ui.py +296 -0
- ansys/fluent/core/ui/utils.py +173 -0
- ansys/fluent/core/utils/deprecate.py +1 -0
- {ansys_fluent_core-0.35.dev1.dist-info → ansys_fluent_core-0.36.dev0.dist-info}/METADATA +25 -19
- {ansys_fluent_core-0.35.dev1.dist-info → ansys_fluent_core-0.36.dev0.dist-info}/RECORD +67 -62
- {ansys_fluent_core-0.35.dev1.dist-info → ansys_fluent_core-0.36.dev0.dist-info}/WHEEL +0 -0
- {ansys_fluent_core-0.35.dev1.dist-info → ansys_fluent_core-0.36.dev0.dist-info}/licenses/LICENSE +0 -0
|
@@ -3257,8 +3257,8 @@ class Root(PyMenu):
|
|
|
3257
3257
|
super().__init__(parent, attr, service, rules, path)
|
|
3258
3258
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
3259
3259
|
self.RefacetDuringLoad = self._RefacetDuringLoad(self, "RefacetDuringLoad", service, rules, path)
|
|
3260
|
-
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
3261
3260
|
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
3261
|
+
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
3262
3262
|
|
|
3263
3263
|
class _MaxSize(PyNumericalCommandArgumentsSubItem):
|
|
3264
3264
|
"""
|
|
@@ -3270,12 +3270,12 @@ class Root(PyMenu):
|
|
|
3270
3270
|
This task will cover any gaps within a selected object. Recommended with geometries containing noticeable gaps and openings that need to be covered prior to surface meshing. More...
|
|
3271
3271
|
"""
|
|
3272
3272
|
|
|
3273
|
-
class
|
|
3273
|
+
class _NormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
3274
3274
|
"""
|
|
3275
3275
|
This task will cover any gaps within a selected object. Recommended with geometries containing noticeable gaps and openings that need to be covered prior to surface meshing. More...
|
|
3276
3276
|
"""
|
|
3277
3277
|
|
|
3278
|
-
class
|
|
3278
|
+
class _Deviation(PyNumericalCommandArgumentsSubItem):
|
|
3279
3279
|
"""
|
|
3280
3280
|
This task will cover any gaps within a selected object. Recommended with geometries containing noticeable gaps and openings that need to be covered prior to surface meshing. More...
|
|
3281
3281
|
"""
|
|
@@ -3583,8 +3583,8 @@ class Root(PyMenu):
|
|
|
3583
3583
|
super().__init__(parent, attr, service, rules, path)
|
|
3584
3584
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
3585
3585
|
self.RefacetDuringLoad = self._RefacetDuringLoad(self, "RefacetDuringLoad", service, rules, path)
|
|
3586
|
-
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
3587
3586
|
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
3587
|
+
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
3588
3588
|
|
|
3589
3589
|
class _MaxSize(PyNumericalCommandArgumentsSubItem):
|
|
3590
3590
|
"""
|
|
@@ -3596,12 +3596,12 @@ class Root(PyMenu):
|
|
|
3596
3596
|
This task will cover any gaps within a selected object. Recommended with geometries containing noticeable gaps and openings that need to be covered prior to surface meshing. More...
|
|
3597
3597
|
"""
|
|
3598
3598
|
|
|
3599
|
-
class
|
|
3599
|
+
class _Deviation(PyNumericalCommandArgumentsSubItem):
|
|
3600
3600
|
"""
|
|
3601
3601
|
This task will cover any gaps within a selected object. Recommended with geometries containing noticeable gaps and openings that need to be covered prior to surface meshing. More...
|
|
3602
3602
|
"""
|
|
3603
3603
|
|
|
3604
|
-
class
|
|
3604
|
+
class _NormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
3605
3605
|
"""
|
|
3606
3606
|
This task will cover any gaps within a selected object. Recommended with geometries containing noticeable gaps and openings that need to be covered prior to surface meshing. More...
|
|
3607
3607
|
"""
|
|
@@ -3759,8 +3759,8 @@ class Root(PyMenu):
|
|
|
3759
3759
|
super().__init__(parent, attr, service, rules, path)
|
|
3760
3760
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
3761
3761
|
self.RefacetDuringLoad = self._RefacetDuringLoad(self, "RefacetDuringLoad", service, rules, path)
|
|
3762
|
-
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
3763
3762
|
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
3763
|
+
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
3764
3764
|
|
|
3765
3765
|
class _MaxSize(PyNumericalCommandArgumentsSubItem):
|
|
3766
3766
|
"""
|
|
@@ -3772,12 +3772,12 @@ class Root(PyMenu):
|
|
|
3772
3772
|
This task will cover any gaps within a selected object. Recommended with geometries containing noticeable gaps and openings that need to be covered prior to surface meshing. More...
|
|
3773
3773
|
"""
|
|
3774
3774
|
|
|
3775
|
-
class
|
|
3775
|
+
class _NormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
3776
3776
|
"""
|
|
3777
3777
|
This task will cover any gaps within a selected object. Recommended with geometries containing noticeable gaps and openings that need to be covered prior to surface meshing. More...
|
|
3778
3778
|
"""
|
|
3779
3779
|
|
|
3780
|
-
class
|
|
3780
|
+
class _Deviation(PyNumericalCommandArgumentsSubItem):
|
|
3781
3781
|
"""
|
|
3782
3782
|
This task will cover any gaps within a selected object. Recommended with geometries containing noticeable gaps and openings that need to be covered prior to surface meshing. More...
|
|
3783
3783
|
"""
|
|
@@ -1407,8 +1407,8 @@ class Root(PyMenu):
|
|
|
1407
1407
|
def __init__(self, parent, attr, service, rules, path):
|
|
1408
1408
|
super().__init__(parent, attr, service, rules, path)
|
|
1409
1409
|
self.DPI = self._DPI(self, "DPI", service, rules, path)
|
|
1410
|
-
self.Width = self._Width(self, "Width", service, rules, path)
|
|
1411
1410
|
self.Option = self._Option(self, "Option", service, rules, path)
|
|
1411
|
+
self.Width = self._Width(self, "Width", service, rules, path)
|
|
1412
1412
|
self.UseWindowResolution = self._UseWindowResolution(self, "UseWindowResolution", service, rules, path)
|
|
1413
1413
|
self.Height = self._Height(self, "Height", service, rules, path)
|
|
1414
1414
|
|
|
@@ -1417,14 +1417,14 @@ class Root(PyMenu):
|
|
|
1417
1417
|
Argument DPI.
|
|
1418
1418
|
"""
|
|
1419
1419
|
|
|
1420
|
-
class
|
|
1420
|
+
class _Option(PyTextualCommandArgumentsSubItem):
|
|
1421
1421
|
"""
|
|
1422
|
-
Argument
|
|
1422
|
+
Argument Option.
|
|
1423
1423
|
"""
|
|
1424
1424
|
|
|
1425
|
-
class
|
|
1425
|
+
class _Width(PyNumericalCommandArgumentsSubItem):
|
|
1426
1426
|
"""
|
|
1427
|
-
Argument
|
|
1427
|
+
Argument Width.
|
|
1428
1428
|
"""
|
|
1429
1429
|
|
|
1430
1430
|
class _UseWindowResolution(PyParameterCommandArgumentsSubItem):
|
|
@@ -2239,8 +2239,8 @@ class Root(PyMenu):
|
|
|
2239
2239
|
def __init__(self, parent, attr, service, rules, path):
|
|
2240
2240
|
super().__init__(parent, attr, service, rules, path)
|
|
2241
2241
|
self.DPI = self._DPI(self, "DPI", service, rules, path)
|
|
2242
|
-
self.Width = self._Width(self, "Width", service, rules, path)
|
|
2243
2242
|
self.Option = self._Option(self, "Option", service, rules, path)
|
|
2243
|
+
self.Width = self._Width(self, "Width", service, rules, path)
|
|
2244
2244
|
self.UseWindowResolution = self._UseWindowResolution(self, "UseWindowResolution", service, rules, path)
|
|
2245
2245
|
self.Height = self._Height(self, "Height", service, rules, path)
|
|
2246
2246
|
|
|
@@ -2249,14 +2249,14 @@ class Root(PyMenu):
|
|
|
2249
2249
|
Argument DPI.
|
|
2250
2250
|
"""
|
|
2251
2251
|
|
|
2252
|
-
class
|
|
2252
|
+
class _Option(PyTextualCommandArgumentsSubItem):
|
|
2253
2253
|
"""
|
|
2254
|
-
Argument
|
|
2254
|
+
Argument Option.
|
|
2255
2255
|
"""
|
|
2256
2256
|
|
|
2257
|
-
class
|
|
2257
|
+
class _Width(PyNumericalCommandArgumentsSubItem):
|
|
2258
2258
|
"""
|
|
2259
|
-
Argument
|
|
2259
|
+
Argument Width.
|
|
2260
2260
|
"""
|
|
2261
2261
|
|
|
2262
2262
|
class _UseWindowResolution(PyParameterCommandArgumentsSubItem):
|
|
@@ -2341,8 +2341,8 @@ class Root(PyMenu):
|
|
|
2341
2341
|
def __init__(self, parent, attr, service, rules, path):
|
|
2342
2342
|
super().__init__(parent, attr, service, rules, path)
|
|
2343
2343
|
self.DPI = self._DPI(self, "DPI", service, rules, path)
|
|
2344
|
-
self.Width = self._Width(self, "Width", service, rules, path)
|
|
2345
2344
|
self.Option = self._Option(self, "Option", service, rules, path)
|
|
2345
|
+
self.Width = self._Width(self, "Width", service, rules, path)
|
|
2346
2346
|
self.UseWindowResolution = self._UseWindowResolution(self, "UseWindowResolution", service, rules, path)
|
|
2347
2347
|
self.Height = self._Height(self, "Height", service, rules, path)
|
|
2348
2348
|
|
|
@@ -2351,14 +2351,14 @@ class Root(PyMenu):
|
|
|
2351
2351
|
Argument DPI.
|
|
2352
2352
|
"""
|
|
2353
2353
|
|
|
2354
|
-
class
|
|
2354
|
+
class _Option(PyTextualCommandArgumentsSubItem):
|
|
2355
2355
|
"""
|
|
2356
|
-
Argument
|
|
2356
|
+
Argument Option.
|
|
2357
2357
|
"""
|
|
2358
2358
|
|
|
2359
|
-
class
|
|
2359
|
+
class _Width(PyNumericalCommandArgumentsSubItem):
|
|
2360
2360
|
"""
|
|
2361
|
-
Argument
|
|
2361
|
+
Argument Width.
|
|
2362
2362
|
"""
|
|
2363
2363
|
|
|
2364
2364
|
class _UseWindowResolution(PyParameterCommandArgumentsSubItem):
|
|
@@ -3566,8 +3566,8 @@ class Root(PyMenu):
|
|
|
3566
3566
|
def __init__(self, parent, attr, service, rules, path):
|
|
3567
3567
|
super().__init__(parent, attr, service, rules, path)
|
|
3568
3568
|
self.DPI = self._DPI(self, "DPI", service, rules, path)
|
|
3569
|
-
self.Option = self._Option(self, "Option", service, rules, path)
|
|
3570
3569
|
self.Width = self._Width(self, "Width", service, rules, path)
|
|
3570
|
+
self.Option = self._Option(self, "Option", service, rules, path)
|
|
3571
3571
|
self.UseWindowResolution = self._UseWindowResolution(self, "UseWindowResolution", service, rules, path)
|
|
3572
3572
|
self.Height = self._Height(self, "Height", service, rules, path)
|
|
3573
3573
|
|
|
@@ -3576,14 +3576,14 @@ class Root(PyMenu):
|
|
|
3576
3576
|
Argument DPI.
|
|
3577
3577
|
"""
|
|
3578
3578
|
|
|
3579
|
-
class
|
|
3579
|
+
class _Width(PyNumericalCommandArgumentsSubItem):
|
|
3580
3580
|
"""
|
|
3581
|
-
Argument
|
|
3581
|
+
Argument Width.
|
|
3582
3582
|
"""
|
|
3583
3583
|
|
|
3584
|
-
class
|
|
3584
|
+
class _Option(PyTextualCommandArgumentsSubItem):
|
|
3585
3585
|
"""
|
|
3586
|
-
Argument
|
|
3586
|
+
Argument Option.
|
|
3587
3587
|
"""
|
|
3588
3588
|
|
|
3589
3589
|
class _UseWindowResolution(PyParameterCommandArgumentsSubItem):
|
|
@@ -6573,8 +6573,8 @@ class Root(PyMenu):
|
|
|
6573
6573
|
def __init__(self, parent, attr, service, rules, path):
|
|
6574
6574
|
super().__init__(parent, attr, service, rules, path)
|
|
6575
6575
|
self.DPI = self._DPI(self, "DPI", service, rules, path)
|
|
6576
|
-
self.Option = self._Option(self, "Option", service, rules, path)
|
|
6577
6576
|
self.Width = self._Width(self, "Width", service, rules, path)
|
|
6577
|
+
self.Option = self._Option(self, "Option", service, rules, path)
|
|
6578
6578
|
self.UseWindowResolution = self._UseWindowResolution(self, "UseWindowResolution", service, rules, path)
|
|
6579
6579
|
self.Height = self._Height(self, "Height", service, rules, path)
|
|
6580
6580
|
|
|
@@ -6583,14 +6583,14 @@ class Root(PyMenu):
|
|
|
6583
6583
|
Argument DPI.
|
|
6584
6584
|
"""
|
|
6585
6585
|
|
|
6586
|
-
class
|
|
6586
|
+
class _Width(PyNumericalCommandArgumentsSubItem):
|
|
6587
6587
|
"""
|
|
6588
|
-
Argument
|
|
6588
|
+
Argument Width.
|
|
6589
6589
|
"""
|
|
6590
6590
|
|
|
6591
|
-
class
|
|
6591
|
+
class _Option(PyTextualCommandArgumentsSubItem):
|
|
6592
6592
|
"""
|
|
6593
|
-
Argument
|
|
6593
|
+
Argument Option.
|
|
6594
6594
|
"""
|
|
6595
6595
|
|
|
6596
6596
|
class _UseWindowResolution(PyParameterCommandArgumentsSubItem):
|