以前测试过无刷电调,它是把锂电池的直流电转化为三相交流波形,最近买了有刷电调,也研究一下它的调速原理
调速器如下:飞马 30A单向有刷电调 固定翼飞机专用 带动力启动开关
测试平台
连接示波器
逐渐增加速度
初始的时候,电压较低
增加速度后,电压较高
结果:
因此,直流有刷调速器是通过电压来调速的
波...
分类:
其他 时间:
2014-01-29 15:54:05
收藏:
0 评论:
0 赞:
0 阅读:
759
Category 分类,动态为已经存在的某个类动态添加方法,为以前的类扩展方法,但是不能添加成员变量,实现了类的相关方法的模块化,把不同的类的方法分配到不同的分类文件中,就像在Java开发中的struts或者spring配置文件模块化一样,便于分模块开发,并且可以扩展OC基础类库中的类。
#import
@interface Student :
NSObject
...
分类:
其他 时间:
2014-01-29 15:39:05
收藏:
0 评论:
0 赞:
0 阅读:
446
手把手教你mysql(十七)对Table操作的补充
一: 前言
今天在整理文章的时候,发现第三讲有关Table讲的比较少,所以补充一下。
二: 补充
ALTER [IGNORE] TABLE tbl_name alter_spec [, alter_spec ...]alter_specification: ADD [COLUMN] create_definit...
分类:
数据库技术 时间:
2014-01-29 16:16:35
收藏:
0 评论:
0 赞:
0 阅读:
532
关于GCD中使用 dispatch_async(异步) 和 dispatch_sync(同步)分别对应DISPATCH_QUEUE_SERIAL(串行)和DISPATCH_QUEUE_CONCURRENT(并行)两种队列的使用情况详细说明。
A1:输出结果为
2014-01-29 10:56:54.303 MyCall[5549:60...
分类:
其他 时间:
2014-01-29 16:15:46
收藏:
0 评论:
0 赞:
0 阅读:
641
两个挑战题目,bing和20进制的加法...
分类:
其他 时间:
2014-01-29 15:45:45
收藏:
0 评论:
0 赞:
0 阅读:
563
/*
* 解题思路:
* 题意虽不难理解、但一定要读清楚!
* 它匹配过程中、是允许一个字符串重复匹配上一个字符串的、就好比说例子 banana boat , 在bab匹配ban的过程中
* 第一步是 将原字符串变成 babana boat 、第二步是 将第一步产生的字符串变成 bababa boat
*/
#include
#include
#def...
分类:
其他 时间:
2014-01-29 15:38:15
收藏:
0 评论:
0 赞:
0 阅读:
460
点击打开链接
/*
时间:2014.1.29
目的:题目1191:矩阵最大值 http://ac.jobdu.com/problem.php?pid=1191
*/
#include
#include
int main()
{
int m, n, i, j, cnt;
int p[105][105];
int max, flag;
while(~scanf("%d%d", ...
分类:
其他 时间:
2014-01-29 15:36:35
收藏:
0 评论:
0 赞:
0 阅读:
419
thinkphp 静态缓存 ReadHtmlCache 源码阅读...
分类:
Web开发 时间:
2014-01-29 16:07:25
收藏:
0 评论:
0 赞:
0 阅读:
469
Maximum Subarray
Find the contiguous subarray within an array (containing at least one number) which has the largest sum.
For example, given the array [?2,1,?3,4,?1,2,1,?5,4],
the contiguo...
分类:
其他 时间:
2014-01-29 15:56:35
收藏:
0 评论:
0 赞:
0 阅读:
429
分析:
1、直接推出公式为:(n-k)*sigma(C(n+k,k)*p^k*(1-p)^(n+1)+C(n+k,k)*(1-p)^k*p^(n+1))
2、公式中幂的计算可能出现很大的数。可以先缩小后放大(先取对数再指数还原),也可以
通过循环控制精度。
3、要把重复用到的数先计算出来,避免重复计算tle。
#include
#include
#include
#include...
分类:
其他 时间:
2014-01-29 15:44:55
收藏:
0 评论:
0 赞:
0 阅读:
460
本文来源于我在InfoQ中文站原创的文章,原文地址是:http://www.infoq.com/cn/news/2014/01/programming-thinking-typingJim Bird是一位经验丰富的软件开发经理、项目经理与CTO,专注于软件开发与维护、软件质量与安全等领域中疑难问题的解决。在过去的15年间,Jim曾管理过团队建设并主导过高性能的财务系统的建设。他的主要兴趣在于如何提...
分类:
其他 时间:
2014-01-29 16:10:45
收藏:
0 评论:
0 赞:
0 阅读:
469
N-Queens
The n-queens puzzle is the problem of placing n queens on an n×n chessboard such that no two queens attack each other.
Given an integer n, return all distinct solutions to the n-...
分类:
其他 时间:
2014-01-29 15:59:55
收藏:
0 评论:
0 赞:
0 阅读:
458
通过java编写的可以比对两个文件夹的不同代码...
分类:
其他 时间:
2014-01-29 15:44:05
收藏:
0 评论:
0 赞:
0 阅读:
499
原文链接:Improve Your Python: Metaclasses and Dynamic Classes With Type
`metaclass`和`type`关键字在Python代码中较少被使用(也正因如此,它们的作用也没有很好的被理解)。在这篇文章中,我们将探究`type()`的类型(types)和跟`metaclasses`相关的`type`的用法。...
分类:
编程语言 时间:
2014-01-29 16:26:35
收藏:
0 评论:
0 赞:
0 阅读:
520
Cocos2d-x OpenGL实现闪电特效...
分类:
其他 时间:
2014-01-29 16:09:55
收藏:
0 评论:
0 赞:
0 阅读:
510
/*
* 解题思路:
*
题意: 简单的大整数相加
* 几个注意点:1、注意输入两个数位数如果不同的位数控制
* 2、最高位加完后可能存在向高一位的进位( 容易忽略 )
*/
#include
#include
#define A 120
int x,y,in;
int len1,len2;
char s...
分类:
其他 时间:
2014-01-29 15:35:45
收藏:
0 评论:
0 赞:
0 阅读:
452
分析:
dp[i]表示走到第i(0....n)个grid时所走的步数。
根据 简述期望问题的解法来推就行了。
#include
#include
#include
using namespace std;
int hash[100010];
double dp[100010];
int main()
{
int n,m,x,y;
while(scanf("%d%...
分类:
其他 时间:
2014-01-29 15:43:15
收藏:
0 评论:
0 赞:
0 阅读:
460
Shell排序算法最初是由D.L
Shell于1959年提出,假设要排序的元素有n个,则每个进行插入排序是并不是所偶的元素同时进行,而是去一段间隔。Shell首先将间隔设定为n/2,然后跳跃的进行插入排序,再来将间隔设定为n/4,跳跃进行排序动作,再来设定时间间隔为n/8、n/16,知道间隔为1之后...
分类:
其他 时间:
2014-01-29 16:28:16
收藏:
0 评论:
0 赞:
0 阅读:
543
选择排序将要排序的对象分作两部分,一个是一排序的,一个是未排序的,从后面未排序部分选择一个最小值,并放入前面已排序部分的最后一个。例如:排序前:70 80 31
37 10 1 48 60 33 80 [1] 80 31 37 10 70 48 60 33 80 选出最小值1 [1 10] 31 3...
分类:
其他 时间:
2014-01-29 15:54:56
收藏:
0 评论:
0 赞:
0 阅读:
537
//1035#include #include #include using
namespace std;typedef struct DATA{ char name[50]; char password[50]; bool
modify_flag;};DATA data[1501];char ch...
分类:
其他 时间:
2014-01-29 15:33:15
收藏:
0 评论:
0 赞:
0 阅读:
469