-
chengxu
本程序是用简化梯度法进行电力系统最优潮流计算。(This procedure is the calculation of the optimal power flow of power system with simplified gradient method.)
- 2014-12-01 21:47:21下载
- 积分:1
-
。源代码网CLI实现的
.net CLI的实现源代码-. net CLI realization of the source code
- 2022-07-08 15:53:12下载
- 积分:1
-
URLEncoding
自己写的URL编解码的工程基于vs2010,可以用于对法语,俄罗斯等语言进行编解码,主要在自己使用googlemap时使用(Write your own URL codec works based vs2010, can be used for French, Russian and other languages codec, mainly used in their own use googlemap)
- 2014-07-13 18:47:51下载
- 积分:1
-
Program-controlled_voltage_and_current_sources
通过单片机按键选择输出信号类型及要求输出量,在LED显示器件上指示信号类型及设定数值.系统工作电源±15V , ±5V 。恒流电流输出0.0~8.0mA, 负载电阻≤500Ω。3. 稳压电压输出0.0~5.0V,电流负载能力≤100mA.电压及电流输出在充许负载范围内误差小于5%FS。电压及电流输出须共用一个输出正端, 输出负端为地。输出电压及电流设定精确到二位十进制数。
(Through Singlechip button to choose the type and requirements of the output signal output, in the LED display on the instructions of the signal type and set the value. System power supply ± 15V, ± 5V. Constant current output 0.0 ~ 8.0mA, the load resistance ≤ 500Ω. 3. Regulator output voltage 0.0 ~ 5.0V, current load capacity ≤ 100mA. Voltage and current output in the framework allow the load error is less than 5 FS. Output voltage and current output is required to share a client, the output of negative side for the land. Output voltage and current settings accurate to two decimal number.)
- 2008-04-27 12:47:49下载
- 积分:1
-
dfedit13b
实现彩色图象的读取,以及回度图象的读取,及相关的变换(Achieve color image reading, and reading back of the picture, and the associated transformation)
- 2013-12-17 15:56:27下载
- 积分:1
-
Cimple
Simple web chat room 简单网络聊天室(Simple web chat room simple Web chat Room)
- 2018-11-26 16:28:08下载
- 积分:1
-
C# 键盘Ctrl+g控制蜂鸣器播放声音
Visual C#播放声音,运行程序后,操作键盘上的Ctrl+g组合键发出蜂鸣声...这里的拖放声音是蜂鸣声,从音箱里发出,并不是从机箱的蜂鸣器发声。实现的过程和细节代码如下:
//导入 Windows Beep() API 函数
[DllImport("kernel32.dll")]
private static extern bool Beep(int freq, int dur);
// 定义PlaySound()要使用的常数
public const int SND_FILENAME = 0x00020000;
public const int SND_ASYNC = 0x0001;
// 导入 Windows PlaySound() 函数
[DllImport("winmm.dll")]
public static extern bool PlaySound(string pszSound,
int hmod,
int fdwSound);
[STAThread]
static void Main(string[] args)
{
// 使用Ctrl+g发出蜂鸣声
Console.Write("a");
Console.WriteLine("使用Ctrl+g发出蜂鸣声...");
Console.ReadLine();
// 使用 Windows API 发出蜂鸣声
Beep(800, 200);
Console.WriteLine("使用 Windows API 发出蜂鸣声...");
Console.ReadLine();
// 播放bells.wav文件
PlaySound("bells.wav",
0,
SND_FILENAME | SND_ASYNC);
Console.WriteLine("播放bells.wav文件...");
Console.ReadLine();
}
- 2022-05-23 17:14:52下载
- 积分:1
-
数据结构源代码,c语言版本
数据结构源代码,c数据结构是计算机存储、组织数据的方式。数据结构是指相互之间存在一种或多种特定关系的数据元素的集合。通常情况下,精心选择的数据结构可以带来更高的运行或者存储效率。数据结构往往同高效的检索算法和索引技术有关。
- 2022-03-21 15:33:54下载
- 积分:1
-
OpenGL_(VCPP-_(
一本关于OpenGL在VC++中的使用的入门教程,很适合初学者入门使用(A About the use OpenGL VC++ introductory tutorial, it is suitable for beginners entry)
- 2013-05-12 11:38:00下载
- 积分:1
-
Runge
说明: 4阶龙格-库塔算法,只需要输入微分方程就可以解算出数值解。(Rank4 Runge Kutta algorithm,the numerical solution can be obtained only by inputting the differential equation.)
- 2019-12-08 11:55:52下载
- 积分:1