ansys-fluent-core 0.34.2__py3-none-any.whl → 0.35.dev1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of ansys-fluent-core might be problematic. Click here for more details.
- ansys/fluent/core/__init__.py +48 -84
- ansys/fluent/core/codegen/allapigen.py +2 -2
- ansys/fluent/core/codegen/builtin_settingsgen.py +54 -28
- ansys/fluent/core/codegen/datamodelgen.py +3 -1
- ansys/fluent/core/codegen/print_fluent_version.py +2 -2
- ansys/fluent/core/codegen/settingsgen.py +4 -1
- ansys/fluent/core/codegen/tuigen.py +4 -4
- ansys/fluent/core/data_model_cache.py +2 -2
- ansys/fluent/core/docker/docker_compose.py +8 -9
- ansys/fluent/core/docker/utils.py +2 -2
- ansys/fluent/core/examples/downloads.py +8 -11
- ansys/fluent/core/fluent_connection.py +23 -15
- ansys/fluent/core/generated/api_tree/api_objects.json +1 -1
- ansys/fluent/core/generated/datamodel_231/flicing.py +50 -50
- ansys/fluent/core/generated/datamodel_231/meshing.py +182 -182
- ansys/fluent/core/generated/datamodel_232/flicing.py +45 -45
- ansys/fluent/core/generated/datamodel_232/meshing.py +172 -172
- ansys/fluent/core/generated/datamodel_241/flicing.py +45 -45
- ansys/fluent/core/generated/datamodel_241/meshing.py +303 -303
- ansys/fluent/core/generated/datamodel_242/flicing.py +50 -50
- ansys/fluent/core/generated/datamodel_242/meshing.py +309 -309
- ansys/fluent/core/generated/datamodel_242/part_management.py +3 -3
- ansys/fluent/core/generated/datamodel_251/flicing.py +50 -50
- ansys/fluent/core/generated/datamodel_251/meshing.py +327 -327
- ansys/fluent/core/generated/datamodel_251/part_management.py +9 -9
- ansys/fluent/core/generated/datamodel_252/flicing.py +30 -30
- ansys/fluent/core/generated/datamodel_252/meshing.py +370 -370
- ansys/fluent/core/generated/datamodel_252/part_management.py +15 -15
- ansys/fluent/core/generated/datamodel_261/flicing.py +35 -35
- ansys/fluent/core/generated/datamodel_261/meshing.py +444 -388
- ansys/fluent/core/generated/datamodel_261/part_management.py +5 -5
- ansys/fluent/core/generated/datamodel_261/preferences.py +28 -0
- ansys/fluent/core/generated/fluent_version_261.py +3 -3
- ansys/fluent/core/generated/meshing/tui_261.py +1247 -1136
- ansys/fluent/core/generated/solver/settings_261.py +9912 -4184
- ansys/fluent/core/generated/solver/settings_261.pyi +6779 -3312
- ansys/fluent/core/generated/solver/settings_builtin.py +515 -27
- ansys/fluent/core/generated/solver/settings_builtin.pyi +2 -18
- ansys/fluent/core/generated/solver/tui_261.py +4439 -3245
- ansys/fluent/core/launcher/container_launcher.py +19 -4
- ansys/fluent/core/launcher/fluent_container.py +51 -39
- ansys/fluent/core/launcher/launch_options.py +5 -4
- ansys/fluent/core/launcher/launcher.py +16 -3
- ansys/fluent/core/launcher/launcher_utils.py +63 -15
- ansys/fluent/core/launcher/pim_launcher.py +17 -3
- ansys/fluent/core/launcher/process_launch_string.py +3 -2
- ansys/fluent/core/launcher/server_info.py +7 -3
- ansys/fluent/core/launcher/slurm_launcher.py +4 -3
- ansys/fluent/core/launcher/standalone_launcher.py +6 -3
- ansys/fluent/core/launcher/watchdog.py +3 -3
- ansys/fluent/core/launcher/watchdog_exec +1 -1
- ansys/fluent/core/logger.py +3 -1
- ansys/fluent/core/module_config.py +363 -0
- ansys/fluent/core/pyfluent_warnings.py +2 -2
- ansys/fluent/core/report.py +0 -2
- ansys/fluent/core/search.py +43 -18
- ansys/fluent/core/services/api_upgrade.py +3 -2
- ansys/fluent/core/services/datamodel_se.py +4 -2
- ansys/fluent/core/services/health_check.py +3 -1
- ansys/fluent/core/services/interceptors.py +8 -6
- ansys/fluent/core/session.py +31 -3
- ansys/fluent/core/session_pure_meshing.py +1 -1
- ansys/fluent/core/session_shared.py +4 -4
- ansys/fluent/core/session_solver.py +13 -6
- ansys/fluent/core/session_utilities.py +7 -0
- ansys/fluent/core/solver/flobject.py +6 -4
- ansys/fluent/core/solver/flunits.py +2 -0
- ansys/fluent/core/solver/settings_builtin_bases.py +3 -3
- ansys/fluent/core/solver/settings_builtin_data.py +2 -14
- ansys/fluent/core/streaming_services/datamodel_event_streaming.py +3 -2
- ansys/fluent/core/streaming_services/datamodel_streaming.py +3 -1
- ansys/fluent/core/streaming_services/events_streaming.py +2 -18
- ansys/fluent/core/system_coupling.py +3 -1
- ansys/fluent/core/utils/__init__.py +0 -7
- ansys/fluent/core/utils/data_transfer.py +3 -3
- ansys/fluent/core/utils/file_transfer_service.py +24 -15
- ansys/fluent/core/utils/fluent_version.py +3 -3
- ansys/fluent/core/utils/networking.py +13 -4
- {ansys_fluent_core-0.34.2.dist-info → ansys_fluent_core-0.35.dev1.dist-info}/METADATA +8 -7
- {ansys_fluent_core-0.34.2.dist-info → ansys_fluent_core-0.35.dev1.dist-info}/RECORD +82 -81
- {ansys_fluent_core-0.34.2.dist-info → ansys_fluent_core-0.35.dev1.dist-info}/WHEEL +1 -1
- {ansys_fluent_core-0.34.2.dist-info → ansys_fluent_core-0.35.dev1.dist-info/licenses}/LICENSE +0 -0
|
@@ -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.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
3282
3281
|
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
3282
|
+
self.NormalAngle = self._NormalAngle(self, "NormalAngle", 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 _Deviation(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 _NormalAngle(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.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
|
|
3608
3607
|
self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
|
|
3608
|
+
self.NormalAngle = self._NormalAngle(self, "NormalAngle", 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 _Deviation(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 _NormalAngle(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
|
"""
|
|
@@ -2909,8 +2909,8 @@ class Root(PyMenu):
|
|
|
2909
2909
|
def __init__(self, parent, attr, service, rules, path):
|
|
2910
2910
|
super().__init__(parent, attr, service, rules, path)
|
|
2911
2911
|
self.DPI = self._DPI(self, "DPI", service, rules, path)
|
|
2912
|
-
self.Width = self._Width(self, "Width", service, rules, path)
|
|
2913
2912
|
self.Option = self._Option(self, "Option", service, rules, path)
|
|
2913
|
+
self.Width = self._Width(self, "Width", service, rules, path)
|
|
2914
2914
|
self.UseWindowResolution = self._UseWindowResolution(self, "UseWindowResolution", service, rules, path)
|
|
2915
2915
|
self.Height = self._Height(self, "Height", service, rules, path)
|
|
2916
2916
|
|
|
@@ -2919,14 +2919,14 @@ class Root(PyMenu):
|
|
|
2919
2919
|
Argument DPI.
|
|
2920
2920
|
"""
|
|
2921
2921
|
|
|
2922
|
-
class
|
|
2922
|
+
class _Option(PyTextualCommandArgumentsSubItem):
|
|
2923
2923
|
"""
|
|
2924
|
-
Argument
|
|
2924
|
+
Argument Option.
|
|
2925
2925
|
"""
|
|
2926
2926
|
|
|
2927
|
-
class
|
|
2927
|
+
class _Width(PyNumericalCommandArgumentsSubItem):
|
|
2928
2928
|
"""
|
|
2929
|
-
Argument
|
|
2929
|
+
Argument Width.
|
|
2930
2930
|
"""
|
|
2931
2931
|
|
|
2932
2932
|
class _UseWindowResolution(PyParameterCommandArgumentsSubItem):
|
|
@@ -3011,8 +3011,8 @@ class Root(PyMenu):
|
|
|
3011
3011
|
def __init__(self, parent, attr, service, rules, path):
|
|
3012
3012
|
super().__init__(parent, attr, service, rules, path)
|
|
3013
3013
|
self.DPI = self._DPI(self, "DPI", service, rules, path)
|
|
3014
|
-
self.Width = self._Width(self, "Width", service, rules, path)
|
|
3015
3014
|
self.Option = self._Option(self, "Option", service, rules, path)
|
|
3015
|
+
self.Width = self._Width(self, "Width", service, rules, path)
|
|
3016
3016
|
self.UseWindowResolution = self._UseWindowResolution(self, "UseWindowResolution", service, rules, path)
|
|
3017
3017
|
self.Height = self._Height(self, "Height", service, rules, path)
|
|
3018
3018
|
|
|
@@ -3021,14 +3021,14 @@ class Root(PyMenu):
|
|
|
3021
3021
|
Argument DPI.
|
|
3022
3022
|
"""
|
|
3023
3023
|
|
|
3024
|
-
class
|
|
3024
|
+
class _Option(PyTextualCommandArgumentsSubItem):
|
|
3025
3025
|
"""
|
|
3026
|
-
Argument
|
|
3026
|
+
Argument Option.
|
|
3027
3027
|
"""
|
|
3028
3028
|
|
|
3029
|
-
class
|
|
3029
|
+
class _Width(PyNumericalCommandArgumentsSubItem):
|
|
3030
3030
|
"""
|
|
3031
|
-
Argument
|
|
3031
|
+
Argument Width.
|
|
3032
3032
|
"""
|
|
3033
3033
|
|
|
3034
3034
|
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):
|
|
@@ -4466,8 +4466,8 @@ class Root(PyMenu):
|
|
|
4466
4466
|
def __init__(self, parent, attr, service, rules, path):
|
|
4467
4467
|
super().__init__(parent, attr, service, rules, path)
|
|
4468
4468
|
self.DPI = self._DPI(self, "DPI", service, rules, path)
|
|
4469
|
-
self.Option = self._Option(self, "Option", service, rules, path)
|
|
4470
4469
|
self.Width = self._Width(self, "Width", service, rules, path)
|
|
4470
|
+
self.Option = self._Option(self, "Option", service, rules, path)
|
|
4471
4471
|
self.UseWindowResolution = self._UseWindowResolution(self, "UseWindowResolution", service, rules, path)
|
|
4472
4472
|
self.Height = self._Height(self, "Height", service, rules, path)
|
|
4473
4473
|
|
|
@@ -4476,14 +4476,14 @@ class Root(PyMenu):
|
|
|
4476
4476
|
Argument DPI.
|
|
4477
4477
|
"""
|
|
4478
4478
|
|
|
4479
|
-
class
|
|
4479
|
+
class _Width(PyNumericalCommandArgumentsSubItem):
|
|
4480
4480
|
"""
|
|
4481
|
-
Argument
|
|
4481
|
+
Argument Width.
|
|
4482
4482
|
"""
|
|
4483
4483
|
|
|
4484
|
-
class
|
|
4484
|
+
class _Option(PyTextualCommandArgumentsSubItem):
|
|
4485
4485
|
"""
|
|
4486
|
-
Argument
|
|
4486
|
+
Argument Option.
|
|
4487
4487
|
"""
|
|
4488
4488
|
|
|
4489
4489
|
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):
|
|
@@ -6608,8 +6608,8 @@ class Root(PyMenu):
|
|
|
6608
6608
|
def __init__(self, parent, attr, service, rules, path):
|
|
6609
6609
|
super().__init__(parent, attr, service, rules, path)
|
|
6610
6610
|
self.DPI = self._DPI(self, "DPI", service, rules, path)
|
|
6611
|
-
self.Width = self._Width(self, "Width", service, rules, path)
|
|
6612
6611
|
self.Option = self._Option(self, "Option", service, rules, path)
|
|
6612
|
+
self.Width = self._Width(self, "Width", service, rules, path)
|
|
6613
6613
|
self.UseWindowResolution = self._UseWindowResolution(self, "UseWindowResolution", service, rules, path)
|
|
6614
6614
|
self.Height = self._Height(self, "Height", service, rules, path)
|
|
6615
6615
|
|
|
@@ -6618,14 +6618,14 @@ class Root(PyMenu):
|
|
|
6618
6618
|
Argument DPI.
|
|
6619
6619
|
"""
|
|
6620
6620
|
|
|
6621
|
-
class
|
|
6621
|
+
class _Option(PyTextualCommandArgumentsSubItem):
|
|
6622
6622
|
"""
|
|
6623
|
-
Argument
|
|
6623
|
+
Argument Option.
|
|
6624
6624
|
"""
|
|
6625
6625
|
|
|
6626
|
-
class
|
|
6626
|
+
class _Width(PyNumericalCommandArgumentsSubItem):
|
|
6627
6627
|
"""
|
|
6628
|
-
Argument
|
|
6628
|
+
Argument Width.
|
|
6629
6629
|
"""
|
|
6630
6630
|
|
|
6631
6631
|
class _UseWindowResolution(PyParameterCommandArgumentsSubItem):
|