The whole topic of Statistics Collectors is very new to me, so I'm trying to grasp the basics of how it can be best put to use. Here is my question:
I have a number of sources and a number of processors. Each source generates a special kind of product, which is processed by its dedicated processor. And I am trying to calculate the following for each entity:
(time an entity exited its dedicated processor) - (time it exited its source)
I want to calculate the above for all of the entities produced during the runtime of the model, and use the source or processor as a stamp as well. In other words, I want to have a table with the following fields:
Item number, Processed by, Time exited from source, Time exited from processor, Stay time
item number | processed by | time exited source | time exited processor | stay time |
1 | Superior_merged | 8:00:1 | 8:01:00 | 00:00:5 |
2 | Inferior_merged | 8:01:00 | 8:02:12 | 00:01:12 |
So, in the above table, item 1 was created by "superior_stream_merged", went in the "queue_merged", and processed by "superior_merged". Item 2 was created by "inferior_stream_merged", went in the "queue_merged", and processed by "inferior_merged". And so on...
What would be the easiest way to do this in FlexSim 17.2.2?