Info
此问题已关闭。 请重新打开它进行编辑或回答。
Identical models in MATLAB and Simulink do not match each other
2 次查看(过去 30 天)
显示 更早的评论
I am noticing that discrete-time models I am using in Simulink do not match the same response in the Matlab environment.
For example.
sys = tf([3.332 4.679], [1 30.97 45.5], 'OutputDelay', 0.1);
sysd100 = c2d(sys,0.01)
sysd200 = c2d(sys,0.005)
figure;
opt = stepDataOptions('StepAmplitude',200);
step(sys, opt), grid on; hold on;
step(sysd100, opt); hold on; step(sysd200, opt);
sys is my continuous transfer function, sysd100 is the same function sampled at 100 Hz and sysd200 is sampled at 200 Hz. The step response is expected. I then reproduces the same transfer functions into Simulink, but am getting the following results
I am not an expert in Simulink so I ask the community on what would be the reason for this behaviour.
Thank you, Daniel
0 个评论
回答(1 个)
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!