ExitForMU

Syntax

<Path>.ExitForMU:integer

The attribute ExitForMU sets the side at which the next entering part or the part positioned at the converting point wants to exit the Converter. You can only set the attribute ExitForMU in the Strategy method/StrategyCtrl.

Note:

The MU cannot exit the Converter at the side at which it entered.

The numbers designate the side of the Converter at which the part exits. The figures below illustrate the sides depending on the direction in which you inserted the Converter into your simulation model.

Data Type of the Value You Can Assign

You can assign a value of data type integer.

Example

param entranceNo: integer
if @.name = "C" 
   ?.ExitForMU := 0 /* number of the exit of the converter*/
elseif @.name = "A" 
   if entranceNo = 2 
       ?.ExitForMU := 3
   else
       ?.ExitForMU := 0
   end
else
   if entranceNo = 2 
       ?.ExitForMU := 1
   else
       ?.ExitForMU := 0
   end
end
?.ExitForMU := 1