PID Matlab scripts is not running

2 ビュー (過去 30 日間)
germanbrain common
germanbrain common 2020 年 12 月 31 日
コメント済み: Walter Roberson 2020 年 12 月 31 日
%Closed loop Algorthim
%Error=Setpoint -Feedback
%Setpoint:5
%Feedback:0,1,2,3,4,5(my assumption)
previous_error=0;
integral=0;
kp=1;
ki=1;
kd=1;
sp=[5,5,5,5,5,5];
fb=[0,1,2,3,4,5];
error=[5,4,3,2,1,0];
dt=[0,1,2,3,4,5]
error=sp-fb
integral=(integral + error) * dt
derivative= (error - previous_error) / dt
output=(er*kp)+(ki*integral)+(kd*derivative)
previous_error= error
plot(output,dt)

回答 (1 件)

Walter Roberson
Walter Roberson 2020 年 12 月 31 日
Change all * to .* and all / to ./
  1 件のコメント
Walter Roberson
Walter Roberson 2020 年 12 月 31 日
format long g
%Closed loop Algorthim
%Error=Setpoint -Feedback
%Setpoint:5
%Feedback:0,1,2,3,4,5(my assumption)
previous_error=0;
integral=0;
kp=1;
ki=1;
kd=1;
sp=[5,5,5,5,5,5];
fb=[0,1,2,3,4,5];
error=[5,4,3,2,1,0];
dt=[0,1,2,3,4,5]
dt = 1×6
0 1 2 3 4 5
error=sp-fb
error = 1×6
5 4 3 2 1 0
integral=(integral + error) .* dt
integral = 1×6
0 4 6 6 4 0
derivative= (error - previous_error) ./ (dt+(dt==0)/5)
derivative = 1×6
25 4 1.5 0.666666666666667 0.25 0
output=(error.*kp)+(ki.*integral)+(kd.*derivative)
output = 1×6
30 12 10.5 8.66666666666667 5.25 0
previous_error= error
previous_error = 1×6
5 4 3 2 1 0
plot(dt,output)
The (dt+(dt==0)/5) clause is effectively: dt if dt is non-zero, 1/5 if dt is zero. It is there to prevent division by 0, which would give infinity. The 1/5 was chosen arbitrarily to not skew the plot too high but stil emphasize that the value is much higher than the others.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangePID Controller Tuning についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by