Linearized Equations of Motion Robert Stengel, Aircraft Flight Dynamics MAE 331, 2018

Size: px
Start display at page:

Download "Linearized Equations of Motion Robert Stengel, Aircraft Flight Dynamics MAE 331, 2018"

Transcription

1 Linearized Equaions of Moion Rober Sengel, Aircraf Fligh Dynamics MAE 331, 2018 Learning Objecives Develop linear equaions o describe small perurbaional moions Apply o aircraf dynamic equaions Reading: Fligh Dynamics , , , , Copyrigh 2018 by Rober Sengel. All righs reserved. For educaional use only. hp:// hp:// 1 How Is Sysem Response Calculaed? Linear and nonlinear, ime-varying and imeinvarian dynamic models Numerical inegraion ime domain ) Linear, ime-invarian LTI) dynamic models Numerical inegraion ime domain ) Sae ransiion ime domain ) Transfer funcions frequency domain ) 2 1

2 Inegraion Algorihms Exac x T ) = x 0) + f x Recangular Euler) Inegraion x k ) = x k 1 ) + δ x k 1, k ) x k 1 ) + f [ x k 1 ),u k 1 ),w k 1 )]δ δ = k k 1 Trapezoidal modified Euler) Inegraion ~MATLAB s ode23) x k ) x k 1 ) + 1 [ 2 δ x + δ x 1 2 ] where δ x 1 = f [ x k 1 ),u k 1 ),w k 1 )]δ δ x 2 = f [ x k 1 ) + δ x 1,u k ),w k )]δ T 0 ),u ),w ) d See MATLAB manual for descripions of ode45 and ode15s 3 Numerical Inegraion: MATLAB Ordinary Differenial Equaion Solvers * Explici Runge-Kua Algorihm Adams-Bashforh-Moulon Algorihm Numerical Differeniaion Formula Modified Rosenbrock Mehod Trapezoidal Rule Trapezoidal Rule w/back Differeniaion * hp:// Shampine, L. F. and M. W. Reichel, "The MATLAB ODE Suie," SIAM Journal on Scienific Compuing, Vol. 18, 1997, pp

3 Nominal and Acual Trajecories Nominal or reference) rajecory and conrol hisory { x N ), u N ),w N )} for in [ o, f ] x : dynamic sae u : conrol inpu w : disurbance inpu x N T ) = x N 0 ) + f x N Acual rajecory perurbed by Small iniial condiion variaion, Δx o o) Small conrol variaion, Δu) T 0 ),u N ),w N ) d { x), u),w) } for in [ o, f ] { } = x N ) + Δx), u N ) + Δu),w N ) + Δw) x T ) = x 0) + f x T 0 ),u ),w ) d 5 Boh Pahs Saisfy he Dynamic Equaions Dynamic models for he acual and he nominal problems are he same x N ) = f[x N ),u N ),w N )], x N o x) = f[x),u),w)], ) given ) given x o Δx o ) = x o ) x N o ) Differences in iniial condiion and forcing... Δu) = u) u N ) Δw) = w) w N ) ) in * + o, f, -... perurb rae of change and he sae x) = x N ) + Δx) x) = x N ) + Δx) in o, f 6 3

4 Approximae Neighboring Trajecory as Linear Perurbaion o Nominal Trajecory x) = x N ) + Δx) = f[x N ) + Δx), u N ) + Δu), w N ) + Δw),] New rajecory ~ nominal pah + linear perurbaion x) = x N ) + Δx) New rajecory [change in noaion] f[x N ),u N ),w N ),]+ f x Δx) + f u Δu) + f w Δw) 7 Perurbaion Dynamics Approximaed by Linearized Equaion Solve for he nominal and perurbaion rajecories separaely Nominal Equaion x N ) = f[x N ),u N ),w N ),], x N o ) given Perurbaion Equaion Δx) f Δx) + f Δu) + f Δw) x x=x N ) u=u N ) u x=x N ) u=u w=w N ) N ) w x=x N ) u=u w=w N ) N ) w=w N ) F)Δx) + G)Δu) + L)Δw), Δx o dim x dim u ) = dim Δx) = n 1 ) = dim Δu) = m 1 ) = dim Δw) = s 1 dim w ) given 8 4

5 Jacobian Marices Express Soluion Sensiiviy o Small Perurbaions Sabiliy marix, F, is square F) = f x x=x N ) u=u N ) w=w N ) dimf) = n n = x 1 x n f n f n x 1 x n x=x N ) u=u N ) w=w N ) 9 Sensiiviy o Conrol Perurbaions, G G) = f = u x=x N ) u=u N ) w=w N ) dimg) = n m u 1 u m f n u 1 f n u m x=x N ) u=u N ) w=w N ) 10 5

6 Sensiiviy o Disurbance Perurbaions, G L) = f = w x=x N ) u=u N ) w=w N ) diml) = n s w 1 w s f n w 1 f n w s x=x N ) u=u N ) w=w N ) 11 Scalar Example of Nominal and Perurbaion Equaions Acual Nonlinear Sysem x ) = x ) + 2x 2 ) + 3u ) + 4w 3 ) Nominal Nonlinear Sysem x N ) = x N ) + 2x 2 N ) + 3u N ) + 4w 3 N ) Linear Perurbaion Sysem 2 Δx ) = Δx ) + 4x N )Δx ) + 3Δu ) +12w N Time-Varying Parameer Time-Varying Parameer )Δw ) 12 6

7 Comparison of Damped Linear and Nonlinear Sysems Linear Spring x 1 ) = x 2 ) x 2 ) = 10x 1 ) x 2 ) Displacemen Rae of Change Linear Spring Force vs. Displacemen Spring Damper Linear plus Siffening Cubic Spring x 1 ) = x 2 ) Cubic Spring Force vs. Displacemen x 2 ) = 10x 1 ) 10x 1 3 ) x 2 ) Linear plus Weakening Cubic Spring x 1 ) = x 2 ) Cubic Spring Force vs. Displacemen x 2 ) = 10x 1 ) + 0.8x 1 3 ) x 2 ) 13 MATLAB Simulaion of Linear and Nonlinear Dynamic Sysems MATLAB Main Scrip Nonlinear and Linear Examples clear span = [0 10]; xo = [0, 10]; [1,x1 = ode23nonlin,span,xo); xo = [0, 1]; [2,x2] = ode23nonlin,span,xo); xo = [0, 10]; [3,x3] = ode23lin,span,xo); xo = [0, 1]; [4,x4] = ode23lin,span,xo); subplo2,1,1) plo1,x1:,1),k,2,x2:,1),b,3,x3:,1),r,4,x4:,1),g) ylabelposiion), grid subplo2,1,2) plo1,x1:,2),k,2,x2:,2),b,3,x3:,2),r,4,x4:,2),g) xlabeltime), ylabelrae), grid Linear Sysem x 1 ) = x 2 ) x 2 ) = 10x 1 ) x 2 ) funcion xdo = Lin,x) Linear Ordinary Differenial Equaion x1) = Posiion x2) = Rae xdo = [x2) -10*x1) - x2)]; Nonlinear Sysem x 1 ) = x 2 ) x 2 ) = 10x 1 ) + 0.8x 3 1 ) x 2 ) funcion xdo = NonLin,x) Nonlinear Ordinary Differenial Equaion x1) = Posiion x2) = Rae xdo = [x2) -10*x1) + 0.8*x1)^3 - x2)]; 14 7

8 Linear and Siffening Cubic Springs: Small and Large Iniial Condiions Cubic erm Large Rae Small Rae Linear and nonlinear responses are indisinguishable wih small iniial condiion 15 Linear and Weakening Cubic Springs: Small and Large Iniial Condiions Cubic erm Large Rae Small Rae 16 8

