SlideShare a Scribd company logo
2
Most read
3
Most read
4
Most read
Group:-6A 5
1
Lab:03 Transfer Function of Mechanical
Systems .
Task: For the Mechanical System Shown in Figure#1.Find the Transfer Function.
. .
Here in Figure#1
M1= M3=1kg , M2=1.5kg. K1= K2= K3=1N/m . D=0.2Ns/m.
And also find Step response and Impulse response using MATLAB.
Group:-6A 5
2
Solution For Task
o Mathematical Equations:- Table#1
For Mass1:-
F = M1 ̈ + k1 x1+ k2 (x1- x2)
= M1 ̈ + k1 x1+ k2x1-k2x2
= ̈ (M1) + x1(k1+ k2)- x2(k2)
For Mass3:-
0 = M3 ̈ +D ̇ + k3 (x3- x2) + k4 x3
= M3 ̈ +D ̇ + k3 x3- k3 x2+ k4 x3
= ̈ (M3) +D ̇ + x3(k3+ k4)- x2(k3)
For Mass2:-
0 = M2 ̈ + k2 (x2- x1) + k3 (x2- x3)
= M2 ̈ + k2 x2- k2 x1+ k3 x2- k3 x3
= ̈ (M2) + x2(k2+ k3)- x1(k2)- x3(k3)
o Transfer Function Equations:- Table#2
For Mass1:-
F = X1(s)[ M1s2
+ k1+ k2]- X2(s)[ k2]
For Mass3:-
0 = -X2(s)[ k3]+ X3(s)[ M3s2
+Ds + k3+ k4]
For Mass2:-
0 = -X1(s)[ k2]+ X2(s)[ M2s2
+ k2+ k3]
- X3(s)[ k3]
 Putting values of Mases ,Springs and Damper given in Eq(1), Eq(2), Eq(3).
F = X1(s)[ s2
+ 2]- X2(s)+0 --------------------------Eq(1)
0 = -X1(s)+ X2(s)[1.5s2
+2] - X3(s) --------------------------Eq(2)
0 = 0-X2(s)+ X3(s)[s2
+0.2s+2] --------------------------Eq(3)
o In Matrix Form in MATLAB
[ s^2 + 2, -1, 0]
[ -1, (3*s^2)/2 + 2, -1]
[ 0, -1, s^2 + s/5 + 2]
Group:-6A 5
3
o Code of Task In MATLAB
syms s F X x1 x2 x3 f
X=[x1; x2; x3]
F=[f; 0; 0]
z=[s^2+2 -1 0; -1 1.5*s^2+2 -1; 0 -1 s^2+0.2*s+2]
ZIN=inv(z)
X=ZIN*F
x1=X(1)/f
x2=X(2)/f
x3=X(3)/f
[n1,d1]=numden(x1)
[n2,d2]=numden(x2)
[n3,d3]=numden(x3)
num1=sym2poly(n1);
num2=sym2poly(n2);
num3=sym2poly(n3);
den1=sym2poly(d1);
den2=sym2poly(d2);
den3=sym2poly(d3);
g1=tf(num1,den1);
g2=tf(num2,den2);
g3=tf(num3,den3);
figure
subplot(2,1,1)
step(g1)
title('Step(x1)')
subplot(2,1,2)
impulse(g1)
title('Impulse(x1)')
figure
subplot(2,1,1)
step(g2)
title('Step(x2)')
subplot(2,1,2)
impulse(g2)
title('Impulse(x2)')
Group:-6A 5
4
figure
subplot(2,1,1)
step(g3)
title('Step(x3)')
subplot(2,1,2)
impulse(g3)
title('Impulse(x3)')
o Code Result In Command Window
X =
x1
x2
x3
F =
f
0
0
z =
[ s^2 + 2, -1, 0]
[ -1, (3*s^2)/2 + 2, -1]
[ 0, -1, s^2 + s/5 + 2]
ZIN =
[ (15*s^4 + 3*s^3 + 50*s^2 + 4*s + 30)/(15*s^6 + 3*s^5 + 80*s^4 + 10*s^3 + 120*s^2 + 6*s
+ 40), (2*(5*s^2 + s + 10))/(15*s^6 + 3*s^5 + 80*s^4 + 10*s^3 + 120*s^2 + 6*s + 40),
10/(15*s^6 + 3*s^5 + 80*s^4 + 10*s^3 + 120*s^2 + 6*s + 40)]
[ (2*(5*s^2 + s + 10))/(15*s^6 + 3*s^5 + 80*s^4 + 10*s^3 + 120*s^2 + 6*s + 40), (2*(s^2 +
2)*(5*s^2 + s + 10))/(15*s^6 + 3*s^5 + 80*s^4 + 10*s^3 + 120*s^2 + 6*s + 40),
(10*(s^2 + 2))/(15*s^6 + 3*s^5 + 80*s^4 + 10*s^3 + 120*s^2 + 6*s + 40)]
[10/(15*s^6 + 3*s^5 + 80*s^4 + 10*s^3 + 120*s^2 + 6*s + 40), (10*(s^2 +
2))/(15*s^6 + 3*s^5 + 80*s^4 + 10*s^3 + 120*s^2 + 6*s + 40), (5*(3*s^4 + 10*s^2 +
6))/(15*s^6 + 3*s^5 + 80*s^4 + 10*s^3 + 120*s^2 + 6*s + 40)]
X =
(f*(15*s^4 + 3*s^3 + 50*s^2 + 4*s + 30))/(15*s^6 + 3*s^5 + 80*s^4 + 10*s^3 + 120*s^2 +
6*s + 40) (2*f*(5*s^2 + s + 10))/(15*s^6 + 3*s^5 + 80*s^4 + 10*s^3 + 120*s^2 + 6*s + 40)
(10*f)/(15*s^6 + 3*s^5 + 80*s^4 + 10*s^3 + 120*s^2 + 6*s + 40)
Group:-6A 5
5
 Transfer Function Equations x1,x2,x3
