资源简介
在Utilities文件下边有个tlicinst.exe,点进去,找到Utilities目
> 录下的license.tlu,确定后,就可以用了
代码片段和文件信息
#include
#include
#include
#include
#include “ldata.h“
#include “demo.h“
/* Input Default values */
#define CAPVAL 100 /* in femtofarads */
#define UNIT_CAPVAL 1000 /* in attofarads per square micron */
#define layer1 “Poly“
#define layer2 “Poly2“
#define OVERLAP 1 /* in microns */
#define LIMIT_LENGTH 0 /* in microns */
#define LIMIT_WIDTH 4 /* in microns */
int get_cap_parameters(float *pdesired_capval float *plimit_length
float *plimit_width char *layer1_name
char *layer2_name float *punit_capval
float *poverlap float FEMTO float UNITS
float ATTO)
{
/* input box struct */
LDialogItem Menu_Items[7]= {
{“Desired capacitor value (fF):“ ““}
{“Set capacitor length {0=none} (um):“ ““}
{“Set capacitor width {0=none} (um):“ ““}
{“Name of layer1 {top plate} (um):“ ““}
{“Name of layer2 {bottom plate} (um):“ ““}
{“Inter-layer unit cap (aF/um^2):“ ““}
{“Overlap of layer1 beyond layer2 (um):“ ““}
};
/* convert and store input values into menu struct */
sprintf( Menu_Items[0].value “%g“ (*pdesired_capval) *=FEMTO);
sprintf( Menu_Items[1].value “%.2f“ (*plimit_length) *=UNITS);
sprintf( Menu_Items[2].value “%.2f“ (*plimit_width) *=UNITS);
strcpy( Menu_Items[3].value layer1_name);
strcpy( Menu_Items[4].value layer2_name );
sprintf( Menu_Items[5].value “%g“ (*punit_capval) *=(ATTO/pow(UNITS2)) );
sprintf( Menu_Items[6].value “%.2f“ (*poverlap) *=UNITS);
if( LDialog_MultiLineInputBox( “Capacitor Parameters“ Menu_Items 7 ) )
{
*pdesired_capval = atof( Menu_Items[0].value);
*plimit_length = atof( Menu_Items[1].value );
*plimit_width = atof( Menu_Items[2].value );
strcpy( layer1_name Menu_Items[3].value );
strcpy( layer2_name Menu_Items[4].value );
*punit_capval = atof( Menu_Items[5].value );
*poverlap = atof( Menu_Items[6].value );
return 1;
}
else
{
return 0;
}
} /* End of Function: get_cap_parameters */
void CapacitorMacro( void )
{
LFile File;
LCell Cell;
char STR[PAGESIZE] STR2[PAGESIZE];
LTechnology InitialTechSettings tech;
LGrid GridSettings;
long InitialGridSize;
/* units variables */
float ATTO FEMTO FEMTO2ATTO ATTO2FEMTO;
float UNITS;
char units[LINESIZE];
/* input and design variables */
Llayer layer1 layer2;
char layer1_name[NAMESIZE] layer2_name[NAMESIZE];
float desired_capval unit_capval;
float ideal_area;
long real_capval real_area;
float limit_length limit_width;
float overlap;
long width1 width2 length1 length2;
int negative too_small;
/* construction variables */
LPoint cursor_location;
LCoord x y;
/*****************************/
/* Display Warning Message */
/*****************************/
LStatusBar_SetMsg(“All dimensions must be in Microns.“);
/**************************/
/* Form default value
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 66606 2006-09-28 20:01 L-Edit 11.1\L-Edit 11.1\1.tdb
文件 66475 2006-09-28 19:58 L-Edit 11.1\L-Edit 11.1\1.tdo
文件 54088 2003-12-12 12:44 L-Edit 11.1\L-Edit 11.1\AddIns\alphabet.tdb
文件 157696 2005-03-09 07:52 L-Edit 11.1\L-Edit 11.1\AddIns\AreaCalc.upi
文件 470528 2005-03-09 08:00 L-Edit 11.1\L-Edit 11.1\AddIns\devgen.upi
文件 180224 2005-03-09 07:52 L-Edit 11.1\L-Edit 11.1\AddIns\DRCFlatten.upi
文件 284160 2005-03-09 07:53 L-Edit 11.1\L-Edit 11.1\AddIns\Dxf.upi
文件 175104 2005-03-09 07:54 L-Edit 11.1\L-Edit 11.1\AddIns\EditPinProp.upi
文件 164864 2005-03-09 07:54 L-Edit 11.1\L-Edit 11.1\AddIns\FileInfo2Cell.upi
文件 176640 2005-03-09 07:54 L-Edit 11.1\L-Edit 11.1\AddIns\FlattenCells.upi
文件 183808 2005-03-09 07:54 L-Edit 11.1\L-Edit 11.1\AddIns\GotoDevice.upi
文件 202240 2005-03-09 07:54 L-Edit 11.1\L-Edit 11.1\AddIns\la
文件 552960 2005-03-09 07:53 L-Edit 11.1\L-Edit 11.1\AddIns\Lib2tdb.upi
文件 247296 2005-03-09 07:53 L-Edit 11.1\L-Edit 11.1\AddIns\makelogo.upi
文件 222720 2005-03-09 07:53 L-Edit 11.1\L-Edit 11.1\AddIns\MaskSep.upi
文件 37376 2005-03-09 07:54 L-Edit 11.1\L-Edit 11.1\AddIns\MoveOrigin.upi
文件 183296 2005-03-09 07:54 L-Edit 11.1\L-Edit 11.1\AddIns\MultipleCellOperations.upi
文件 214528 2005-03-09 07:54 L-Edit 11.1\L-Edit 11.1\AddIns\ob
文件 211456 2005-03-09 07:53 L-Edit 11.1\L-Edit 11.1\AddIns\padcount.upi
文件 162816 2005-03-09 07:53 L-Edit 11.1\L-Edit 11.1\AddIns\Poly2Ortho45.upi
文件 225792 2005-03-09 07:54 L-Edit 11.1\L-Edit 11.1\AddIns\ReplaceInstance.upi
文件 79872 2005-03-09 07:59 L-Edit 11.1\L-Edit 11.1\AddIns\talign.dll
文件 98816 2005-03-09 07:49 L-Edit 11.1\L-Edit 11.1\AddIns\tcmdline.dll
文件 241152 2005-03-09 07:50 L-Edit 11.1\L-Edit 11.1\AddIns\tdrcnvg.dll
文件 178688 2005-03-09 07:53 L-Edit 11.1\L-Edit 11.1\AddIns\TextResize.upi
文件 297984 2005-03-09 07:53 L-Edit 11.1\L-Edit 11.1\AddIns\tlesupp.upi
文件 279552 2005-03-09 07:59 L-Edit 11.1\L-Edit 11.1\AddIns\tsdltb.dll
文件 182784 2005-03-09 07:54 L-Edit 11.1\L-Edit 11.1\AddIns\upilib.dll
文件 278528 2005-03-09 07:53 L-Edit 11.1\L-Edit 11.1\AddIns\Virtuoso_Import.upi
文件 205312 2005-03-09 07:53 L-Edit 11.1\L-Edit 11.1\AddIns\WireTools.upi
............此处省略722个文件信息
- 上一篇:C程序设计 第四版 .谭浩强.扫描版pdf
- 下一篇:CorelDraw教程
相关资源
- dps6.55破解版分析软件
- 927迅游破解版.rar
- CuteFTP Pro破解版 | CuteFTP Pro v9.0.5中文破
- USB over NetWork 5.1.10 破解版
- 今晨送货单系统软件V2016破解版
- HttpWatch Pro10包含LIC文件破解版
- bigantIM_2.97.0_查看超大聊天记录不崩溃
- keil3破解版
- CodeSmith Generator 7.0.2.15174 官方最新破解
- ServU 11.3.0 破解版包含安装使用详细教
- Things3 for Mac(mac上最好用的GTD时间管
- 微博淘宝客软件破解版.zip
- Tower 2.3.2 git GUI for Mac 破解版
- TeeChart for .NET 3.0 For Visual Studio 2005 破
- 冠唐设备管理软件绿色破解版
- 微擎商业版框架1.8.2.3破解版版.zip
- xshell plus 6破解版
- 番茄插件破解版(vs助手-visualAssistx)
- httpwatch 9.4.17 pro 2015最新破解版含破解
- Serv-U FTP Server官方中文破解版(含32位
- dps7.05破解版 内含TXT教程
- 酒店管理系统破解版
- 绿茵多媒体定时播放系统13.0-破解版
- VA_X 番茄助手 破解版 通用版!!!
- SYSTAT SigmaScan5.0 破解版
- PS无损放大插件 32、64位全功能破解版
- LLBLGEN Pro 4 破解版
- 使用libxl库读取excel文件
- 干洗店收银管理系统无限制破解版
- 创新出租车管理系统专业版2019破解版
评论
共有 条评论