ansys.fluent.core.session_meshing#

Module containing class encapsulating Fluent connection.

Classes:

Meshing(fluent_connection, scheme_eval[, ...])

Encapsulates a Fluent meshing session.

class ansys.fluent.core.session_meshing.Meshing(fluent_connection, scheme_eval, file_transfer_service=None, start_transcript=True, launcher_args=None)#

Bases: PureMeshing

Encapsulates a Fluent meshing session.

A tui object for meshing TUI commanding, and meshing and workflow objects for access to task-based meshing workflows are all exposed here. A switch_to_solver method is available in this mode.

Attributes:

PMFileManagement

Part management file management datamodel root.

PartManagement

Part management datamodel root.

meshing

Meshing datamodel root.

meshing_utilities

Meshing utilities datamodel root.

preferences

Preferences datamodel root.

tui

Meshing TUI root.

workflow

Workflow datamodel root.

Methods:

__init__(fluent_connection, scheme_eval[, ...])

Meshing session.

switch_to_solver()

Switch to solver mode and return a solver session object.

property PMFileManagement#

Part management file management datamodel root.

property PartManagement#

Part management datamodel root.

__init__(fluent_connection, scheme_eval, file_transfer_service=None, start_transcript=True, launcher_args=None)#

Meshing session.

Parameters:
fluent_connection (:ref:`ref_fluent_connection`):

Encapsulates a Fluent connection.

scheme_eval: SchemeEval

Instance of SchemeEval to execute Fluent’s scheme code on.

file_transfer_serviceOptional

Service for uploading and downloading files.

start_transcriptbool, optional

Whether to start the Fluent transcript in the client. The default is True, in which case the Fluent transcript can be subsequently started and stopped using method calls on the Session object.

property meshing#

Meshing datamodel root.

property meshing_utilities#

Meshing utilities datamodel root.

property preferences#

Preferences datamodel root.

switch_to_solver()#

Switch to solver mode and return a solver session object. Deactivate this object’s public interface and streaming services.

Returns:
Solver
property tui#

Meshing TUI root.

property workflow#

Workflow datamodel root.