资源简介
机器人PID控制,基础的位置控制方法,也可以用于力控制
代码片段和文件信息
% PID control of a 3DOF PUMA 560 Robot
%
% Name: Abdel-Razzak MERHEB
% Date: 5 Oct. 2008
%
clear all
close all
global teta1 teta2 teta3 told
global xdot z perror2 pderror perror desiredteta teta olderror deltat
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
xdot = [0 0 0 0 0 0; 0 0 0 0 0 0];
% initial conditions
teta0 = [0 0 0 0 0 0]; % teta
dteta0 = [0 0 0 0 0 0]; % dteta
% make the initial condition vector needed for the ode function (it has to be only one column)
for i = 1:1:6
init0(i)=teta0(i); %first 6 elements of the vector are the displacement vector‘s elements
end
for i = 1:1:6
init0(i+6)=dteta0(i); %second 6 elements of the vector are the velocity vector‘s elements
end
x0 = init0‘; %x0 is a one-column initial condition vector
t=0:1:10; %simulation time
[tteta]=ode15s(‘PID_PUMA_fn‘tx0); % solve the differential equation
% plot the joint‘s displacement and velocity paths
figure
plot(tteta)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2008-11-06 10:58 PID control of PUMA560 robot - my code\
文件 1048 2008-11-12 14:15 PID control of PUMA560 robot - my code\PID_PUMA.m
文件 5437 2008-11-12 14:45 PID control of PUMA560 robot - my code\PID_PUMA_fn.m
- 上一篇:housing data 数据集
- 下一篇:Delphi7渐变色探究
相关资源
- 基于模糊控制的PID参数优化
- 针式打印机驱动dll,通过pid,vid找到
- stm32控制的PID温度控制系统介绍
- 基于PSO粒子群算法的PID参数自整定程
- LabView的PID程序
- dsPIC30f3010的PID控制代码,全部中文注
- 基于labview的直流电机转速控制
- 用mcgs做的机械手控制
-
Rapidxm
l读取并修改xm l文件 - 小车巡线控制算法 最经典的PID控制算
- 基于PLC的PID算法在恒水位控制上的实
- ZN法整定PID参数
- GA遗传算法优化PID.rar
- 直流电机的PID控制
- 水下机械手空间转角六点测量方法
- RapidIO-Specification-4.0
- 用于瓦斯抽放真空泵的减振系统设计
- 基于改进的PSO算法的球磨机PID神经网
- Rapid detection of virulent factors of Aeromon
- STM32 PID控温源码内有增量算法和位置
- OV7670和ADV611的图像采集与压缩系统设
- 不确定磁悬浮轴承模型的自适应PID控
- 基于PID控制器的磨煤机进料控制单元
- Rapid thermal processing phosphorus gettering
- Monostable Waves in a Time-delayed and Diffusi
- Aluminum-induced changes in reactive oxygen sp
- One new subgenus and one record species of Rha
- A Geometric Morphometric Approach of Wing Shap
- PID autoTune PID 自整定算法C代码
- 一拖三二次恒压供水竣工资料.rar
评论
共有 条评论