ansys.fluent.core.workflow.Task#

class ansys.fluent.core.workflow.Task(command_source, name)#

Wrap a Workflow TaskObject instance, adding methods to discover more about the relationships between TaskObjects.

Methods

get_direct_upstream_tasks()

get_direct_downstream_tasks()

ordered_children()

inactive_ordered_children()

get_id()

get_idx()

__getattr__(attr)

__setattr__(attr, value)

__dir__()

Methods

__init__(command_source, name)

get_direct_downstream_tasks()

Get the list of tasks downstream of this one and directly connected by a data dependency.

get_direct_upstream_tasks()

Get the list of tasks upstream of this one and directly connected by a data dependency.

get_id()

Get the unique string identifier of this task, as it is in the meshing application.

get_idx()

Get the unique integer index of this task, as it is in the meshing application.

inactive_ordered_children()

Get the inactive ordered task list held by this task.

ordered_children()

Get the ordered task list held by this task. Sorting is in terms of the workflow order and only includes this task's top-level tasks, while other tasks can be obtained by calling ordered_children() on a parent task. Given the workflow::.

Attributes

CommandArguments