Using queue size to permit entity creation
조회 수: 1 (최근 30일)
이전 댓글 표시
I have a manufacturing model that has several queues after servers. I would like to use the number of entities in one particular queue to trigger a hold on entity creation i.e. if more than 20 entities in the queue then stop feeding in more raw materials from inventory.
I assume I'll use an event based entity generator (or time based with release gate) and know how to get queue size out of the queue but am unsure how to use this to generate the function to release or create an entity.
I can see Simulink has many logic (e.g. relational operator) functions that I can drag in but would have thought this so common that Simevents would have its own blocks.
Do I need to use logic blocks from Simulink to trigger entity creation / release or is there a more elegant or integrated way from Simevents?
Thanks
P
댓글 수: 1
Tianhao Guo
2016년 4월 23일
편집: Tianhao Guo
2016년 4월 23일
I have almost the same question. Now I think we can make an output port from queue block "number of entities in block, n". Then use it.
The question is that I don't know how to trigger a function when the "number of entities in block, n" becomes zero
https://uk.mathworks.com/matlabcentral/answers/280589-how-to-determine-whether-a-queue-is-empty-in-simevents-and-do-some-actions-based-on-this-observation
채택된 답변
Devdatt Lad
2013년 2월 3일
편집: Devdatt Lad
2013년 2월 3일
If you can set the Capacity of the Queue to be 20, then the Time-Based Entity Generator that is feeding this Queue can be configured to Pause when it is blocked. Hence when the number of entities in the Queue is 20, the Generator will stop generating, until the number goes down to 19, in which case it will generate one more and so on. So you don't need any Logic blocks in this case. Just connect the Generator to the Queue and SimEvents will do the rest for you.
However, if you need the Queue Capacity to be more than your threshold or if your threshold (of 20) varies throughout the simulation based on some criteria, then your best bet is to use the Logic blocks from Simulink for this.
댓글 수: 3
Devdatt Lad
2013년 2월 4일
It doesn't have to feed straight to the buffer. It can have blocks in between as long as these blocks are not other buffers (queues or servers).
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Messages에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!