If else then Simulink
1 回表示 (過去 30 日間)
古いコメントを表示
Hello,
want to use IF, ELSE, THEN statements in Matlab Simulink for this application.
I want to turn off the AC motor if the temperature in first tank is greater than 60 degrees OR the temperature in second tank is lower than 90 degrees.
The motor should work if the temperature in the first tank is lower than 60 degrees OR the temperature in the second tank is greater than 90 degrees.
Also, if AC motor had been working for some time and afterwards was turned off, it is not possible to turn it on earlier than after 15 minutes.
How to use Matalb Simulink blocks to organize such work of the system?
Best regards,
Darka
0 件のコメント
回答 (1 件)
Azzi Abdelmalek
2014 年 4 月 1 日
移動済み: Sabin
2022 年 12 月 18 日
x1>60 | x2<90
x1<60 | x2>90
Your two expressions can be true at the same time
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Motor Drives についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!