-
ABAQUS子程序UMAT里弹塑本构的实现
说明: 介绍了abaqus中umat子程序里塑性材料本构关系的实现(The realization of constitutive relation of plastic material in UMAT subroutine of ABAQUS is introduced)
- 2021-04-16 14:30:09下载
- 积分:1
-
SPI
stm32的SPI库函数固件库,挺好用的,新手必备!(SPI for STM32.And it is very useful.)
- 2020-06-19 06:40:02下载
- 积分:1
-
C# 按照扩展名分组文件
C# 按照扩展名分组文件,按照文件类型的不同,对文件进行归类显示,分类清淅便于查看,主要是使用MyFile中的对象和方法实现,核心的功能代码如下:
private void ShowGroupFile(IEnumerable> MyQueryGroup)
{
this.listBox1.Items.Clear();
foreach (var MyFileGroup in MyQueryGroup)
{
this.listBox1.Items.Add("包含" + MyFileGroup.Key + "扩展名的文件如下:");
foreach (var MyFileInfo in MyFileGroup)
{
this.listBox1.Items.Add(MyFileInfo.Name);
}
this.listBox1.Items.Add("");
}
}
static IEnumerable GetFiles(string MyDir)
{
if (!System.IO.Directory.Exists(MyDir))
throw new System.IO.DirectoryNotFoundException();
string[] MyFileNames = null;
List MyFiles = new List();
//查找指定目录下的所有子目录中的所有文件
//MyFileNames = System.IO.Directory.GetFiles(MyDir, "*.*", System.IO.SearchOption.AllDirectories);
MyFileNames = System.IO.Directory.GetFiles(MyDir);
foreach (string MyName in MyFileNames)
{
MyFiles.Add(new System.IO.FileInfo(MyName));
}
return MyFiles;
}
- 2022-12-28 08:15:04下载
- 积分:1
-
radiusclient-ng-0.5.6.tar
this is an open source radius client that run in linux and apply to login with radius and some other radius tools. like radtest...
- 2011-01-19 16:05:08下载
- 积分:1
-
STM32的SD卡开发
基于STM32的文件系统设计,运行后可以在SD卡上新建一个你自己命名的文件,然后按你自己的需要写入相关内容。-STM32-based file system designed to run on the SD card after you create a named file, and then according to your own need to write relevant content.
- 2022-03-11 01:54:20下载
- 积分:1
-
hindingpro
此程序用VC编写,利用DDK可隐藏进程 (This program written by VC, the process can be hidden by DDK)
- 2010-12-25 17:47:11下载
- 积分:1
-
图书馆管理系统,数据库作业
运用学过的数据库和数据结构知识,写的图书馆管理系统,方面使用
- 2022-02-25 11:46:52下载
- 积分:1
-
c#访问php文件,获取返回数据
结合网络上的方法,用C#写了一个可以访问php文件并获取返回值的小例程,并开启了线程,每隔100ms就会去访问一次php文件,实时获取数据;也可以关闭线程,通过点击按钮的方式来实现访问功能。
- 2022-05-13 19:03:49下载
- 积分:1
-
DSP_SRM_PID_CVC_20140521
开关磁阻电机转矩控制,电压斩波CVC,速度闭环,PID,TMS320F28X(Switched reluctance motor torque control, voltage chopper CVC, speed closed-loop, PID, TMS320F28X)
- 2015-03-18 20:01:13下载
- 积分:1
-
试玩PIC12F675单片机手记 (2)
pic12f675试用小记,控制PGA2310音量(Pi C12F 675 Trial Note, Controlling the Volume of PGA2310)
- 2020-06-16 04:40:02下载
- 积分:1