智能车制作

标题: 自己收集整理的资料和代码v1.1 [打印本页]

作者: az22985342    时间: 2011-4-23 01:22
标题: 自己收集整理的资料和代码v1.1
[attach]7150[/attach][attach]7151[/attach][attach]7152[/attach]


  1. /*====================================================================================================
  2. 这是从网上找来的一个比较典型的PID处理程序免费分享了,在使用单片机作为控制cpu时,请稍作简化,具体的PID
  3. 参数必须由具体对象通过实验确定。由于单片机的处理速度和ram资源的限制,一般不采用浮点数运算,
  4. 而将所有参数全部用整数,运算到最后再除以一个2的N次方数据(相当于移位),作类似定点数运算,可
  5. 大大提高运算速度,根据控制精度的不同要求,当精度要求很高时,注意保留移位引起的“余数”,做好余
  6. 数补偿。这个程序只是一般常用pid算法的基本架构,没有包含输入输出处理部分。
  7. =====================================================================================================*/
  8. #include <string.h>
  9. #include <stdio.h>
  10. /*====================================================================================================
  11. PID Function

  12. The PID (比例、积分、微分) function is used in mainly
  13. control applications. PIDCalc performs one iteration of the PID
  14. algorithm.

  15. While the PID function works, main is just a dummy program showing
  16. a typical usage.
  17. =====================================================================================================*/

  18. typedef struct PID {

  19. double SetPoint; // 设定目标 Desired Value

  20. double Proportion; // 比例常数 Proportional Const
  21. double Integral; // 积分常数 Integral Const
  22. double Derivative; // 微分常数 Derivative Const

  23. double LastError; // Error[-1]
  24. double PrevError; // Error[-2]
  25. double SumError; // Sums of Errors

  26. } PID;

  27. /*====================================================================================================
  28. PID计算部分
  29. =====================================================================================================*/

  30. double PIDCalc( PID *pp, double NextPoint )
  31. {
  32. double dError,Error;

  33. Error = pp->SetPoint - NextPoint; // 偏差
  34. pp->SumError += Error; // 积分
  35. dError = pp->LastError - pp->PrevError; // 当前微分
  36. pp->PrevError = pp->LastError;
  37. pp->LastError = Error;
  38. return (pp->Proportion * Error // 比例项
  39. + pp->Integral * pp->SumError // 积分项
  40. + pp->Derivative * dError // 微分项
  41. );
  42. }

  43. /*====================================================================================================
  44. Initialize PID Structure
  45. =====================================================================================================*/

  46. void PIDInit (PID *pp)
  47. {
  48. memset ( pp,0,sizeof(PID));
  49. }

  50. /*====================================================================================================
  51. Main Program
  52. =====================================================================================================*/

  53. double sensor (void) // Dummy Sensor Function虚拟传感器函数
  54. {
  55. return 100.0;
  56. }

  57. void actuator(double rDelta) // Dummy Actuator Function虚拟激励函数
  58. {
  59. ; //省略...
  60. }

  61. void main(void)
  62. {
  63. PID sPID; // PID Control Structure
  64. double rOut; // PID Response (Output)
  65. double rIn; // PID Feedback (Input)

  66. PIDInit ( &sPID ); // Initialize Structure 初始化结构
  67. sPID.Proportion = 0.5; // Set PID Coefficients
  68. sPID.Integral = 0.5;
  69. sPID.Derivative = 0.0;
  70. sPID.SetPoint = 100.0; // Set PID Setpoint

  71. for (;;) { // Mock Up of PID Processing模拟的PID处理

  72. rIn = sensor (); // Read Input
  73. rOut = PIDCalc ( &sPID,rIn ); // Perform PID Interation
  74. actuator ( rOut ); // Effect Needed Changes
  75. }
  76. }



复制代码

作者: az22985342    时间: 2011-4-23 01:24

PS:看清楚是否需要在买!






欢迎光临 智能车制作 (http://dns.znczz.com/) Powered by Discuz! X3.2