-
IEC 61850 模型配置工具
IEC61850标准是电力系统自动化领域唯一的全球通用标准。它通过标准的实现,实现了智能变电站的工程运作标准化。使得智能变电站的工程实施变得规范、统一和透明。不论是哪个系统集成商建立的智能变电站工程都可以通过SCD(系统配置)文件了解整个变电站的结构和布局,对于智能化变电站发展具有不可替代的作用。本程序可以建立61850模型,增加,删除,修改逻辑设备,逻辑节点等。
- 2022-06-16 22:30:44下载
- 积分:1
-
HDLC
一个解码HDLC帧的样本,已经在vC6.0中测试过。源代码(C++)VB.Net版)模拟HDLC协议的活动。
- 2022-07-11 23:46:10下载
- 积分:1
-
Visual studio 2005,C#开发
中国象棋网络版,具有人工智能,可采用人工下棋、电脑参谋、电脑下棋等模式参加互联网比赛。采用ClickOnce...
Visual studio 2005,C#开发
中国象棋网络版,具有人工智能,可采用人工下棋、电脑参谋、电脑下棋等模式参加互联网比赛。采用ClickOnce发布到你的网站上,选择只能联机运行,可以让玩家只能上你的网站玩游戏。
共有三个项目:
Game是主项目;
CChessThinker是用C++写的人工智能DLL类库;
Thinker是用C#写的DLL,只是简单的封装了CChessThinker,目的是让有些朋友可以直接用C#开发人工智能的DLL直接替换
Thinker.dll,使得程序的智能程度得到提高。如果用C++等语言开发出来的人工智能类库就直接替代CChessThinker.dll
-Visual studio 2005, C# Development of Chinese chess online version, with artificial intelligence, to be used in artificial playing chess, computer staff, the computer model of chess and other games take part in the Internet. Using ClickOnce to publish to your site, choose only to run online, allowing players on your website can only play games. A total of three items: Game is the main project CChessThinker is C++ Write artificial intelligence DLL class library Thinker is C# Write the DLL, simply encapsulates CChessThinker, the purpose is to allow some friends of mine can be directly used C# development of artificial intelligence to replace the DLL directly Thinker.dll, mak
- 2022-03-21 04:48:16下载
- 积分:1
-
USB 重定向 linux
用于瘦客户端桌面 基于 Libusd 的适用于 Linux 的USB 重定向
- 2022-01-25 19:29:17下载
- 积分:1
-
基于mc9s12的BLDC驱动程序LCD显示
这是一个基于MC9S12XS128的直流无刷电机驱动程序,代码简洁明了,适合入门学习,本历程使用hall传感器电机,极对数为3,支持液晶显示,支持按键调速。
- 2022-10-02 19:15:03下载
- 积分:1
-
搜索二叉树
#pragma once
template
struct Node
{
T _data;
Node* left;
Node* right;
Node(T val) :_data(val), left(NULL), right(NULL)
{}
~Node()
{}
};
template
class BinSearchTree
{
public:
BinSearchTree() :_root(0)
{}
void CreatTree(char* str)
{
int n = strlen(str);
CreatTree_(_root,str,n);
}
void comFather(char a,char b)
{
return comFather_(_root,a,b);
}
protected:
void comFather_(Node* root,char a,char b)
{
if (root->_data > a && root->_data < b)
{
cout _data _data > a && root->_data > b)
comFather_(root->left, a, b);
if (root->_data < a && root->_data < b)
comFather_(root->right, a, b);
}
void insertVal(Node*& root, char ch)
{
if (root == NULL)
{
root = new Node(ch);
return;
- 2022-02-28 12:33:19下载
- 积分:1
-
简单的程序,适合初学者参考。学习井字棋的软件
简单的程序,适合初学者参考。学习井字棋的软件-simple procedures for beginners reference. Well chess learning software
- 2022-04-26 09:56:00下载
- 积分:1
-
operation excel libraries, which applies to winform and webform
c#操作excel程序库,适用于winform和webform-operation excel libraries, which applies to winform and webform
- 2022-02-03 19:05:09下载
- 积分:1
-
omronHostlink通讯
hostlink 串口编程,用于个人用C#开发omron的ui或者读取omron plc 内部地址,跟mes系统通讯或者存数据库可用。已用在项目上面测试,完美可用,cp1h已测试过,可用,需要的同学,请笑纳
- 2022-03-23 12:27:54下载
- 积分:1
-
underwater protocol code
涉及包含水下传感器网络的路由协议,MAC协议等常用协议代码,如VBF协议,DBR协议,sloted FAMA 协议,广播MAC协议等等UWSN常用的协议
- 2022-02-04 08:08:50下载
- 积分:1