Matlab Training - Simulating Dynamic Systems

  • Uploaded by: hamed
  • 0
  • 0
  • April 2020
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Matlab Training - Simulating Dynamic Systems as PDF for free.

More details

  • Words: 1,191
  • Pages: 9
Simulating Dynamic Systems

MATLAB TRAINING SESSION IV SIMULATING DYNAMIC SYSTEMS MATLAB provides a variety of techniques for solving dynamics problems numerically. On-line help for each of the commands shown below is available by typing help ‘command_name’ or doc ‘command_name’ at the MATLAB prompt.

Sampling the Solution Equation: Suppose you already have the solution to a dynamics problem and you want to obtain a plot of the response. The task would reduce to implementing the equation in MATLAB and sampling the function over some domain of interest. For a high fidelity reproduction of the function, the function must be sampled with a spacial or time increment that captures many samples for each frequency that comprises the Fourier series for the function. In simpler terms, we can tell if we have used a small enough increment if the resulting plot appears smooth. The example shows how the same function can look jagged or smooth in the plot depending on the sampling increment.

1 of 9

Simulating Dynamic Systems

Suppose we find:

y ( t ) = 8 – 5e

– 2t

( sin ( 2πt ) + 0.5 cos ( 2πt ) )

Linear Systems: There are three general purpose methods for solving dynamics problems; transfer function method, state space integration method, and the MATLAB function lsim. Transfer Function Method: The transfer function method uses partial fraction expansion of the transfer function multiplied by the Laplace transform of the forcing function to obtain the solution. The solution of the differential equation is expressed in terms of a linear combonation of complex exponentials that are determined by the poles and the corresponding residues in the partial fraction expansion. Thus the form of the solution is: n

y(t ) =

∑ r ( i ) exp ( p ( i ) ⋅ t ) i=1

Suppose we have

y˙˙ + 2y˙ + 5y = 5u ( t ) + u˙ ( t )

Then we can write

2 of 9

and

u ( t ) = input

Simulating Dynamic Systems

2

s Y ( s ) – sy ( 0 ) – y˙( 0 ) + 2sY ( s ) – 2y ( 0 ) + 5Y ( s ) = 5U ( s ) + sU ( s ) + u ( 0 ) Let y(0) = 0 y˙( 0 ) = 0 u(0) = 0 s+5 -U (s) Then Y ( s ) = ------------------------2 s + 2s + 5 Let the input u(t) be the step function and to solve for y(t) do With

1 U ( s ) = --s

then

s+5 Y ( s ) = --------------------------------2 s ( s + 2s + 5 )

Let u(t) be sin(2t) and to solve for y(t) do

3 of 9

2 U ( s ) = ------------2 s +4

Simulating Dynamic Systems

Integration Method: The integration method utilizes the state space representation of the system and the MATLAB ode23 or the ode45 integrator. One advantage of this method is that it is much easier to incorporate the initial conditions in the solution without having to find the new transfer function. Lets look at the last example given above. x˙( t ) = 0 1 x ( t ) + 0 u ( t ) x˙ = Ax + Bu – 5 – 2 1 The state space representation is y = 5 1 x(t ) To implement the model create the M-file eqn1.m as shown

4 of 9

y = Cx + Du

Simulating Dynamic Systems

Then at the MATLAB prompt, enter:

Special Purpose MATLAB Commands: The MATLAB control systems toolbox provides several built in functions for solving for the solution to linear dynamic equations. All functions except either the transfer function or the state space representations. When the functions are invoked with left hand arguments, the variable are filled and a no plot is made. Each function has a variable number of possible valid argument configurations. Most function support both transfer function (num/den) and state space (A,B,C,D) forms. More information about each function can be found by typing help ‘function_name’. A list is provided below.

• initial(A,B,C,D,x0) • impulse(num,den,t) impulse(A,B,C,D,IU,t) • step(num,den,t) step(A,B,C,D,IU,t) • lsim(num,den,U,t) lsim(A,B,C,D,U,t,x0)

Initial condition response of cont-time LTI systems Impulse response of continuous time LTI systems IU = input channel number; t = sample time vector Step response of continuous time LTI systems Simulation of c-time LTI systems to arbitrary inputs U = input time history (# of columns = # of inputs)

5 of 9

Simulating Dynamic Systems

For example lets work with the series resonant circuit: R

t

di 1 Ri + L + ---- ∫ i dτ = V s dt C 0

THEN

LC

I (s) Cs ----------- = ------------------------------------------2 V (s) ( LCs + RCs + 1 )

2

OR

x1 = i

x 2 = x˙1

x˙2

L

di di dV + RC + i = C dt dt dt

( RCs + LCs + 1 )I ( s ) = CsV ( s )

x˙1

~

Vs

2

0 1 x 1 = + 0 u 1 R – ------- – --- x 2 1 LC L

C

x y = 0 --1- 1 L x2

With Matlab:

There is a corresponding function for discrete time dynamics for the functions mentioned above . The function would start with a ‘d’ like dstep for example. Suppose we find the z-transform to be

0.4673z – 0.3393 G ( z ) = ---------------------------------------------------2 z – 1.5327z + 0.6607

Then

6 of 9

Simulating Dynamic Systems

Nonlinear Systems: Nonlinear dynamics are solved by the integration method. The system equations are expressed in state form described in a M-file function and the ode integrators are used to solve for the state trajectories. 1 x˙1 = ------------- [ – x 1 + x 2 – g ( x 2 ) ] C 1 R1 Consider the Wien-Bridge Oscillator: 1 1 x˙2 = ------------- [ – x 1 + x 2 – g ( x 2 ) ] – ------------- x 2 C 2 R1 C 2 R2 3

g ( v ) = 3.234v – 2.195v + 0.666v Create the M-file wien.m as shown (Let R1 = R2 = C1 = C2 = 1.0)

Then with MATLAB

7 of 9

5

Simulating Dynamic Systems

M

Consider the Cart and Pendulum Problem ˙˙ cos θ – mlθ˙ 2 sin θ = 0 ( M + m )x˙˙ + mlθ

l

2 ˙˙

ml θ + mlx˙˙cos θ – mlx˙θ˙ sin θ + mgl sin θ = 0

θ m

Use a change of variables to y then we can write y1 x(t ) y x˙( t ) = 2 θ(t ) y3 θ˙ ( t ) y4

1 0 0 0 0 ( M + m ) 0 ml cos y 3 0

0

1

0 ml cos y 3 0

0 ml

x

y2

y˙1 ⋅

2

Write the M-file cart.m

Then with MATLAB

8 of 9

y˙2

2

=

mly 4 sin y 3

y˙3

y4

y˙4

ml ( y 2 y 4 – g ) sin y 3

Simulating Dynamic Systems

9 of 9

Related Documents


More Documents from ""

Agile Methodology
May 2020 14
Gap Analysis
May 2020 20
Scrum Methodology
May 2020 10
December 2019 38