CDS 110b: Robust Stability: Difference between revisions

From Murray Wiki
Jump to navigationJump to search
No edit summary
Line 1: Line 1:
{{cds110b-wi06}}
{{cds110b-wi07}}
This lecture describes how to model uncertainty in <math>H_\infty</math> control and provides conditions for checking robust stability in this framework. __NOTOC__
This set of lecture describes how to model uncertainty in <math>H_\infty</math> control and provides conditions for checking robust stability in this framework. __NOTOC__


== Lecture Outline ==
== Course Materials ==
<ol type=I>
* {{cds110b-wi07 pdfs|L9-1_robstab.pdf|Lecture slides}}
<li> Modeling uncertainty
* {{cds 110b-wi07 pdfs|hw8.pdf|HW #8}} (due 9 Mar 07 [Fri])
<li> Robust stability
<li> Preview: robust performance
</ol>
 
== Lecture Materials ==
* {{cds110b-pdfs|L8-1_robstab.pdf|Lecture notes}} ({{cds110b-pdfs|L8-1_robstab.mp3|MP3}})
* Reading: DFT, Chapter 4
* {{cds110b-pdfs|hw7.pdf|HW #7}} (due 1 Mar)


== References and Further Reading ==
== References and Further Reading ==
* AM06, Sections 9.5, 12.1 and 12.2


== Frequently Asked Questions ==
== Frequently Asked Questions ==
'''Q: Is there any way to bode plot (exp(-ts)-1) in MATLAB?'''
<blockquote>
<p>You can't use the 'bode' command, since the exponential makes that expression not a polynomial transfer function.  If all you're interested in is the magnitude though, (as in this week's homework set) you can plot that explicitly, as follows.  (This should look familiar for those of you who took 110A, since we had you do a bode plot without using the bode command a long time ago.)</p>
<pre>
omega = logspace(some_start, some_end, some_num);
loglog(omega, abs(exp(-t*i*omega)-1));
</pre>
<p>I recommend doing help logspace and help loglog to understand what those functions do -- they're not too tricky.</p>
</blockquote>

Revision as of 16:26, 2 March 2007

WARNING: This page is for a previous year.
See current course homepage to find most recent page available.
CDS 110b Schedule Project FAQ Reading

This set of lecture describes how to model uncertainty in control and provides conditions for checking robust stability in this framework.

Course Materials

References and Further Reading

  • AM06, Sections 9.5, 12.1 and 12.2

Frequently Asked Questions