Implementing PID regulator in multiple output system
Show older comments
Hi,
I have a problem with implementing PID regulator in my university project. I have to regulate the system and I think that means regulating the position of both masses 1 and 2. I have a state spece model of system, simulink model for system without PID and simulink model with a probably incorrectly installed PID controller. I'm not sure if the responses are correct and I need advice.
Can someone check my attempt and explain how to implement a PID controller for my problem?
Thanks guys :D .
Problem

State space model

Simulink without PID

m1 without PID

m2 without PID

With PID

m1 with PID

m2 with PID

Accepted Answer
More Answers (2)
If you find the performances and tuning are acceptable, please consider voting 👍 the Answer. Thanks!
The Plants are 4th-order systems, but the PID is a 2nd-order compensator. Naturally, it is unable to satisfy all kinds of performance requirements. But we can try.
Since your Prof didn't specify the requirements, the PID gains are tuned across a range of the 0 dB gain crossover frequency
[wc] of the tuned open-loop
response to achieve the fastest settling time for the step response of
without high overshoot and oscillatory transient response.
You can try this range
if you want
to converge within 10 seconds.
m1 = 2;
m2 = 1;
k1 = 2;
k2 = 1;
c1 = 6;
c2 = 3;
A = [0 1 0 0; -(k1+k2)/m1 -(c1+c2)/m1 k2/m1 c2/m1; 0 0 0 1; k2/m2 c2/m2 -k2/m2 -c2/m2];
B = [0; 1/m1; 0; 0];
C = [1 0 0 0; 0 0 1 0];
D = zeros(2, 1);
sys = ss(A, B, C, D);
G = tf(sys);
% Plant transfer function of Y2(s)/U(s)
Gp = G(2)
% Design PIDF to achieve the shortest Settling Time for x2
wc = 3.5031;
Gc = pidtune(Gp, 'PIDF', wc)
% Closed-loop transfer function of Y2(s)/R(s)
Gcl2= minreal(feedback(Gc*Gp, 1))
% Closed-loop transfer function of Y1(s)/R(s)
Gcl1= minreal(feedback(Gc*G(1), 1))
S1 = stepinfo(Gcl1)
S2 = stepinfo(Gcl2)
Ts1 = S1.SettlingTime;
subplot(2, 1, 1)
step(Gcl1, round(3*Ts1)), grid on, title('Step Response of x_{1}')
subplot(2, 1, 2)
step(Gcl2, round(3*Ts1)), grid on, title('Step Response of x_{2}')
1 Comment
Nikola Smrecki
on 3 Sep 2022
Thanks for your vote. You can use the gensig() function to generate the sine wave input, and then use lsim() to produce the output responses.
% parameters
m1 = 2;
m2 = 1;
k1 = 2;
k2 = 1;
c1 = 6;
c2 = 3;
A = [0 1 0 0; -(k1+k2)/m1 -(c1+c2)/m1 k2/m1 c2/m1; 0 0 0 1; k2/m2 c2/m2 -k2/m2 -c2/m2];
B = [0; 1/m1; 0; 0];
C = [1 0 0 0; 0 0 1 0];
D = zeros(2, 1);
sys = ss(A, B, C, D);
G = tf(sys);
% Plant transfer function of Y2(s)/U(s)
Gp = G(2)
% Design PIDF to achieve the shortest Settling Time for x2
wc = 3.5031;
Gc = pidtune(Gp, 'PIDF', wc)
% Closed-loop transfer function of Y2(s)/R(s)
Gcl2= minreal(feedback(Gc*Gp, 1))
% Closed-loop transfer function of Y1(s)/R(s)
Gcl1= minreal(feedback(Gc*G(1), 1))
tau = 10; % one period cycle of the sine wave
[u, t] = gensig('sine', tau, 2*tau, 0.01);
subplot(2, 1, 1)
lsim(Gcl1, u, t), ylim([-1.5 1.5]), grid on, title('Step Response of x_{1}')
subplot(2, 1, 2)
lsim(Gcl2, u, t), ylim([-1.5 1.5]), grid on, title('Step Response of x_{2}')
Categories
Find more on Loop-Shaping Design in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

