How can i know when each of the truck of this model is in the queue?

How can i know when each of the truck of this model is in the queue?

pedro_m3
Not applicable
125 Views
1 Reply
Message 1 of 2

How can i know when each of the truck of this model is in the queue?

pedro_m3
Not applicable

[ FlexSim 18.2.3 ]

final-simulacion-030719.fsmI want to know the time when the truck arrived at ech of the queues and i want to print the time of each truck.

0 Likes
Accepted solutions (1)
126 Views
1 Reply
Reply (1)
Message 2 of 2

regan_blackett
Autodesk
Autodesk
Accepted solution

You could put something like this in a Code Snippet in the OnEntry Triggers of any object:

print(item, " EntryTime: ", Model.time);

That will print the name of the object and the time that the trigger happened to the output console. In the print command you can put up to 20 parameters to include in the print out. In the above example a print would look something like this depending which object is doing the printing:

/Estacioncastilla1~4/Product  EntryTime:  507.43
0 Likes