-
FBG
通过传输矩阵法计算线性啁啾光纤光栅和高斯变迹光纤光栅的时延和反射谱曲线(Grating Through the transfer matrix method to calculate the linear chirped fiber grating and fiber Bragg grating Gaussian apodization of the delay and reflection spectrum curve)
- 2011-07-26 13:34:14下载
- 积分:1
-
智能温控风扇
51单片机控制智能温控风扇,多档调节,pwd调速。包含源码和电路图(51 single chip computer control intelligent temperature control fan, multi-stage adjustment, PWD speed regulation. Contains source code and circuit diagrams)
- 2019-04-01 17:09:03下载
- 积分:1
-
xml文件转换成csv文件
实现数据格式转换,对xml数据文件进行解析,把数据保存到csv文件里。
- 2014-09-04下载
- 积分:1
-
C 语言控制pc机器扬声器代码,已经调试成功了。
C 语言控制pc机器扬声器代码,已经调试成功了。
- 2022-03-24 09:07:33下载
- 积分:1
-
CPPPPT
面向对象程序设计的优点表现在实现对现实世界客体的自然描述、可控制程序的复杂性、可增强程序的模块性、可提高程序的重用性和可改善程序的可维护性等方面。(The advantages of object-oriented program design performance in achieving a natural description of real world objects, and can control the complexity of the program, can enhance the module of the program, program would improve the reusability and maintainability can be improved, and so on.
)
- 2014-08-22 12:36:43下载
- 积分:1
-
Lid Driven Flow
顶盖驱动流源程序,在顶盖驱动流中,顶部平板以恒定速度驱动规则区域内(左边界、有边界以及下边界固定不动)封闭的不可压流体(例如水)的流动。
流动稳定后,方腔中央会出现一个一级大漩涡,左下角和右下角会分别出现一个二级漩涡,当雷诺数Re超过一临界值后,在方腔的左上角还会出现一个漩涡。
本次模拟采用D2Q9模型,标准的碰撞流动规则,边界处理采用非平衡态外推格式。(Top-driven flow source program. In the top-driven flow, the top plate drives the flow of closed incompressible fluid (such as water) in a regular area (left boundary, bounded and fixed lower boundary) at a constant speed.)
- 2020-06-18 00:20:01下载
- 积分:1
-
C# treeView节点动态删除和添加示例
C# treeView节点动态删除和添加示例,本源码演示了创建一个treeView父节点,创建了三个子节点,然后演示了将这3个子节点添加到父节点中,最后演示了使用Remove方法移除指定的TreeView节点项,添加节点和删除节点定义了两个按钮事件,用户通过单击按钮,激活事件,两个事件的编写方法如下:
private void Form1_Load(object sender, EventArgs e)
{
//建立一个父节点
TreeNode tn1 = treeView1.Nodes.Add("名称");
//建立3个子节点
TreeNode Ntn1 = new TreeNode("明日科技");
TreeNode Ntn2 = new TreeNode("C#编程词典");
TreeNode Ntn3 = new TreeNode("C#从基础到项目实战");
//将这3个子节点添加到父节点中
tn1.Nodes.Add(Ntn1);
tn1.Nodes.Add(Ntn2);
tn1.Nodes.Add(Ntn3);
}
private void button1_Click(object sender, EventArgs e)
{
//如果用户选择了“名称”证明没有选择要删除的子节点
if (treeView1.SelectedNode.Text == "名称")
{
MessageBox.Show("请选择要删除的子节点"); //弹出选择删除节点的提示
}
else
{
treeView1.Nodes.Remove(treeView1.SelectedNode);//使用Remove方法移除选择项
}
}
- 2023-07-29 02:55:08下载
- 积分:1
-
电容触摸按键
本例程为电容触摸按键教程,案例代码说明详细。(This routine for the capacitance touch button tutorial case code description in detail.)
- 2020-06-16 22:00:01下载
- 积分:1
-
现代电力系统分析.rar
说明: 王锡凡先生写的现代电力系统分析,研究生教材(Modern Power System Analysis, Graduate Textbook by Mr. Wang Xifan)
- 2021-02-17 23:59:45下载
- 积分:1
-
SetTimer
一个窗口类与非窗口类调用SetTimer的例子,适合于初学者。(A window class and non-window class called SetTimer example, suitable for beginners.)
- 2021-02-21 09:19:42下载
- 积分:1