Transport Out
Description
A TransportOut statement allows you to transport one or more product instance(s) out of the process. The statement can operate in one of two modes: in Transport Products mode the input variable is expected to contain one or more product instances that will be sent out sequentially, while in Process an Assembly mode the input variable is expected to contain a single assembly instance whose assembly slots will be cleared by sending out the product instances that have been placed into them.
Additional information
If Destination is To Next Process, a successful transportation requires:
1. for there to currently be a receiver for the type of product this statement is sending.
2. for that receiver to be the next step in the Flow Sequence of the product.
3. for there to exist a valid transportation route from this process to the receiving process.
4. for any resources required for the transportation to be available.
This statement will wait until the product leaves the process or the assembly. The waiting duration can depend on e.g., when another process requires the product, if the resources are available or if the destination ComponentContainer has capacity.
A TransportOut statement is typically paired with a TransportIn statement from the receiving process. Make sure to check that the Destination property of the TransportOut statement is compatible with the Source property of the TransportIn statement. It is also possible to use the TransportOut statement without a matching TransportIn statement, typically in To Container Destination mode.
Transporting Assemblies
Mode Transport Products:
Assembly can be transported out as a single Product Type like any other product.
Mode Process an Assembly:
When processing assemblies, a TransportOut statement is typically used with a GetAssembly statement. With GetAssembly, the user can select which step(s) of the assembly will be transported out, and then this information is passed as an Assembly Order to the TransportOut statement via the AssemblyOrderVariableName property.
Assembly steps are transported out consecutively, in a reversed breadth-first manner. Within a step, the OrderIndex property of assembly slots determines the transporting order. Slots with the same OrderIndex value will be transported concurrently.
Properties
Name | Description |
IsEnabled | Turns on/off the execution of this statement. |
ProductVariableName |
The name of the variable that contains either the Product(s) to be transported out or the Assembly whose slots will be cleared of Products. |
Mode |
Defines how products are transported out. Transport Products Process an Assembly |
AssemblyOrderVariableName |
Name of the AssemblyOrder variable that defines which slots of the assembly will be cleared, if they are currently filled. If left empty, all slots of the assembly will be transported out. |
ResourcePositionFrame |
Frame location where a resource will move for picking a product. |
Destination |
Defines the destination to where the products will be passed for transportation. To Next Process To Component Container To Transport Node |
DestinationNode |
To which transport node the Product Instance is transported out when the Destination property is defined as To Transport Node. |
Container |
To which container the Product Instance is transported out when the Destination property is defined as To Component Container. |
SendAsProductBundles |
This property can be used to transport out multiple products as a bunch within single transportation. The selected Assembly Steps in the Assembly Order will always be transported out individually (one Assembly Slot at a time while looping the selected Assembly Steps). If the property value is true, the non-selected child steps of the selected Assembly Steps (if any) will be attached to the Product Instance in the first slot of their selected Assembly Step parent. In more details, the attached products will be transported as Product Bundles. Product Bundle is a collection of Product Instances created by attaching their dynamic components together. Product Bundles are not Assembly Instances, and they don’t have assembly structure metadata. |