久久久久久久999_99精品久久精品一区二区爱城_成人欧美一区二区三区在线播放_国产精品日本一区二区不卡视频_国产午夜视频_欧美精品在线观看免费

 找回密碼
 立即注冊

QQ登錄

只需一步,快速開始

搜索
查看: 2896|回復: 1
打印 上一主題 下一主題
收起左側

用c語言實現的pid算法

[復制鏈接]
跳轉到指定樓層
樓主
ID:265192 發表于 2017-12-22 10:59 | 只看該作者 回帖獎勵 |倒序瀏覽 |閱讀模式
pid算法應該算是所以算法中最穩定最可靠最簡單的算法,在庫函數中添加這種算法對實際控制的時延有非常大的幫助。

全部資料51hei下載地址:
C語言PID算法.doc (44 KB, 下載次數: 36)


PID算法(c語言)(來自老外)
#include <stdio.h>
#include<math.h>
//定義PID的結構體
struct _pid
{
int pv; //integer that contains the process value 過程量
int sp; //*integer that contains the set point   設定值
float integral; // 積分值 -- 偏差累計值
float pgain;
float igain;
float dgain;
int deadband;    //死區
int last_error;
};

struct _pid warm,*pid;
int process_point, set_point,dead_band;
float p_gain, i_gain, d_gain, integral_val,new_integ;;

//----------------------------------------------
pid_init DESCRIPTION This function initializes the pointers in the _pid structure to the process variable and the setpoint. *pv and *sp are integer pointers.
//----------------------------------------------

void pid_init(struct _pid *warm, int process_point, int set_point)
{
struct _pid *pid;
pid = warm;
pid->pv = process_point;
pid->sp = set_point;
}

//----------------------------------------------pid_tune DESCRIPTION Sets the proportional gain (p_gain), integral gain (i_gain),
derivitive gain (d_gain), and the dead band (dead_band) of a pid control structure _pid.

設定PID參數 ---- P,I,D,死區
//----------------------------------------------

void pid_tune(struct _pid *pid, float p_gain, float i_gain, float d_gain, int dead_band)
{
pid->pgain = p_gain;
pid->igain = i_gain;
pid->dgain = d_gain;
pid->deadband = dead_band;
pid->integral= integral_val;
pid->last_error=0;
}

//----------------------------------------------
pid_setinteg DESCRIPTION Set a new value for the integral term of the pid equation.
This is useful for setting the initial output of the pid controller at start up.

設定輸出初始值
//----------------------------------------------

void pid_setinteg(struct _pid *pid,float new_integ)
{
pid->integral = new_integ;
pid->last_error = 0;
}

//----------------------------------------------
pid_bumpless DESCRIPTION Bumpless transfer algorithim.
When suddenly changing setpoints, or when restarting the PID equation after an extended pause,
the derivative of the equation can cause a bump in the controller output. This function will help smooth out that bump.
The process value in *pv should be the updated just before this function is used.

pid_bumpless 實現無擾切換
當突然改變設定值時,或重新啟動后,將引起擾動輸出。這個函數將能實現平順擾動,在調用該函數之前需要先更新PV值
//----------------------------------------------

void pid_bumpless(struct _pid *pid)
{
pid->last_error = (pid->sp)-(pid->pv);  //設定值與反饋值偏差
}

//----------------------------------------------
pid_calc DESCRIPTION Performs PID calculations for the _pid structure *a.
This function uses the positional form of the pid equation, and incorporates an integral windup prevention algorithim.
Rectangular integration is used, so this function must be repeated on a consistent time basis for accurate control.
RETURN VALUE The new output value for the pid loop. USAGE #include "control.h"
本函數使用位置式PID計算方式,并且采取了積分飽和限制運算
PID計算
//----------------------------------------------

float pid_calc(struct _pid *pid)
{•
int err;
float pterm, dterm, result, ferror;

// 計算偏差
err = (pid->sp) - (pid->pv);

// 判斷是否大于死區
if (abs(err) > pid->deadband)
{
ferror = (float) err;   //do integer to float conversion only once 數據類型轉換

// 比例項
pterm = pid->pgain * ferror;

if (pterm > 100 || pterm < -100)
{
pid->integral = 0.0;
}
else
{
// 積分項
pid->integral += pid->igain * ferror;

// 輸出為0--100%
// 如果計算結果大于100,則等于100
if (pid->integral > 100.0)
{
pid->integral = 100.0;
}
// 如果計算結果小于0.0,則等于0
else if (pid->integral < 0.0)
pid->integral = 0.0;

}

// 微分項
dterm = ((float)(err - pid->last_error)) * pid->dgain;

result = pterm + pid->integral + dterm;
}
else
result = pid->integral; // 在死區范圍內,保持現有輸出

// 保存上次偏差
pid->last_error = err;

// 輸出PID值(0-100)
return (result);
}