9 Linear, Time-Varying LTV) Approximaion of Perurbaion Dynamics 17 Siffening Linear-Cubic Spring Example Nonlinear, ime-invarian NTI) equaion x 1 ) = f 1 = x 2 ) x 2 ) = f 2 = 10x 1 ) 10x 1 3 ) x 2 ) " Inegrae nonlinear equaions o produce nominal pah x 1N 0) x 2N 0) f 0 " f 1N f 2N d " x 1N ) x 2N ) Analyical evaluaion of parial derivaives in " 0, f x 1 = 0; = 10 30x 2 1N ); x 1 x 2 = 1 x 2 = 1 u = 0; w = 0 u = 0; w =

10 Nominal NTI) and Perurbaion LTV) Dynamic Equaions Nonlinear, ime-invarian NTI) nominal equaion x N ) = f[x N )], x N 0) given x 1N ) = x 2N ) x 2N ) = 10x 1N ) 10x 1N 3 ) x 2N ) " x 1N 0) x 2N 0) Example = 0 9 " Perurbaions approximaed by linear, ime-varying LTV) equaion Δx 1 ) Δx 2 ) Δx) = F)Δx), Δx0) given = x 2 1N ) ) 1 Δx 1 ) Δx 2 ) " Example Δx 1 0) Δx 2 0) = " Comparison of Approximae and Exac Soluions x 2N 0) = 9 Δx 2 0) = 1 x 2N ) + Δx 2 ) = 10 x 2 ) = 10 x N ) Δx) x N )+ Δx) x) x N ) Δ x) x N ) + Δ x) x) 20 10

11 Suppose Nominal Iniial Condiion is Zero Nominal soluion remains a equilibrium x N ) = f[x N )], x N 0) = 0, x N ) = 0 in [ 0, ] Perurbaion equaion is linear and ime-invarian LTI) " Δ x 1 ) " Δ x 2 ) = 0 1 " Δx 1 ) " ) 1 Δx 2 ) 21 Separaion of he Equaions of Moion ino Longiudinal and Laeral- Direcional Ses 22 11

12 Rigid-Body Equaions of Moion Rae of change of Translaional Velociy u = X / m gsinθ + rv qw v = Y / m + gsinφ cosθ ru + pw w = Z / m + gcosφ cosθ + qu pv Rae of change of Translaional Posiion x I = cosθ cosψ )u + cosφsinψ + sinφsinθ cosψ )v + sinφsinψ + cosφsinθ cosψ )w y I = cosθ sinψ )u + cosφcosψ + sinφsinθsinψ )v + sinφcosψ + cosφsinθsinψ )w z I = sinθ )u + sinφ cosθ)v + cosφ cosθ)w Rae of change of Angular Velociy I xy = I yz = 0) ) I I I 2 xx zz xz ) zz zz yy xx xx yy p = I zz L + I xz N I xz I yy I xx I zz ) p + " I xz ) r}q + I I I q = " M I xx I zz ) pr I xz p 2 r 2 ) I yy r = I xz L + I xx N I xz I yy I xx I zz )r + " I xz ) p}q + I I I ) I I I 2 xx zz xz ) Rae of change of Angular Posiion φ = p + qsinφ + r cosφ)anθ θ = q cosφ r sinφ ψ = qsinφ + r cosφ)secθ " Sae Vecor x 1 x 2 x 3 x 4 x 5 x 6 x 7 x 8 x 9 x 10 x 11 x 12 u v w x y z = p q r φ θ " ψ 23 " Inermingled Axes x 1 x 2 x 3 x 4 x 5 x 6 x 7 x 8 x 9 x 10 x 11 x 12 u v w x y z = p q r φ θ " ψ Reorder he Sae Vecor Firs six elemens of he sae are longiudinal variables Second six elemens of he sae are laeraldirecional variables x 1 x 2 x 3 x 4 x 5 x 6 x 7 x 8 x 9 x 10 x 11 x 12 new Pariioned Axes = x Lon x La Dir = u w x z q θ v y p ψ 24 r φ 12

13 Longiudinal Equaions of Moion Dynamics of velociy, posiion, angular rae, and angle primarily in he verical plane u = X / m gsinθ + rv qw " x 1 = f 1 w = Z / m + gcosφ cosθ + qu pv " x 2 = f 2 x I = cosθ cosψ )u + cosφ sinψ + sinφ sinθ cosψ )v + sinφ sinψ + cosφ sinθ cosψ )w " x 3 = f 3 z I = sinθ )u + sinφ cosθ )v + cosφ cosθ )w " x 4 = f 4 ) pr I xz p 2 r 2 ) q = M I xx I zz I yy " x 5 = f 5 θ = qcosφ rsinφ " x 6 = f 6 x Lon ) = f[x Lon ),u Lon ),w Lon )] 25 Laeral-Direcional Equaions of Moion Dynamics of velociy, posiion, angular rae, and angle primarily ou of he verical plane v = Y / m + gsinφ cosθ ru + pw " x 7 = f 7 y I = cosθ sinψ )u + cosφ cosψ + sinφ sinθ sinψ )v + sinφ cosψ + cosφ sinθ sinψ )w " x 8 = f 8 ) I I I 2 xx zz xz ) I I I 2 xx zz xz p = I zz L + I xz N { I xz I yy I xx I zz ) p + I 2 xz + I zz I zz I yy ) r }q r = I xz L + I xx N { I xz I yy I xx I zz )r + I 2 xz + I xx I xx I yy ) p }q φ = p + qsinφ + r cosφ)anθ " x 11 = f 11 ψ = qsinφ + r cosφ)secθ " x 12 = f 12 ) " x 9 = f 9 ) " x 10 = f 10 x LD ) = f[x LD ),u LD ),w LD )] 26 13

14 Sensiiviy o Small Moions 12 x 12) sabiliy marix for he enire sysem F) = f... 1 x 1 x f x 1 x 12 Four 6 x 6) blocks disinguish longiudinal and laeral-direcional effecs Effecs of longiudinal perurbaions on longiudinal moion Effecs of laeral-direcional perurbaions on longiudinal moion F = Effecs of longiudinal perurbaions on laeral-direcional moion F Lon La Dir F Lon Lon F La Dir F La Dir Effecs of laeral-direcional perurbaions on laeral-direcional moion 27 Sensiiviy o Small Conrol Inpus G) = 12 x 6) conrol marix for he enire sysem δ E δt δ F δ A δ R δ SF δ E δt δ F δ A δ R δ SF δ E 2 δt 2 δ F 2 δ A 2 δ R 2 δ SF Four 6 x 3) blocks disinguish longiudinal and laeraldirecional conrol effecs Effecs of longiudinal conrols on longiudinal moion G = Effecs of longiudinal conrols on laeral-direcional moion G Lon La Dir G Lon Effecs of laeral-direcional conrols on longiudinal moion Lon G La Dir G La Dir Effecs of laeral-direcional conrols on laeral-direcional moion 28 14

15 Sensiiviy o Small Disurbance Inpus u w ) w w ) q w ) w) = v w ) " p w ) r w ) Disurbance inpu vecor and perurbaion Four 6 x 3) blocks disinguish longiudinal and laeral-direcional effecs Effecs of longiudinal disurbances on longiudinal moion L = L Lon La Dir L Lon Effecs of longiudinal disurbances on laeral-direcional moion Axial wind, m / s Normal wind, m / s Piching wind shear, deg / s or rad / s Laeral wind, m / s Rolling wind shear, deg / s or rad / s Yawing wind shear, deg / s or rad / s Effecs of laeral-direcional disurbances on longiudinal moion Lon L La Dir L La Dir " Δu w ) Δw w ) Δq w ) Δw) = Δv w ) Δp w ) Δr w ) Effecs of laeral-direcional disurbances on laeral-direcional moion 29 Decoupling Approximaion for Small Perurbaions from Seady, Level Fligh 30 15

