diosprint.c

来自「支持数字元件仿真的SPICE插件」· C语言 代码 · 共 48 行

C
48
字号
/* * Copyright (c) 1985 Thomas L. Quarles *//* Pretty print the sensitivity info for all  * the diodes in the circuit. */#include "prefix.h"#include <stdio.h>#include "util.h"#include "SMPdefs.h"#include "CKTdefs.h"#include "DIOdefs.h"#include "SPerror.h"#include "suffix.h"RCSID("DIOsPrint.c $Revision: 1.1 $ on $Date: 90/10/11 12:42:45 $")voidDIOsPrint(inModel,ckt)    GENmodel *inModel;    register CKTcircuit *ckt;{    register DIOmodel *model = (DIOmodel*)inModel;    register DIOinstance *here;    printf("DIOS-----------------\n");    /*  loop through all the diode models */    for( ; model != NULL; model = model->DIOnextModel ) {        printf("Model name:%s\n",model->DIOmodName);        /* loop through all the instances of the model */        for (here = model->DIOinstances; here != NULL ;                here=here->DIOnextInstance) {            printf("    Instance name:%s\n",here->DIOname);            printf("      Positive, negative nodes: %s, %s\n",            CKTnodName(ckt,here->DIOposNode),CKTnodName(ckt,here->DIOnegNode));            printf("      Area: %g ",here->DIOarea);            printf(here->DIOareaGiven ? "(specified)\n" : "(default)\n");            printf("    DIOsenParmNo:%d\n",here->DIOsenParmNo);        }    }}

⌨️ 快捷键说明

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