Why doesn't magnitude plot from simulated output match my transfer function's expected bode plot?

2 次查看(过去 30 天)
Hi all,
I have a transfer function. I can create its bode plot. I should be able to reproduce this plot by averaging the frequency-converted time-response from many simulations of the system. However, when I do so, the results don't match up.
My code is given below. I create transfer function object, get its bode plot, and then run simulations with random input data in an attempt to reproduce the bode plot. Any idea why this isn't working?
Thanks!
Code:
sys=tf([.073 0 0 0], [1 357/250 259899/250000 71393/2500000 39993/100000000 1407/500000000 1/100000000]);
% Bode Plot (Magnitude)
figure(1);
bodemag(sys);
axis([.001 10 -140 20])
% Simulation parameters
fs = 100; % Sampling frequency (Hz)
L = fs*1000; % Number of samples
t = 0: 1/fs : 1000-1/fs; % time vector
f = 0 : fs/L : fs/2; % frequency range
avg_out = zeros(L/2+1,1); % intialize avg output
avg_in = zeros(L/2+1,1); % intialize avg input
% Run 1000 simulations and take the average results
for i = 1:100
% Simulation
input = randn(L, 1); % random input
[y,t] = lsim(sys, input, t); % time-response
% Output
Y = abs(fft(y))/L; % FFT and scale
avg_out = avg_out + mag2db(4*Y(1:end/2+1)); % convert to dB, accumulate
end
avg_in = avg_in / i; % compute average input
avg_out = avg_out / i; % compute average output
% Plot avg output
figure(4); semilogx(f,avg_out);
axis([.001 10 -140 20])
title('Average Frequency Response')
xlabel('Frequency (Hz)')
ylabel('Magnitude (dB)')
  2 个评论
Arkadiy Turevskiy
Arkadiy Turevskiy 2014-3-21
Can you explain what you are trying to do, or, to be more precise, why are you doing this? Is this for checking the bode command in MATLAB works correctly, or are you just trying to learn how to compute frequency response using FFTs? Is there any practical purpose for this, or is this a purely academic exercise?
Edward
Edward 2014-3-25
编辑:Edward 2014-3-25
This is an exercise in verification. I have noise parameters that I'm modeling with a transfer function that I derived. The bode plot looks correct - but that's not enough. I need to be sure that the generated noise reflects what I intended when I designed my model.

请先登录,再进行评论。

采纳的回答

Arkadiy Turevskiy
Arkadiy Turevskiy 2014-3-25
I don't think you can expect to match bode plot magnitude by taking ffts of random signals like that. Bode plot magnitude represents a gain at a particular frequency if you feed a sine wave in. You are feeding in random signals where nothing is at "steady-state".
  2 个评论
Edward
Edward 2014-3-25
I had thought about this as well - that my input is not what the bode plot uses for input. So perhaps if I plotted average magnitude of sinusoid-response, I might get a better match?

请先登录,再进行评论。

更多回答(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