Gain/phase margin calculation and the gain/phase cross over frequency
11 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Mahabba Almheiri
am 5 Dez. 2020
Kommentiert: Mahabba Almheiri
am 5 Dez. 2020
Hello..
I used the below code to calculate the gain and phase margin. Also to calculate gain and phase cross over frequency but I didn't get any answer in the command window. So, what is the correct code.
syms s
G = tf([7 14],[1 10 24])
[Gm,Pm,Wcg,Wcp] = margin(G)
grid on
0 Kommentare
Akzeptierte Antwort
Alexandre Riebel
am 5 Dez. 2020
I'd say your code is working correctly. Phase margin is measured at the frequency at which the gain crosses the 0 dB line (gain crossover frequency, Wcg) and gain margin is measured at the frequency at which the phase crosses the -180 deg line (phase crossover frequency, Wcp). So if your gain never crosses 0 dB then wcg = NaN and Pm = Inf which seems to be what's happening here.
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!