Registry / devops / ansys-fluent-core

ansys-fluent-core

JSON →
library0.39.0pypypiunverified

PyFluent provides Pythonic access to Ansys Fluent, enabling scripting, automation, and customization of CFD simulations. Current version 0.39.0 requires Python <3.15,>=3.10. Regular releases follow Ansys release cadence.

pip install ansys-fluent-core
INSTALL
IMPORT
SIG · ANSYS-FLUENT-CORE
A
ansys-fluent-core
devopspythonv0.39.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

FluentSession
from ansys.fluent.core import FluentSession
from ansys.fluent.core import FluentSession

Launches Ansys Fluent and prints session object.

import os from ansys.fluent.core import launch_fluent session = launch_fluent() print(session) session.exit()
Debug
Known issues
breakingVersions prior to 0.20.0 used `from pyfluent import Session`; now use `from ansys.fluent.core import FluentSession`. Update all imports.
fix
Change imports to `from ansys.fluent.core import FluentSession`.
affects: <0.20.0
deprecatedThe `ansys.fluent.core.launcher` module is deprecated; use `ansys.fluent.core.launch_fluent` directly.
fix
Use `from ansys.fluent.core import launch_fluent`.
affects: >=0.30.0
gotchaFluentSession is context-managed; not using `with` may leave Fluent running. Always use as context manager or call `.exit()` explicitly.
fix
Use `with launch_fluent() as session:` or ensure `session.exit()` is called.
affects: all
Upgrade
Version history
0.39.0latest on PyPI · released May 27, 2026
Audit
Dependencies

No dependency data recorded yet.

Agent activity
15 hits · last 30 days
node
14
OpenAI (training)
1
Resources
ansys-fluent-core — pip install ansys-fluent-core · libregistry