Pause (material flow objects)

Syntax

<Path>.Pause:boolean

The attribute Pause sets if the object designated by <Path> is paused (true) or not (false).

Plant Simulation resets the pause, when you reset the EventController.

You can also pause the object or remove the pause with the drop-down list Paused/Planned/Unplanned.

Note:

To check if the object is only paused and not paused and unplanned, you can query the state of the attribute Unplanned. If Unplanned returns false, the object is paused only.

Note:

When a Worker/Exporter is brokered to the paused station, it remains brokered to the station while it is paused. Statistics of the Worker/Exporter does not count this time as waiting.

Data Type of the Value You Can Assign

You can assign a value of data type boolean.

Example

if not ParallelStation.Pause 
   ParallelStation.Pause := true
end