⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rtpid.h

📁 PID-REGULATOR FUNCTION "C" SOURCE CODE
💻 H
字号:
/*****************************************************************/
/*							         */
/*   Copyright (c) Quinn-Curtis, 1991, 1992                      */
/*							         */
/*   Filename:  RTPID.H                                          */
/*   Revision:  3.0                                              */
/*   Date:      2/3/92                                         */
/*						                 */
/*   Description: -Routines for PID Control                      */
/*****************************************************************/

#ifdef __cplusplus
extern "C" {
#endif


#ifndef realtype
#include "rtstdhdr.h"
#endif


void rtreseterrorterms(int loopnum);
void rtinitpidstat(int numpid);
void rtfreepidstat(void);
void rtsetpidparameters(int loopnum, int ptype,
			realtype setpnt,realtype steadstat,realtype prop,
			realtype integ, realtype deriv,realtype lowclmp,
			realtype highclmp, realtype rateclmp,
			realtype sampleper, realtype filterconst);
realtype rtcalcpid(int loopnum, realtype currentval, realtype setpnt);



#ifdef __cplusplus
}
#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -