资源简介
PSCAD仿真软件是电气工程专业的必备工具,该软件使用方便,使用性强,仿真结果准确
代码片段和文件信息
// C procedures
// ********************************************
// Example 1
void test_csub(int* arg int* res)
{
*res = 6*(*arg);
}
// ********************************************
// ********************************************
// Example 2
int test_cfun(int *arg)
{
return 2*(*arg);
}
// *******************************************
// ********************************************
// Example 3
void test_cblck_one(double *storf
int *stori
int nstorf
int nstori
double *stor
int nexc
double* arg)
{
storf[(nstorf)-1]=0.5;
stori[(nstori)-1]=1;
stor[(nexc)]=(*arg);
}
// ********************************************
// ********************************************
// Example 4
void test_cblck_two(int *edim
int *ief
int *iet
double *vdc
int br
int ss
double* out)
{
int posA posB;
int pos;
int na nb;
// matrixes defined in Fortran can be
// ‘read‘ in C as arrays where the matrix
// is written down column by column
// in the case of matrixes IEF and IET
// E_NDIM(15) (edim[14] in C) is a number of rows
//
pos = ((ss)-1)*edim[14] + (br)-1;
na = ief[pos];
nb = iet[pos];
// in the case of matrix VDC
// E_NDIM(1) (edim[0] in C) is a number of rows
//
posA = ((ss)-1)*edim[0] + (na)-1;
posB = ((ss)-1)*edim[0] + (nb)-1;
(*out) = 0.0;
if (posA >= 0)
(*out) = vdc[posA];
if (posB >= 0)
(*out) = (*out) - vdc[posB];
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 97 2005-12-02 11:44 02 PSCAD42 破解\license.txt
文件 0 2013-03-27 22:44 02 PSCAD42 破解\noname.emt\EMTDC_gnu.log
文件 3710 2013-03-27 22:44 02 PSCAD42 破解\noname.emt\LINE1.log
文件 4355 2013-03-27 22:44 02 PSCAD42 破解\noname.emt\LINE1.out
文件 1564 2013-03-27 22:44 02 PSCAD42 破解\noname.emt\LINE1.tli
文件 10112 2013-03-27 22:44 02 PSCAD42 破解\noname.emt\LINE1.tlo
文件 3710 2013-03-27 22:44 02 PSCAD42 破解\noname.emt\LINE2.log
文件 4355 2013-03-27 22:44 02 PSCAD42 破解\noname.emt\LINE2.out
文件 1564 2013-03-27 22:44 02 PSCAD42 破解\noname.emt\LINE2.tli
文件 7512 2013-03-27 22:44 02 PSCAD42 破解\noname.emt\LINE2.tlo
文件 2152 2013-03-27 22:44 02 PSCAD42 破解\noname.emt\Main.dta
文件 6691 2013-03-27 22:44 02 PSCAD42 破解\noname.emt\Main.f
文件 3475 2013-03-27 22:44 02 PSCAD42 破解\noname.emt\Main.o
文件 941370 2013-03-27 22:44 02 PSCAD42 破解\noname.emt\noname.exe
文件 3170 2013-03-27 22:44 02 PSCAD42 破解\noname.emt\noname.mak
文件 2229 2013-03-27 22:44 02 PSCAD42 破解\noname.emt\noname.map
文件 954 2013-03-27 16:03 02 PSCAD42 破解\noname.emt\Tline1.log
文件 974 2013-03-27 16:03 02 PSCAD42 破解\noname.emt\Tline1.tli
文件 3430 2013-03-25 23:22 02 PSCAD42 破解\noname.psc
文件 46 2002-09-04 03:23 02 PSCAD42 破解\PSCAD\Autorun.inf
文件 410121 2005-11-19 03:00 02 PSCAD42 破解\PSCAD\data1.cab
文件 75945 2005-11-19 03:01 02 PSCAD42 破解\PSCAD\data1.hdr
文件 7672526 2005-11-19 03:01 02 PSCAD42 破解\PSCAD\data2.cab
文件 332145 2003-03-27 03:54 02 PSCAD42 破解\PSCAD\egcs\data1.cab
文件 72761 2003-03-27 03:54 02 PSCAD42 破解\PSCAD\egcs\data1.hdr
文件 10266613 2003-03-27 03:54 02 PSCAD42 破解\PSCAD\egcs\data2.cab
文件 418296 2002-12-06 04:16 02 PSCAD42 破解\PSCAD\egcs\engine32.cab
文件 516 2003-03-27 03:54 02 PSCAD42 破解\PSCAD\egcs\layout.bin
文件 169190 2001-02-17 05:37 02 PSCAD42 破解\PSCAD\egcs\setup.bmp
文件 342212 2003-03-27 03:54 02 PSCAD42 破解\PSCAD\egcs\setup.boot
............此处省略292个文件信息
- 上一篇:自己动手写操作系统_超清
- 下一篇:$Curvy 2.1.1 各种曲面 拉线专用插件
评论
共有 条评论