Launcher#
Provides a module for launching Fluent.
This module supports both starting Fluent locally and connecting to a remote instance with gRPC.
Classes:
|
An enumeration over supported Fluent versions. |
|
An enumeration over supported launch modes. |
Exceptions:
|
Exception class representing launch errors. |
Functions:
Return the version string corresponding to the most recent, available ANSYS installation. |
|
|
Get Fluent executable path. |
|
Launch Fluent locally in server mode or connect to a running Fluent server instance. |
|
Launch Fluent remotely using PyPIM <https://pypim.docs.pyansys.com>. |
|
Convert journal filenames to Python filename. |
- class ansys.fluent.core.launcher.launcher.FluentVersion(value)#
Bases:
Enum
An enumeration over supported Fluent versions.
Attributes:
- version_22R2 = '22.2.0'#
- version_23R1 = '23.1.0'#
- version_23R2 = '23.2.0'#
- exception ansys.fluent.core.launcher.launcher.LaunchFluentError(launch_string)#
Bases:
Exception
Exception class representing launch errors.
- __init__(launch_string)#
__init__ method of LaunchFluentError class.
- class ansys.fluent.core.launcher.launcher.LaunchMode(value)#
Bases:
Enum
An enumeration over supported launch modes.
Attributes:
Methods:
get_mode
(mode)Returns the LaunchMode based on the provided mode string.
- MESHING_MODE = ('meshing', <class 'ansys.fluent.core.session_meshing.Meshing'>, True, [])#
- PURE_MESHING_MODE = ('pure-meshing', <class 'ansys.fluent.core.session_pure_meshing.PureMeshing'>, True, [])#
- SOLVER = ('solver', <class 'ansys.fluent.core.session_solver.Solver'>, False, [])#
- SOLVER_ICING = ('solver-icing', <class 'ansys.fluent.core.session_solver_icing.SolverIcing'>, False, [('fluent_icing', True)])#
- static get_mode(mode)#
Returns the LaunchMode based on the provided mode string.
- ansys.fluent.core.launcher.launcher.get_ansys_version()#
Return the version string corresponding to the most recent, available ANSYS installation. The returned value is the string component of one of the members of the FluentVersion class.
- Return type:
- ansys.fluent.core.launcher.launcher.get_fluent_exe_path(**launch_argvals)#
Get Fluent executable path. The path is searched in the following order. :rtype:
Path
PYFLUENT_FLUENT_ROOT
environment variable.product_version
parameter passed withlaunch_fluent
.The latest ANSYS version from
AWP_ROOTnnn`
environment variables.
- Returns:
Path
Fluent executable path
- ansys.fluent.core.launcher.launcher.launch_fluent(product_version=None, version=None, precision=None, processor_count=None, journal_filepath=None, start_timeout=100, additional_arguments='', env=None, start_instance=None, ip=None, port=None, cleanup_on_exit=True, start_transcript=True, show_gui=None, case_filepath=None, case_data_filepath=None, lightweight_mode=False, mode=None, server_info_filepath=None, password=None, py=None, cwd=None, topy=None, **kwargs)#
Launch Fluent locally in server mode or connect to a running Fluent server instance.
- Parameters:
- product_version
str
,optional
Select an installed version of ANSYS. The string must be in a format like
"23.1.0"
(for 2023 R1) matching the documented version format in the FluentVersion class. The default isNone
, in which case the newest installed version is used.- version
str
,optional
Geometric dimensionality of the Fluent simulation. The default is
None
, in which case"3d"
is used. Options are"3d"
and"2d"
.- precision
str
,optional
Floating point precision. The default is
None
, in which case"double"
is used. Options are"double"
and"single"
.- processor_count
int
,optional
Number of processors. The default is
None
, in which case1
processor is used. In job scheduler environments the total number of allocated cores is clamped to this value.- journal_filepath
str
,optional
Name of the journal file to read. The default is
None
.- start_timeout
int
,optional
Maximum allowable time in seconds for connecting to the Fluent server. The default is
100
.- additional_arguments
str
,optional
Additional arguments to send to Fluent as a string in the same format they are normally passed to Fluent on the command line. The default is``””``.
- env
dict
[str
,str
],optional
Mapping to modify environment variables in Fluent. The default is
None
.- start_instancebool,
optional
Whether to start a local Fluent instance. The default is None, which indicates True. Otherwise, connect to an existing Fluent instance at a specified IP address on a specified port, using the arguments
ip
andport
. You can also use the environment variablePYFLUENT_START_INSTANCE=<0 or 1>
to setstart_instance
if you do not pass it as an argument.- ip
str
,optional
IP address for connecting to an existing Fluent instance. This parameter is used only when
start_instance
isFalse
. Otherwise, the IP address defaults to"127.0.0.1"
. You can also use the environment variablePYFLUENT_FLUENT_IP=<ip>
to set this parameter.- port
int
,optional
Port to listen on for an existing Fluent instance. This parameter is used only when
start_instance
isFalse
. You can use the environment variablePYFLUENT_FLUENT_PORT=<port>
to set a default value.- cleanup_on_exitbool,
optional
Whether to shut down the connected Fluent session when PyFluent is exited, or the
exit()
method is called on the session instance, or if the session instance becomes unreferenced. The default isTrue
.- start_transcriptbool,
optional
Whether to start streaming the Fluent transcript in the client. The default is
True
. You can stop and start the streaming of the Fluent transcript subsequently via the method calls,start_transcript()
andstop_transcript()
on the session object.- show_guibool,
optional
Whether to display the Fluent GUI, only when
start_instance
is set toTrue
. The default isNone
, which does not cause the GUI to be shown. If a value ofFalse
is not explicitly provided, the GUI will also be shown if the environment variablePYFLUENT_SHOW_SERVER_GUI
is set to 1.- case_filepath
str
,optional
If provided, the case file at
case_filepath
is read into the Fluent session.- case_data_filepath
str
,optional
If provided, the case and data files at
case_data_filepath
are read into the Fluent session.- lightweight_mode: bool, optional
Whether to run in lightweight mode. In lightweight mode, the lightweight settings are read into the current Fluent solver session. The mesh is read into a background Fluent solver session which will replace the current Fluent solver session once the mesh read is complete and the lightweight settings made by the user in the current Fluent solver session have been applied in the background Fluent solver session. This is all orchestrated by PyFluent and requires no special usage. This parameter is used only when
case_filepath
is provided. The default isFalse
.- mode
str
,optional
Launch mode of Fluent to point to a specific session type. The default value is
None
. Options are"meshing"
,"pure-meshing"
and"solver"
.- server_info_filepath: str
Path to server-info file written out by Fluent server. The default is
None
.server_info_filepath
can be specified ifstart_instance
isFalse
, where PyFluent will use the connection information in the file to connect to a running Fluent session.- password
str
,optional
Password to connect to existing Fluent instance.
- pybool,
optional
If True, Fluent will run in Python mode. Default is None.
- cwd: str, Optional
Path to specify current working directory to launch fluent from the defined directory as current working directory.
- topy: str or list, optional
The string path to a Fluent journal file, or a list of such paths. Fluent will execute the journal(s) and write the equivalent Python journal(s).
- product_version
- Returns:
Union
[Meshing
,PureMeshing
,Solver
,SolverIcing
]Session object.
- Return type:
Notes
In job scheduler environments such as SLURM, LSF, PBS, etc… the allocated machines and core counts are queried from the scheduler environment and passed to Fluent.
- ansys.fluent.core.launcher.launcher.launch_remote_fluent(session_cls, start_transcript, start_timeout=100, product_version=None, cleanup_on_exit=True, meshing_mode=False, dimensionality=None, launcher_args=None)#
Launch Fluent remotely using PyPIM <https://pypim.docs.pyansys.com>.
When calling this method, you must ensure that you are in an environment where PyPIM is configured. You can use the :func: pypim.is_configured <ansys.platform.instancemanagement.is_configured> method to verify that PYPIM is configured.
- Parameters:
- session_cls: Union[type(Meshing), type(PureMeshing), type(Solver), type(SolverIcing)]
Session type.
- start_transcript: bool
Whether to start streaming the Fluent transcript in the client. The default is
True
. You can stop and start the streaming of the Fluent transcript subsequently via method calls on the session object.- start_timeout
int
,optional
Maximum allowable time in seconds for connecting to the Fluent server. The default is
100
.- product_version
str
,optional
Select an installed version of ANSYS. The string must be in a format like
"23.1.0"
(for 2023 R1) matching the documented version format in the FluentVersion class. The default isNone
, in which case the newest installed version is used.- cleanup_on_exitbool,
optional
Whether to clean up and exit Fluent when Python exits or when garbage is collected for the Fluent Python instance. The default is
True
.- meshing_modebool,
optional
Whether to launch Fluent remotely in meshing mode. The default is
False
.- dimensionality
str
,optional
Geometric dimensionality of the Fluent simulation. The default is
None
, in which case"3d"
is used. Options are"3d"
and"2d"
.
- Returns:
Union
[Meshing
,PureMeshing
,Solver
,SolverIcing
]Session object.
- Return type:
- ansys.fluent.core.launcher.launcher.scm_to_py(topy)#
Convert journal filenames to Python filename.