STM32的DSP库中PID的使用介绍

更新时间:2023-05-14 19:53:08 阅读: 评论:0

南华大学录取分数线
STM32的DSP库中PID的使⽤介绍
最近⼯程需要⽤到PID控制,正好STM32的DSP库有DIP函数,所以研究了下
先看数据参数:
挂挡
typedef struct
{
float32_t A0; /**< The derived gain, A0 = Kp + Ki + Kd . */
float32_t A1; /**< The derived gain, A1 = -Kp - 2Kd. */
float32_t A2; /**< The derived gain, A2 = Kd . */
安阳马氏庄园float32_t state[3]; /**< The state array of length 3. */
园林植物园
float32_t Kp; /**< The proportional gain. */
float32_t Ki; /**< The integral gain. */
float32_t Kd; /**< The derivative gain. */
} arm_pid_instance_f32;
使⽤的时候只需要设置⽐例、积分、微分的⽐例因⼦即可。
/*PID库中的PID参数结构体 是float_32格式数据 */
马路用英语怎么说arm_pid_instance_f32 PID;
/* 1、设置PID参数 */
PID.Kp = PID_PARAM_KP; /* Proporcional --⽐例参数 */
PID.Ki =  PID_PARAM_KI;        /* Integral        --积分参数*/
爱因斯坦语录PID.Kd = PID_PARAM_KD; /* Derivative    --微分参数*/
人物神态的成语/* 2、初始化PID的参数, */
arm_pid_init_f32(&PID, 1);
void arm_pid_init_f32(arm_pid_instance_f32 * S, int32_t retStateFlag)
该函数是通过⽤户配置了Kp,Ki,Kd后,通过该函数获得A0,A1,A2。第⼆个参数是初始化标志位,设1即为初始化。
while (1) {
/* 计算误差 */
float pid_error = TEMP_CURRENT - TEMP_WANT;
/* Calculate PID here, argument is error */
/* Output data will be returned, we will u it as duty cycle parameter */
桌面显卡天梯图duty = arm_pid_f32(&PID, pid_error);

本文发布于:2023-05-14 19:53:08,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/89/897921.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:参数   函数   需要
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图