0% found this document useful (0 votes)
9 views

MATlab 2

The document discusses using MATLAB Simulink to obtain transfer functions for various circuits. It develops circuit models in Simulink and performs linear analysis to extract the transfer functions. For two examples, it confirms the Simulink transfer functions match the calculated transfer functions. A third example uses symbolic math toolbox commands to derive a transfer function for a two-mass system.

Uploaded by

Naeem Gul
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views

MATlab 2

The document discusses using MATLAB Simulink to obtain transfer functions for various circuits. It develops circuit models in Simulink and performs linear analysis to extract the transfer functions. For two examples, it confirms the Simulink transfer functions match the calculated transfer functions. A third example uses symbolic math toolbox commands to derive a transfer function for a two-mass system.

Uploaded by

Naeem Gul
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 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