Entity generation in SimEvents
조회 수: 1 (최근 30일)
이전 댓글 표시
I want to generate 5 entities at the start of simulation and then single entity with fixed interval (idea of having initial inventory and then production at continuous rate) . I know how to generate multiple entities at the start of simulation but don't know how to continue generation of single entity with regular interval in rest of simulation time. can anyone guide me please as I'm a learner of SimEvents.
댓글 수: 2
Striker121
2018년 3월 1일
편집: Striker121
2018년 3월 1일
Something like the following should work:
In the entity generator block parameters, replace the variables "TotalNumberEntitiesToGenerate" and "IntervalToOutputEntitiesAt" as appropriate
답변 (1개)
Krishna Akella
2018년 12월 10일
Hi Summyia,
A persistent variable persists its value between function calls. 'isempty(SEQ)' returns 1 if SEQ is an empty array and 0 otherwise.
persistent SEQ; % SEQ should retain its value between different calls to this method
persistent idx; % idx should retain its value between different calls to this method
if isempty(SEQ) % Check if SEQ is empty
SEQ = zeros(1, TotalNumberEntitiesToGenerate); % Initialize the value of SEQ
...
Hope that clarifies!
- Krishna
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Discrete-Event Simulation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!