一个温控项目,用到PID运算,历史误差累加值,经常无规律的变为接近0,不知道问题出在哪里
#define Proportion 0.05
#define Integral 0.0002
#define Derivative 4
int xdata dError,LastError,num_counter,open_duty;
int setPoint;
float xdata SumError=0.0;
int Error;
float xdata real_error;
每3秒值执行一下PID调整运算,SumError经常无规律变为0,可是没有理由啊,加热也还未到设定点。
============================================*/
void auto_adjust(int NextPoint)
{
int i;
int xdata i1,i3,i4,i5;
float xdata i6;
long xdata i6a;
float xdata i2;
long xdata i2a;
Error = setPoint - NextPoint; // 偏差
if(Error > 500)
{
open_duty = 50;//全开通
}
else
{
SumError += Error; // 积分
dError = Error - LastError; // 当前微分
LastError = Error; CLWDT;
real_error = SumError*Integral + Proportion*Error+ Derivative * dError; CLWDT;
i1=Proportion*Error;i2=(SumError*Integral);i3=Derivative * dError;i5=real_error;CLWDT;
open_duty = (int)(real_error+0.5);
} |