inp2k.c
来自「ngspice又一个电子CAD仿真软件代码.功能更全」· C语言 代码 · 共 56 行
C
56 行
/**********Copyright 1990 Regents of the University of California. All rights reserved.Author: 1988 Thomas L. Quarles**********/#include "ngspice.h"#include <stdio.h>#include "ifsim.h"#include "inpdefs.h"#include "inpmacs.h"#include "fteext.h"#include "inp.h"void INP2K(void *ckt, INPtables * tab, card * current){/* Kname Lname Lname <val> */ int type; /* the type the model says it is */ char *line; /* the part of the current line left to parse */ char *name; /* the resistor's name */ int error; /* error code temporary */ void *fast; /* pointer to the actual instance */ IFvalue ptemp; /* a value structure to package resistance into */ IFvalue *parm; /* ptr to a value structure for function return values */ int waslead; /* flag to indicate that funny unlabeled number was found */ double leadval; /* actual value of unlabeled number */ IFuid uid; /* uid for default model */ line = current->line; type = INPtypelook("mutual"); if (type < 0) { LITERR("Device type mutual not supported by this binary\n"); return; } INPgetTok(&line, &name, 1); INPinsert(&name, tab); if (!tab->defKmod) { /* create deafult K model */ IFnewUid(ckt, &uid, (IFuid) NULL, "K", UID_MODEL, (void **) NULL); IFC(newModel, (ckt, type, &(tab->defKmod), uid)); } IFC(newInstance, (ckt, tab->defKmod, &fast, name)); parm = INPgetValue(ckt, &line, IF_INSTANCE, tab); GCA(INPpName, ("inductor1", parm, ckt, type, fast)); parm = INPgetValue(ckt, &line, IF_INSTANCE, tab); GCA(INPpName, ("inductor2", parm, ckt, type, fast)); PARSECALL((&line, ckt, type, fast, &leadval, &waslead, tab)); if (waslead) { ptemp.rValue = leadval; GCA(INPpName, ("coefficient", &ptemp, ckt, type, fast)); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?