As a new learner of flexsim, I have read the official tutorial and am working on my first project: simulating the operation of a port.
now I am working on a very early stage:
1. ship comes periodly, unload the items along side the dock.
2. folk lifter transports the items to a field.
3. trucks come periodly.
4. when trucks come, folk lifter transports at most 3 items to the truck then trucks leave.
I have finished the first 3 steps smoothly with the help from the forum. But I encountered a new problem in step 4. I used a list to store items transported to the field, and when truck comes, I pull at most 3 items from the list, and build a tasksequence ordering folk lifters to transport the pulled items to the truck. In the simulation, 3 items in the list can be pulled from the list as I excepted, But only 1 of them will be transported to the truck. I have googled the answer but didn't find it. Can you please help me with it? Really thank you for your help.