Construction of block diagram with multiple summing junction and disturbance for simulation with lsim

1 次查看(过去 30 天)
Please consider that I want to know how to simulate the system using the lsim command, and not in Simulink
block.png
The block diagram without the disturbance can be realized by something like
F1 = tf(Kp,1);
F2 = tf([Kd,1], 1);
F3 = tf(1, [1, 1, 0]);
F1.u = 'u1';
F2.u = 'y';
F3.u = 'u3';
F1.y = 'y1';
F2.y = 'y2';
F3.y = 'y';
S1 = sumblk('u1 = r - y');
S2 = sumblk('s = y1 - y2');
S3 = sumblk('u3 = s - d');
T = connect(F1,F2,F3,S1, S2, S3, 'r', 'y');
but how do I include the disturbance 'd' ?

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Linear Model Identification 的更多信息

产品


版本

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by