SimEvents: Which entity type should event actions be assigned to? Invoker type or target type?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Abdolkarim Mohammadi
am 30 Jun. 2019
Bearbeitet: Abdolkarim Mohammadi
am 1 Jul. 2019
Event actions of MATLAB discrete-event system should be named according to this rule: entityType + eventAction. The rule is rather easy to understand for events that target entities. But I got confused for events that target storages, especially testEntry and iterate.
For example, assume that we have 2 storages. Storage1 accepts entities of type Task, while Storage2 accepts entities of type Failure. We want the DES system to open or close the gate of Storage1 via testEntry, when a Failure entity arrives in Storage2. In this situation, should FailureEntry invoke TaskTestEntry (type of the storage that is affected) or FailureTestEntry (type of the storage that invokes the event action)?
0 Kommentare
Akzeptierte Antwort
Krishna Akella
am 1 Jul. 2019
Hi Kar,
The testEntry method is invoked before an entity enters a storage. This method allows to either accept or refuse an entity from entering that particular storage. In the case of the storage for Task entities, the callback method name would be TaskTestEntry and for the Failure storage it would be FailureTestEntry.
For this example, when a Failure entity arrives into storage 2, an internal flag can be set in the block that would block Task entities from entering the block. When we are done processing the Failure entity, we can reset the flag so that we can start accepting entities into Storage 1. To check if any entities are waiting to enter storage 1, we can schedule a testEntry event for storage 1.
Regards,
Krishna
1 Kommentar
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Discrete-Event Simulation finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!