1 Star 0 Fork 8

Anderson/vtor_elec_module

forked from vtor3478/vtor_elec_module 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vtor_pid.c 1007 Bytes
一键复制 编辑 原始数据 按行查看 历史
#include "vtor_pid.h"
#ifdef __VTOR_PID__
void VtorPid_Clear(VtorPid* pid)
{
pid->totalErr = 0;
pid->outi = 0;
}
void VtorPid_Calc(VtorPid* pid, float curTime)
{
pid->intervalTime = curTime - pid->lastTime;
pid->err = pid->exp - pid->cur;
pid->err = pid->err * pid->kerr;
pid->totalErr += pid->err * pid->intervalTime;
pid->outp = pid->kp * pid->err * pid->intervalTime;
pid->outi = pid->ki * pid->totalErr;
pid->outi = pid->outi < pid->outiMax ? pid->outi : pid->outiMax;
pid->outi = pid->outi > pid->outiMin ? pid->outi : pid->outiMin;
pid->outd = pid->kd * (pid->err - pid->lastErr) / pid->intervalTime;
pid->out = pid->outp + pid->outi + pid->outd;
pid->out = pid->out < pid->outMax ? pid->out : pid->outMax;
pid->out = pid->out > pid->outMin ? pid->out : pid->outMin;
pid->lastTime = curTime;
pid->lastErr = pid->err;
}
void VtorPid_SetExp(VtorPid* pid, float exp)
{
pid->exp = exp;
}
void VtorPid_SetCur(VtorPid* pid, float cur)
{
pid->cur = cur;
}
#endif // __VTOR_PID__
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Thomas_Ti/vtor_elec_module.git
git@gitee.com:Thomas_Ti/vtor_elec_module.git
Thomas_Ti
vtor_elec_module
vtor_elec_module
main

搜索帮助

0d507c66 1850385 C8b1a773 1850385