ansys-fluent-core 0.35.dev0__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/builtin_settingsgen.py +4 -0
- ansys/fluent/core/codegen/datamodelgen.py +13 -2
- ansys/fluent/core/codegen/settingsgen.py +7 -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 +20 -20
- ansys/fluent/core/generated/datamodel_231/meshing.py +236 -236
- ansys/fluent/core/generated/datamodel_232/flicing.py +50 -50
- ansys/fluent/core/generated/datamodel_232/meshing.py +187 -187
- ansys/fluent/core/generated/datamodel_241/flicing.py +45 -45
- ansys/fluent/core/generated/datamodel_241/meshing.py +229 -229
- ansys/fluent/core/generated/datamodel_242/flicing.py +50 -50
- ansys/fluent/core/generated/datamodel_242/meshing.py +275 -275
- ansys/fluent/core/generated/datamodel_242/part_management.py +3 -3
- ansys/fluent/core/generated/datamodel_251/flicing.py +45 -45
- ansys/fluent/core/generated/datamodel_251/meshing.py +417 -417
- ansys/fluent/core/generated/datamodel_251/part_management.py +9 -9
- ansys/fluent/core/generated/datamodel_252/flicing.py +30 -30
- ansys/fluent/core/generated/datamodel_252/meshing.py +418 -418
- ansys/fluent/core/generated/datamodel_252/part_management.py +5 -5
- ansys/fluent/core/generated/datamodel_261/flicing.py +35 -35
- ansys/fluent/core/generated/datamodel_261/meshing.py +481 -425
- ansys/fluent/core/generated/datamodel_261/meshing_utilities.py +296 -616
- ansys/fluent/core/generated/datamodel_261/meshing_workflow.py +61694 -0
- ansys/fluent/core/generated/datamodel_261/part_management.py +10 -10
- ansys/fluent/core/generated/datamodel_261/preferences.py +56 -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 +408 -10
- ansys/fluent/core/generated/solver/settings_261.py +15135 -5725
- ansys/fluent/core/generated/solver/settings_261.pyi +10252 -3619
- ansys/fluent/core/generated/solver/tui_261.py +2632 -834
- ansys/fluent/core/launcher/container_launcher.py +12 -3
- ansys/fluent/core/launcher/fluent_container.py +7 -1
- 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 +10 -10
- ansys/fluent/core/report.py +1 -1
- ansys/fluent/core/search.py +12 -0
- 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_solver.py +5 -4
- ansys/fluent/core/session_utilities.py +8 -5
- ansys/fluent/core/solver/flobject.py +19 -0
- ansys/fluent/core/solver/flunits.py +2 -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/utils/networking.py +11 -2
- {ansys_fluent_core-0.35.dev0.dist-info → ansys_fluent_core-0.36.dev0.dist-info}/METADATA +29 -22
- {ansys_fluent_core-0.35.dev0.dist-info → ansys_fluent_core-0.36.dev0.dist-info}/RECORD +73 -68
- {ansys_fluent_core-0.35.dev0.dist-info → ansys_fluent_core-0.36.dev0.dist-info}/WHEEL +1 -1
- {ansys_fluent_core-0.35.dev0.dist-info → ansys_fluent_core-0.36.dev0.dist-info/licenses}/LICENSE +0 -0
|
@@ -3278,8 +3278,8 @@ class Root(PyMenu):
|
|
|
3278
3278
|
super().__init__(parent, attr, service, rules, path)
|
|
3279
3279
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
3280
3280
|
self.RefacetDuringLoad = self._RefacetDuringLoad(self, "RefacetDuringLoad", service, rules, path)
|
|
3281
|
-
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
3282
3281
|
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
3282
|
+
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
3283
3283
|
|
|
3284
3284
|
class _MaxSize(PyNumericalCommandArgumentsSubItem):
|
|
3285
3285
|
"""
|
|
@@ -3291,12 +3291,12 @@ class Root(PyMenu):
|
|
|
3291
3291
|
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...
|
|
3292
3292
|
"""
|
|
3293
3293
|
|
|
3294
|
-
class
|
|
3294
|
+
class _NormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
3295
3295
|
"""
|
|
3296
3296
|
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...
|
|
3297
3297
|
"""
|
|
3298
3298
|
|
|
3299
|
-
class
|
|
3299
|
+
class _Deviation(PyNumericalCommandArgumentsSubItem):
|
|
3300
3300
|
"""
|
|
3301
3301
|
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...
|
|
3302
3302
|
"""
|
|
@@ -3604,8 +3604,8 @@ class Root(PyMenu):
|
|
|
3604
3604
|
super().__init__(parent, attr, service, rules, path)
|
|
3605
3605
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
3606
3606
|
self.RefacetDuringLoad = self._RefacetDuringLoad(self, "RefacetDuringLoad", service, rules, path)
|
|
3607
|
-
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
3608
3607
|
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
3608
|
+
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
3609
3609
|
|
|
3610
3610
|
class _MaxSize(PyNumericalCommandArgumentsSubItem):
|
|
3611
3611
|
"""
|
|
@@ -3617,12 +3617,12 @@ class Root(PyMenu):
|
|
|
3617
3617
|
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...
|
|
3618
3618
|
"""
|
|
3619
3619
|
|
|
3620
|
-
class
|
|
3620
|
+
class _NormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
3621
3621
|
"""
|
|
3622
3622
|
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...
|
|
3623
3623
|
"""
|
|
3624
3624
|
|
|
3625
|
-
class
|
|
3625
|
+
class _Deviation(PyNumericalCommandArgumentsSubItem):
|
|
3626
3626
|
"""
|
|
3627
3627
|
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...
|
|
3628
3628
|
"""
|
|
@@ -3780,8 +3780,8 @@ class Root(PyMenu):
|
|
|
3780
3780
|
super().__init__(parent, attr, service, rules, path)
|
|
3781
3781
|
self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
|
|
3782
3782
|
self.RefacetDuringLoad = self._RefacetDuringLoad(self, "RefacetDuringLoad", service, rules, path)
|
|
3783
|
-
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
3784
3783
|
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
3784
|
+
self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
3785
3785
|
|
|
3786
3786
|
class _MaxSize(PyNumericalCommandArgumentsSubItem):
|
|
3787
3787
|
"""
|
|
@@ -3793,12 +3793,12 @@ class Root(PyMenu):
|
|
|
3793
3793
|
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...
|
|
3794
3794
|
"""
|
|
3795
3795
|
|
|
3796
|
-
class
|
|
3796
|
+
class _Deviation(PyNumericalCommandArgumentsSubItem):
|
|
3797
3797
|
"""
|
|
3798
3798
|
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...
|
|
3799
3799
|
"""
|
|
3800
3800
|
|
|
3801
|
-
class
|
|
3801
|
+
class _NormalAngle(PyNumericalCommandArgumentsSubItem):
|
|
3802
3802
|
"""
|
|
3803
3803
|
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...
|
|
3804
3804
|
"""
|
|
@@ -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):
|
|
@@ -3580,8 +3580,8 @@ class Root(PyMenu):
|
|
|
3580
3580
|
def __init__(self, parent, attr, service, rules, path):
|
|
3581
3581
|
super().__init__(parent, attr, service, rules, path)
|
|
3582
3582
|
self.DPI = self._DPI(self, "DPI", service, rules, path)
|
|
3583
|
-
self.Width = self._Width(self, "Width", service, rules, path)
|
|
3584
3583
|
self.Option = self._Option(self, "Option", service, rules, path)
|
|
3584
|
+
self.Width = self._Width(self, "Width", service, rules, path)
|
|
3585
3585
|
self.UseWindowResolution = self._UseWindowResolution(self, "UseWindowResolution", service, rules, path)
|
|
3586
3586
|
self.Height = self._Height(self, "Height", service, rules, path)
|
|
3587
3587
|
|
|
@@ -3590,14 +3590,14 @@ class Root(PyMenu):
|
|
|
3590
3590
|
Argument DPI.
|
|
3591
3591
|
"""
|
|
3592
3592
|
|
|
3593
|
-
class
|
|
3593
|
+
class _Option(PyTextualCommandArgumentsSubItem):
|
|
3594
3594
|
"""
|
|
3595
|
-
Argument
|
|
3595
|
+
Argument Option.
|
|
3596
3596
|
"""
|
|
3597
3597
|
|
|
3598
|
-
class
|
|
3598
|
+
class _Width(PyNumericalCommandArgumentsSubItem):
|
|
3599
3599
|
"""
|
|
3600
|
-
Argument
|
|
3600
|
+
Argument Width.
|
|
3601
3601
|
"""
|
|
3602
3602
|
|
|
3603
3603
|
class _UseWindowResolution(PyParameterCommandArgumentsSubItem):
|
|
@@ -3682,8 +3682,8 @@ class Root(PyMenu):
|
|
|
3682
3682
|
def __init__(self, parent, attr, service, rules, path):
|
|
3683
3683
|
super().__init__(parent, attr, service, rules, path)
|
|
3684
3684
|
self.DPI = self._DPI(self, "DPI", service, rules, path)
|
|
3685
|
-
self.Width = self._Width(self, "Width", service, rules, path)
|
|
3686
3685
|
self.Option = self._Option(self, "Option", service, rules, path)
|
|
3686
|
+
self.Width = self._Width(self, "Width", service, rules, path)
|
|
3687
3687
|
self.UseWindowResolution = self._UseWindowResolution(self, "UseWindowResolution", service, rules, path)
|
|
3688
3688
|
self.Height = self._Height(self, "Height", service, rules, path)
|
|
3689
3689
|
|
|
@@ -3692,14 +3692,14 @@ class Root(PyMenu):
|
|
|
3692
3692
|
Argument DPI.
|
|
3693
3693
|
"""
|
|
3694
3694
|
|
|
3695
|
-
class
|
|
3695
|
+
class _Option(PyTextualCommandArgumentsSubItem):
|
|
3696
3696
|
"""
|
|
3697
|
-
Argument
|
|
3697
|
+
Argument Option.
|
|
3698
3698
|
"""
|
|
3699
3699
|
|
|
3700
|
-
class
|
|
3700
|
+
class _Width(PyNumericalCommandArgumentsSubItem):
|
|
3701
3701
|
"""
|
|
3702
|
-
Argument
|
|
3702
|
+
Argument Width.
|
|
3703
3703
|
"""
|
|
3704
3704
|
|
|
3705
3705
|
class _UseWindowResolution(PyParameterCommandArgumentsSubItem):
|
|
@@ -5784,8 +5784,8 @@ class Root(PyMenu):
|
|
|
5784
5784
|
def __init__(self, parent, attr, service, rules, path):
|
|
5785
5785
|
super().__init__(parent, attr, service, rules, path)
|
|
5786
5786
|
self.DPI = self._DPI(self, "DPI", service, rules, path)
|
|
5787
|
-
self.Width = self._Width(self, "Width", service, rules, path)
|
|
5788
5787
|
self.Option = self._Option(self, "Option", service, rules, path)
|
|
5788
|
+
self.Width = self._Width(self, "Width", service, rules, path)
|
|
5789
5789
|
self.UseWindowResolution = self._UseWindowResolution(self, "UseWindowResolution", service, rules, path)
|
|
5790
5790
|
self.Height = self._Height(self, "Height", service, rules, path)
|
|
5791
5791
|
|
|
@@ -5794,14 +5794,14 @@ class Root(PyMenu):
|
|
|
5794
5794
|
Argument DPI.
|
|
5795
5795
|
"""
|
|
5796
5796
|
|
|
5797
|
-
class
|
|
5797
|
+
class _Option(PyTextualCommandArgumentsSubItem):
|
|
5798
5798
|
"""
|
|
5799
|
-
Argument
|
|
5799
|
+
Argument Option.
|
|
5800
5800
|
"""
|
|
5801
5801
|
|
|
5802
|
-
class
|
|
5802
|
+
class _Width(PyNumericalCommandArgumentsSubItem):
|
|
5803
5803
|
"""
|
|
5804
|
-
Argument
|
|
5804
|
+
Argument Width.
|
|
5805
5805
|
"""
|
|
5806
5806
|
|
|
5807
5807
|
class _UseWindowResolution(PyParameterCommandArgumentsSubItem):
|
|
@@ -6506,8 +6506,8 @@ class Root(PyMenu):
|
|
|
6506
6506
|
def __init__(self, parent, attr, service, rules, path):
|
|
6507
6507
|
super().__init__(parent, attr, service, rules, path)
|
|
6508
6508
|
self.DPI = self._DPI(self, "DPI", service, rules, path)
|
|
6509
|
-
self.Width = self._Width(self, "Width", service, rules, path)
|
|
6510
6509
|
self.Option = self._Option(self, "Option", service, rules, path)
|
|
6510
|
+
self.Width = self._Width(self, "Width", service, rules, path)
|
|
6511
6511
|
self.UseWindowResolution = self._UseWindowResolution(self, "UseWindowResolution", service, rules, path)
|
|
6512
6512
|
self.Height = self._Height(self, "Height", service, rules, path)
|
|
6513
6513
|
|
|
@@ -6516,14 +6516,14 @@ class Root(PyMenu):
|
|
|
6516
6516
|
Argument DPI.
|
|
6517
6517
|
"""
|
|
6518
6518
|
|
|
6519
|
-
class
|
|
6519
|
+
class _Option(PyTextualCommandArgumentsSubItem):
|
|
6520
6520
|
"""
|
|
6521
|
-
Argument
|
|
6521
|
+
Argument Option.
|
|
6522
6522
|
"""
|
|
6523
6523
|
|
|
6524
|
-
class
|
|
6524
|
+
class _Width(PyNumericalCommandArgumentsSubItem):
|
|
6525
6525
|
"""
|
|
6526
|
-
Argument
|
|
6526
|
+
Argument Width.
|
|
6527
6527
|
"""
|
|
6528
6528
|
|
|
6529
6529
|
class _UseWindowResolution(PyParameterCommandArgumentsSubItem):
|
|
@@ -7505,8 +7505,8 @@ class Root(PyMenu):
|
|
|
7505
7505
|
def __init__(self, parent, attr, service, rules, path):
|
|
7506
7506
|
super().__init__(parent, attr, service, rules, path)
|
|
7507
7507
|
self.DPI = self._DPI(self, "DPI", service, rules, path)
|
|
7508
|
-
self.Option = self._Option(self, "Option", service, rules, path)
|
|
7509
7508
|
self.Width = self._Width(self, "Width", service, rules, path)
|
|
7509
|
+
self.Option = self._Option(self, "Option", service, rules, path)
|
|
7510
7510
|
self.UseWindowResolution = self._UseWindowResolution(self, "UseWindowResolution", service, rules, path)
|
|
7511
7511
|
self.Height = self._Height(self, "Height", service, rules, path)
|
|
7512
7512
|
|
|
@@ -7515,14 +7515,14 @@ class Root(PyMenu):
|
|
|
7515
7515
|
Argument DPI.
|
|
7516
7516
|
"""
|
|
7517
7517
|
|
|
7518
|
-
class
|
|
7518
|
+
class _Width(PyNumericalCommandArgumentsSubItem):
|
|
7519
7519
|
"""
|
|
7520
|
-
Argument
|
|
7520
|
+
Argument Width.
|
|
7521
7521
|
"""
|
|
7522
7522
|
|
|
7523
|
-
class
|
|
7523
|
+
class _Option(PyTextualCommandArgumentsSubItem):
|
|
7524
7524
|
"""
|
|
7525
|
-
Argument
|
|
7525
|
+
Argument Option.
|
|
7526
7526
|
"""
|
|
7527
7527
|
|
|
7528
7528
|
class _UseWindowResolution(PyParameterCommandArgumentsSubItem):
|