margin
Gain margin, phase margin, and crossover frequencies
Syntax
Description
margin(
plots the Bode response
of sys
)sys
on the screen and indicates the gain and phase
margins on the plot. Gain margins are expressed in dB on the plot.
Solid vertical lines mark the gain margin and phase margin. The dashed
vertical lines indicate the locations of Wcp
, the frequency
where the phase margin is measured, and Wcg
, the frequency
where the gain margin is measured. The plot title includes the magnitude and
location of the gain and phase margin.
Gm
and Pm
of a system indicate the
relative stability of the closed-loop system formed by applying unit negative
feedback to sys
, as shown in the following figure.
Gm
is the amount of gain variance required to make the loop
gain unity at the frequency Wcg
where the phase angle is
–180° (modulo 360°). In other words, the gain margin is 1/g
if g is the gain at the –180° phase frequency. Similarly, the
phase margin is the difference between the phase of the response and –180° when
the loop gain is 1.0. The frequency Wcp
at which the
magnitude is 1.0 is called the unity-gain frequency or
gain crossover frequency. When sys
has more than one crossover, margin
indicates the
frequencies with gain margin closest to 0 dB and phase margin closest to
0°.
Usually, gain margins of 3 or more combined with phase margins between 30°
and 60° result in reasonable tradeoffs between bandwidth and stability. However,
in some multivariable systems, stability can be lost at a different frequency
for much smaller gain and phase variations. For such systems, the notion of
disk margins provides more reliable estimates of the
true gain and phase margins. For more information on disk margins, see diskmargin
(Robust Control Toolbox).
[
returns the gain margin Gm
,Pm
,Wcg
,Wcp
] = margin(sys
)Gm
in absolute units, the phase
margin Pm
, and the corresponding frequencies
Wcg
and Wcp
, of
sys
. Wcg
is the frequency where
the gain margin is measured, which is a –180° phase crossing frequency.
Wcp
is the frequency where the phase margin is
measured, which is a 0-dB gain crossing frequency. These frequencies are
expressed in radians/TimeUnit
, where
TimeUnit
is the unit specified in the
TimeUnit
property of sys
. When
sys
has several crossovers, margin
returns the smallest gain and phase margins and corresponding
frequencies.
margin
returns a warning if your system is not internally
stable, that is, if your system is not closed-loop stable or contains pole-zero
cancellations outside of the open left-half plane.
Examples
Input Arguments
Output Arguments
Tips
When you use
margin(mag,phase,w)
,margin
relies on interpolation to approximate the margins, which generally produce less accurate results. For example, if there is no 0-dB crossing within thew
range,margin
returns a phase margin ofInf
. Therefore, if you have an analytical modelsys
, using[Gm,Pm,Wcg,Wcp] = margin(sys)
is a more robust way to obtain the margins.
Version History
Introduced before R2006a
See Also
bode
| allmargin
| diskmargin
(Robust Control Toolbox) | Linear System Analyzer