Saturation function in Simulink

14 ビュー (過去 30 日間)
Peppe
Peppe 2017 年 7 月 14 日
回答済み: Endrias 2019 年 1 月 21 日
Hi, I would like to implement following block in simulink. How do I do it in Simulink: U = u_d - K/b * sat(σ /θ)
where: sat(σ/θ) = {1 if σ>θ, σ/θ if −θ ≤ σ ≤ θ, −1, σ < −θ}
u_d is input, K and b are constant. If possible even a matlab function would be appritiated.

回答 (2 件)

Sruthi Geetha
Sruthi Geetha 2017 年 7 月 17 日
In Simulink, you can implement this using If block and If action subsystem block. In the If block you can specify the number of inputs, If, elseif and else conditions. Connect three If action subsystems to each condition and generate the outputs as 1, sigma/theta and -1 for each of the conditions. You can also do this using a simple code in MATLAB Fcn block:
if sigma>theta
out = 1;
elseif (sigma>=-theta)&&(sigma<=theta)
out = sigma/theta;
else
out = -1;
end
  3 件のコメント
Leigh Boyd
Leigh Boyd 2017 年 8 月 11 日
did you ever get an answer to this? I have a similar problrm
Peppe
Peppe 2017 年 8 月 27 日
I did it manually in a matlab function. not by using any blocks.

サインインしてコメントする。


Endrias
Endrias 2019 年 1 月 21 日
Simulink have a nice IF expression block which you can program the sat(.) function without any matlab written code. If anybody interested to see the block code, let me know.

カテゴリ

Help Center および File ExchangeDiscontinuities についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by