ansys-fluent-core 0.34.1__py3-none-any.whl → 0.35.0__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 +8 -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 +1 -1
- ansys/fluent/core/examples/downloads.py +9 -12
- 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 +45 -45
- ansys/fluent/core/generated/datamodel_231/meshing.py +183 -183
- ansys/fluent/core/generated/datamodel_232/flicing.py +25 -25
- ansys/fluent/core/generated/datamodel_232/meshing.py +173 -173
- ansys/fluent/core/generated/datamodel_241/flicing.py +30 -30
- ansys/fluent/core/generated/datamodel_241/meshing.py +246 -246
- ansys/fluent/core/generated/datamodel_242/flicing.py +25 -25
- ansys/fluent/core/generated/datamodel_242/meshing.py +273 -273
- 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 +361 -361
- ansys/fluent/core/generated/datamodel_251/part_management.py +6 -6
- ansys/fluent/core/generated/datamodel_252/flicing.py +30 -30
- 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 +463 -407
- 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_252.py +1 -1
- ansys/fluent/core/generated/fluent_version_261.py +3 -3
- ansys/fluent/core/generated/meshing/tui_261.py +1198 -1133
- ansys/fluent/core/generated/solver/settings_261.py +7514 -2195
- ansys/fluent/core/generated/solver/settings_261.pyi +4800 -1015
- 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 +2396 -2171
- ansys/fluent/core/launcher/container_launcher.py +19 -4
- ansys/fluent/core/launcher/fluent_container.py +52 -39
- ansys/fluent/core/launcher/launch_options.py +4 -3
- 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 +1 -1
- ansys/fluent/core/launcher/server_info.py +7 -3
- ansys/fluent/core/launcher/slurm_launcher.py +4 -2
- 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 +358 -0
- ansys/fluent/core/pyfluent_warnings.py +2 -2
- ansys/fluent/core/report.py +1 -3
- ansys/fluent/core/search.py +43 -18
- ansys/fluent/core/services/__init__.py +2 -0
- ansys/fluent/core/services/api_upgrade.py +3 -2
- ansys/fluent/core/services/datamodel_se.py +4 -2
- ansys/fluent/core/services/field_data.py +24 -0
- ansys/fluent/core/services/health_check.py +3 -1
- ansys/fluent/core/services/interceptors.py +8 -6
- ansys/fluent/core/services/settings.py +1 -1
- ansys/fluent/core/session.py +32 -5
- 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 +10 -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.1.dist-info → ansys_fluent_core-0.35.0.dist-info}/METADATA +8 -7
- {ansys_fluent_core-0.34.1.dist-info → ansys_fluent_core-0.35.0.dist-info}/RECORD +86 -85
- {ansys_fluent_core-0.34.1.dist-info → ansys_fluent_core-0.35.0.dist-info}/WHEEL +1 -1
- {ansys_fluent_core-0.34.1.dist-info → ansys_fluent_core-0.35.0.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
|
"""
|
|
@@ -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
|
"""
|
|
@@ -2246,8 +2246,8 @@ class Root(PyMenu):
|
|
|
2246
2246
|
def __init__(self, parent, attr, service, rules, path):
|
|
2247
2247
|
super().__init__(parent, attr, service, rules, path)
|
|
2248
2248
|
self.DPI = self._DPI(self, "DPI", service, rules, path)
|
|
2249
|
-
self.Width = self._Width(self, "Width", service, rules, path)
|
|
2250
2249
|
self.Option = self._Option(self, "Option", service, rules, path)
|
|
2250
|
+
self.Width = self._Width(self, "Width", service, rules, path)
|
|
2251
2251
|
self.UseWindowResolution = self._UseWindowResolution(self, "UseWindowResolution", service, rules, path)
|
|
2252
2252
|
self.Height = self._Height(self, "Height", service, rules, path)
|
|
2253
2253
|
|
|
@@ -2256,14 +2256,14 @@ class Root(PyMenu):
|
|
|
2256
2256
|
Argument DPI.
|
|
2257
2257
|
"""
|
|
2258
2258
|
|
|
2259
|
-
class
|
|
2259
|
+
class _Option(PyTextualCommandArgumentsSubItem):
|
|
2260
2260
|
"""
|
|
2261
|
-
Argument
|
|
2261
|
+
Argument Option.
|
|
2262
2262
|
"""
|
|
2263
2263
|
|
|
2264
|
-
class
|
|
2264
|
+
class _Width(PyNumericalCommandArgumentsSubItem):
|
|
2265
2265
|
"""
|
|
2266
|
-
Argument
|
|
2266
|
+
Argument Width.
|
|
2267
2267
|
"""
|
|
2268
2268
|
|
|
2269
2269
|
class _UseWindowResolution(PyParameterCommandArgumentsSubItem):
|
|
@@ -2348,8 +2348,8 @@ class Root(PyMenu):
|
|
|
2348
2348
|
def __init__(self, parent, attr, service, rules, path):
|
|
2349
2349
|
super().__init__(parent, attr, service, rules, path)
|
|
2350
2350
|
self.DPI = self._DPI(self, "DPI", service, rules, path)
|
|
2351
|
-
self.Width = self._Width(self, "Width", service, rules, path)
|
|
2352
2351
|
self.Option = self._Option(self, "Option", service, rules, path)
|
|
2352
|
+
self.Width = self._Width(self, "Width", service, rules, path)
|
|
2353
2353
|
self.UseWindowResolution = self._UseWindowResolution(self, "UseWindowResolution", service, rules, path)
|
|
2354
2354
|
self.Height = self._Height(self, "Height", service, rules, path)
|
|
2355
2355
|
|
|
@@ -2358,14 +2358,14 @@ class Root(PyMenu):
|
|
|
2358
2358
|
Argument DPI.
|
|
2359
2359
|
"""
|
|
2360
2360
|
|
|
2361
|
-
class
|
|
2361
|
+
class _Option(PyTextualCommandArgumentsSubItem):
|
|
2362
2362
|
"""
|
|
2363
|
-
Argument
|
|
2363
|
+
Argument Option.
|
|
2364
2364
|
"""
|
|
2365
2365
|
|
|
2366
|
-
class
|
|
2366
|
+
class _Width(PyNumericalCommandArgumentsSubItem):
|
|
2367
2367
|
"""
|
|
2368
|
-
Argument
|
|
2368
|
+
Argument Width.
|
|
2369
2369
|
"""
|
|
2370
2370
|
|
|
2371
2371
|
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):
|
|
@@ -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):
|
|
@@ -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):
|
|
@@ -7793,8 +7793,8 @@ class Root(PyMenu):
|
|
|
7793
7793
|
def __init__(self, parent, attr, service, rules, path):
|
|
7794
7794
|
super().__init__(parent, attr, service, rules, path)
|
|
7795
7795
|
self.DPI = self._DPI(self, "DPI", service, rules, path)
|
|
7796
|
-
self.Width = self._Width(self, "Width", service, rules, path)
|
|
7797
7796
|
self.Option = self._Option(self, "Option", service, rules, path)
|
|
7797
|
+
self.Width = self._Width(self, "Width", service, rules, path)
|
|
7798
7798
|
self.UseWindowResolution = self._UseWindowResolution(self, "UseWindowResolution", service, rules, path)
|
|
7799
7799
|
self.Height = self._Height(self, "Height", service, rules, path)
|
|
7800
7800
|
|
|
@@ -7803,14 +7803,14 @@ class Root(PyMenu):
|
|
|
7803
7803
|
Argument DPI.
|
|
7804
7804
|
"""
|
|
7805
7805
|
|
|
7806
|
-
class
|
|
7806
|
+
class _Option(PyTextualCommandArgumentsSubItem):
|
|
7807
7807
|
"""
|
|
7808
|
-
Argument
|
|
7808
|
+
Argument Option.
|
|
7809
7809
|
"""
|
|
7810
7810
|
|
|
7811
|
-
class
|
|
7811
|
+
class _Width(PyNumericalCommandArgumentsSubItem):
|
|
7812
7812
|
"""
|
|
7813
|
-
Argument
|
|
7813
|
+
Argument Width.
|
|
7814
7814
|
"""
|
|
7815
7815
|
|
|
7816
7816
|
class _UseWindowResolution(PyParameterCommandArgumentsSubItem):
|