代码搜索:pid控制
找到约 10,000 项符合「pid控制」的源代码
代码结果 10,000
www.eeworm.com/read/416411/11030803
m chap2_8.m
%PID Controler (2001/9/6)
close all;
ts=0.25;
sys=tf(1,[10,2,0]);
dsys=c2d(sys,ts,'z');
[num,den]=tfdata(dsys,'v');
u_1=0;u_2=0;
y_1=0;y_2=0;
x=[0,0,0]';
error_1=0;
for k=1:1:1000
www.eeworm.com/read/416411/11030865
m chap1_20.m
%PID Controler with Partial differential
clear all;
close all;
ts=20;
sys=tf([1],[60,1],'inputdelay',80);
dsys=c2d(sys,ts,'zoh');
[num,den]=tfdata(dsys,'v');
u_1=0;u_2=0;u_3=0;u_4=0;u_5=0;
www.eeworm.com/read/270268/11043182
txt v.txt
/*====================================================================================================
这是一个比较典型的PID处理程序,在使用单片机作为控制cpu时,请稍作简化,具体的PID参数必须由具体对象通过实验确定。由于单片机的处理速度和ram资源的限制,一般不采用浮点数运算,而将所有参
www.eeworm.com/read/469900/6920693
c dmx.c
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
www.eeworm.com/read/469779/6927040
m chap7_4.m
clear all;
close all;
nl_pid0=[0 0 0];
options=[1 0.01 0.01];
nl_pid=lsqnonlin('chap7_4f1',nl_pid0,options)
www.eeworm.com/read/469779/6927103
m chap2_8.m
%PID Controler (2001/9/6)
close all;
ts=0.25;
sys=tf(1,[10,2,0]);
dsys=c2d(sys,ts,'z');
[num,den]=tfdata(dsys,'v');
u_1=0;u_2=0;
y_1=0;y_2=0;
x=[0,0,0]';
error_1=0;
for k=1:1:1000
www.eeworm.com/read/469779/6927138
m chap1_20.m
%PID Controler with Partial differential
clear all;
close all;
ts=20;
sys=tf([1],[60,1],'inputdelay',80);
dsys=c2d(sys,ts,'zoh');
[num,den]=tfdata(dsys,'v');
u_1=0;u_2=0;u_3=0;u_4=0;u_5=0;
www.eeworm.com/read/267412/6957986
m motor_5_1.m
%PID arithmetic
s=tf('s');
G=0.01/(0.005*s^2+0.06*s+0.1001); %Model unchanged
t=[0:0.01:3];
Kc=100; %Standard PID
Ti=0.5;
Td=0.1;
Gc=Kc*(1+1/(Ti*s))*(Td*
www.eeworm.com/read/267412/6957990
m motor_5_2.m
%PID arithmetic
s=tf('s');
G=0.1/(1.405*s^2+2.37*s+1); %Model changed
t=[0:0.01:30];
Kc=100; %Standard PID
Ti=0.5;
Td=0.1;
Gc=Kc*(1+1/(Ti
www.eeworm.com/read/295750/6964896
cpp showproc.cpp
#include
#include "Exmap.hpp"
using namespace std;
using namespace Exmap;
using namespace jutil;
int main(int argc, char **argv)
{
if (argc != 2) {
cerr