DOC PREVIEW
PSU EE 350 - Rec_10_EE350_f14

This preview shows page 1-2-3-4-29-30-31-32-59-60-61-62 out of 62 pages.

Save
View full document
View full document
Premium Document
Do you want full access? Go Premium and unlock all 62 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 62 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 62 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 62 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 62 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 62 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 62 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 62 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 62 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 62 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 62 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 62 pages.
Access to all documents
Download any document
Ad free experience
Premium Document
Do you want full access? Go Premium and unlock all 62 pages.
Access to all documents
Download any document
Ad free experience

Unformatted text preview:

ColorGrayscale Jeffrey Schiano 2014. All rights reserved. Rec 10. EE 350Continuous-Time Linear SystemsRecitation 101 Jeffrey Schiano 2014. All rights reserved. Rec 10. Recitation 10 Topics2• Solved Problems – Complex Exponential Fourier series– Sinusoidal-steady-state response of LTI systems to periodic inputs• MATLAB Exercises– Symbolic Math Toolbox Jeffrey Schiano 2014. All rights reserved. Rec 10. Problem 1• Consider the periodic signal• Determine the fundamental period and frequency• Determine the complex exponential Fourier series coefficients• Sketch the Fourier series spectra3() 2 cos3 6sin 43ft t t    Jeffrey Schiano 2014. All rights reserved. Rec 10. Problem 1 Solution4 Jeffrey Schiano 2014. All rights reserved. Rec 10. Problem 1 Solution5 Jeffrey Schiano 2014. All rights reserved. Rec 10. Problem 1 Solution6 Jeffrey Schiano 2014. All rights reserved. Rec 10. Problem 2• Consider the periodic signal f(t) where A is a real-valued, positive parameter• Determine and sketch the complex exponential Fourier series spectra of f(t)7tf( )tAAoT Jeffrey Schiano 2014. All rights reserved. Rec 10. Problem 2 Solution8 Jeffrey Schiano 2014. All rights reserved. Rec 10. Problem 2 Solution9 Jeffrey Schiano 2014. All rights reserved. Rec 10. Problem 2 Solution10 Jeffrey Schiano 2014. All rights reserved. Rec 10. Problem 3• Consider the periodic signal f(t)• Sketch f(t)• Determine the fundamental period and frequency• Determine the complex exponential Fourier series coefficients• Sketch the Fourier series spectra111()2nft t n Jeffrey Schiano 2014. All rights reserved. Rec 10. Problem 3 Solution12 Jeffrey Schiano 2014. All rights reserved. Rec 10. Problem 3 Solution13 Jeffrey Schiano 2014. All rights reserved. Rec 10. Problem 4• Consider an asymptotically stable LTI system represented by the ODE• Show that the sinusoidal steady-state response of the system to the inputis 14(D) ( ) ( ) ( )QytPDft()jtft e()y() ( )Q( )jt jtPjteHjej Jeffrey Schiano 2014. All rights reserved. Rec 10. Problem 4 Solution15 Jeffrey Schiano 2014. All rights reserved. Rec 10. Problem 4 Solution16 Jeffrey Schiano 2014. All rights reserved. Rec 10. Problem 5• Consider an asymptotically stable LTI system represented by the ODE• Using the result form Problem 4, show that the sinusoidal steady-state response of the system to the periodic input is 17(D) ( ) ( ) ( )QytPDft()ojn tfnnft Dey( )ojn tynnyfnontDeDHjnD Jeffrey Schiano 2014. All rights reserved. Rec 10. Problem 5 Solution18 Jeffrey Schiano 2014. All rights reserved. Rec 10. Problem 5 Solution19 Jeffrey Schiano 2014. All rights reserved. Rec 10. Review: System Representation• Methods for representing an RC network2011ODE: ( ) f( ); 1impulse resposne: h(t) = ( )1frequency response function: H(j ) =1tdyyt t RCdteutj f(t)Ry(t)C Jeffrey Schiano 2014. All rights reserved. Rec 10. Problem 6• For the RC network in Problem 5, determine the Fourier transform of the impulse response functionand show that it matches the frequency response function• The fact that the Fourier Transform of the impulse response representation of a LTI system is always equivalent to the frequency response function of the network will be proved in lecture 21() ()jtht hte dt Jeffrey Schiano 2014. All rights reserved. Rec 10. Problem 6 Solution22 Jeffrey Schiano 2014. All rights reserved. Rec 10. Problem 6 Solution23 Jeffrey Schiano 2014. All rights reserved. Rec 10. MATLAB Symbolic Variables• x = sym(‘x’) creates a symbolic variable x• t = sym(‘t’); x = symfun(sym('x(t)'), [t]) creates a symbolic function f of a symbolic variable t• syms x f(t) short-cut for constructing symbolic objects• simplify(S) simplifies each element of the symbolic matrix S24 Jeffrey Schiano 2014. All rights reserved. Rec 10. MATLAB Symbolic Variables• syms x real creates a real-valued symbolic variable x• syms x positive creates a real-valued positive variable x• subs(S,NEW) replaces the free symbolic variable in S with NEW, where NEW is a symbolic or numeric variable25 Jeffrey Schiano 2014. All rights reserved. Rec 10. Symbolic Functions• The function solve can be used to solve a single equation or a system of equations• diff(f,‘x') differentiates f with respect to x• int(f,’x’) is the indefinite integral of f with respect to x• int(f,’x’,a, b) is the definite integral of f with respect to the symbolic x variable from a to b26 Jeffrey Schiano 2014. All rights reserved. Rec 10. Problem 7• Using the Symbolic toolbox1. Determine the roots of the quadratic equation2. Determine the derivative of 3. Determine the indefinite integral4. Determine the definite integral2720ax bx c() cos(bt)atft eatedt121tdt Jeffrey Schiano 2014. All rights reserved. Rec 10. Problem 7 Solution28 Jeffrey Schiano 2014. All rights reserved. Rec 10. Heaviside Function• How do we create a symbolic unit-step function?29 Jeffrey Schiano 2014. All rights reserved. Rec 10. Problem 8• F = fourier(f) is the Fourier transform of the sym f with default independent variable x, the default return is a function of w• F = fourier(f, t, w) is the Fourier transform of the symf with independent variable t, the return is a function of w• Verify the result in Problem 6 by using MATLAB to determine the Fourier transform 301h(t) = ( ); 0teut Jeffrey Schiano 2014. All rights reserved. Rec 10. Problem Set 8 Solutions31 Jeffrey Schiano 2014. All rights reserved. Rec 10. EE 350Continuous-Time Linear SystemsRecitation 101 Jeffrey Schiano 2014. All rights reserved. Rec 10. Recitation 10 Topics2• Solved Problems – Complex


View Full Document

PSU EE 350 - Rec_10_EE350_f14

Documents in this Course
ps11

ps11

6 pages

ps10_soln

ps10_soln

20 pages

ps10

ps10

5 pages

ps9_soln

ps9_soln

19 pages

ps9

ps9

4 pages

ps8_soln

ps8_soln

19 pages

ps8

ps8

5 pages

ps7_soln

ps7_soln

22 pages

ps7

ps7

4 pages

ps6_soln

ps6_soln

27 pages

ps6

ps6

5 pages

ps5_soln

ps5_soln

25 pages

ps5

ps5

7 pages

ps4_soln

ps4_soln

20 pages

ps4

ps4

5 pages

ps3_soln

ps3_soln

27 pages

ps3

ps3

6 pages

ps2_soln

ps2_soln

24 pages

ps2

ps2

5 pages

ps1_soln

ps1_soln

17 pages

ps1

ps1

5 pages

ps11_soln

ps11_soln

28 pages

examI_s04

examI_s04

16 pages

examI_s03

examI_s03

10 pages

examI_s02

examI_s02

12 pages

examI_s01

examI_s01

13 pages

examI_f99

examI_f99

15 pages

examI_f14

examI_f14

26 pages

examI_f11

examI_f11

26 pages

examI_f10

examI_f10

26 pages

examI_f09

examI_f09

26 pages

examI_f08

examI_f08

13 pages

examI_f07

examI_f07

11 pages

examI_f03

examI_f03

11 pages

examI_f02

examI_f02

14 pages

examI_f01

examI_f01

15 pages

examI_f00

examI_f00

14 pages

final_s99

final_s99

16 pages

final_s97

final_s97

13 pages

final_s04

final_s04

30 pages

final_s03

final_s03

12 pages

final_s02

final_s02

14 pages

final_s01

final_s01

14 pages

final_s00

final_s00

17 pages

final_f99

final_f99

16 pages

final_f98

final_f98

16 pages

final_f11

final_f11

40 pages

final_f10

final_f10

32 pages

final_f09

final_f09

32 pages

final_f08

final_f08

26 pages

final_f07

final_f07

26 pages

final_f03

final_f03

12 pages

final_f02

final_f02

14 pages

final_f01

final_f01

14 pages

final_f00

final_f00

16 pages

examI_s99

examI_s99

13 pages

Load more
Download Rec_10_EE350_f14
Our administrator received your request to download this document. We will send you the file to your email shortly.
Loading Unlocking...
Login

Join to view Rec_10_EE350_f14 and access 3M+ class-specific study document.

or
We will never post anything without your permission.
Don't have an account?
Sign Up

Join to view Rec_10_EE350_f14 2 2 and access 3M+ class-specific study document.

or

By creating an account you agree to our Privacy Policy and Terms Of Use

Already a member?