Filter löschen
Filter löschen

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

2 Ansichten (letzte 30 Tage)
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' ?

Antworten (0)

Kategorien

Mehr zu Linear Model Identification finden Sie in Help Center und File Exchange

Produkte


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by