登录
首页 » Visual C++ » PID自动控制电机转速

PID自动控制电机转速

于 2020-06-22 发布 文件大小:7008KB
0 225
下载积分: 1 下载次数: 1

代码说明:

  利用pid算法控制电机转速,转速可调,数码管显示,初学者实用(Using PID algorithm to control motor speed, adjustable speed, digital display, beginners practical)

文件列表:

PID自动控制电机转速\C程序\pid, 10460 , 2014-11-17
PID自动控制电机转速\C程序\PID.C, 3210 , 2014-11-17
PID自动控制电机转速\C程序\pid.hex, 5941 , 2014-11-17
PID自动控制电机转速\C程序\pid.lnp, 23 , 2014-11-17
PID自动控制电机转速\C程序\PID.LST, 8119 , 2014-11-17
PID自动控制电机转速\C程序\pid.M51, 12960 , 2014-11-17
PID自动控制电机转速\C程序\PID.OBJ, 11499 , 2014-11-17
PID自动控制电机转速\C程序\pid.opt.bak, 1141 , 2011-06-09
PID自动控制电机转速\C程序\pid.plg, 182 , 2015-05-11
PID自动控制电机转速\C程序\pid.Uv2.bak, 2103 , 2011-05-09
PID自动控制电机转速\C程序\pid.uvgui.walt740, 71377 , 2015-04-16
PID自动控制电机转速\C程序\pid.uvopt, 56032 , 2015-05-11
PID自动控制电机转速\C程序\pid.uvproj, 13215 , 2015-05-11
PID自动控制电机转速\C程序\pid_Opt.Bak, 1140 , 2011-06-01
PID自动控制电机转速\C程序\pid_Uv2.Bak, 2099 , 2011-05-09
PID自动控制电机转速\C程序\pid_uvopt.bak, 56032 , 2015-05-11
PID自动控制电机转速\C程序\pid_uvproj.bak, 13401 , 2015-04-16
PID自动控制电机转速\PID自动控制电机转速1.jpg, 186747 , 2014-09-09
PID自动控制电机转速\PID自动控制电机转速2.jpg, 171897 , 2014-09-09
PID自动控制电机转速\仿真文件\pid仿真.DSN, 156454 , 2014-09-13
PID自动控制电机转速\仿真文件\pid仿真.PWI, 790 , 2015-04-28
PID自动控制电机转速\基于Proteus的直流电机闭环调速系统设计.doc, 573952 , 2011-06-08
PID自动控制电机转速\C程序, 0 , 2015-05-12
PID自动控制电机转速\仿真文件, 0 , 2015-05-12
PID自动控制电机转速, 0 , 2015-05-12
算法.rar, 6550811 , 2015-07-10

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • RollingForceCal
    计算热轧中的单机架的轧制压力,采用的是SIMS公式,(rolling force calculation)
    2010-06-13 18:35:53下载
    积分:1
  • 1003
    c++算法源代码,主要是POJ上面的算法,根据标号可以找到。(c++ algorithm source code, POJ above algorithm, based on the label can be found.)
    2012-09-12 22:28:34下载
    积分:1
  • WaterPress
    对于水轮机阀门开启、关闭的一瞬间,对于钢管有比较大的水击。该程序计算出了相对最大的水击压力。(For turbine valves opened, the closure of the moment, for a relatively large pipe water hammer. The program calculated the maximum relative pressure of water hammer.)
    2008-03-15 16:37:05下载
    积分:1
  • iypeHhe
    矩阵,复数自定义数据类型的C++实现,矩阵求逆采用牛顿法,(The matrix, complex number custom data type C realization, the matrix inverse uses the Newton method,)
    2018-11-24 07:00:27下载
    积分:1
  • isotermasIII
    Compute isotherms in quad
    2012-05-05 01:36:55下载
    积分:1
  • shuzhijisuan
    数值计算实例,主要有LU分解,龙格库塔法,高斯分解法,欧拉法,曲线拟合,曲线插值(Numerical example)
    2014-01-03 10:38:53下载
    积分:1
  • wenjian
    汽车油耗计算(C实现)对于家用经济型小轿车来说,统计油耗是经常做的一件事。本题目要求根据汽油单价、每次加油所用钱数,以及该次加的油所跑里程数计算出该车的百公里油耗,并进行保存,根据需要给出统计数据。(Vehicle fuel consumption calculation (C implementation) for the household economy cars, the fuel consumption statistics is often one of the things. The questions asked based on gasoline price, amount of money each fuel used, and the second oil added to calculate the mileage run car 100 km fuel consumption, and save, according to the need to give statistics.)
    2011-12-15 16:45:12下载
    积分:1
  • seepage-computation
    渗流计算,渗流浸润线的计算,溢出点高程的确定(seepage computation)
    2013-05-07 14:01:12下载
    积分:1
  • KMEANS
    This directory contains code implementing the K-means algorithm. Source code may be found in KMEANS.CPP. Sample data isfound in KM2.DAT. The KMEANS program accepts input consisting of vectors and calculates the given number of cluster centers using the K-means algorithm. Output is directed to the screen. Usage for KMEANS is: KMEANS SOURCEFILE <enter> The format of the source file is: NPat - Number of patterns (int) SizeVect - Size of vector (int) NClust - Number of cluster centers(int) vect[1,1] ... vect[1,SizeVect] - vector 1 (real) vect[2,1] ... vect[2,SizeVect] - vector 2 (real) . . . . . . vect[NPat,1] ... vect[NClust,SizeVector] - vector N (real) To compile: ICC KMEANS.CPP <enter> (This directory contains code implementing the K-means algorithm. Source code may be found in KMEANS.CPP. Sample data isfound in KM2.DAT. The KMEANS program accepts input consisting of vectors and calculates the given number of cluster centers using the K-means algorithm. Output is directed to the screen. Usage for KMEANS is: KMEANS SOURCEFILE <enter> The format of the source file is: NPat - Number of patterns (int) SizeVect - Size of vector (int) NClust - Number of cluster centers(int) vect[1,1] ... vect[1,SizeVect] - vector 1 (real) vect[2,1] ... vect[2,SizeVect] - vector 2 (real) . . . . . . vect[NPat,1] ... vect[NClust,SizeVector]- vector N (real) To compile: ICC KMEANS.CPP <enter> )
    2013-01-05 23:11:23下载
    积分:1
  • DFP
    DFP法求优化问题的C++源代码,经测试,该程序运行正常,得到了预期的结果。(DFP method for the optimization of C++ source code, tested, the program works correctly to get the desired results.)
    2011-11-19 14:07:21下载
    积分:1
  • 696518资源总数
  • 106155会员总数
  • 8今日下载