下载中心
第五届飞思卡尔智能车电磁组获奖程序doc
1星 发布者: 苏莎莎

2013-05-27 | 2积分 | 49.5KB |  1 次下载

下载 收藏 评论

文档简介
标签: 程序

程序

汽车电子

汽车电子

第五届飞思卡尔智能车电磁组获奖程序

#include <hidef.h> /* common defines and macros */

#include "derivative.h" /* derivative-specific definitions */

#include <stdio.h>

#include <MC9S12XS128.h>

#include <stdlib.h>

#include <math.h>

#pragma LINK_INFO DERIVATIVE "mc9s12xs128"

#define K 1

#define N 3

unsigned int i=0,j=0,m=0,n=0;

unsigned char str[]={'0'};

signed int b=0,c=0,d=0,e=0,f=0,g=0,spe=0,r=0,l,x3,y,z,x1,x2,x4;

int time;

int zd=0,flag;

int pp;

/////////////////////////////////////

//// 电机 PID 定义

/////////////////////////////////////

int SetPoint=0; //设定目标 Desired Value

int FeedBack=0;

float KKp=1.5; //比例常数 Proportional Const

float KKi=0;

float KKd=0.6; //微分常数 Derivative Const

signed int EE0=0; //当前误差

signed int EE1=0; //Error[-1]

signed int EE2=0; //Error[-2]

signed int EError0=0,EError1=0;

signed int iiIncpid=0;

int sp=0;

///////////////////////////////

/// 舵机 PID 定义

//////////////////////////////

float Kp=3; //比例常数 Proportional Const

float Ki=1;

float Kd=4.2; //微分常数 Derivative Const

signed int E0=0 ; //当前误差

signed int E1=0; //Error[-1]

signed int E2=0; //Error[-2]

signed int Error0=0,Error1=0;

signed int iIncpid=0;

/////////////////////////////////////

/////////////////////////////////////

//// 电机 PID

/////////////////////////////////////

////////////////////////////////////

unsigned int Getspeed(int cch1,int cch2 )

{

EE0=cch1-cch2; //增量计算

EError0=EE0-EE1;

EError1=EE1-EE2;

iiIncpid=(int)(KKi*EError0+KKp*EE0+KKd*(EError0-EError1));

EE1=EE0;

EE2=EE1; //存储误差,用于下次计算

sp+=iiIncpid;

if(sp>210)

sp=210;

if(sp<0)

sp=0;

return sp;

}

void sudu(int SetPoint)

{

pp=Getspeed(SetPoint,FeedBack);

PWMDTY2=pp;

}

评论
相关视频
  • 财哥说钛丝

  • 直播回放: Keysight 小探头,大学问,别让探头拖累你的测试结果!

  • 控制系统仿真与CAD

  • MIT 6.622 Power Electronics

  • 直播回放:基于英飞凌AIROC™ CYW20829低功耗蓝牙芯片的无线组网解决方案

  • 直播回放:ADI & WT·世健MCU痛点问题探索季:MCU应用难题全力击破!

推荐帖子
精选电路图
  • CCD图像传感器在微光电视系统中的应用

  • 如何利用ESP8266制作一个简单的四轴飞行器

  • 非常简单的150W功放电路图

  • 一个简单的警笛电路图

  • 优化电路板布局的简单方法

  • 使用NE555和磁簧开关的橱柜照明电路

×