Skip to content
Merged
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
1 change: 1 addition & 0 deletions doc/changelog.d/3721.documentation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Update docs to connect Fluent launched on Linux [skip tests]
20 changes: 20 additions & 0 deletions doc/source/user_guide/session/launching_ansys_fluent.rst
Original file line number Diff line number Diff line change
Expand Up @@ -310,3 +310,23 @@ Connecting to a Fluent container running inside WSL from a Windows host

>>> import ansys.fluent.core as pyfluent
>>> solver = pyfluent.connect_to_fluent(ip="localhost", port=63084, password=<password written in D:\testing\server.txt>)


Connecting to a Fluent container running inside Linux from a Windows host
-------------------------------------------------------------------------

1. Launch Fluent container inside Linux

.. code:: console

ansys_inc/v251/fluent/bin/fluent 3ddp -gu -sifile=server.txt
cat server.txt
10.18.19.151:44383
hbsosnni

2. Connect from PyFluent running on a Windows host

.. code:: python

>>> import ansys.fluent.core as pyfluent
>>> solver = pyfluent.connect_to_fluent(ip="10.18.19.151", port=44383, password="hbsosnni")