//----------------------------------------------
void main(void)
{
float display_value;
int count=0;
pid = &warm;

// printf("Enter the values of Process point, Set point, P gain, I gain, D gain \n");
// scanf("%d%d%f%f%f", &process_point, &set_point, &p_gain, &i_gain, &d_gain);

// 初始化參數
process_point = 30;
set_point = 40;
p_gain = (float)(5.2);
i_gain = (float)(0.77);
d_gain = (float)(0.18);
dead_band = 2;

integral_val =(float)(0.01);

printf("The values of Process point, Set point, P gain, I gain, D gain \n");
printf(" %6d %6d %4f %4f %4f\n", process_point, set_point, p_gain, i_gain, d_gain);
printf("Enter the values of Process point\n");
while(count<=20)
{
scanf("%d",&process_point);

// 設定PV,SP值
pid_init(&warm, process_point, set_point);

// 初始化PID參數值
pid_tune(&warm, p_gain,i_gain,d_gain,dead_band);

// 初始化PID輸出值
pid_setinteg(&warm,0.0);
//pid_setinteg(&warm,30.0);

//Get input value for process point
pid_bumpless(&warm);

// how to display output
display_value = pid_calc(&warm);

printf("%f\n", display_value);
//printf("\n%f%f%f%f",warm.pv,warm.sp,warm.igain,warm.dgain);

count++;
}
}

增量式PID算法

#include<stdio.h>
#include<stdlib.h>
struct _pid
{ double set;
double actual;
double err;
double err_one;
double err_two;
double Kp,Ki,Kd;
}pid;


void PID_init()
{ pid.set=0.0;
pid.actual=0.0;
pid.err=0.0;
pid.err_one=0.0;
pid.err_two=0.0;
pid.Kp=0.2;
pid.Ki=0.02;
pid.Kd=0.2;
}


double PID_real(double speed)
{ double increment;
pid.set=speed;
pid.err=pid.set-pid.actual;
increment=pid.Kp*(pid.err-pid.err_one)+pid.Ki*pid.err+pid.Kd*(pid.err-2*pid.err_one+pid.err_two); pid.actual+=increment;
pid.err_two=pid.err_one;
pid.err_one=pid.err;
return pid.actual;
}


main()
{   int i;
     PID_init();
     for(i=0;i<1200;i++)
    { double speed=PID_real(100.0);
     printf("%f\n",speed);
     }system("pause");
}

分享到:  QQ好友和群QQ好友和群 QQ空間QQ空間 騰訊微博騰訊微博 騰訊朋友騰訊朋友
收藏收藏1 分享淘帖 頂 踩
回復

使用道具 舉報

沙發
ID:265966 發表于 2017-12-24 18:23 | 只看該作者
很有用
回復

使用道具 舉報

您需要登錄后才可以回帖 登錄 | 立即注冊

本版積分規則

手機版|小黑屋|51黑電子論壇 |51黑電子論壇6群 QQ 管理員QQ:125739409;技術交流QQ群281945664

Powered by 單片機教程網

快速回復 返回頂部 返回列表
主站蜘蛛池模板: 欧美一区二区三区的 | 国产一区二区三区四区在线观看 | 中文字幕伊人 | 精品国产一区二区三区日日嗨 | 亚洲午夜精品 | 一级毛片色一级 | 超碰在线人人干 | 久久aⅴ乱码一区二区三区 亚洲欧美综合精品另类天天更新 | 国产精久久久久久久妇剪断 | 成人做爰www免费看视频网站 | 亚洲成人国产综合 | 免费看一区二区三区 | 成人精品视频 | 中文在线亚洲 | 日本久久网 | 国产午夜精品久久 | 欧美精品网站 | 四虎最新 | 亚洲一区中文字幕 | 午夜小视频在线播放 | 国产一区在线免费观看视频 | 精品视频国产 | 日日日操 | 亚洲欧美日韩在线一区二区 | 天堂va在线观看 | 天堂久| 欧美亚洲国产一区二区三区 | 亚洲性在线 | 久久亚洲一区二区三区四区 | 欧美成人免费电影 | 在线播放中文字幕 | 国产一区二区三区 | 999久久久久久久 | 国产午夜一级 | 亚洲国产精品美女 | 精品久久久久久中文字幕 | 久久视频一区 | 中文字幕国产第一页 | 欧美激情亚洲激情 | 亚洲天堂精品久久 | 国产精品99久久久久久久久 |