x1 =
(15*s^4 + 3*s^3 + 50*s^2 + 4*s + 30)/(15*s^6 + 3*s^5 + 80*s^4 + 10*s^3 + 120*s^2 + 6*s +
40)
x2 =
(2*(5*s^2 + s + 10))/(15*s^6 + 3*s^5 + 80*s^4 + 10*s^3 + 120*s^2 + 6*s + 40)
x3 =
10/(15*s^6 + 3*s^5 + 80*s^4 + 10*s^3 + 120*s^2 + 6*s + 40)
 Numenators and Denominators of Tarnsfer Equation x1,x2,x3
n1 =
15*s^4 + 3*s^3 + 50*s^2 + 4*s + 30
d1 =
15*s^6 + 3*s^5 + 80*s^4 + 10*s^3 + 120*s^2 + 6*s + 40
n2 =
10*s^2 + 2*s + 20
d2 =
15*s^6 + 3*s^5 + 80*s^4 + 10*s^3 + 120*s^2 + 6*s + 40
n3 =
10
d3 =
15*s^6 + 3*s^5 + 80*s^4 + 10*s^3 + 120*s^2 + 6*s + 40
Group:-6A 5
6
o Step Response and Impulse Response of Transfer Function Equations
Figure#1.1
Figure#1.2
Group:-6A 5
7
Figure#1.3
Conclusion:-
There are two types of responces:
1) Impulse Response: It is the reaction of any dynamic system in response to
some external change in very short time (approximately zero).
2) Step Response: The response or change of a system while giving it
continous input (constant input).
 When we applied impulse to our system, it gives us impulse response at
that time which is observed in figures (1.1, 1.2 and 1.3).
 When step input is given to the system, we got step response of our
system which is also observed in figures (1.1, 1.2 and 1.3).
 As force is directly applied on M1 so the step response of system 1 is
maximum. i-e nearly around 1.

More Related Content

PPTX
Second order systems
Aditee Apurvaa
 
PPTX
ROOT-LOCUS METHOD, Determine the root loci on the real axis /the asymptotes o...
Waqas Afzal
 
PPTX
Lecture 8-9 block-diagram_representation_of_control_systems
Saifullah Memon
 
PPTX
block diagram representation of control systems
Ahmed Elmorsy
 
PPTX
modeling of MECHANICAL system (translational), Basic Elements Modeling-Spring...
Waqas Afzal
 
