• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

PID控制算法C源码

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

感觉代码不错,以后肯定会用到,侵删

 

#include <reg52.h>  
#include <string.h>             //C语言中memset函数头文件 
#define unsigned int uint        
typedef struct PID {   
double SetPoint;      // 设定目标Desired value   
double Proportion;    // 比例常数Proportional Const  
double Integral;      // 积分常数Integral Const  
double Derivative;    // 微分常数Derivative Const  
double LastError;     // Error[-1]    
double PrevError;    // Error[-2]   
double SumError;    // Sums of Errors  
}PID;   
/*================================================
====================================================PID计算部分 =======================
==============================================================================
*/ double PIDCalc( PID *pp, double NextPoint ) { double dError, Error; Error = pp->SetPoint - NextPoint; // 偏差 pp->SumError += Error; // 积分 dError = Error - pp->LastError; // 当前微分 pp->PrevError = pp->LastError; pp->LastError = Error; return (pp->Proportion * Error // 比例项 + pp->Integral * pp->SumError // 积分项 + pp->Derivative * dError // 微分项 ); } /*=======================================================
============================================= Initialize PID Structure PID参数初始化 =============
========================================================================================
*/ void PIDInit (PID *pp) { memset ( pp,0,sizeof(PID)); }
/*======================================================
============================================== Main Program 主程序 ===================
==================================================================================
*/ double sensor (void) // Dummy Sensor Function { return 100.0; } //void actuator(double rDelta) // Dummy Actuator Function //{} void main(void) { PID sPID; // PID Control Structure double rOut; // PID Response (Output) double rIn; // PID Feedback (Input) PIDInit ( &sPID ); // Initialize Structure sPID.Proportion = 0.5; // Set PID Coefficients sPID.Integral = 0.5; sPID.Derivative = 0.0; sPID.SetPoint = 100.0; // Set PID Setpoint for (;;) { // Mock Up of PID Processing rIn = sensor (); // Read Input rOut = PIDCalc ( &sPID,rIn ); // Perform PID Interation //actuator ( rOut ); // Effect Needed Changes } }

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C/C++typedef发布时间:2022-07-13
下一篇:
C++常用的字符串处理函数-全发布时间:2022-07-13
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap