post_helper#

Provides a module for post objects.

Exceptions:

IncompleteISOSurfaceDefinition()

Raised when iso-surface definition is incomplete.

SurfaceCreationError()

Raised when surface creation is unsuccessful.

Classes:

PostAPIHelper(obj)

Class providing helper API for post objects.

exception ansys.fluent.core.post_objects.post_helper.IncompleteISOSurfaceDefinition#

Bases: RuntimeError

Raised when iso-surface definition is incomplete.

__init__()#
class ansys.fluent.core.post_objects.post_helper.PostAPIHelper(obj)#

Bases: object

Class providing helper API for post objects.

Methods:

__init__(obj)

__init__ method of PostAPIHelper class.

get_field_unit(field)

Returns the unit of the field.

get_vector_fields()

Returns vector field.

remote_surface_name(local_surface_name)

Returns the surface name.

Attributes:

monitors

Returns the session monitors.

__init__(obj)#

__init__ method of PostAPIHelper class.

get_field_unit(field)#

Returns the unit of the field.

get_vector_fields()#

Returns vector field.

property monitors#

Returns the session monitors.

remote_surface_name(local_surface_name)#

Returns the surface name.

exception ansys.fluent.core.post_objects.post_helper.SurfaceCreationError#

Bases: RuntimeError

Raised when surface creation is unsuccessful.

__init__()#