question

Sebastien avatar image
0 Likes"
Sebastien asked Sebastien commented

Release item of a queue on a condition (holditem / releaseitem functions)

Hello !

I would like my queue to check a label in the next machine and release items only if this label is equal to 1.

I tried with holditem and release item but the logic behind those function is not clear to me and I could not find further explanation than the one in the manual.

In the OnExit trigger I tried:


  1. if (nextMachine.condition == 1){
  2.  
  3. holditem(item);
  4.  
  5. } else {
  6.  
  7. releaseitem(item);
  8.  
  9. }

But it does not work. From what I read, holditem() should be called only when the item has been released. And releaseitem() only when holditem has been called before. But I do not know how to know that the item in the OnExit trigger has been held with holditem or is another item, as I do not know where the items go once the are held.

Could anyone explain to me how the two functions work in order for me to apply them in my use case ?

EDIT

Please find a sample model attached. I would like the processor to process maximum 5 items simulateously without changing the max content property.

sample-model.fsm

FlexSim 19.0.0
queuereleaseitemholditem
sample-model.fsm (32.1 KiB)
· 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.

1 Answer

José Antonio MD avatar image
0 Likes"
José Antonio MD answered Sebastien commented

Hello @Sebastian,

Using ProcessFlow you can do this too.

I attached a model as an example. Initially, condition is 1, at 10 seconds its value is 0 and at 30 it becomes 1. Therefore, between 10 and 30 seconds the objects will be stopped in the queue.

I hope I've been helpful.

sol-foro.fsm


sol-foro.fsm (24.7 KiB)
· 6
5 |100000

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