(轉)網友的經典演算法
阿新 • • 發佈:2018-12-22
寫在前面的話: 這是我收藏的一個典型的PID處理程式,包含了最常用的PID演算法的基本架構,沒有包含輸入輸出處理部分。適合新手瞭解PID結構,入門學習用。 注意: 使用不同的MCU的時候,需要進行相應的簡化和改寫。而且由於微控制器的處理速度和ram資源的限制,一般不採用浮點數運算。而將所有引數全部用整數,運算到最後再除以一個2的N次方資料(相當於移位),作類似定點數運算。這樣可大大提高運算速度,根據控制精度的不同要求,當精度要求很高時,注意保留移位引起的“餘數”,做好餘數補償就好了。 |
- #include<reg51.h>
- #include<intrins.h>
- #include<math.h>
- #include<string.h>
- struct PID {
- unsigned int SetPoint; // 設定目標 Desired Value
- unsigned int Proportion; // 比例常數 Proportional Const
- unsigned int Integral; // 積分常數 Integral Const
- unsigned int Derivative; // 微分常數 Derivative Const
- unsigned int LastError; // Error[-1]
- unsigned int PrevError; // Error[-2]
- unsigned int SumError; // Sums of Errors
- };
- struct PID spid; // PID Control Structure
- unsigned int rout; // PID Response (Output)
- unsigned int rin; // PID Feedback (Input)
- sbit data1=P1^0;
- sbit clk=P1^1;
- sbit plus=P2^0;
- sbit subs=P2^1;
- sbit stop=P2^2;
- sbit output=P3^4;
- sbit DQ=P3^3;
- unsigned char flag,flag_1=0;
- unsigned char high_time,low_time,count=0;//佔空比調節引數
- unsigned char set_temper=35;
- unsigned char temper;
- unsigned char i;
- unsigned char j=0;
- unsigned int s;
- /***********************************************************
- 延時子程式,延時時間以12M晶振為準,延時時間為30us×time
- ***********************************************************/
- void delay(unsigned char time)
- {
- unsigned char m,n;
- for(n=0;n<time;n++)
- for(m=0;m<2;m++){}
- }
- /***********************************************************
- 寫一位資料子程式
- ***********************************************************/
- void write_bit(unsigned char bitval)
- {
- EA=0;
- DQ=0; /*拉低DQ以開始一個寫時序*/
- if(bitval==1)
- {
- _nop_();
- DQ=1; /*如要寫1,則將匯流排置高*/
- }
- delay(5); /*延時90us供DA18B20取樣*/
- DQ=1; /*釋放DQ匯流排*/
- _nop_();
- _nop_();
- EA=1;
- }
- /***********************************************************
- 寫一位元組資料子程式
- ***********************************************************/
- void write_byte(unsigned char val)
- {
- unsigned char i;
- unsigned char temp;
- EA=0;
- TR0=0;
- for(i=0;i<8;i++) /*寫一位元組資料,一次寫一位*/
- {
- temp=val>>i; /*移位操作,將本次要寫的位移到最低位*/
- temp=temp&1;
- write_bit(temp); /*向匯流排寫該位*/
- }
- delay(7); /*延時120us後*/
- // TR0=1;
- EA=1;
- }
- /***********************************************************
- 讀一位資料子程式
- ***********************************************************/
- unsigned char read_bit()
- {
- unsigned char i,value_bit;
- EA=0;
- DQ=0; /*拉低DQ,開始讀時序*/
- _nop_();
- _nop_();
- DQ=1; /*釋放匯流排*/
- for(i=0;i<2;i++){}
- value_bit=DQ;
- EA=1;
- return(value_bit);
- }
- /***********************************************************
- 讀一位元組資料子程式
- ***********************************************************/
- unsigned char read_byte()
- {
- unsigned char i,value=0;
- EA=0;
- for(i=0;i<8;i++)
- {
- if(read_bit()) /*讀一位元組資料,一個時序中讀一次,並作移位處理*/
- value|=0x01<<i;
- delay(4); /*延時80us以完成此次都時序,之後再讀下一資料*/
- }
- EA=1;
- return(value);
- }
- /***********************************************************
- 復位子程式
- ***********************************************************/
- unsigned char reset()
- {
- unsigned char presence;
- EA=0;
- DQ=0; /*拉低DQ匯流排開始復位*/
- delay(30); /*保持低電平480us*/
- DQ=1; /*釋放匯流排*/
- delay(3);
- presence=DQ; /*獲取應答訊號*/
- delay(28); /*延時以完成整個時序*/
- EA=1;
- return(presence); /*返回應答訊號,有晶片應答返回0,無晶片則返回1*/
- }
- /***********************************************************
- 獲取溫度子程式
- ***********************************************************/
- void get_temper()
- {
- unsigned char i,j;
- do
- {
- i=reset(); /*復位*/
- } while(i!=0); /*1為無反饋訊號*/
- i=0xcc; /*傳送裝置定位命令*/
- write_byte(i);
- i=0x44; /*傳送開始轉換命令*/
- write_byte(i);
- delay(180); /*延時*/
- do
- {
- i=reset(); /*復位*/
- } while(i!=0);
- i=0xcc; /*裝置定位*/
- write_byte(i);
- i=0xbe; /*讀出緩衝區內容*/
- write_byte(i);
- j=read_byte();
- i=read_byte();
- i=(i<<4)&0x7f;
- s=(unsigned int)(j&0x0f); //得到小數部分
- s=(s*100)/16;
- j=j>>4;
- temper=i|j; /*獲取的溫度放在temper中*/
- }
- /*====================================================================================================
- Initialize PID Structure
- =====================================================================================================*/
- void PIDInit (struct PID *pp)
- {
- memset ( pp,0,sizeof(struct PID)); //全部初始化為0
- }
- /*====================================================================================================
- PID計算部分
- =====================================================================================================*/
- unsigned int PIDCalc( struct PID *pp, unsigned int NextPoint )
- {
- unsigned int dError,Error;
- Error = pp->SetPoint - NextPoint; // 偏差
- pp->SumError += Error; // 積分
- dError = pp->LastError - pp->PrevError; // 當前微分
- pp->PrevError = pp->LastError;
- pp->LastError = Error;
- return (pp->Proportion * Error // 比例項
- + pp->Integral * pp->SumError // 積分項
- + pp->Derivative * dError); // 微分項
- }
- /***********************************************************
- 溫度比較處理子程式
- ***********************************************************/
- void compare_temper()
- {
- unsigned char i;
- if(set_temper>temper) //是否設定的溫度大於實際溫度
- {
- if(set_temper-temper>1) //設定的溫度比實際的溫度是否是大於1度
- {
- high_time=100; //如果是,則全速加熱
- low_time=0;
- }
- else //如果是在1度範圍內,則執行PID計算
- {
- for(i=0;i<10;i++)
- {
- get_temper(); //獲取溫度
- rin = s; // Read Input
- rout = PIDCalc ( &spid,rin ); // Perform PID Interation
- }
- if (high_time<=100)
- high_time=(unsigned char)(rout/800);
- else
- high_time=100;
- low_time= (100-high_time);
- }
- }
- else if(set_temper<=temper)
- {
- if(temper-set_temper>0)
- {
- high_time=0;
- low_time=100;
- }
- else
- {
- for(i=0;i<10;i++)
- {
- get_temper();
- rin = s; // Read Input
- rout = PIDCalc ( &spid,rin ); // Perform PID Interation
- }
- if (high_time<100)
- high_time=(unsigned char)(rout/10000);
- else
- high_time=0;
- low_time= (100-high_time);
- }
- }
- // else
- // {}
- }
- /*****************************************************
- T0中斷服務子程式,用於控制電平的翻轉 ,40us*100=4ms週期
- ******************************************************/
- void serve_T0() interrupt 1 using 1
- {
- if(++count<=(high_time))
- output=1;
- else if(count<=100)
- {
- output=0;
- }
- else
- count=0;
- TH0=0x2f;
- TL0=0xe0;
- }
- /*****************************************************
- 序列口中斷服務程式,用於上位機通訊
- ******************************************************/
- void serve_sio() interrupt 4 using 2
- {
- /* EA=0;
- RI=0;
- i=SBUF;
- if(i==2)
- {
- while(RI==0){}
- RI=0;
- set_temper=SBUF;
- SBUF=0x02;
- while(TI==0){}
- TI=0;
- }
- else if(i==3)
- {
- TI=0;
- SBUF=temper;
- while(TI==0){}
- TI=0;
- }
- EA=1; */
- }
- void disp_1(unsigned char disp_num1[6])
- {
- unsigned char n,a,m;
- for(n=0;n<6;n++)
- {
- // k=disp_num1[n];
- for(a=0;a<8;a++)
- {
- clk=0;
- m=(disp_num1[n]&1);
- disp_num1[n]=disp_num1[n]>>1;
- if(m==1)
- data1=1;
- else
- data1=0;
- _nop_();
- clk=1;
- _nop_();
- }
- }
- }
- /*****************************************************
- 顯示子程式
- &