-
4.EscapingCorners
在stm32开发板上配合硬件实现走迷宫功能,包含头文件(In stm32 development board with hardware implementation Maze features, including header files)
- 2013-12-04 10:23:41下载
- 积分:1
-
VideoGameTheory
Video Game Theory to develop game
- 2014-01-22 09:37:53下载
- 积分:1
-
40153640
命名管道的封装MFC类,含客户端和服务器端(A named pipe to encapsulate the MFC class, including client and server)
- 2017-04-22 01:51:35下载
- 积分:1
-
wpf GraphSharp 画图实例源码下载
wpf GraphSharp 画图实例源码下载
- 2015-03-05下载
- 积分:1
-
CCppt
Clear Case briefly introduction power point
- 2013-09-25 10:03:02下载
- 积分:1
-
基于51单片机的串行通信实验【仿真电路图+程序,(C语言+汇编)】
基于51单片机的串行通信实验【仿真电路图+程序,(C语言+汇编)】
- 2021-05-06下载
- 积分:1
-
antsC++
C++蚂蚁实现/C++蚂蚁实现 C++蚂蚁实现(C/C C ant ants achieve ants achieve realization C)
- 2006-05-21 20:01:58下载
- 积分:1
-
pmsm3_2
说明: 本程序来自TI公司网站原程序,其功能是通过传统的矢量控制算法来实现对永磁同步电机的控制,矢量控制采用双闭环结构,内环为电流环,外环为速度环,其速度的获得是靠滑模自适应算法求得。是一个不可多得无速度传感器矢量控制例程。控制程序可以采用.asm也可以采用.C。程序的具体算法和介绍在软件压缩包有详细介绍!
(this program from the company's Web site TI program, its function is through the traditional vector control algorithm to achieve the permanent magnet synchronous motor control, vector control double-loop structure for the inner loop current loop, velocity loop to the outer ring, the speed was on sliding mode is obtained adaptive algorithm. It is a rare speed sensorless vector control routines. Control procedures can be taken. Asm also be used. C. The specific procedures and the introduction of the algorithm compression software packages are described in detail!)
- 2006-01-03 00:39:18下载
- 积分:1
-
les-2
采用LBM+LES方法编制 了计算程序.首先计算了湍流平板附面层解,用来校对程序的正确性,结果表明计算值和理论值符合得很好.然后计算了亚音可压缩的湍流后台阶流以及超音湍流的 后台阶流.(LBM+LES simulation of flow)
- 2015-12-06 12:28:11下载
- 积分:1
-
PHP中的 dateline 转换成 c#中的 datetime 方法 UNIX时间转换
在众多的PHP MySQL的应用之中,存储在MySQL中的时间都是一串数字,后经查这个格式的日期叫做:Unix Timestamp;Unix的timestamp是一组数字,表示从1970年1月1日以来的秒数。今天在进行C#应用开发时需要对MySQL中的数据进行操作,写出以下方法供大家参考。主要应用到的类库有:System.TimeZone应用的方法:返回对应于指定协调通用时间 (UTC) 的本地时间。public virtual DateTime ToLocalTime( DateTime time);1、将系统时间转换成UNIX时间戳 DateTime dtStart = TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(1970,1,1)); DateTime dtNow = DateTime.Parse(DateTime.Now.ToString()); TimeSpan toNow = dtNow.Subtract(dtStart); string timeStamp = toNow.Ticks.ToString(); timeStamp = timeStamp.Substring(0,timeStamp.Length - 7); 2、将UNIX时间戳转换成系统时 string timeStamp = "1176686120"; DateTime dtStart = TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(1970,1,1)); long lTime = long.Parse(timeStamp "0000000"); TimeSpan toNow = new TimeSpan(lTime); DateTime dtResult = dtStart.Add(toNow);
- 2013-11-14下载
- 积分:1