16 Resric he Nominal Fligh Pah o he Verical Plane Nominal laeral-direcional moions are zero x La DirN = 0 x La DirN = 0 Nominal longiudinal equaions reduce o x Lon ) = f Lon x Lon u N = X / m gsinθ N q N w N w N = Z / m + gcosθ N + q N u N x IN = cosθ N )u N + sinθ N )w N z IN = sinθ N )u N + cosθ N )w N q N = M I yy ),u Lon ) Nominal Sae Vecor x Lon x La Dir ) ) Nominal u N ) w N ) x N ) z N ) q N ) = θ N ) θ N = q N 31 Δx Lon Δx La Dir Resric he Nominal Fligh Pah o he Verical Plane However, laeral-direcional perurbaions may no be zero Δx La Dir 0 Δx La Dir 0 ) ) = F ) 0 Lon 0 F La Dir ) + G ) 0 Lon 0 G La Dir ) [See Secion 4.1, Fligh Dynamics, for F and G definiions] Δx Lon Δx La Dir ) ) ) ) Δu Lon Δu La Dir Perurbaion Sae Vecor Δx Lon Δx La Dir ) ) ) ) ) ) ) ) ) ) ) ) Δu Δw Δx Δz Δq ) ) = Δθ Δv Δy Δp Δr Δφ Δψ 32 16

17 Nominal Reference) Moion Plus Perurbaion x N ) = f[x N ),u N )] Δx) = F)Δx) + G)Δu) 33 Resric he Nominal Fligh Pah o Seady, Level Fligh Longiudinal ODEs replaced by Algebraic Equaions for Equilibrium Trim) 0 = X / m gsinθ N q N w N 0 = Z / m + gcosθ N + q N u N V N = cosθ N )u N + sinθ N )w N 0 = sinθ N )u N + cosθ N )w N 0 = M I yy 0 = q N Δx ) = F )Δx ) + G )Δu Trimmed Sae Vecor excep x N) is consan u w x z q θ Trim u Trim w Trim V = N 0 ) z N 0 θ Trim Perurbaion Model: F and G are consan ) = FΔx ) + GΔu ) Longiudinal and laeral-direcional perurbaions are essenially decoupled Δx Lon ) Δx La Dir ) = F Lon 0 Δx Lon ) 0 F La Dir Δx La Dir ) + G Lon 0 Δu Lon ) 0 G La Dir Δu La Dir ) 34 17

18 Small Longiudinal and Laeral- Direcional Perurbaion Effecs Assume he airplane is symmeric and is nominal pah is seady, level fligh Small longiudinal and laeral-direcional perurbaions are approximaely uncoupled from each oher 12 x 12) sysem is block diagonal consan, i.e., linear, ime-invarian LTI) DECOUPLED ino wo separae 6 x 6) sysems F = F Lon 0 0 F La Dir G = G Lon 0 0 G La Dir L = L Lon 0 0 L La Dir 35 6 x 6) LTI Longiudinal Perurbaion Model Dynamic Equaion Δ x Lon ) = F Lon Δx Lon ) + G Lon Δu Lon ) + L Lon Δw Lon ) " Δx 1 Δx 2 Δx 3 Δx Lon = Δx 4 Δx 5 Δx 6 Sae Vecor Lon = " Δu Δw Δx Δz Δq Δθ Conrol Vecor Δu Lon = ΔδT ΔδE ΔδF Disurbance Vecor " Δw Lon = Δu wind Δw wind Δq wind 36 18

19 LTI Longiudinal Response o Iniial Pich Rae 37 6 x 6) LTI Laeral-Direcional Perurbaion Model Dynamic Equaion Δ x La Dir ) = F La Dir Δx La Dir ) + G La Dir Δu La Dir ) + L La Dir Δw La Dir ) Sae Vecor Δx 1 Δx 2 Δx 3 Δx La Dir = Δx 4 Δx 5 Δx 6 La Dir = Δv Δy Δp Δr Δφ Δψ Conrol Vecor Δu La Dir = Δδ A Δδ R ΔδSF ) ) ) Disurbance Vecor " Δw Lon = Δv wind Δp wind Δr wind 38 19

20 LTI Laeral-Direcional Response o Iniial Yaw Rae 39 Nex Time: Longiudinal Dynamics Reading: Fligh Dynamics , Airplane Sabiliy and Conrol Chaper 7 Learning Objecives 6 h -order -> 4 h -order -> hybrid equaions Dynamic sabiliy derivaives Long-period phugoid) mode Shor-period mode 40 20

21 Supplemenal Maerial 41 How Do We Calculae he Parial Derivaives? F) = f x x=x N ) u=u N ) w=w N ) G) = f u x=x N ) u=u N ) w=w N ) L) = f w x=x N ) u=u N ) w=w N ) Analyically Symbolic evaluaion of analyical models of F, G, and L Numerically Firs cenral differences in fx,u,w) 42 21

22 Numerical Esimaion of he Jacobian Marix, F) x 1 ) x 1 ) f 1 f 2 x 1 + Δx 1 ) x 2 x n x 1 + Δx 1 ) x 2 x n f 1 x 1 Δx 1 ) x 2 x n x=xn ) u=u N ) w=w N ) 2Δx 1 ; f 2 x 1 Δx 1 ) x 2 x n x=xn ) u=u N ) w=w N ) 2Δx 1 ; x 2 ) x 2 ) f 1 f 2 x 1 x 1 x 2 + Δx 2 x f 2 Δx 2 1 x n x n ) ) 2Δx 2 ) x 1 x 1 x 2 + Δx 2 x f 2 Δx 2 2 x n x n 2Δx 2 Coninue for all n x n elemens of F) ) x=xn ) u=u N ) w=w N ) x=xn ) u=u N ) w=w N ) 43 Numerical Esimaion of he Jacobian Marix, G) u 1 ) u 1 ) f 1 f 2 u 1 + Δu 1 ) u 2 u m u 1 + Δu 1 ) u 2 u m f 1 u 1 Δu 1 ) u 2 u m x=xn ) u=u N ) w=w N ) 2Δu 1 ; f 2 u 1 Δu 1 ) u 2 u m x=xn ) u=u N ) w=w N ) 2Δu 1 ; u 2 ) u 2 ) f 1 f 2 u 1 u 1 u 2 + Δu 2 u f 2 Δu 2 1 u m u m ) ) 2Δu 2 ) u 1 u 1 u 2 + Δu 2 u f 2 Δu 2 2 u m u m 2Δu 2 Coninue for all n x m elemens of G) ) x=xn ) u=u N ) w=w N ) x=xn ) u=u N ) w=w N ) 44 22

23 w 1 w 1 ) ) f 1 f 2 Numerical Esimaion of he Jacobian Marix, L) w 1 + Δw 1 ) w 2 w s w 1 + Δw 1 ) w 2 w s f 1 w 1 Δw 1 ) w 2 w s x=xn ) u=u N ) w=w N ) 2Δw 1 ; f 2 w 1 Δw 1 ) w 2 w s x=xn ) u=u N ) w=w N ) 2Δw 1 ; w 2 ) w 2 ) f 1 f 2 w 1 w 1 w 2 + Δw 2 w f 2 Δw 2 1 w s w s ) ) 2Δw 2 ) w 1 w 1 w 2 + Δw 2 w f 2 Δw 2 2 w s w s 2Δw 2 ) Coninue for all n x s elemens of L) x=xn ) u=u N ) w=w N ) x=xn ) u=u N ) w=w N ) 45 23

Linearized Equations of Motion!

Linearized Equations of Motion! Linearized Equations of Motion Robert Stengel, Aircraft Flight Dynamics MAE 331, 216 Learning Objectives Develop linear equations to describe small perturbational motions Apply to aircraft dynamic equations

More information

Basilio Bona ROBOTICA 03CFIOR 1

