0% found this document useful (0 votes)
49 views6 pages

Meng 375 Assignment

The document is a student assignment submission for a mechanical systems course. It contains 3 sections with MATLAB scripts and results from analyzing different transfer functions: 1) A second order system with a step response, 2) A second order system with an impulse response, 3) Two fifth order systems with step responses, one with a zero at the end of the denominator. The assignment is submitted by Mohamed Abdelmeguid for Professor Maki Habib.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
49 views6 pages

Meng 375 Assignment

The document is a student assignment submission for a mechanical systems course. It contains 3 sections with MATLAB scripts and results from analyzing different transfer functions: 1) A second order system with a step response, 2) A second order system with an impulse response, 3) Two fifth order systems with step responses, one with a zero at the end of the denominator. The assignment is submitted by Mohamed Abdelmeguid for Professor Maki Habib.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 6

School of Sciences and Engineering

Department of Mechanical Engineering

3705
Mechanical Systems
Assignment (3)
Submitted
To:
Prof. Maki K. Habib
By:
1. Mohamed Abdelmeguid
Due Date:

02/04/2015
Submitted Date:

02/04/2015

900112983

Section 1:
1) Matlab Script:
clc
clear all
num = [1]
den = [3, 8, 120]
syst = tf(num,den)
step(2*syst)
2) Matlab execution:

num =
1
den =
3

120

Transfer function:
1
----------------3 s^2 + 8 s + 120

3)

2)
matlab script:
clc
clear all
num = [320]
den = [1, 8, 64]
syst = tf(num,den)
impulse(syst)

matlab result:
num =
320
den =
1

64

Transfer function:
320
-------------s^2 + 8 s + 64

Section 3:
a)
matlab script:
num = [300, 600];
den = [1, 87, 710, 1350, 600];
syst = tf(num,den)
step(syst)
num = [300, 600];
den = [1, 87, 710, 1350, 600, 0];
syst = tf(num,den)
step(syst)
matlab result:
Transfer function:
300 s + 600
------------------------------------s^4 + 87 s^3 + 710 s^2 + 1350 s + 600

Transfer function:
300 s + 600
----------------------------------------s^5 + 87 s^4 + 710 s^3 + 1350 s^2 + 600 s

You might also like