question

Manuel Silva avatar image
0 Likes"
Manuel Silva asked Manuel Silva commented

Delay item entry on processors using operator as transport

Example 1.fsmI'm having difficulties defining "Operator1" as the transport between "Queue2" and "Processor2", because the entry of items in "Processor2" should have a delay between each batch of 20 items of 294.66 seconds. I've already put in a code with "On Entry" and "On Message" restrictions, but whenever I try to set the "Operator1" to do the transport, it places items in the processor without respecting the delay. Should I make any changes to the code?

FlexSim 25.0.2
transportdelay
example-1.fsm (39.9 KiB)
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

1 Answer

Felix Möhlmann avatar image
0 Likes"
Felix Möhlmann answered Manuel Silva commented

You have to close the input of the processor as soon as 20 transport tasks are planned, instead of when the items arrive at the processor.

The best way to do this (I think) is to have the processor pull items. Then you can use the Pull Requirement field to close the input after it pulls twenty items. The starting of the timer would still happen in the OnEntry trigger.

batch-pull-interval.fsm


· 1
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.