How to simulate a random real-time variable in a model at execution time, and use Symbolic Simulator to manually execute transitions of another model, both at the same time? #308
-
Hi, I'm using UPPAAL to modell and verify my real-time smart home heating system. My question is: |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Beta Was this translation helpful? Give feedback.
-
Hi @mikucionisaau, thank you for your reply. It helped me a lot. I have still something in my mind: As I understood, the statement in the another reason why I used In your suggestion, in which when I use So is there any other option in which I use select and at the same time I get outputs like I get in |
Beta Was this translation helpful? Give feedback.
I actually found a solution for this by using
Select
. I can do something like this:diff:int[-2,2]
weather_temp = weather_temp + diff
with this approach I can get each time
weather_temp
which all are slightly different.So with this approach I can use symbolic simulator and also simulate a weather temperature realistically. Thanks for the help.