Bode plot from transfer function looks wrong

조회 수: 19 (최근 30일)
Andrew
Andrew 2019년 9월 4일
댓글: Andrew 2019년 9월 4일
I'm trying to create a Bode plot for the transfer function for a Multiple Feedback Filter. It's a frequency sensitive filter.
The problem is, my bode plot does not have the correct resonant/midfrequency which should be 1000Hz.
I know my transfer function is right because it can be found elsewhere online and using online bode plotters spits out my own transfer function and the correct Bode plot.
My code:
% Bode plot for 1000Hz
R_1 = 1500;
R_2 = 3300;
R_3 = 12000;
C = .047*10^-6;
s_numerator = -1/(R_1*C);
s2_denom = 1;
s1_denom = 2/(R_3*C);
s0_denom = (1+(R_1/R_2))/(R_1*R_3*(C^2));
H1 = tf ([s_numerator 0],[s2_denom s1_denom s0_denom])% "tf' Creates object representing
bode(H1)
grid on
I know H1 gives me the right transfer function but then when I use the bode operation on H1 the plot is all messed up.
MATLAB transfer function and Bode plot:
As you can see, the Bode plot is not centered at as it should be.
Graphed online using OKAWA Electrical Design:
As you can see, the band pass is centered at 1kHz as it should be and its transfer function is nearly the same transfer function as MATLAB gave me:
What is wrong with my MATLAB code?

채택된 답변

Raj
Raj 2019년 9월 4일
"What is wrong with my MATLAB code?" - Absolutely nothing!
Your Bode plot 'x' axis in in rad/sec and the online graph is in Hz. Right click on your bode plot go to property, under 'units' change frequency to Hz. Cheers!

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Get Started with Control System Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by