PDF
Modern Control - Lec 06 - PID Tuning
Amr E. Mohamed
 
PDF
Matlab solved problems
Make Mannan
 
PDF
Modern Control - Lec 02 - Mathematical Modeling of Systems
Amr E. Mohamed
 
Second order systems
Aditee Apurvaa
 
ROOT-LOCUS METHOD, Determine the root loci on the real axis /the asymptotes o...
Waqas Afzal
 
Lecture 8-9 block-diagram_representation_of_control_systems
Saifullah Memon
 
block diagram representation of control systems
Ahmed Elmorsy
 
modeling of MECHANICAL system (translational), Basic Elements Modeling-Spring...
Waqas Afzal
 
Modern Control - Lec 06 - PID Tuning
Amr E. Mohamed
 
Matlab solved problems
Make Mannan
 
Modern Control - Lec 02 - Mathematical Modeling of Systems
Amr E. Mohamed
 

What's hot (20)

PDF
Romberg’s method
Jennifer Cabrera
 
TXT
Finite difference Matlab Code
Taimoor Muzaffar Gondal
 
DOCX
Chapter 5 failure theories final
Khalil Alhatab
 
PPTX
Don't care conditions
Grishma Maravia
 
PDF
Reduction of multiple subsystem [compatibility mode]
azroyyazid
 
PDF
Solutions manual for fundamentals of aerodynamics 6th edition by anderson
fivesu
 
PDF
My Report on adders
Peeyush Pashine
 
PPT
KMAP
princy75
 
PPTX
Routh hurwitz stability criterion
Souvik Dutta
 
PDF
Numerical Methods for Engineers 7th Edition Chapra Solutions Manual
ForemanForemans
 
PDF
Point Collocation Method used in the solving of Differential Equations, parti...
Suddhasheel GHOSH, PhD
 
PPT
laplace transform and inverse laplace, properties, Inverse Laplace Calculatio...
Waqas Afzal
 
PDF
Inverse Laplace Transform
Vishnu V
 
DOCX
PID controller
Tsuyoshi Horigome
 
PDF
Lecture3
Ahmed Al-abdaly
 
PPTX
Es272 ch6
Batuhan Yıldırım
 
PDF
Laplace table
Alelign Hailu
 
PPTX
SFG and Mason's Gain Formula
priyankabirlaa
 
PPTX
Thomas algorithm
Paridhi SK
 
PDF
solution manual Design of Machinery: An Introduction to the Synthesis and Ana...
MichaelLeigh25
 
Romberg’s method
Jennifer Cabrera
 
Finite difference Matlab Code
Taimoor Muzaffar Gondal
 
Chapter 5 failure theories final
Khalil Alhatab
 
Don't care conditions
Grishma Maravia
 
Reduction of multiple subsystem [compatibility mode]
azroyyazid
 
Solutions manual for fundamentals of aerodynamics 6th edition by anderson
fivesu
 
My Report on adders
Peeyush Pashine
 
KMAP
princy75
 
Routh hurwitz stability criterion
Souvik Dutta
 
Numerical Methods for Engineers 7th Edition Chapra Solutions Manual
ForemanForemans
 
Point Collocation Method used in the solving of Differential Equations, parti...
Suddhasheel GHOSH, PhD
 
laplace transform and inverse laplace, properties, Inverse Laplace Calculatio...
Waqas Afzal
 
Inverse Laplace Transform
Vishnu V
 
PID controller
Tsuyoshi Horigome
 
Lecture3
Ahmed Al-abdaly
 
Laplace table
Alelign Hailu
 
SFG and Mason's Gain Formula
priyankabirlaa
 
Thomas algorithm
Paridhi SK
 
solution manual Design of Machinery: An Introduction to the Synthesis and Ana...
MichaelLeigh25
 
Ad

Similar to Mathematical Modelling of Electro-Mechanical System in Matlab (19)

PDF
Solution Manual : Chapter - 05 Integration
Hareem Aslam
 
PDF
Solutions manual for calculus an applied approach brief international metric ...
Larson612
 
PDF
resposta do capitulo 15
silvio_sas
 
PDF
Solution Manual : Chapter - 06 Application of the Definite Integral in Geomet...
Hareem Aslam
 
