For simulating a production process that has multiple serially connected stations with same characteristics. I do not want to pull 100s of processors into my system and I am looking for a way to compress these 100s of processors and programatically show them using only one processor.
For this I plan to create an array of processors, and an array for each item that passes through the processors. The item's array should be updated every time this item passes the processor. The items that flow into the processor array should acquire only one processor that has the same index as the current index of the item.
I am not sure how to acquire only one processor from the array based on an item's index. Please suggest the best way forward?