Clear Filters
Clear Filters

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

1 view (last 30 days)
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' ?

Answers (0)

Categories

Find more on Linear Model Identification in Help Center and File Exchange

Products


Release

R2018b

Community Treasure Hunt

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

Start Hunting!