task allocation in ED
Hi Nina,
Yes, the cycle time of a server can be modified using 4Dscript. An example of this is as follows. Let's say there is an attribute [TaskType] stamped on each part coming out of the 3 sources, and its value ranges from 1 to 3, which indicates a level of difficulty. In the cycletime field of the server, you would type:
If(Att([TaskType],first(c)) = 1,
30, {Easy task}
If(Att([TaskType],first(c)) = 2,
45, {Moderate task}
If(Att([TaskType],first(c)) = 3,
60 {Difficult task}
)
)
)
Good luck!
Eric
|