フィルターのクリア

generating wrong Nyquist plot of tf

15 ビュー (過去 30 日間)
keshav agrawal
keshav agrawal 2021 年 5 月 27 日
コメント済み: Paul 2021 年 5 月 28 日
i have been trying to plot nyquist plot of following transfer funtion but i am getting wrong.
sys =(s+3)/(s^2*(s-3))
when i tries to plot it using control technique i am getting different plot
please help
  2 件のコメント
Paul
Paul 2021 年 5 月 28 日
What is your code and why do you think the result is wrong?
keshav agrawal
keshav agrawal 2021 年 5 月 28 日
the code is
s = tf('s')
sys =(s+3)/(s^2*(s-3))
nyquist(sys)
the plot i got from this is
the nyquist plot i am expecting should be like this :-

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

採用された回答

Paul
Paul 2021 年 5 月 28 日
Keep in mind that nyquist() doesn't draw the arc at infinity due to the double pole at the origin.
If you zoom in around the origin on the Nyquist plot produced by nyquist(), you'll see that the plot crosses the imaginary axis at a value of around 0.1*j and approaches the origin from the left, as in your sketch.
  2 件のコメント
keshav agrawal
keshav agrawal 2021 年 5 月 28 日
thank you for reply ... i am statisfied with your answer. but is there any function other than nyquist() that can show infinite semi circles.
Paul
Paul 2021 年 5 月 28 日
None that I'm aware of.

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

その他の回答 (1 件)

Girijashankar Sahoo
Girijashankar Sahoo 2021 年 5 月 28 日
編集済み: Girijashankar Sahoo 2021 年 5 月 28 日
sys=tf([0 0 1 3],[1 -3 0 0])
nyquist(sys)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by