Exercise 1a: Transfer functions

advertisement
EE4107 -­β€ Cybernetics Advanced Exercise 1a: Transfer functions Transfer functions are a model form based on the Laplace transform. Transfer functions are very useful in analysis and design of linear dynamic systems. A general Transfer function is on the form: 𝐻 𝑆 =
𝑦(𝑠)
𝑒(𝑠)
Where 𝑦 is the output and 𝑒 is the input. A general transfer function can be written on the following general form: 𝐻 𝑠 =
π‘›π‘’π‘šπ‘’π‘Ÿπ‘Žπ‘‘π‘œπ‘Ÿ(𝑠)
𝑏! 𝑠 ! + 𝑏!!! 𝑠 !!! + β‹― + 𝑏! 𝑠 + 𝑏!
=
π‘‘π‘’π‘›π‘œπ‘šπ‘–π‘›π‘Žπ‘‘π‘œπ‘Ÿ(𝑠)
π‘Ž! 𝑠 ! + π‘Ž!!! 𝑠 !!! + β‹― + π‘Ž! 𝑠 + π‘Ž!
The Numerators of transfer function models describe the locations of the zeros of the system, while the Denominators of transfer function models describe the locations of the poles of the system. Differential Equations While the transfer function gives an external in-­β€out representation of a system, will the differential equations of a system give an internal representation of a system. We can find the transfer function from the differential equation by using Laplace and Laplace transformation pairs. Likewise, we can find the differential equation from the transfer function using inverse Laplace. The following transformation pair is much used: Differentiation: 1.order systems: π‘₯ ⟺ 𝑠π‘₯(𝑠) For higher order systems: π‘₯ (!) ⟺ 𝑠 ! π‘₯(𝑠) Integration: Faculty of Technology, Postboks 203, Kjølnes ring 56, N-3901 Porsgrunn, Norway. Tel: +47 35 57 50 00 Fax: +47 35 57 54 01
2 π‘₯⟺
1
π‘₯(𝑠) 𝑠
Time-­β€delay: 𝑒 𝑑 − 𝜏 ⟺ 𝑒(𝑠)𝑒 !!" Static Time-­β€response In some cases we want to find the constant value 𝑦! of the time response when the time 𝑑 → ∞. We can then use the final value theorem (“sluttverditeoremet”): 𝑦! = lim 𝑦 𝑑 = lim 𝑠 βˆ™ 𝑦(𝑠) !→!
!→!
MathScript MathScript has several functions for creating transfer functions: Function tf Sys_order1 Sys_order2 step Description Example Creates system model in transfer function form. You also can use this function to state-­β€space models to transfer function form. Constructs the components of a first-­β€order system model based on a gain, time constant, and delay that you specify. You can use this function to create either a state-­β€space model or a transfer function model, depending on the output parameters you specify. Constructs the components of a second-­β€order system model based on a damping ratio and natural frequency you specify. You can use this function to create either a state-­β€space model or a transfer function model, depending on the output parameters you specify. Creates a step response plot of the system model. You also can use this function to return the step response of the model outputs. If the model is in state-­β€space form, you also can use this function to return the step response of the model states. This function assumes the initial model states are zero. If you do not specify an output, this function creates a plot. Example: Given the following transfer function: 𝐻 𝑠 =
1
𝑠+1
In MathScript we will use the following code: % Define Transfer function
num = [1];
den = [1, 1];
EE4107 -­β€ Cybernetics Advanced >num=[1];
>den=[1, 1, 1];
>H = tf(num, den)
>K = 1;
>tau = 1;
>H = sys_order1(K, tau)
>dr = 0.5
>wn = 20
>[num, den] = sys_order2(wn, dr)
>SysTF = tf(num, den)
>num=[1,1];
>den=[1,-1,3];
>H=tf(num,den);
>t=[0:0.01:10];
>step(H,t);
3 H = tf(num, den)
% Step Response
step(H)
This gives the following step response: A general transfer function can be written on the following general form: 𝐻 𝑠 =
π‘›π‘’π‘šπ‘’π‘Ÿπ‘Žπ‘‘π‘œπ‘Ÿ(𝑠)
𝑏! 𝑠 ! + 𝑏!!! 𝑠 !!! + β‹― + 𝑏! 𝑠 + 𝑏!
=
π‘‘π‘’π‘›π‘œπ‘šπ‘–π‘›π‘Žπ‘‘π‘œπ‘Ÿ(𝑠)
π‘Ž! 𝑠 ! + π‘Ž!!! 𝑠 !!! + β‹― + π‘Ž! 𝑠 + π‘Ž!
The Numerators of transfer function models describe the locations of the zeros of the system, while the Denominators of transfer function models describe the locations of the poles of the system. In MathScript we can define such a transfer function using the built-­β€in tf function as follows: num = [bm, bm_1, bm_2, … , b1, b0];
den = [an, an_1, an_2, … , a1, a0];
H = tf(num, den)
Task 1: Differential equations to Transfer functions Task 1.1 Given the following differential equation: π‘₯ = −0.5π‘₯ + 2𝑒 Find the following transfer function: EE4107 -­β€ Cybernetics Advanced 4 𝐻 𝑠 =
π‘₯(𝑠)
𝑒(𝑠)
Task 1.2 Given the following 2.order differential equation: 𝑦 + 𝑦 + 5𝑦 = 5π‘₯ Find the following transfer function: 𝐻 𝑠 =
𝑦(𝑠)
π‘₯(𝑠)
Task 2: Transfer functions to differential equatons Given the following system: 𝐻 𝑠 =
π‘₯(𝑠)
3
=
𝑒(𝑠) 0.5𝑠 + 1
Task 2.1 Find the differential equation from the transfer function above. Task 2.2 Draw a block diagram of the system. Task 3: 2.order system Given the following transfer function: 𝐻 𝑠 =
𝑦(𝑠)
2𝑠 + 3
= !
𝑒(𝑠) 𝑠 + 4𝑠 + 3
Task 3.1 Find the differential equation for the system. Task 4: Static Time-­β€response Task 4.1 Given the following system: 𝐻(𝑠) =
𝑦(𝑠)
3
=
𝑒(𝑠) 2𝑠 + 1
EE4107 -­β€ Cybernetics Advanced 5 Find the static time-­β€response. We will use a step for the control signal (𝑒 𝑑 = 1). Note! The Laplace Transformation pair for a step is as follows: 1
⇔ 1 𝑠
Task 4.2 Given the following system: 𝐻(𝑠) =
𝑦(𝑠)
6(𝑠 + 1)
=
𝑒(𝑠) 9𝑠 + 0.25
Find the static time-­β€response. We will use a step for the control signal (𝑒 𝑑 = 1). Task 5: 1.order transfer functions Given the following system: 𝐻(𝑠) =
𝑦(𝑠)
2
=
𝑒(𝑠) 4𝑠 + 1
Task 5.1 What are the values for the gain 𝐾 and the time constant 𝑇 for this system? Sketch the step response for the system using “pen and paper”. Find the step response using MathScript and compare the result with your sketch. Task 5.2 Find the differential equation from the transfer function above and draw a block diagram of the system (“pen and paper”). Task 5.3 From the block diagram in Task 1.2, find the transfer function 𝐻 (𝑠) =
(The answer shall of course be 𝐻 (𝑠) =
!(!)
!(!)
=
!
!!!!
!(!)
!(!)
) Task 5.4 Find the solution for the differential equation (𝑦(𝑑)) and plot it (“pen and paper”). EE4107 -­β€ Cybernetics Advanced 6 We will use a step for the control signal (𝑒 𝑑 = 1). Note! The Laplace Transformation pair for a step is as follows: 1
⇔ 1 𝑠
Tip! You also need to use the following Laplace transform pair: 𝐾
⇔ 𝐾(1 − 𝑒 !!/! ) 𝑇𝑠 + 1 𝑠
Compare to the results from Task 1.1. Task 6: Transfer functions in MathScript Define the following transfer functions in MathScript. Task 6.1 Given the following transfer function: 𝐻(𝑠) =
2𝑠 ! + 3𝑠 + 4
5𝑠 + 9
𝐻(𝑠) =
4𝑠 ! + 3𝑠 + 4
5𝑠 ! + 9
𝐻(𝑠) =
7 + 3𝑠 + 2𝑠 !
5𝑠 + 6𝑠 !
Task 6.2 Given the following transfer function: Task 6.3 Given the following transfer function: Task 7: Differential equations to Transfer functions Task 7.1 Given the following differential equation: π‘₯ = −0.5π‘₯ + 2𝑒 Find the following transfer function: EE4107 -­β€ Cybernetics Advanced 7 𝐻 𝑠 =
π‘₯(𝑠)
𝑒(𝑠)
Task 8: PI Controller A PI controller is defined as: 𝑒(𝑑) = 𝐾! 𝑒 +
𝐾!
𝑇!
!
!
π‘’π‘‘πœ Where u is the controller output and 𝑒 is the control error: 𝑒 𝑑 = π‘Ÿ 𝑑 − 𝑦(𝑑) Task 8.1 Find the transfer function for the PI Controller: 𝐻! 𝑠 =
𝑒(𝑠)
𝑒(𝑠)
Additional Resources •
http://home.hit.no/~hansha/?lab=mathscript
Here you will find tutorials, additional exercises, etc.
EE4107 -­β€ Cybernetics Advanced 
Download