You are on page 1of 6

I used MATLAB Simulink to get the transfer functions of the given circuits.

First of all I

develop the model of given circuits on Simulink and then perform linear analysis on the system

to get the transfer function.

PROBLEM 2.18

For part a

OUTPUT

Linear Analysis
Transfer Function

We can see that term s2 in numerator is very small and can be neglected and the remaining

transfer function is consistent with our calculated transfer function.

Part b

OUTPUT

Linear Analysis
Transfer Function

PROBLEM 2.20

Part a
OUTPUT

Linear Analysis

Transfer Function
Part b

OUTPUT

LINEAR ANALYSIS

Transfer Function
Problem 2.25

clc
syms s
m1 = 1;
m2 = 1;
k = 1;
b = 1;

G=(k+b*s)/((s^2*m1+b*s+k)*(s^2*m2+b*s+k)-(k+b*s)^2)

Output

G=

(s + 1)/((s^2 + s + 1)^2 - (s + 1)^2)

You might also like