Basilio Bona ROBOTICA 03CFIOR 1 Indusrial Robos Kinemaics 1 Kinemaics and kinemaic funcions Kinemaics deals wih he sudy of four funcions (called kinemaic funcions or KFs) ha mahemaically ransform join variables ino caresian variables

More information

Chapter 3 Boundary Value Problem

Chapter 3 Boundary Value Problem Chaper 3 Boundary Value Problem A boundary value problem (BVP) is a problem, ypically an ODE or a PDE, which has values assigned on he physical boundary of he domain in which he problem is specified. Le

More information

Simulation-Solving Dynamic Models ABE 5646 Week 2, Spring 2010

Simulation-Solving Dynamic Models ABE 5646 Week 2, Spring 2010 Simulaion-Solving Dynamic Models ABE 5646 Week 2, Spring 2010 Week Descripion Reading Maerial 2 Compuer Simulaion of Dynamic Models Finie Difference, coninuous saes, discree ime Simple Mehods Euler Trapezoid

More information

LAPLACE TRANSFORM AND TRANSFER FUNCTION

LAPLACE TRANSFORM AND TRANSFER FUNCTION CHBE320 LECTURE V LAPLACE TRANSFORM AND TRANSFER FUNCTION Professor Dae Ryook Yang Spring 2018 Dep. of Chemical and Biological Engineering 5-1 Road Map of he Lecure V Laplace Transform and Transfer funcions

More information

Time Response of Dynamic Systems! Multi-Dimensional Trajectories Position, velocity, and acceleration are vectors

Time Response of Dynamic Systems! Multi-Dimensional Trajectories Position, velocity, and acceleration are vectors Time Response of Dynamic Systems Robert Stengel Robotics and Intelligent Systems MAE 345, Princeton University, 217 Multi-dimensional trajectories Numerical integration Linear and nonlinear systems Linearization

More information

dt = C exp (3 ln t 4 ). t 4 W = C exp ( ln(4 t) 3) = C(4 t) 3.

dt = C exp (3 ln t 4 ). t 4 W = C exp ( ln(4 t) 3) = C(4 t) 3. Mah Rahman Exam Review Soluions () Consider he IVP: ( 4)y 3y + 4y = ; y(3) = 0, y (3) =. (a) Please deermine he longes inerval for which he IVP is guaraneed o have a unique soluion. Soluion: The disconinuiies

More information

From Particles to Rigid Bodies

From Particles to Rigid Bodies Rigid Body Dynamics From Paricles o Rigid Bodies Paricles No roaions Linear velociy v only Rigid bodies Body roaions Linear velociy v Angular velociy ω Rigid Bodies Rigid bodies have boh a posiion and

More information

Announcements: Warm-up Exercise:

Announcements: Warm-up Exercise: Fri Apr 13 7.1 Sysems of differenial equaions - o model muli-componen sysems via comparmenal analysis hp//en.wikipedia.org/wiki/muli-comparmen_model Announcemens Warm-up Exercise Here's a relaively simple

More information

Dynamic Effects of Feedback Control!

Dynamic Effects of Feedback Control! Dynamic Effecs of Feedback Conrol! Rober Sengel! Roboics and Inelligen Sysems MAE 345, Princeon Universiy, 2017 Inner, Middle, and Ouer Feedback Conrol Loops Sep Response of Linear, Time- Invarian (LTI)

More information

System of Linear Differential Equations

System of Linear Differential Equations Sysem of Linear Differenial Equaions In "Ordinary Differenial Equaions" we've learned how o solve a differenial equaion for a variable, such as: y'k5$e K2$x =0 solve DE yx = K 5 2 ek2 x C_C1 2$y''C7$y

More information

Math Week 14 April 16-20: sections first order systems of linear differential equations; 7.4 mass-spring systems.

Math Week 14 April 16-20: sections first order systems of linear differential equations; 7.4 mass-spring systems. Mah 2250-004 Week 4 April 6-20 secions 7.-7.3 firs order sysems of linear differenial equaions; 7.4 mass-spring sysems. Mon Apr 6 7.-7.2 Sysems of differenial equaions (7.), and he vecor Calculus we need

More information

Chapter #1 EEE8013 EEE3001. Linear Controller Design and State Space Analysis

Chapter #1 EEE8013 EEE3001. Linear Controller Design and State Space Analysis Chaper EEE83 EEE3 Chaper # EEE83 EEE3 Linear Conroller Design and Sae Space Analysis Ordinary Differenial Equaions.... Inroducion.... Firs Order ODEs... 3. Second Order ODEs... 7 3. General Maerial...

More information

10. State Space Methods

10. State Space Methods . Sae Space Mehods. Inroducion Sae space modelling was briefly inroduced in chaper. Here more coverage is provided of sae space mehods before some of heir uses in conrol sysem design are covered in he

More information

Lecture 20: Riccati Equations and Least Squares Feedback Control

Lecture 20: Riccati Equations and Least Squares Feedback Control 34-5 LINEAR SYSTEMS Lecure : Riccai Equaions and Leas Squares Feedback Conrol 5.6.4 Sae Feedback via Riccai Equaions A recursive approach in generaing he marix-valued funcion W ( ) equaion for i for he

More information

MATH 128A, SUMMER 2009, FINAL EXAM SOLUTION

MATH 128A, SUMMER 2009, FINAL EXAM SOLUTION MATH 28A, SUMME 2009, FINAL EXAM SOLUTION BENJAMIN JOHNSON () (8 poins) [Lagrange Inerpolaion] (a) (4 poins) Le f be a funcion defined a some real numbers x 0,..., x n. Give a defining equaion for he Lagrange

More information

dy dx = xey (a) y(0) = 2 (b) y(1) = 2.5 SOLUTION: See next page

dy dx = xey (a) y(0) = 2 (b) y(1) = 2.5 SOLUTION: See next page Assignmen 1 MATH 2270 SOLUTION Please wrie ou complee soluions for each of he following 6 problems (one more will sill be added). You may, of course, consul wih your classmaes, he exbook or oher resources,

More information

(1) (2) Differentiation of (1) and then substitution of (3) leads to. Therefore, we will simply consider the second-order linear system given by (4)

(1) (2) Differentiation of (1) and then substitution of (3) leads to. Therefore, we will simply consider the second-order linear system given by (4) Phase Plane Analysis of Linear Sysems Adaped from Applied Nonlinear Conrol by Sloine and Li The general form of a linear second-order sysem is a c b d From and b bc d a Differeniaion of and hen subsiuion

More information

4.6 One Dimensional Kinematics and Integration

