mos2sprt.c

来自「ngspice又一个电子CAD仿真软件代码.功能更全」· C语言 代码 · 共 65 行

C
65
字号
/**********Copyright 1990 Regents of the University of California.  All rights reserved.Author: 1985 Thomas L. QuarlesModified: 2000 AlansFixesThis function is obsolete (was used by an old sensitivity analysis)**********/#include "ngspice.h"#include "smpdefs.h"#include "cktdefs.h"#include "mos2defs.h"#include "sperror.h"#include "suffix.h"voidMOS2sPrint(GENmodel *inModel, CKTcircuit *ckt)        /* Pretty print the sensitivity info for all the MOS2          * devices  in the circuit.         */{    MOS2model *model = (MOS2model *)inModel;    MOS2instance *here;    printf("LEVEL 2 MOSFETS-----------------\n");    /*  loop through all the MOS2 models */    for( ; model != NULL; model = model->MOS2nextModel ) {        printf("Model name:%s\n",model->MOS2modName);        /* loop through all the instances of the model */        for (here = model->MOS2instances; here != NULL ;                here=here->MOS2nextInstance) {	    if (here->MOS2owner != ARCHme) continue;            printf("    Instance name:%s\n",here->MOS2name);            printf("      Drain, Gate , Source nodes: %s, %s ,%s\n",            CKTnodName(ckt,here->MOS2dNode),CKTnodName(ckt,here->MOS2gNode),            CKTnodName(ckt,here->MOS2sNode));            printf("  Multiplier: %g ",here->MOS2m);            printf(here->MOS2mGiven ? "(specified)\n" : "(default)\n");             printf("      Length: %g ",here->MOS2l);            printf(here->MOS2lGiven ? "(specified)\n" : "(default)\n");            printf("      Width: %g ",here->MOS2w);            printf(here->MOS2wGiven ? "(specified)\n" : "(default)\n");            if(here->MOS2sens_l == 1){                printf("    MOS2senParmNo:l = %d ",here->MOS2senParmNo);            }            else{                 printf("    MOS2senParmNo:l = 0 ");            }            if(here->MOS2sens_w == 1){                printf("    w = %d \n",here->MOS2senParmNo + here->MOS2sens_l);            }            else{                 printf("    w = 0 \n");            }        }    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?