ansys-fluent-core 0.20.dev9__py3-none-any.whl → 0.20.dev10__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 +1 -1
- ansys/fluent/core/_version.py +1 -1
- ansys/fluent/core/data/api_tree_231.pickle +0 -0
- ansys/fluent/core/data/api_tree_232.pickle +0 -0
- ansys/fluent/core/data/api_tree_241.pickle +0 -0
- ansys/fluent/core/data/api_tree_242.pickle +0 -0
- ansys/fluent/core/fluent_connection.py +5 -5
- ansys/fluent/core/launcher/standalone_launcher.py +1 -1
- ansys/fluent/core/meshing/tui_231.py +6497 -6497
- ansys/fluent/core/meshing/tui_232.py +7573 -7573
- ansys/fluent/core/meshing/tui_241.py +7803 -7803
- ansys/fluent/core/meshing/tui_242.py +8059 -8059
- ansys/fluent/core/session.py +12 -12
- ansys/fluent/core/session_meshing.py +1 -1
- ansys/fluent/core/session_pure_meshing.py +1 -1
- ansys/fluent/core/session_solver.py +5 -5
- ansys/fluent/core/session_solver_lite.py +1 -1
- ansys/fluent/core/solver/flobject.py +57 -52
- ansys/fluent/core/solver/settings_242/__init__.py +1 -1
- ansys/fluent/core/solver/settings_242/plane_surface_child.py +1 -1
- ansys/fluent/core/solver/tui_231.py +35045 -34364
- ansys/fluent/core/solver/tui_232.py +26365 -26365
- ansys/fluent/core/solver/tui_241.py +28076 -28076
- ansys/fluent/core/solver/tui_242.py +29096 -29096
- ansys/fluent/core/systemcoupling.py +1 -1
- ansys/fluent/core/utils/setup_for_fluent.py +1 -1
- ansys/fluent/core/workflow.py +4 -4
- ansys/fluent/tests/test_field_data.py +16 -0
- ansys/fluent/tests/test_flobject.py +6 -1
- ansys/fluent/tests/test_fluent_session.py +4 -4
- ansys/fluent/tests/test_launcher_remote.py +9 -7
- ansys/fluent/tests/test_reduction.py +36 -25
- ansys/fluent/tests/test_session.py +6 -6
- ansys/fluent/tests/test_settings_api.py +49 -12
- ansys/fluent/tests/test_solution_variables.py +17 -0
- {ansys_fluent_core-0.20.dev9.dist-info → ansys_fluent_core-0.20.dev10.dist-info}/METADATA +2 -2
- {ansys_fluent_core-0.20.dev9.dist-info → ansys_fluent_core-0.20.dev10.dist-info}/RECORD +39 -39
- {ansys_fluent_core-0.20.dev9.dist-info → ansys_fluent_core-0.20.dev10.dist-info}/LICENSE +0 -0
- {ansys_fluent_core-0.20.dev9.dist-info → ansys_fluent_core-0.20.dev10.dist-info}/WHEEL +0 -0
ansys/fluent/core/__init__.py
CHANGED
|
@@ -34,7 +34,7 @@ from ansys.fluent.core.utils.search import search # noqa: F401
|
|
|
34
34
|
from ansys.fluent.core.utils.setup_for_fluent import setup_for_fluent # noqa: F401
|
|
35
35
|
from ansys.fluent.core.warnings import PyFluentDeprecationWarning # noqa: F401
|
|
36
36
|
|
|
37
|
-
_VERSION_INFO = "Build date: March
|
|
37
|
+
_VERSION_INFO = "Build date: March 20, 2024 16:02 UTC ShaID: dc3ec3e"
|
|
38
38
|
"""Global variable indicating the version of the PyFluent package - Empty by default"""
|
|
39
39
|
|
|
40
40
|
_THIS_DIRNAME = os.path.dirname(__file__)
|
ansys/fluent/core/_version.py
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -120,13 +120,13 @@ class ErrorState:
|
|
|
120
120
|
--------
|
|
121
121
|
>>> import ansys.fluent.core as pyfluent
|
|
122
122
|
>>> session = pyfluent.launch_fluent()
|
|
123
|
-
>>> session.
|
|
124
|
-
>>> session.
|
|
123
|
+
>>> session._fluent_connection._error_state.set("test", "test details")
|
|
124
|
+
>>> session._fluent_connection._error_state.name
|
|
125
125
|
'test'
|
|
126
|
-
>>> session.
|
|
126
|
+
>>> session._fluent_connection._error_state.details
|
|
127
127
|
'test details'
|
|
128
|
-
>>> session.
|
|
129
|
-
>>> session.
|
|
128
|
+
>>> session._fluent_connection._error_state.clear()
|
|
129
|
+
>>> session._fluent_connection._error_state.name
|
|
130
130
|
''
|
|
131
131
|
"""
|
|
132
132
|
|
|
@@ -272,7 +272,7 @@ class StandaloneLauncher:
|
|
|
272
272
|
inside_container=False,
|
|
273
273
|
)
|
|
274
274
|
start_watchdog = _confirm_watchdog_start(
|
|
275
|
-
self.start_watchdog, self.cleanup_on_exit, session.
|
|
275
|
+
self.start_watchdog, self.cleanup_on_exit, session._fluent_connection
|
|
276
276
|
)
|
|
277
277
|
if start_watchdog:
|
|
278
278
|
logger.info("Launching Watchdog for local Fluent client...")
|