4.6 One Dimensional Kinematics and Integration 4.6 One Dimensional Kinemaics and Inegraion When he acceleraion a( of an objec is a non-consan funcion of ime, we would like o deermine he ime dependence of he posiion funcion x( and he x -componen of

More information

Ordinary dierential equations

Ordinary dierential equations Chaper 5 Ordinary dierenial equaions Conens 5.1 Iniial value problem........................... 31 5. Forward Euler's mehod......................... 3 5.3 Runge-Kua mehods.......................... 36

More information

Open loop vs Closed Loop. Example: Open Loop. Example: Feedforward Control. Advanced Control I

Open loop vs Closed Loop. Example: Open Loop. Example: Feedforward Control. Advanced Control I Open loop vs Closed Loop Advanced I Moor Command Movemen Overview Open Loop vs Closed Loop Some examples Useful Open Loop lers Dynamical sysems CPG (biologically inspired ), Force Fields Feedback conrol

More information

HOMEWORK # 2: MATH 211, SPRING Note: This is the last solution set where I will describe the MATLAB I used to make my pictures.

HOMEWORK # 2: MATH 211, SPRING Note: This is the last solution set where I will describe the MATLAB I used to make my pictures. HOMEWORK # 2: MATH 2, SPRING 25 TJ HITCHMAN Noe: This is he las soluion se where I will describe he MATLAB I used o make my picures.. Exercises from he ex.. Chaper 2.. Problem 6. We are o show ha y() =

More information

t is a basis for the solution space to this system, then the matrix having these solutions as columns, t x 1 t, x 2 t,... x n t x 2 t...

t is a basis for the solution space to this system, then the matrix having these solutions as columns, t x 1 t, x 2 t,... x n t x 2 t... Mah 228- Fri Mar 24 5.6 Marix exponenials and linear sysems: The analogy beween firs order sysems of linear differenial equaions (Chaper 5) and scalar linear differenial equaions (Chaper ) is much sronger

More information

15. Vector Valued Functions

15. Vector Valued Functions 1. Vecor Valued Funcions Up o his poin, we have presened vecors wih consan componens, for example, 1, and,,4. However, we can allow he componens of a vecor o be funcions of a common variable. For example,

More information

Chapter 2. Motion in One-Dimension I

Chapter 2. Motion in One-Dimension I Chaper 2. Moion in One-Dimension I Level : AP Physics Insrucor : Kim 1. Average Rae of Change and Insananeous Velociy To find he average velociy(v ) of a paricle, we need o find he paricle s displacemen

More information

Optimal Path Planning for Flexible Redundant Robot Manipulators

Optimal Path Planning for Flexible Redundant Robot Manipulators 25 WSEAS In. Conf. on DYNAMICAL SYSEMS and CONROL, Venice, Ialy, November 2-4, 25 (pp363-368) Opimal Pah Planning for Flexible Redundan Robo Manipulaors H. HOMAEI, M. KESHMIRI Deparmen of Mechanical Engineering

More information

Physics 235 Chapter 2. Chapter 2 Newtonian Mechanics Single Particle

Physics 235 Chapter 2. Chapter 2 Newtonian Mechanics Single Particle Chaper 2 Newonian Mechanics Single Paricle In his Chaper we will review wha Newon s laws of mechanics ell us abou he moion of a single paricle. Newon s laws are only valid in suiable reference frames,

More information

Kinematics and kinematic functions

Kinematics and kinematic functions ROBOTICS 01PEEQW Basilio Bona DAUIN Poliecnico di Torino Kinemaic funcions Kinemaics and kinemaic funcions Kinemaics deals wih he sudy of four funcions(called kinemaic funcions or KFs) ha mahemaically

More information

Intermediate Differential Equations Review and Basic Ideas

Intermediate Differential Equations Review and Basic Ideas Inermediae Differenial Equaions Review and Basic Ideas John A. Burns Cener for Opimal Design And Conrol Inerdisciplinary Cener forappliedmahemaics Virginia Polyechnic Insiue and Sae Universiy Blacksburg,

More information

Class Meeting # 10: Introduction to the Wave Equation

Class Meeting # 10: Introduction to the Wave Equation MATH 8.5 COURSE NOTES - CLASS MEETING # 0 8.5 Inroducion o PDEs, Fall 0 Professor: Jared Speck Class Meeing # 0: Inroducion o he Wave Equaion. Wha is he wave equaion? The sandard wave equaion for a funcion

More information

= ( ) ) or a system of differential equations with continuous parametrization (T = R

= ( ) ) or a system of differential equations with continuous parametrization (T = R XIII. DIFFERENCE AND DIFFERENTIAL EQUATIONS Ofen funcions, or a sysem of funcion, are paramerized in erms of some variable, usually denoed as and inerpreed as ime. The variable is wrien as a funcion of

More information

Chapter 2. First Order Scalar Equations

Chapter 2. First Order Scalar Equations Chaper. Firs Order Scalar Equaions We sar our sudy of differenial equaions in he same way he pioneers in his field did. We show paricular echniques o solve paricular ypes of firs order differenial equaions.

More information

Linear-Optimal Estimation for Continuous-Time Systems Robert Stengel Optimal Control and Estimation MAE 546 Princeton University, 2018

Linear-Optimal Estimation for Continuous-Time Systems Robert Stengel Optimal Control and Estimation MAE 546 Princeton University, 2018 Linear-Opimal Esimaion for Coninuous-Time Sysems Rober Sengel Opimal Conrol and Esimaion MAE 546 Princeon Universiy, 2018! Propagaion of uncerainy in coninuousime sysems! Linear-opimal Gaussian esimaor

More information

( ) a system of differential equations with continuous parametrization ( T = R + These look like, respectively:

( ) a system of differential equations with continuous parametrization ( T = R + These look like, respectively: XIII. DIFFERENCE AND DIFFERENTIAL EQUATIONS Ofen funcions, or a sysem of funcion, are paramerized in erms of some variable, usually denoed as and inerpreed as ime. The variable is wrien as a funcion of

More information

ME 391 Mechanical Engineering Analysis

ME 391 Mechanical Engineering Analysis Fall 04 ME 39 Mechanical Engineering Analsis Eam # Soluions Direcions: Open noes (including course web posings). No books, compuers, or phones. An calculaor is fair game. Problem Deermine he posiion of

More information

Ordinary differential equations. Phys 750 Lecture 7

Ordinary differential equations. Phys 750 Lecture 7 Ordinary differenial equaions Phys 750 Lecure 7 Ordinary Differenial Equaions Mos physical laws are expressed as differenial equaions These come in hree flavours: iniial-value problems boundary-value problems

More information

The motions of the celt on a horizontal plane with viscous friction

The motions of the celt on a horizontal plane with viscous friction The h Join Inernaional Conference on Mulibody Sysem Dynamics June 8, 18, Lisboa, Porugal The moions of he cel on a horizonal plane wih viscous fricion Maria A. Munisyna 1 1 Moscow Insiue of Physics and

More information

Continuous Time. Time-Domain System Analysis. Impulse Response. Impulse Response. Impulse Response. Impulse Response. ( t) + b 0.

Continuous Time. Time-Domain System Analysis. Impulse Response. Impulse Response. Impulse Response. Impulse Response. ( t) + b 0. Time-Domain Sysem Analysis Coninuous Time. J. Robers - All Righs Reserved. Edied by Dr. Rober Akl 1. J. Robers - All Righs Reserved. Edied by Dr. Rober Akl 2 Le a sysem be described by a 2 y ( ) + a 1

More information

Kinematics and kinematic functions

Kinematics and kinematic functions Kinemaics and kinemaic funcions Kinemaics deals wih he sudy of four funcions (called kinemaic funcions or KFs) ha mahemaically ransform join variables ino caresian variables and vice versa Direc Posiion

More information

Single and Double Pendulum Models

Single and Double Pendulum Models Single and Double Pendulum Models Mah 596 Projec Summary Spring 2016 Jarod Har 1 Overview Differen ypes of pendulums are used o model many phenomena in various disciplines. In paricular, single and double

More information

Differential Equations

Differential Equations Mah 21 (Fall 29) Differenial Equaions Soluion #3 1. Find he paricular soluion of he following differenial equaion by variaion of parameer (a) y + y = csc (b) 2 y + y y = ln, > Soluion: (a) The corresponding

More information

Finite Element Analysis of Structures

Finite Element Analysis of Structures KAIT OE5 Finie Elemen Analysis of rucures Mid-erm Exam, Fall 9 (p) m. As shown in Fig., we model a russ srucure of uniform area (lengh, Area Am ) subjeced o a uniform body force ( f B e x N / m ) using

More information

!!"#"$%&#'()!"#&'(*%)+,&',-)./0)1-*23)

!!#$%&#'()!#&'(*%)+,&',-)./0)1-*23) "#"$%&#'()"#&'(*%)+,&',-)./)1-*) #$%&'()*+,&',-.%,/)*+,-&1*#$)()5*6$+$%*,7&*-'-&1*(,-&*6&,7.$%$+*&%'(*8$&',-,%'-&1*(,-&*6&,79*(&,%: ;..,*&1$&$.$%&'()*1$$.,'&',-9*(&,%)?%*,('&5

More information

EXERCISES FOR SECTION 1.5

EXERCISES FOR SECTION 1.5 1.5 Exisence and Uniqueness of Soluions 43 20. 1 v c 21. 1 v c 1 2 4 6 8 10 1 2 2 4 6 8 10 Graph of approximae soluion obained using Euler s mehod wih = 0.1. Graph of approximae soluion obained using Euler

More information

Chapter #1 EEE8013 EEE3001. Linear Controller Design and State Space Analysis

Chapter #1 EEE8013 EEE3001. Linear Controller Design and State Space Analysis Chaper EEE83 EEE3 Chaper # EEE83 EEE3 Linear Conroller Design and Sae Space Analysis Ordinary Differenial Equaions.... Inroducion.... Firs Order ODEs... 3. Second Order ODEs... 7 3. General Maerial...

More information

Some Basic Information about M-S-D Systems

Some Basic Information about M-S-D Systems Some Basic Informaion abou M-S-D Sysems 1 Inroducion We wan o give some summary of he facs concerning unforced (homogeneous) and forced (non-homogeneous) models for linear oscillaors governed by second-order,

More information

CHBE320 LECTURE IV MATHEMATICAL MODELING OF CHEMICAL PROCESS. Professor Dae Ryook Yang

CHBE320 LECTURE IV MATHEMATICAL MODELING OF CHEMICAL PROCESS. Professor Dae Ryook Yang CHBE320 LECTURE IV MATHEMATICAL MODELING OF CHEMICAL PROCESS Professor Dae Ryook Yang Spring 208 Dep. of Chemical and Biological Engineering CHBE320 Process Dynamics and Conrol 4- Road Map of he Lecure

More information

where the coordinate X (t) describes the system motion. X has its origin at the system static equilibrium position (SEP).

where the coordinate X (t) describes the system motion. X has its origin at the system static equilibrium position (SEP). Appendix A: Conservaion of Mechanical Energy = Conservaion of Linear Momenum Consider he moion of a nd order mechanical sysem comprised of he fundamenal mechanical elemens: ineria or mass (M), siffness

More information

Math Final Exam Solutions

Math Final Exam Solutions Mah 246 - Final Exam Soluions Friday, July h, 204 () Find explici soluions and give he inerval of definiion o he following iniial value problems (a) ( + 2 )y + 2y = e, y(0) = 0 Soluion: In normal form,

More information

WEEK-3 Recitation PHYS 131. of the projectile s velocity remains constant throughout the motion, since the acceleration a x

WEEK-3 Recitation PHYS 131. of the projectile s velocity remains constant throughout the motion, since the acceleration a x WEEK-3 Reciaion PHYS 131 Ch. 3: FOC 1, 3, 4, 6, 14. Problems 9, 37, 41 & 71 and Ch. 4: FOC 1, 3, 5, 8. Problems 3, 5 & 16. Feb 8, 018 Ch. 3: FOC 1, 3, 4, 6, 14. 1. (a) The horizonal componen of he projecile

More information

In this chapter the model of free motion under gravity is extended to objects projected at an angle. When you have completed it, you should

In this chapter the model of free motion under gravity is extended to objects projected at an angle. When you have completed it, you should Cambridge Universiy Press 978--36-60033-7 Cambridge Inernaional AS and A Level Mahemaics: Mechanics Coursebook Excerp More Informaion Chaper The moion of projeciles In his chaper he model of free moion

More information

DEPARTMENT OF ELECTRICAL AND ELECTRONIC ENGINEERING EXAMINATIONS 2008

DEPARTMENT OF ELECTRICAL AND ELECTRONIC ENGINEERING EXAMINATIONS 2008 [E5] IMPERIAL COLLEGE LONDON DEPARTMENT OF ELECTRICAL AND ELECTRONIC ENGINEERING EXAMINATIONS 008 EEE/ISE PART II MEng BEng and ACGI SIGNALS AND LINEAR SYSTEMS Time allowed: :00 hours There are FOUR quesions

More information

Notes on Kalman Filtering

Notes on Kalman Filtering Noes on Kalman Filering Brian Borchers and Rick Aser November 7, Inroducion Daa Assimilaion is he problem of merging model predicions wih acual measuremens of a sysem o produce an opimal esimae of he curren

More information

Linear Surface Gravity Waves 3., Dispersion, Group Velocity, and Energy Propagation

Linear Surface Gravity Waves 3., Dispersion, Group Velocity, and Energy Propagation Chaper 4 Linear Surface Graviy Waves 3., Dispersion, Group Velociy, and Energy Propagaion 4. Descripion In many aspecs of wave evoluion, he concep of group velociy plays a cenral role. Mos people now i

More information

Outline of Topics. Analysis of ODE models with MATLAB. What will we learn from this lecture. Aim of analysis: Why such analysis matters?

Outline of Topics. Analysis of ODE models with MATLAB. What will we learn from this lecture. Aim of analysis: Why such analysis matters? of Topics wih MATLAB Shan He School for Compuaional Science Universi of Birmingham Module 6-3836: Compuaional Modelling wih MATLAB Wha will we learn from his lecure Aim of analsis: Aim of analsis. Some

More information

Solutions for homework 12

Solutions for homework 12 y Soluions for homework Secion Nonlinear sysems: The linearizaion of a nonlinear sysem Consider he sysem y y y y y (i) Skech he nullclines Use a disincive marking for each nullcline so hey can be disinguished

More information

Ordinary Differential Equations

Ordinary Differential Equations Lecure 22 Ordinary Differenial Equaions Course Coordinaor: Dr. Suresh A. Karha, Associae Professor, Deparmen of Civil Engineering, IIT Guwahai. In naure, mos of he phenomena ha can be mahemaically described

More information

Chapter 7 Response of First-order RL and RC Circuits

Chapter 7 Response of First-order RL and RC Circuits Chaper 7 Response of Firs-order RL and RC Circuis 7.- The Naural Response of RL and RC Circuis 7.3 The Sep Response of RL and RC Circuis 7.4 A General Soluion for Sep and Naural Responses 7.5 Sequenial

More information

Ch.1. Group Work Units. Continuum Mechanics Course (MMC) - ETSECCPB - UPC

Ch.1. Group Work Units. Continuum Mechanics Course (MMC) - ETSECCPB - UPC Ch.. Group Work Unis Coninuum Mechanics Course (MMC) - ETSECCPB - UPC Uni 2 Jusify wheher he following saemens are rue or false: a) Two sreamlines, corresponding o a same insan of ime, can never inersec

More information

CSE 3802 / ECE Numerical Methods in Scientific Computation. Jinbo Bi. Department of Computer Science & Engineering

CSE 3802 / ECE Numerical Methods in Scientific Computation. Jinbo Bi. Department of Computer Science & Engineering CSE 3802 / ECE 3431 Numerical Mehods in Scienific Compuaion Jinbo Bi Deparmen of Compuer Science & Engineering hp://www.engr.uconn.edu/~jinbo 1 Ph.D in Mahemaics The Insrucor Previous professional experience:

More information

ψ(t) = V x (0)V x (t)

ψ(t) = V x (0)V x (t) .93 Home Work Se No. (Professor Sow-Hsin Chen Spring Term 5. Due March 7, 5. This problem concerns calculaions of analyical expressions for he self-inermediae scaering funcion (ISF of he es paricle in

More information

Parametrics and Vectors (BC Only)

Parametrics and Vectors (BC Only) Paramerics and Vecors (BC Only) The following relaionships should be learned and memorized. The paricle s posiion vecor is r() x(), y(). The velociy vecor is v(),. The speed is he magniude of he velociy

More information

2.1: What is physics? Ch02: Motion along a straight line. 2.2: Motion. 2.3: Position, Displacement, Distance

2.1: What is physics? Ch02: Motion along a straight line. 2.2: Motion. 2.3: Position, Displacement, Distance Ch: Moion along a sraigh line Moion Posiion and Displacemen Average Velociy and Average Speed Insananeous Velociy and Speed Acceleraion Consan Acceleraion: A Special Case Anoher Look a Consan Acceleraion

More information

On-line Adaptive Optimal Timing Control of Switched Systems

On-line Adaptive Optimal Timing Control of Switched Systems On-line Adapive Opimal Timing Conrol of Swiched Sysems X.C. Ding, Y. Wardi and M. Egersed Absrac In his paper we consider he problem of opimizing over he swiching imes for a muli-modal dynamic sysem when

More information

Math 2214 Solution Test 1A Spring 2016

Math 2214 Solution Test 1A Spring 2016 Mah 14 Soluion Tes 1A Spring 016 sec Problem 1: Wha is he larges -inerval for which ( 4) = has a guaraneed + unique soluion for iniial value (-1) = 3 according o he Exisence Uniqueness Theorem? Soluion

More information

Sliding Mode Controller for Unstable Systems

Sliding Mode Controller for Unstable Systems S. SIVARAMAKRISHNAN e al., Sliding Mode Conroller for Unsable Sysems, Chem. Biochem. Eng. Q. 22 (1) 41 47 (28) 41 Sliding Mode Conroller for Unsable Sysems S. Sivaramakrishnan, A. K. Tangirala, and M.

More information

Program: RFEM 5, RSTAB 8, RF-DYNAM Pro, DYNAM Pro. Category: Isotropic Linear Elasticity, Dynamics, Member

Program: RFEM 5, RSTAB 8, RF-DYNAM Pro, DYNAM Pro. Category: Isotropic Linear Elasticity, Dynamics, Member Verificaion Example Program: RFEM 5, RSTAB 8, RF-DYNAM Pro, DYNAM Pro Caegory: Isoropic Linear Elasiciy, Dynamics, Member Verificaion Example: 0104 Canilever Beam wih Periodic Exciaion 0104 Canilever Beam

More information

1 Subdivide the optimization horizon [t 0,t f ] into n s 1 control stages,

1 Subdivide the optimization horizon [t 0,t f ] into n s 1 control stages, Opimal Conrol Formulaion Opimal Conrol Lecures 19-2: Direc Soluion Mehods Benoî Chachua Deparmen of Chemical Engineering Spring 29 We are concerned wih numerical soluion procedures for

More information

2.160 System Identification, Estimation, and Learning. Lecture Notes No. 8. March 6, 2006

2.160 System Identification, Estimation, and Learning. Lecture Notes No. 8. March 6, 2006 2.160 Sysem Idenificaion, Esimaion, and Learning Lecure Noes No. 8 March 6, 2006 4.9 Eended Kalman Filer In many pracical problems, he process dynamics are nonlinear. w Process Dynamics v y u Model (Linearized)

More information

4.5 Constant Acceleration

4.5 Constant Acceleration 4.5 Consan Acceleraion v() v() = v 0 + a a() a a() = a v 0 Area = a (a) (b) Figure 4.8 Consan acceleraion: (a) velociy, (b) acceleraion When he x -componen of he velociy is a linear funcion (Figure 4.8(a)),

More information

MATH 5720: Gradient Methods Hung Phan, UMass Lowell October 4, 2018

MATH 5720: Gradient Methods Hung Phan, UMass Lowell October 4, 2018 MATH 5720: Gradien Mehods Hung Phan, UMass Lowell Ocober 4, 208 Descen Direcion Mehods Consider he problem min { f(x) x R n}. The general descen direcions mehod is x k+ = x k + k d k where x k is he curren

More information

arxiv:quant-ph/ v1 5 Jul 2004

arxiv:quant-ph/ v1 5 Jul 2004 Numerical Mehods for Sochasic Differenial Equaions Joshua Wilkie Deparmen of Chemisry, Simon Fraser Universiy, Burnaby, Briish Columbia V5A 1S6, Canada Sochasic differenial equaions (sdes) play an imporan

More information

Hybrid Control and Switched Systems. Lecture #3 What can go wrong? Trajectories of hybrid systems

Hybrid Control and Switched Systems. Lecture #3 What can go wrong? Trajectories of hybrid systems Hybrid Conrol and Swiched Sysems Lecure #3 Wha can go wrong? Trajecories of hybrid sysems João P. Hespanha Universiy of California a Sana Barbara Summary 1. Trajecories of hybrid sysems: Soluion o a hybrid

More information

Summary of shear rate kinematics (part 1)

Summary of shear rate kinematics (part 1) InroToMaFuncions.pdf 4 CM465 To proceed o beer-designed consiuive equaions, we need o know more abou maerial behavior, i.e. we need more maerial funcions o predic, and we need measuremens of hese maerial

More information

) were both constant and we brought them from under the integral.

) were both constant and we brought them from under the integral. YIELD-PER-RECRUIT (coninued The yield-per-recrui model applies o a cohor, bu we saw in he Age Disribuions lecure ha he properies of a cohor do no apply in general o a collecion of cohors, which is wha

More information

Math Wednesday March 3, , 4.3: First order systems of Differential Equations Why you should expect existence and uniqueness for the IVP

Math Wednesday March 3, , 4.3: First order systems of Differential Equations Why you should expect existence and uniqueness for the IVP Mah 2280 Wednesda March 3, 200 4., 4.3: Firs order ssems of Differenial Equaions Wh ou should epec eisence and uniqueness for he IVP Eample: Consider he iniial value problem relaed o page 4 of his eserda

More information

MA 214 Calculus IV (Spring 2016) Section 2. Homework Assignment 1 Solutions

MA 214 Calculus IV (Spring 2016) Section 2. Homework Assignment 1 Solutions MA 14 Calculus IV (Spring 016) Secion Homework Assignmen 1 Soluions 1 Boyce and DiPrima, p 40, Problem 10 (c) Soluion: In sandard form he given firs-order linear ODE is: An inegraing facor is given by

More information

u(x) = e x 2 y + 2 ) Integrate and solve for x (1 + x)y + y = cos x Answer: Divide both sides by 1 + x and solve for y. y = x y + cos x

u(x) = e x 2 y + 2 ) Integrate and solve for x (1 + x)y + y = cos x Answer: Divide both sides by 1 + x and solve for y. y = x y + cos x . 1 Mah 211 Homework #3 February 2, 2001 2.4.3. y + (2/x)y = (cos x)/x 2 Answer: Compare y + (2/x) y = (cos x)/x 2 wih y = a(x)x + f(x)and noe ha a(x) = 2/x. Consequenly, an inegraing facor is found wih

More information

Design of a control system

Design of a control system SE3 Prof. Davide Manca Poliecnico di Milano Dynamics and Conrol of Chemical Processes Soluion o Lab #3 Design of a conrol sysem Davide Manca Dynamics and Conrol of Chemical Processes Maser Degree in ChemEng

More information

Trajectory planning in Cartesian space

Trajectory planning in Cartesian space Roboics 1 Trajecory planning in Caresian space Prof. Alessandro De Luca Roboics 1 1 Trajecories in Caresian space in general, he rajecory planning mehods proposed in he join space can be applied also in

More information

Modal identification of structures from roving input data by means of maximum likelihood estimation of the state space model

Modal identification of structures from roving input data by means of maximum likelihood estimation of the state space model Modal idenificaion of srucures from roving inpu daa by means of maximum likelihood esimaion of he sae space model J. Cara, J. Juan, E. Alarcón Absrac The usual way o perform a forced vibraion es is o fix

More information

Math 334 Test 1 KEY Spring 2010 Section: 001. Instructor: Scott Glasgow Dates: May 10 and 11.

Math 334 Test 1 KEY Spring 2010 Section: 001. Instructor: Scott Glasgow Dates: May 10 and 11. 1 Mah 334 Tes 1 KEY Spring 21 Secion: 1 Insrucor: Sco Glasgow Daes: Ma 1 and 11. Do NOT wrie on his problem saemen bookle, excep for our indicaion of following he honor code jus below. No credi will be

More information

Kinematics in two dimensions

Kinematics in two dimensions Lecure 5 Phsics I 9.18.13 Kinemaics in wo dimensions Course websie: hp://facul.uml.edu/andri_danlo/teaching/phsicsi Lecure Capure: hp://echo36.uml.edu/danlo13/phsics1fall.hml 95.141, Fall 13, Lecure 5

More information

Solutions of Sample Problems for Third In-Class Exam Math 246, Spring 2011, Professor David Levermore

Solutions of Sample Problems for Third In-Class Exam Math 246, Spring 2011, Professor David Levermore Soluions of Sample Problems for Third In-Class Exam Mah 6, Spring, Professor David Levermore Compue he Laplace ransform of f e from is definiion Soluion The definiion of he Laplace ransform gives L[f]s

More information

Variational Iteration Method for Solving System of Fractional Order Ordinary Differential Equations

Variational Iteration Method for Solving System of Fractional Order Ordinary Differential Equations IOSR Journal of Mahemaics (IOSR-JM) e-issn: 2278-5728, p-issn: 2319-765X. Volume 1, Issue 6 Ver. II (Nov - Dec. 214), PP 48-54 Variaional Ieraion Mehod for Solving Sysem of Fracional Order Ordinary Differenial

More information

d 1 = c 1 b 2 - b 1 c 2 d 2 = c 1 b 3 - b 1 c 3

d 1 = c 1 b 2 - b 1 c 2 d 2 = c 1 b 3 - b 1 c 3 and d = c b - b c c d = c b - b c c This process is coninued unil he nh row has been compleed. The complee array of coefficiens is riangular. Noe ha in developing he array an enire row may be divided or

More information

EE363 homework 1 solutions

EE363 homework 1 solutions EE363 Prof. S. Boyd EE363 homework 1 soluions 1. LQR for a riple accumulaor. We consider he sysem x +1 = Ax + Bu, y = Cx, wih 1 1 A = 1 1, B =, C = [ 1 ]. 1 1 This sysem has ransfer funcion H(z) = (z 1)

More information

L07. KALMAN FILTERING FOR NON-LINEAR SYSTEMS. NA568 Mobile Robotics: Methods & Algorithms

L07. KALMAN FILTERING FOR NON-LINEAR SYSTEMS. NA568 Mobile Robotics: Methods & Algorithms L07. KALMAN FILTERING FOR NON-LINEAR SYSTEMS NA568 Mobile Roboics: Mehods & Algorihms Today s Topic Quick review on (Linear) Kalman Filer Kalman Filering for Non-Linear Sysems Exended Kalman Filer (EKF)

More information

Math 333 Problem Set #2 Solution 14 February 2003

Math 333 Problem Set #2 Solution 14 February 2003 Mah 333 Problem Se #2 Soluion 14 February 2003 A1. Solve he iniial value problem dy dx = x2 + e 3x ; 2y 4 y(0) = 1. Soluion: This is separable; we wrie 2y 4 dy = x 2 + e x dx and inegrae o ge The iniial

More information

Lecture 1 Overview. course mechanics. outline & topics. what is a linear dynamical system? why study linear systems? some examples

Lecture 1 Overview. course mechanics. outline & topics. what is a linear dynamical system? why study linear systems? some examples EE263 Auumn 27-8 Sephen Boyd Lecure 1 Overview course mechanics ouline & opics wha is a linear dynamical sysem? why sudy linear sysems? some examples 1 1 Course mechanics all class info, lecures, homeworks,

More information

Finish reading Chapter 2 of Spivak, rereading earlier sections as necessary. handout and fill in some missing details!

Finish reading Chapter 2 of Spivak, rereading earlier sections as necessary. handout and fill in some missing details! MAT 257, Handou 6: Ocober 7-2, 20. I. Assignmen. Finish reading Chaper 2 of Spiva, rereading earlier secions as necessary. handou and fill in some missing deails! II. Higher derivaives. Also, read his

More information

Introduction to Simulation - Lecture 16. Methods for Computing Periodic Steady-State - Part II Jacob White

Introduction to Simulation - Lecture 16. Methods for Computing Periodic Steady-State - Part II Jacob White Inroducion o Simuaion - ecure 6 Mehods for Compuing Periodic Seady-Sae - Par II Jacob Whie hanks o Deepak Ramaswamy, Micha Rewienski, and Karen Veroy Ouine hree Mehods so far ime inegraion uni seady-sae

More information

Augmented Reality II - Kalman Filters - Gudrun Klinker May 25, 2004

Augmented Reality II - Kalman Filters - Gudrun Klinker May 25, 2004 Augmened Realiy II Kalman Filers Gudrun Klinker May 25, 2004 Ouline Moivaion Discree Kalman Filer Modeled Process Compuing Model Parameers Algorihm Exended Kalman Filer Kalman Filer for Sensor Fusion Lieraure

More information

Chapter 6. Systems of First Order Linear Differential Equations

Chapter 6. Systems of First Order Linear Differential Equations Chaper 6 Sysems of Firs Order Linear Differenial Equaions We will only discuss firs order sysems However higher order sysems may be made ino firs order sysems by a rick shown below We will have a sligh

More information

Linear Flight Dynamics

Linear Flight Dynamics Linear Fligh Dynamics Exra maerial for assignmen#4 Vialy Shaferman 27 Novemer 2015 * Based on am EOM course and slides given a he USAF TPS Sailiy and Wind Axis Sysem V a X s V X W Z s,w a V U W V U W a

More information

THE MYSTERY OF STOCHASTIC MECHANICS. Edward Nelson Department of Mathematics Princeton University

THE MYSTERY OF STOCHASTIC MECHANICS. Edward Nelson Department of Mathematics Princeton University THE MYSTERY OF STOCHASTIC MECHANICS Edward Nelson Deparmen of Mahemaics Princeon Universiy 1 Classical Hamilon-Jacobi heory N paricles of various masses on a Euclidean space. Incorporae he masses in he

More information

STATE-SPACE MODELLING. A mass balance across the tank gives:

STATE-SPACE MODELLING. A mass balance across the tank gives: B. Lennox and N.F. Thornhill, 9, Sae Space Modelling, IChemE Process Managemen and Conrol Subjec Group Newsleer STE-SPACE MODELLING Inroducion: Over he pas decade or so here has been an ever increasing

More information

CHE302 LECTURE IV MATHEMATICAL MODELING OF CHEMICAL PROCESS. Professor Dae Ryook Yang

CHE302 LECTURE IV MATHEMATICAL MODELING OF CHEMICAL PROCESS. Professor Dae Ryook Yang CHE302 LECTURE IV MATHEMATICAL MODELING OF CHEMICAL PROCESS Professor Dae Ryook Yang Fall 200 Dep. of Chemical and Biological Engineering Korea Universiy CHE302 Process Dynamics and Conrol Korea Universiy

More information

Traveling Waves. Chapter Introduction

Traveling Waves. Chapter Introduction Chaper 4 Traveling Waves 4.1 Inroducion To dae, we have considered oscillaions, i.e., periodic, ofen harmonic, variaions of a physical characerisic of a sysem. The sysem a one ime is indisinguishable from

More information

IB Physics Kinematics Worksheet

IB Physics Kinematics Worksheet IB Physics Kinemaics Workshee Wrie full soluions and noes for muliple choice answers. Do no use a calculaor for muliple choice answers. 1. Which of he following is a correc definiion of average acceleraion?

More information