-
这是在MATLAB环境下进行电力系统暂态稳定分析的pst源程序,该文件定义了一个4机8节点的系统模型。...
这是在MATLAB环境下进行电力系统暂态稳定分析的pst源程序,该文件定义了一个4机8节点的系统模型。-This is the MATLAB environment in power system transient stability analysis of the pst source, the document defines a 4-machine system model 8 nodes.
- 2022-07-16 12:24:37下载
- 积分:1
-
prepared by the Huarong Road game, a graphical interface, mouse operation.
用C编写的华荣道游戏,图形界面,用鼠标操作.-prepared by the Huarong Road game, a graphical interface, mouse operation.
- 2022-03-06 18:45:06下载
- 积分:1
-
用Phptoshop制作的一张小图片,静态显示!
用Phptoshop制作的一张小图片,静态显示!-Phptoshop produced with a small picture, static display!
- 2022-04-25 10:46:00下载
- 积分:1
-
Achieving point by point comparison of the assembler for 8031 micro
实现逐点比较法的汇编程序,适用于8031单片机-Achieving point by point comparison of the assembler for 8031 micro-
- 2022-06-21 22:03:39下载
- 积分:1
-
It is a gui used to zoom a picture or u shrink it. It is very interesting! I hop...
It is a gui used to zoom a picture or u shrink it. It is very interesting! I hope u will like it!
- 2023-03-22 02:45:04下载
- 积分:1
-
与酒店前台系统接口的一个实用型的电话计费接口软件。可以对接各种品牌的交换机...
与酒店前台系统接口的一个实用型的电话计费接口软件。可以对接各种品牌的交换机-System interface with the hotel
- 2022-04-13 16:20:37下载
- 积分:1
-
这是一个用vb+SQL Server数据库编写的样品检验代码。包括样品的购买库存以及检验的各项程序,是一个很好的vb数据库参考代码...
这是一个用vb+SQL Server数据库编写的样品检验代码。包括样品的购买库存以及检验的各项程序,是一个很好的vb数据库参考代码-with vb+ SQL Server database prepared by the test sample code. The samples include the purchase of inventory and inspection procedures, is a good reference source database vb
- 2023-04-15 07:10:04下载
- 积分:1
-
VC++ 2d游戏地图编辑器
VC++ 2d游戏地图编辑器-VC++ 2d game map editor
- 2022-03-01 07:19:25下载
- 积分:1
-
8路模拟数据采集,希望能帮助到需要的朋友,加油。
8路模拟数据采集,希望能帮助到需要的朋友,加油。-8-channel analog data acquisition, the need to help friends and refueling.
- 2022-01-25 20:48:00下载
- 积分:1
-
CoStream 无缓存 Pipe Stream
翻译 maninwest@Codeforge 作者:Sergey Nozhenko@CodeProject介绍:CoStream 是的 PipeStream 无缓存替代选择。背景在生产者/消费者模式下,如果我们知道一个消费者确定要读取stream 读到结束或者如果不能读到结束就处理,那么同步stream 就不需要维护自己的内部缓存,完全依赖于 Read 方法调用者的缓存。在Read 方法中,CoStream 保存到目标缓存的引用并等待,直至完成。而 write 方法从源缓存中复制数据到目标缓存,会给读取者发送信号缓存已准备就绪或者需要等待期 Read 调用(如果来源缓存中有未消耗的数据剩下或者返回到Writer 调用者)。使用代码CoStream 不能在单个话题中使用。应该至少有两个,读取和写入话题。两者都需要关闭(或处理)stream,一边对方可以继续到结束。测试程序在 XmlDocument 中加载了一些 xml 文件。然后将其写入到 CoStream 的实例Static CoStream costream = new TestCoStream();
static string outpath;
static void Main(string[] args)
{
// ...
XmlDocument doc = new XmlDocument();
doc.Load(args[0]);
outpath = args[1];
var reading_thread = new Thread(ReaderBody);
reading_thread.Start();
using (var pipe = XmlWriter.Create(costream, new XmlWriterSettings { CloseOutput = true }))
doc.Save(pipe);
reading_thre
- 2022-03-17 17:34:17下载
- 积分:1