Difference between revisions of "Linear Systems"

From FBSwiki
Jump to navigation Jump to search
Line 48: Line 48:
 
is [[Dynamic Behavior#stability|asymptotically stable]] if and only if all eigenvalues of <math>A</math> all have strictly negative real part and is [[Dynamic Behavior#stability|unstable]] if any eigenvalue of <math>A</math> has strictly positive real part.  For systems with eigenvalues having zero real-part, stability is determined by using the ''[http://en.wikipedia.org/wiki/Jordan_normal_form Jordan normal form]'' associated with the matrix.  A system with eigenvalues that have no strictly positive real part is stable if and only if the Jordan block corresponding to each eigenvalue with zero part is a scalar (1x1) block.</p></li>
 
is [[Dynamic Behavior#stability|asymptotically stable]] if and only if all eigenvalues of <math>A</math> all have strictly negative real part and is [[Dynamic Behavior#stability|unstable]] if any eigenvalue of <math>A</math> has strictly positive real part.  For systems with eigenvalues having zero real-part, stability is determined by using the ''[http://en.wikipedia.org/wiki/Jordan_normal_form Jordan normal form]'' associated with the matrix.  A system with eigenvalues that have no strictly positive real part is stable if and only if the Jordan block corresponding to each eigenvalue with zero part is a scalar (1x1) block.</p></li>
  
<li><p>The input/output response of a (stable) linear system contains a transient region portion, which eventually decays to zero, and a steady state portion, which persists over time.  Two special responses are the ''step response'', which is the output corresponding to an step input applied at <amsmath>t = 0</amsmath> and the ''frequency response'', which is the response of the system to a sinusoidal input at a given frequency.</p></li>
+
<li><p>The input/output response of a (stable) linear system contains a transient region portion, which eventually decays to zero, and a steady state portion, which persists over time.  Two special responses are the ''step response'', which is the output corresponding to an step input applied at <math>t = 0</math> and the ''frequency response'', which is the response of the system to a sinusoidal input at a given frequency.</p></li>
  
 
<li><p>
 
<li><p>

Revision as of 04:15, 28 December 2020

Prev: Dynamic Behavior Chapter 6 - Linear Systems Next: State Feedback

[[Image:{{{Short name}}}-firstpage.png|right|thumb|link=https:www.cds.caltech.edu/~murray/books/AM08/pdf/fbs-{{{Short name}}}_24Jul2020.pdf]] Previous chapters have focused on the dynamics of a system with relatively little attention to the inputs and outputs. This chapter gives an introduction to input/output behavior for linear systems and shows how a nonlinear system can be approximated near an equilibrium point by a linear model.

Chapter Summary

This chapter introduces the analysis tools for linear input/output systems.

  1. A linear system is one in which the output is jointly linear in the intitial condition for the system and the input to the system. In particular, a linear system has the property that if we apply an input with zero initial condition, the corresponding output will be , where is the output associated with the input . This propery is called linear superposition.

  2. A differential equation of the form

    is a single-input, single-output (SISO) linear differential equation. Its solution can be written in terms of the matrix exponential

    The solution to the differential equation is given by the convolution equation

  3. A linear system

    is asymptotically stable if and only if all eigenvalues of all have strictly negative real part and is unstable if any eigenvalue of has strictly positive real part. For systems with eigenvalues having zero real-part, stability is determined by using the Jordan normal form associated with the matrix. A system with eigenvalues that have no strictly positive real part is stable if and only if the Jordan block corresponding to each eigenvalue with zero part is a scalar (1x1) block.

  4. The input/output response of a (stable) linear system contains a transient region portion, which eventually decays to zero, and a steady state portion, which persists over time. Two special responses are the step response, which is the output corresponding to an step input applied at and the frequency response, which is the response of the system to a sinusoidal input at a given frequency.

  5. The step response is characterized by the following parameters:

    • The steady state value, , of a step response is the final level of the output, assuming it converges.
    • The rise time, , is the amount of time required for the signal to go from 10% of its final value to 90% of its final value.
    • The overshoot, , is the percentage of the initial value by which the signal initially rises above the final value.
    • The settling time, , is the amount of time required for the signal to stay within 5% of its final value for all future times.

  6. The frequency response is given by

    where and . The gain and phase of the frequency response are given by

  7. A nonlinear system of the form

    is a single-input, single-output (SISO) nonlinear system. It can be linearized about an equibrium point , , by defining new variables

    The dynamics of the system near the equilibrium point can then be approximated by the linear system

    where

    The equilibrium point for a nonlinear system is locally asymptotically stable if the real part of the eigenvalues of the linearization about that equilibrium point have strictly negative real part.


Teaching Materials

None available

Additional Exercises

None available

Frequently Asked Questions

None available

Errata

None reported

Python Code

The following Python scripts are available for producing figures that appear in this chapter.

See the software page for more information on how to run these scripts.

Additional Information