transcript_streaming#

Provides a module for transcript streaming.

Classes:

AppendToFile(file_name)

Class representing append to file action.

Transcript(transcript_service)

Encapsulates a Fluent Transcript streaming service.

class ansys.fluent.core.streaming_services.transcript_streaming.AppendToFile(file_name)#

Bases: object

Class representing append to file action.

Methods:

__init__(file_name)

__init__ method of AppendToFile class.

__init__(file_name)#

__init__ method of AppendToFile class.

class ansys.fluent.core.streaming_services.transcript_streaming.Transcript(transcript_service)#

Bases: StreamingService

Encapsulates a Fluent Transcript streaming service.

Methods:

__init__(transcript_service)

__init__ method of Transcript class.

start([file_name, write_to_stdout])

Start streaming of Fluent transcript.

stop()

Stop streaming of Fluent transcript.

__init__(transcript_service)#

__init__ method of Transcript class.

start(file_name=None, write_to_stdout=False)#

Start streaming of Fluent transcript.

Parameters:
file_name: str, optional

File path to write the transcript stream.

write_to_stdout: bool, optional

Flag to print transcript on the screen or not

stop()#

Stop streaming of Fluent transcript.