ProgressState#

class ansys.additive.core.progress_handler.ProgressState#

Bases: enum.IntEnum

Simulation progress status.

Overview#

NEW

Simulation created and not yet queued to run.

WAITING

Simulation is queued and waiting to start.

RUNNING

Simulation is running.

COMPLETED

Simulation has completed.

ERROR

Simulation has errored.

CANCELLED

Simulation has been cancelled.

WARNING

Simulation completed with warnings.

Import detail#

from ansys.additive.core.progress_handler import ProgressState

Attribute detail#

ProgressState.NEW#

Simulation created and not yet queued to run.

ProgressState.WAITING#

Simulation is queued and waiting to start.

ProgressState.RUNNING#

Simulation is running.

ProgressState.COMPLETED#

Simulation has completed.

ProgressState.ERROR#

Simulation has errored.

ProgressState.CANCELLED#

Simulation has been cancelled.

ProgressState.WARNING#

Simulation completed with warnings.