How To Find The Transfer Function of A System
How To Find The Transfer Function of A System
org
CONTROL SYSTEMS
Recent Comments
How to nd the transfer function
of a system Anthony Stark on How to
calculate the torque capacity
of a clutch
In control engineering and control theory the transfer function of a
Sam Hemesley on The
system is a very common concept. A transfer function is determined pressure-volume (pV)
using Laplace transform and plays a vital role in the development of the diagram and how work is
automatic control systems theory. produced in an ICE
how to nd the transfer function of a SISO system starting from Alexander Yudell on How to
the ordinary differential equation calculate the torque capacity
how to simulate a transfer function in an Xcos block diagram of a clutch
how to simulated a transfer function using Scilab dedicated
herve Bernad on What is a
functions signal ?
Loading [MathJax]/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Main.js
where:
https://x-engineer.org/graduate-engineering/signals-systems/control-systems/find-transfer-function-system/ 1/11
18/10/2020 How to find the transfer function of a system – x-engineer.org
u(t) – input
y(t) – output Recent Posts
Both input and output are variable in time. A system with only one input
and output is called SISO (Single Input Single Output) system. Control Linear interpolation and
extrapolation with calculator
theory also applies to MIMO (Multi Input Multi Output) systems, but for
an easier understanding of the concept we are going to refer only to Vehicle acceleration and
SISO systems. performance online
calculator
The simplest representation of a system is through Ordinary Differential
How to calculate wheel and
Equation (ODE). When dealing with ordinary differential equations, the
vehicle speed from engine
dependent variables are function of a positive real variable t (often speed
time). By applying Laplace’s transform we switch from a function of
time to a function of a complex variable s (frequency) and the How to calculate the centroid
of an area
differential equation becomes an algebraic equation.
Random password generator
with algorithm
Categories
The transfer function de nes the relation between the output and the
input of a dynamic system, written in complex form (s variable). For a Select Category
dynamic system with an input u(t) and an output y(t), the transfer
function H(s) is the ratio between the complex representation (s
variable) of the output Y(s) and input U(s). Pages
About
Contact
Cookie Policy
For a better understanding we are going to have a look at two example,
Privacy Policy
two dynamic systems, for which we are going to nd (determine) their
transfer functions. These systems are: Terms and Conditions
https://x-engineer.org/graduate-engineering/signals-systems/control-systems/find-transfer-function-system/ 2/11
18/10/2020 How to find the transfer function of a system – x-engineer.org
\begin{split} \mathcal {L} [f(t)] &= F(s)\\ \mathcal {L} [f'(t)] &= sF(s)-
f(0)\\ \mathcal {L} [f”(t)] &= s^2F(s)-sf(0)-f'(0) \end{split}
Mechanical system
Example. Find the transfer function for a single translational mass
system with spring and damper.
The methodology for nding the equation of motion for this is system is
described in detail in the tutorial Mechanical systems modeling using
Newton’s and D’Alembert equations.
m [kg] – mass
k [N/m] – spring constant (stiffness)
c [Ns/m] – damping coe cient
F [N] – external force acting on the body (input)
x [m] – displacement of the body (output)
The input of the system is the external force F(t) and the output is the
displacement x(t). First we’ll apply the Laplace transform to each of the
terms of the equation (1):
\begin{split} \mathcal {L} \left [ \frac{d^2 x(t)}{dt^2} \right ] &= s^2 X(s)-
sx(0)- \frac{dx(0)}{dt}\\ \mathcal {L} \left [ \frac{d x(t)}{dt} \right ] &= s
X(s)-x(0)\\ \mathcal {L} \left [ x(t) \right ] &= X(s)\\ \mathcal {L} [F(t)] &=
F(s)\\[MathJax]/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Main.js
Loading \end{split}
https://x-engineer.org/graduate-engineering/signals-systems/control-systems/find-transfer-function-system/ 3/11
18/10/2020 How to find the transfer function of a system – x-engineer.org
m = 2; // [kg]
c = 1; // [Ns/m]
k = 2; // [N/m]
Loading [MathJax]/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Main.js
https://x-engineer.org/graduate-engineering/signals-systems/control-systems/find-transfer-function-system/ 4/11
18/10/2020 How to find the transfer function of a system – x-engineer.org
// Define system parameters
m = 2; // [kg]
c = 1; // [Ns/m]
k = 2; // [N/m]
https://x-engineer.org/graduate-engineering/signals-systems/control-systems/find-transfer-function-system/ 5/11
18/10/2020 How to find the transfer function of a system – x-engineer.org
Electrical system
Example. Find the transfer function of a series RL circuit connected to a
continuous current voltage source.
The methodology
Loading for nding the electrical current equation
[MathJax]/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Main.js for the
system is described in detail in the tutorial RL circuit – detailed
https://x-engineer.org/graduate-engineering/signals-systems/control-systems/find-transfer-function-system/ 6/11
18/10/2020 How to find the transfer function of a system – x-engineer.org
mathematical analysis.
R [Ω] – resistance
L [H] – inductance
u [V] – voltage drop across the circuit
i [A] – electrical current through the circuit
The input of the system is the voltage u(t) and the output is the
electrical current i(t). First we’ll apply the Laplace transform to each of
the terms of the equation (2):
i(0) = 0
Replacing the Laplace transforms and initial conditions in the equation
(2) gives:
\begin{split} U(s) &= LsI(s)+RI(s)\\ U(s) &= I(s) \left ( Ls + R \right )\\
\frac{I(s)}{U(s)} &= \frac{1}{Ls + R} \end{split}
We have now found the transfer function of the series RL circuit:
https://x-engineer.org/graduate-engineering/signals-systems/control-systems/find-transfer-function-system/ 7/11
18/10/2020 How to find the transfer function of a system – x-engineer.org
E = 12; // [V]
R = 0.3; // [Ohm]
L = 0.04; // [H]
and running the Xcos simulation for 2 s , gives the following graphical
window:
// Define system parameters
E = 12; // [V]
R = 0.3; // [Ohm]
L = 0.04; // [H]
https://x-engineer.org/graduate-engineering/signals-systems/control-systems/find-transfer-function-system/ 9/11
18/10/2020 How to find the transfer function of a system – x-engineer.org
For any questions, observations and queries regarding this article, use
the comment form below.
4 Comments
Mel Pama
How to convert this result into the ABCD matrix and the associated
Matrix of each Impedance in the circuit to obtain the output matrix for
the H(w) components?
suraj
magic badza
enrico_ita
Loading [MathJax]/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Main.js
https://x-engineer.org/graduate-engineering/signals-systems/control-systems/find-transfer-function-system/ 10/11
18/10/2020 How to find the transfer function of a system – x-engineer.org
Leave a Reply
Comment Text*
Name*
Email*
Website
No soy un robot
reCAPTCHA
Privacidad - Condiciones
x-engineer.org
Engineering Tutorials
Loading [MathJax]/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Main.js
https://x-engineer.org/graduate-engineering/signals-systems/control-systems/find-transfer-function-system/ 11/11