Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 10 additions & 9 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -125,21 +125,22 @@ To launch Fluent from Python, use the ``launch_fluent`` function:

Basic usage
~~~~~~~~~~~
You can use the ``solver_session.tui`` interface to run all Fluent TUI commands:
The ``solver_session`` interface provides a convenient way to launch and
interact with Fluent.

.. code:: python

solver_session.tui.file.read_case('elbow.cas.h5')
solver_session.tui.define.models.unsteady_2nd_order("yes")
solver_session.tui.solve.initialize.initialize_flow()
solver_session.tui.solve.dual_time_iterate(2, 3)
import ansys.fluent.core as pyfluent

solver_session = pyfluent.launch_fluent()

For more information on using the ``solver_session`` interface, see the
`PyFluent documentation <https://fluent.docs.pyansys.com/version/stable/>`_.

You can also install and use these PyFluent libraries:
For postprocessing and visualization, you can also install:

- `PyFluent Parametric <https://parametric.fluent.docs.pyansys.com/>`_, which provides
access to Fluent's parametric workflows.
- `PyFluent Visualization <https://visualization.fluent.docs.pyansys.com/>`_, which
provides postprocessing and visualization capabilities using the `pyvista <https://docs.pyvista.org/>`_
enables analysis and plotting through the `pyvista <https://docs.pyvista.org/>`_
and `matplotlib <https://matplotlib.org/>`_ packages.

License and acknowledgments
Expand Down
1 change: 1 addition & 0 deletions doc/changelog.d/4477.documentation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Update ReadME
Loading