Launch options#
Provides a module for enums used in the PyFluent.
Classes:
|
Geometric dimensionality of the Fluent simulation. |
|
Provides supported graphics driver of Fluent in Linux. |
|
Enumerates over supported Fluent modes. |
|
Provides supported graphics driver of Fluent in Windows. |
|
Floating point precision. |
|
Provides supported user interface mode of Fluent. |
- class ansys.fluent.core.launcher.launch_options.Dimension(*values)#
Bases:
FluentEnumGeometric dimensionality of the Fluent simulation.
Attributes:
- THREE = 3#
- TWO = 2#
- class ansys.fluent.core.launcher.launch_options.FluentLinuxGraphicsDriver(*values)#
Bases:
FluentEnumProvides supported graphics driver of Fluent in Linux.
Attributes:
- AUTO = 'auto'#
- NULL = 'null'#
- OPENGL = 'opengl'#
- OPENGL2 = 'opengl2'#
- X11 = 'x11'#
- class ansys.fluent.core.launcher.launch_options.FluentMode(*values)#
Bases:
FluentEnumEnumerates over supported Fluent modes.
The Fluent mode is used to determine the type of session to be created.
Modes: -
MESHING: When in meshing mode, Fluent functions as a robust, unstructured mesh generation program that can handle meshes of virtually unlimited size and complexity.. -PURE_MESHING: Start Fluent in meshing mode without switch to solver functionality. -SOLVER: The default Ansys Fluent full solution mode allows you to set up, solve, and postprocess a problem. -SOLVER_ICING: Fluent Icing allows you to simulate airflow, particles and ice accretion on aircraft surfaces. -SOLVER_AERO: Fluent Aero allows you to easily explore the aerodynamic performance of aircraft from a wide range of flight regimes, from subsonic to hypersonic conditions. -PRE_POST: Run Ansys Fluent with only the setup and postprocessing capabilities available. It does not allow you to perform calculations.Attributes:
Methods:
is_meshing(mode)Check if the current mode is meshing.
- MESHING = 'meshing'#
- PRE_POST = 'pre_post'#
- PURE_MESHING = 'pure_meshing'#
- SOLVER = 'solver'#
- SOLVER_AERO = 'solver_aero'#
- SOLVER_ICING = 'solver_icing'#
- static is_meshing(mode)#
Check if the current mode is meshing.
- Parameters:
- mode
FluentMode mode
- mode
- Returns:
- bool
Trueif the mode isFluentMode.MESHINGorFluentMode.PURE_MESHING,Falseotherwise.
- class ansys.fluent.core.launcher.launch_options.FluentWindowsGraphicsDriver(*values)#
Bases:
FluentEnumProvides supported graphics driver of Fluent in Windows.
Attributes:
- AUTO = 'auto'#
- DX11 = 'dx11'#
- MSW = 'msw'#
- NULL = 'null'#
- OPENGL = 'opengl'#
- OPENGL2 = 'opengl2'#