代码搜索结果
找到约 12,494 项符合
PID 的代码
用keil c编写的pid算法.txt
<mark>PID</mark>处理程序(C51)
/*====================================================
这是从网上找来的一个比较典型的<mark>PID</mark>处理程序,在使用单片机作为控制cpu时,请稍作简化,具体的<mark>PID</mark>
参数必须由具体对象通过实验确定。由于单片机的处理速度和ram资源的限制,一般不采用浮点数运算,
而将所有参数全部用整数,运算到最后再除 ...
id.pid
# id.pid
#
# same integral gain as ionly.pid,
# derivative gain added
# initial settings
P=0 Proportional gain
I=1.0 Integral gain
D=.3 Derivative gain
H=0
作为工业控制中的一种常用控制算法pid运算.txt
/*====================================================================================================
这是从网上找来的一个比较典型的PID处理程序,在使用单片机作为控制cpu时,请稍作简化,具体的PID
参数必须由具体对象通过实验确定。由于单片机的处理速度和ram资源的限制,一般不采
pid.c
typedef struct PID {
int SetPoint; // 设定目标 Desired value
int Proportion; // 比例常数 Proportional Const
int Integral; // 积分常数 Integral Const
int Derivative; // 微分常数 Derivative Const
unsi
pid.pjt
; Code Composer Project File, Version 2.0 (do not modify or remove this line)
[Project Settings]
ProjectDir="E:\brian\DSP\project\lab0602-PID\"
ProjectType=Executable
CPUFamily=TMS320C54XX
Tool
pid.lnp
"STARTUP.obj",
"main.obj"
TO "pid"
RAMSIZE(256)
pid.plg
礦ision2 Build Log
Project:
F:\YCH资料\电子设计\begain with keil\C\第三阶段\加热控制\增量式pid——da控制\pid.uv2
Project File Date: 08/17/2007
Output:
pid.txt
www.ciw.com.cn
http://www.cgonline.net.cn
http://www.cozol.com/machinery/jxdza/200708/865.html
PID控制C源程序,可以参考一下
#include
#include
struct _pid {
int pv; /*intege
pid控制c原程序.txt
PID控制C源程序
BC31 TC30 编译过,可运行。
#include
#include
struct _pid {
int pv; /*integer that contains the process value*/
int sp; /*integer that contains
pid.h
/* This file has been prepared for Doxygen automatic documentation generation.*/
/*! \file *********************************************************************
*
* \brief
* PID controller