PDF
Analysis of Electro-Mechanical System
COMSATS Abbottabad
 
PDF
Ejerciciosderivadasresueltos
bellidomates
 
PDF
Math quota-cmu-g-455
Rungroj Ssan
 
PPT
L6_Large_number_multi.ppt large number multiplication
RaviSharma633042
 
PDF
Mathematical Modelling of Electrical/Mechanical modellinng in MATLAB
COMSATS Abbottabad
 
PDF
Tugas blog-matematika
Ari Bahri Lubis
 
PDF
Answers to Problems for Advanced Engineering Mathematics 6th Edition Internat...
solution9159
 
PDF
Csm chapters12
Pamela Paz
 
PDF
Solutions for Problems in "A First Course in Differential Equations" (11th Ed...
electricaleng2024
 
PDF
Cálculo ii howard anton - capítulo 16 [tópicos do cálculo vetorial]
Henrique Covatti
 
PDF
Per de matematica listo.
nohelicordero
 
PDF
35182797 additional-mathematics-form-4-and-5-notes
Wendy Pindah
 
PDF
Maths05
sansharmajs
 
PDF
9 chap
Anantha Bellary
 
Solution Manual : Chapter - 05 Integration
Hareem Aslam
 
Solutions manual for calculus an applied approach brief international metric ...
Larson612
 
resposta do capitulo 15
silvio_sas
 
Solution Manual : Chapter - 06 Application of the Definite Integral in Geomet...
Hareem Aslam
 
Analysis of Electro-Mechanical System
COMSATS Abbottabad
 
Ejerciciosderivadasresueltos
bellidomates
 
Math quota-cmu-g-455
Rungroj Ssan
 
L6_Large_number_multi.ppt large number multiplication
RaviSharma633042
 
Mathematical Modelling of Electrical/Mechanical modellinng in MATLAB
COMSATS Abbottabad
 
Tugas blog-matematika
Ari Bahri Lubis
 
Answers to Problems for Advanced Engineering Mathematics 6th Edition Internat...
solution9159
 
Csm chapters12
Pamela Paz
 
Solutions for Problems in "A First Course in Differential Equations" (11th Ed...
electricaleng2024
 
Cálculo ii howard anton - capítulo 16 [tópicos do cálculo vetorial]
Henrique Covatti
 
Per de matematica listo.
nohelicordero
 
35182797 additional-mathematics-form-4-and-5-notes
Wendy Pindah
 
Maths05
sansharmajs
 
Ad

More from COMSATS Abbottabad (20)

PDF
Kalman filter
COMSATS Abbottabad
 
PDF
Enterpreneurship
COMSATS Abbottabad
 
PPTX
Sine wave inverter
COMSATS Abbottabad
 
PPTX
Light Tracking Solar Panel
COMSATS Abbottabad
 
PDF
coding and burning program in FPGA
COMSATS Abbottabad
 
PDF
8 bit full adder
COMSATS Abbottabad
 
PDF
Fabrication process of Integrated Circuit (IC's)
COMSATS Abbottabad
 
DOCX
IMPLEMENTING ARITHMETIC INSTRUCTIONS IN EMU 8086
COMSATS Abbottabad
 
PDF
implementation of data instrucions in emu8086
COMSATS Abbottabad
 
PDF
Addition, subtraction and multiplication in assembly language
COMSATS Abbottabad
 
PDF
Introduction to MATLAB
COMSATS Abbottabad
 
PDF
Encoder + decoder
COMSATS Abbottabad
 
PDF
Principles of Communication
COMSATS Abbottabad
 
PDF
Aurduino coding for transformer interfacing
COMSATS Abbottabad
 
PDF
Transformer Interfacing with Laptop
COMSATS Abbottabad
 
PDF
Temperature control Switch and Display By Led
COMSATS Abbottabad
 
PPTX
stress and strain
COMSATS Abbottabad
 
PDF
Generating PM wave
COMSATS Abbottabad
 
PDF
Generating FM wave
COMSATS Abbottabad
 
PDF
Filter Designing
COMSATS Abbottabad
 
Kalman filter
COMSATS Abbottabad
 
Enterpreneurship
COMSATS Abbottabad
 
Sine wave inverter
COMSATS Abbottabad
 
Light Tracking Solar Panel
COMSATS Abbottabad
 
coding and burning program in FPGA
COMSATS Abbottabad
 
8 bit full adder
COMSATS Abbottabad
 
Fabrication process of Integrated Circuit (IC's)
COMSATS Abbottabad
 
IMPLEMENTING ARITHMETIC INSTRUCTIONS IN EMU 8086
COMSATS Abbottabad
 
implementation of data instrucions in emu8086
COMSATS Abbottabad
 
Addition, subtraction and multiplication in assembly language
COMSATS Abbottabad
 
Introduction to MATLAB
COMSATS Abbottabad
 
Encoder + decoder
COMSATS Abbottabad
 
Principles of Communication
COMSATS Abbottabad
 
Aurduino coding for transformer interfacing
COMSATS Abbottabad
 
Transformer Interfacing with Laptop
COMSATS Abbottabad
 
Temperature control Switch and Display By Led
COMSATS Abbottabad
 
stress and strain
COMSATS Abbottabad
 
Generating PM wave
COMSATS Abbottabad
 
Generating FM wave
COMSATS Abbottabad
 
Filter Designing
COMSATS Abbottabad
 

Recently uploaded (20)

PDF
Chad Ayach - A Versatile Aerospace Professional
Chad Ayach
 
PDF
Natural_Language_processing_Unit_I_notes.pdf
sanguleumeshit
 
PPT
Ppt for engineering students application on field effect
lakshmi.ec
 
PDF
Top 10 read articles In Managing Information Technology.pdf
IJMIT JOURNAL
 
PDF
settlement FOR FOUNDATION ENGINEERS.pdf
Endalkazene
 
PPTX
database slide on modern techniques for optimizing database queries.pptx
aky52024
 
PPTX
Chapter_Seven_Construction_Reliability_Elective_III_Msc CM
SubashKumarBhattarai
 
PDF
Zero Carbon Building Performance standard
BassemOsman1
 
PDF
LEAP-1B presedntation xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
hatem173148
 
PDF
July 2025: Top 10 Read Articles Advanced Information Technology
ijait
 
PPTX
22PCOAM21 Session 2 Understanding Data Source.pptx
Guru Nanak Technical Institutions
 
PPT
SCOPE_~1- technology of green house and poyhouse
bala464780
 
PDF
Packaging Tips for Stainless Steel Tubes and Pipes
heavymetalsandtubes
 
PDF
2010_Book_EnvironmentalBioengineering (1).pdf
EmilianoRodriguezTll
 
PPTX
Civil Engineering Practices_BY Sh.JP Mishra 23.09.pptx
bineetmishra1990
 
PDF
top-5-use-cases-for-splunk-security-analytics.pdf
yaghutialireza
 
PDF
Cryptography and Information :Security Fundamentals
Dr. Madhuri Jawale
 
PPTX
easa module 3 funtamental electronics.pptx
tryanothert7
 
PDF
dse_final_merit_2025_26 gtgfffffcjjjuuyy
rushabhjain127
 
PDF
2025 Laurence Sigler - Advancing Decision Support. Content Management Ecommer...
Francisco Javier Mora Serrano
 
Chad Ayach - A Versatile Aerospace Professional
Chad Ayach
 
Natural_Language_processing_Unit_I_notes.pdf
sanguleumeshit
 
Ppt for engineering students application on field effect
lakshmi.ec
 
Top 10 read articles In Managing Information Technology.pdf
IJMIT JOURNAL
 
settlement FOR FOUNDATION ENGINEERS.pdf
Endalkazene
 
database slide on modern techniques for optimizing database queries.pptx
aky52024
 
Chapter_Seven_Construction_Reliability_Elective_III_Msc CM
SubashKumarBhattarai
 
Zero Carbon Building Performance standard
BassemOsman1
 
LEAP-1B presedntation xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
hatem173148
 
July 2025: Top 10 Read Articles Advanced Information Technology
ijait
 
22PCOAM21 Session 2 Understanding Data Source.pptx
Guru Nanak Technical Institutions
 
SCOPE_~1- technology of green house and poyhouse
bala464780
 
Packaging Tips for Stainless Steel Tubes and Pipes
heavymetalsandtubes
 
2010_Book_EnvironmentalBioengineering (1).pdf
EmilianoRodriguezTll
 
Civil Engineering Practices_BY Sh.JP Mishra 23.09.pptx
bineetmishra1990
 
top-5-use-cases-for-splunk-security-analytics.pdf
yaghutialireza
 
Cryptography and Information :Security Fundamentals
Dr. Madhuri Jawale
 
easa module 3 funtamental electronics.pptx
tryanothert7
 
dse_final_merit_2025_26 gtgfffffcjjjuuyy
rushabhjain127
 
2025 Laurence Sigler - Advancing Decision Support. Content Management Ecommer...
Francisco Javier Mora Serrano
 

Mathematical Modelling of Electro-Mechanical System in Matlab

  • 1. Group:-6A 5 1 Lab:03 Transfer Function of Mechanical Systems . Task: For the Mechanical System Shown in Figure#1.Find the Transfer Function. . . Here in Figure#1 M1= M3=1kg , M2=1.5kg. K1= K2= K3=1N/m . D=0.2Ns/m. And also find Step response and Impulse response using MATLAB.
  • 2. Group:-6A 5 2 Solution For Task o Mathematical Equations:- Table#1 For Mass1:- F = M1 ̈ + k1 x1+ k2 (x1- x2) = M1 ̈ + k1 x1+ k2x1-k2x2 = ̈ (M1) + x1(k1+ k2)- x2(k2) For Mass3:- 0 = M3 ̈ +D ̇ + k3 (x3- x2) + k4 x3 = M3 ̈ +D ̇ + k3 x3- k3 x2+ k4 x3 = ̈ (M3) +D ̇ + x3(k3+ k4)- x2(k3) For Mass2:- 0 = M2 ̈ + k2 (x2- x1) + k3 (x2- x3) = M2 ̈ + k2 x2- k2 x1+ k3 x2- k3 x3 = ̈ (M2) + x2(k2+ k3)- x1(k2)- x3(k3) o Transfer Function Equations:- Table#2 For Mass1:- F = X1(s)[ M1s2 + k1+ k2]- X2(s)[ k2] For Mass3:- 0 = -X2(s)[ k3]+ X3(s)[ M3s2 +Ds + k3+ k4] For Mass2:- 0 = -X1(s)[ k2]+ X2(s)[ M2s2 + k2+ k3] - X3(s)[ k3]  Putting values of Mases ,Springs and Damper given in Eq(1), Eq(2), Eq(3). F = X1(s)[ s2 + 2]- X2(s)+0 --------------------------Eq(1) 0 = -X1(s)+ X2(s)[1.5s2 +2] - X3(s) --------------------------Eq(2) 0 = 0-X2(s)+ X3(s)[s2 +0.2s+2] --------------------------Eq(3) o In Matrix Form in MATLAB [ s^2 + 2, -1, 0] [ -1, (3*s^2)/2 + 2, -1] [ 0, -1, s^2 + s/5 + 2]
  • 3. Group:-6A 5 3 o Code of Task In MATLAB syms s F X x1 x2 x3 f X=[x1; x2; x3] F=[f; 0; 0] z=[s^2+2 -1 0; -1 1.5*s^2+2 -1; 0 -1 s^2+0.2*s+2] ZIN=inv(z) X=ZIN*F x1=X(1)/f x2=X(2)/f x3=X(3)/f [n1,d1]=numden(x1) [n2,d2]=numden(x2) [n3,d3]=numden(x3) num1=sym2poly(n1); num2=sym2poly(n2); num3=sym2poly(n3); den1=sym2poly(d1); den2=sym2poly(d2); den3=sym2poly(d3); g1=tf(num1,den1); g2=tf(num2,den2); g3=tf(num3,den3); figure subplot(2,1,1) step(g1) title('Step(x1)') subplot(2,1,2) impulse(g1) title('Impulse(x1)') figure subplot(2,1,1) step(g2) title('Step(x2)') subplot(2,1,2) impulse(g2) title('Impulse(x2)')
  • 4. Group:-6A 5 4 figure subplot(2,1,1) step(g3) title('Step(x3)') subplot(2,1,2) impulse(g3) title('Impulse(x3)') o Code Result In Command Window X = x1 x2 x3 F = f 0 0 z = [ s^2 + 2, -1, 0] [ -1, (3*s^2)/2 + 2, -1] [ 0, -1, s^2 + s/5 + 2] ZIN = [ (15*s^4 + 3*s^3 + 50*s^2 + 4*s + 30)/(15*s^6 + 3*s^5 + 80*s^4 + 10*s^3 + 120*s^2 + 6*s + 40), (2*(5*s^2 + s + 10))/(15*s^6 + 3*s^5 + 80*s^4 + 10*s^3 + 120*s^2 + 6*s + 40), 10/(15*s^6 + 3*s^5 + 80*s^4 + 10*s^3 + 120*s^2 + 6*s + 40)] [ (2*(5*s^2 + s + 10))/(15*s^6 + 3*s^5 + 80*s^4 + 10*s^3 + 120*s^2 + 6*s + 40), (2*(s^2 + 2)*(5*s^2 + s + 10))/(15*s^6 + 3*s^5 + 80*s^4 + 10*s^3 + 120*s^2 + 6*s + 40), (10*(s^2 + 2))/(15*s^6 + 3*s^5 + 80*s^4 + 10*s^3 + 120*s^2 + 6*s + 40)] [10/(15*s^6 + 3*s^5 + 80*s^4 + 10*s^3 + 120*s^2 + 6*s + 40), (10*(s^2 + 2))/(15*s^6 + 3*s^5 + 80*s^4 + 10*s^3 + 120*s^2 + 6*s + 40), (5*(3*s^4 + 10*s^2 + 6))/(15*s^6 + 3*s^5 + 80*s^4 + 10*s^3 + 120*s^2 + 6*s + 40)] X = (f*(15*s^4 + 3*s^3 + 50*s^2 + 4*s + 30))/(15*s^6 + 3*s^5 + 80*s^4 + 10*s^3 + 120*s^2 + 6*s + 40) (2*f*(5*s^2 + s + 10))/(15*s^6 + 3*s^5 + 80*s^4 + 10*s^3 + 120*s^2 + 6*s + 40) (10*f)/(15*s^6 + 3*s^5 + 80*s^4 + 10*s^3 + 120*s^2 + 6*s + 40)
  • 5. Group:-6A 5 5  Transfer Function Equations x1,x2,x3 x1 = (15*s^4 + 3*s^3 + 50*s^2 + 4*s + 30)/(15*s^6 + 3*s^5 + 80*s^4 + 10*s^3 + 120*s^2 + 6*s + 40) x2 = (2*(5*s^2 + s + 10))/(15*s^6 + 3*s^5 + 80*s^4 + 10*s^3 + 120*s^2 + 6*s + 40) x3 = 10/(15*s^6 + 3*s^5 + 80*s^4 + 10*s^3 + 120*s^2 + 6*s + 40)  Numenators and Denominators of Tarnsfer Equation x1,x2,x3 n1 = 15*s^4 + 3*s^3 + 50*s^2 + 4*s + 30 d1 = 15*s^6 + 3*s^5 + 80*s^4 + 10*s^3 + 120*s^2 + 6*s + 40 n2 = 10*s^2 + 2*s + 20 d2 = 15*s^6 + 3*s^5 + 80*s^4 + 10*s^3 + 120*s^2 + 6*s + 40 n3 = 10 d3 = 15*s^6 + 3*s^5 + 80*s^4 + 10*s^3 + 120*s^2 + 6*s + 40
  • 6. Group:-6A 5 6 o Step Response and Impulse Response of Transfer Function Equations Figure#1.1 Figure#1.2
  • 7. Group:-6A 5 7 Figure#1.3 Conclusion:- There are two types of responces: 1) Impulse Response: It is the reaction of any dynamic system in response to some external change in very short time (approximately zero). 2) Step Response: The response or change of a system while giving it continous input (constant input).  When we applied impulse to our system, it gives us impulse response at that time which is observed in figures (1.1, 1.2 and 1.3).  When step input is given to the system, we got step response of our system which is also observed in figures (1.1, 1.2 and 1.3).  As force is directly applied on M1 so the step response of system 1 is maximum. i-e nearly around 1.