智能车制作

 找回密码
 注册

扫一扫,访问微社区

查看: 20679|回复: 78
打印 上一主题 下一主题

"基友一号2.0"的PID,有演示,有代码!!!

  [复制链接]

184

主题

1972

帖子

0

精华

功勋会员

E=mc^2.0

Rank: 10Rank: 10Rank: 10

积分
15110

论坛骨干奖章活跃会员奖章优秀会员奖章资源大师奖章论坛元老奖章

威望
5404
贡献
8060
兑换币
1555
注册时间
2010-12-8
在线时间
823 小时
跳转到指定楼层
1#
发表于 2012-3-21 10:37:19 | 只看该作者 回帖奖励 |正序浏览 |阅读模式
本帖最后由 znfc2 于 2012-3-21 10:42 编辑

经典PID算法
下面的波形神马的,可以看看我的另一个帖子:{:soso_e189:}
http://www.znczz.com/thread-96281-1-1.html

C语言实现PID算法
#include <stdio.h>
  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.
  ------------------------------------------------------------------------*/
  
  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.
  ------------------------------------------------------------------------*/
  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"*/
  
  
  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;
   if (pid->integral > 100.0)
   {
   pid->integral = 100.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;
   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);
  
   pid_init(&warm, process_point, set_point);
   pid_tune(&warm, p_gain,i_gain,d_gain,dead_band);
   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++;
  
   }
  
  }

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?注册

x

17

主题

359

帖子

0

精华

跨届大侠

Rank: 10Rank: 10Rank: 10

积分
6265
威望
3889
贡献
1636
兑换币
639
注册时间
2012-9-17
在线时间
370 小时
79#
发表于 2013-5-26 01:34:23 | 只看该作者
3ks
回复 支持 反对

使用道具 举报

0

主题

16

帖子

0

精华

金牌会员

Rank: 6Rank: 6

积分
1356
威望
646
贡献
366
兑换币
362
注册时间
2012-3-28
在线时间
172 小时
毕业学校
武汉科技大学
78#
发表于 2013-5-22 00:02:07 | 只看该作者
mark
回复 支持 反对

使用道具 举报

5

主题

54

帖子

0

精华

金牌会员

Rank: 6Rank: 6

积分
1946
威望
855
贡献
467
兑换币
557
注册时间
2012-12-3
在线时间
312 小时
毕业学校
大连理工大学城市学院
77#
发表于 2013-5-21 00:27:09 | 只看该作者
本帖最后由 漫无止尽的八月 于 2013-5-21 00:30 编辑

学习啦~
回复 支持 反对

使用道具 举报

0

主题

12

帖子

0

精华

注册会员

Rank: 2

积分
126
威望
69
贡献
35
兑换币
42
注册时间
2012-11-28
在线时间
11 小时
76#
发表于 2013-4-15 20:13:57 | 只看该作者
学习学习~~~
回复 支持 反对

使用道具 举报

3

主题

227

帖子

0

精华

金牌会员

Rank: 6Rank: 6

积分
1511
威望
832
贡献
359
兑换币
409
注册时间
2012-4-26
在线时间
160 小时
75#
发表于 2013-3-27 20:29:22 | 只看该作者
很棒啊,学习了!
回复 支持 反对

使用道具 举报

12

主题

165

帖子

0

精华

金牌会员

Rank: 6Rank: 6

积分
2023
威望
1069
贡献
584
兑换币
525
注册时间
2012-9-1
在线时间
185 小时
74#
发表于 2013-3-27 19:24:55 | 只看该作者
楼主  真牛
回复 支持 反对

使用道具 举报

4

主题

50

帖子

0

精华

中级会员

Rank: 3Rank: 3

积分
427
威望
236
贡献
131
兑换币
0
注册时间
2011-12-11
在线时间
30 小时
73#
发表于 2012-7-19 11:34:59 | 只看该作者
楼主~打不开啊~求帮助啊~

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?注册

x
回复 支持 反对

使用道具 举报

8

主题

277

帖子

0

精华

常驻嘉宾

Rank: 8Rank: 8

积分
4817

优秀会员奖章活跃会员奖章在线王奖章论坛元老奖章

威望
2342
贡献
1509
兑换币
827
注册时间
2012-2-16
在线时间
483 小时
毕业学校
黑龙江工程学院
72#
发表于 2012-7-14 09:16:05 | 只看该作者
楼主是一个大好人呀,谢谢了。
回复 支持 反对

使用道具 举报

0

主题

40

帖子

0

精华

高级会员

Rank: 4

积分
987
威望
505
贡献
222
兑换币
174
注册时间
2012-4-13
在线时间
130 小时
71#
发表于 2012-7-13 18:36:45 | 只看该作者
谢谢lz了
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

关于我们|联系我们|小黑屋|智能车制作 ( 黑ICP备2022002344号

GMT+8, 2025-1-13 03:06 , Processed in 0.158198 second(s), 29 queries , Gzip On.

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表