How to correct resonance phase plot

6 ビュー (過去 30 日間)
Derek Cooper
Derek Cooper 2021 年 11 月 5 日
コメント済み: Derek Cooper 2021 年 11 月 8 日
Hello,
I am trying to implement the resonance response at different damping ratios. I dont know why the phase plot looks like this
In litteratures, it is supposed to look like this, (Shifted),

採用された回答

Bjorn Gustavsson
Bjorn Gustavsson 2021 年 11 月 5 日
You could quick-fix this by plotting the phase-angle phi like:
plot(unwrap(2*phi)/2)
But you might have to check that you calculate the phase-angle correctly (right sign relative to the driving force and whatnot...)
HTH
  7 件のコメント
Bjorn Gustavsson
Bjorn Gustavsson 2021 年 11 月 5 日
Chek the size of your alfa-variable. From the help of unwrap you see that it unwraps along the first (non-singleton) dimension, and you would most likely want the unwrapping along the second dimension:
plot(r,180/pi*unwrap(2*alfa,[],2)/2)
Derek Cooper
Derek Cooper 2021 年 11 月 8 日
Now it worked, thank you very much.

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

その他の回答 (0 件)

カテゴリ

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

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by