Are there other timer predicates than after() and before() in Simulink finite state machines?

조회 수: 5 (최근 30일)
I am currently learning how to model timed finite state machines with Stateflow.
I understand from the documentation that the only conditions available on a transition w.r.t. to timers (such as before(), after() and at()) all refer to the time elapsed since the originating state of the transition on which the timer is present was entered.
Is is possible to start a timer say in state A, let the timer run over several states, and check later in a state B if the value of the timer is greater or lower than a threshold?
Thanks,
Arnaud

채택된 답변

Ryan G
Ryan G 2013년 4월 8일
편집: Ryan G 2013년 4월 8일
EDIT: I just realized you can get the simulation time from within stateflow. You can grab the simulation time when you enter the state and subtract that from the time when you exit the state to determine the time.
You could create a parallel state chart that is effectively a timer.
In a state within the timer you would loop using the after functionality and use a new variable to add seconds to the timer based on how you define the after logic. Every iteration is like a tick of the clock.

추가 답변 (2개)

Siddharth
Siddharth 2013년 4월 10일
Assign the simulation time to a variable when you enter state A (y1), then assign the simulation time to another variable in state B (y2). Subtract the 2 variables (y2 - y1). To get the simulation time from the beginning of the simulation, choose the approach based on the action language that you are using from the last entry in the table below:

Arnaud Dury
Arnaud Dury 2013년 4월 12일
Thanks a lot for your answer.
My question was really about the existing timing predicates that can be used on a guard in a Stateflow, without resorting to API calls to get the simulation time for instance.
I understand from your answer that they are limited to after(), before() and at() relating to the moment the originating state of transition was entered, but a parallel state can indeed be used in this situation to act as a timer over several states, thanks for the suggestion.
Am I interpreting you right?
Best regards,
Arnaud
  댓글 수: 1
Ryan G
Ryan G 2013년 4월 12일
If you get it to work, then you are interpreting me correctly! I tried this out and Siddharth let me know that simulation time was the other option. I used both methods and they both work.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Stateflow에 대해 자세히 알아보기

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by