필터 지우기
필터 지우기

Ziegler Nichols PID Method

조회 수: 60 (최근 30일)
LORIS IACOBAN
LORIS IACOBAN 2024년 3월 1일
답변: Sam Chak 2024년 5월 18일
Hi,
I have a problem ,this is my G(s)=59000/(s^2+59000)
I want to apply the tangent method of Ziegler-Nichols, but my step is a sinusoid undumped. How I can approximate my G(s) to apply this method? Thanks very much.
  댓글 수: 5
Fani
Fani 2024년 5월 17일
이동: Sam Chak 2024년 5월 18일
kontrol servo berdasarkan pembaacan suhu dimana degan target setpoin suhu 63
Fani
Fani 2024년 5월 17일
이동: Sam Chak 2024년 5월 18일
make a Ziegler nicho 1 pid tuning or s curve where to set the servo to find the set poi temperature which is 63, the pid output on the servo is to control the temperature so that it is stable at 63 degrees

댓글을 달려면 로그인하십시오.

답변 (1개)

Sam Chak
Sam Chak 2024년 5월 18일
I revisit your problem. I'm unsure if you are looking for something like this:
%% original system (marginally stable)
a = 59000;
G = tf(a, [1, 0, a])
G = 59000 ----------- s^2 + 59000 Continuous-time transfer function.
%% stabilizer
Kd = 2*sqrt(a)/a;
Gc = pid(0, 0, Kd);
%% closed-loop system (exponentially-stabilized dynamic process)
Gcl = feedback(G, Gc)
Gcl = 59000 --------------------- s^2 + 485.8 s + 59000 Continuous-time transfer function.
tfin= 0.04;
step(Gcl, tfin), grid on
hold on
t = 0:1e-5:tfin;
sol = @(t) exp(-10*sqrt(590)*t).*(exp(10*sqrt(590)*t) - 10*sqrt(590)*t - 1);
m = 89.3576; % max slope
tm = 0.00411693; % time where max slope is
c = - (m*tm - sol(tm)); % offset
y = m*t + c; % line equation
td = 0.00116027; % time delay
plot(t, y)
xline(td, '-.', sprintf('Dead Time: %.5f sec', td), 'color', '#7F7F7F')
ylim([-0.2, 1.2])
hold off

카테고리

Help CenterFile Exchange에서 PID Controller Tuning에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by