⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mos2pzld.c

📁 linux平台下类似著名的电路板作图软件 Spice的源代码
💻 C
字号:
/**********Copyright 1990 Regents of the University of California.  All rights reserved.Author: 1985 Thomas L. Quarles**********//* */#include "spice.h"#include <stdio.h>#include "cktdefs.h"#include "complex.h"#include "mos2defs.h"#include "sperror.h"#include "suffix.h"intMOS2pzLoad(inModel,ckt,s)    GENmodel *inModel;    register CKTcircuit *ckt;    SPcomplex *s;{    register MOS2model *model = (MOS2model *)inModel;    register MOS2instance *here;    int xnrm;    int xrev;    double xgs;    double xgd;    double xgb;    double xbd;    double xbs;    double capgs;    double capgd;    double capgb;    double GateBulkOverlapCap;    double GateDrainOverlapCap;    double GateSourceOverlapCap;    double EffectiveLength;    for( ; model != NULL; model = model->MOS2nextModel) {        for(here = model->MOS2instances; here!= NULL;                here = here->MOS2nextInstance) {                    if (here->MOS2mode < 0) {                xnrm=0;                xrev=1;            } else {                xnrm=1;                xrev=0;            }            /*             *     meyer's model parameters             */            EffectiveLength=here->MOS2l - 2*model->MOS2latDiff;            GateSourceOverlapCap = model->MOS2gateSourceOverlapCapFactor *                     here->MOS2w;            GateDrainOverlapCap = model->MOS2gateDrainOverlapCapFactor *                     here->MOS2w;            GateBulkOverlapCap = model->MOS2gateBulkOverlapCapFactor *                     EffectiveLength;            capgs = ( 2* *(ckt->CKTstate0+here->MOS2capgs)+                       GateSourceOverlapCap );            capgd = ( 2* *(ckt->CKTstate0+here->MOS2capgd)+                       GateDrainOverlapCap );            capgb = ( 2* *(ckt->CKTstate0+here->MOS2capgb)+                       GateBulkOverlapCap );            xgs = capgs;            xgd = capgd;            xgb = capgb;            xbd  = here->MOS2capbd;            xbs  = here->MOS2capbs;            /*printf("mos2: xgs=%g, xgd=%g, xgb=%g, xbd=%g, xbs=%g\n",                    xgs,xgd,xgb,xbd,xbs);*/            /*             *    load matrix             */            *(here->MOS2GgPtr   ) += (xgd+xgs+xgb)*s->real;            *(here->MOS2GgPtr +1) += (xgd+xgs+xgb)*s->imag;            *(here->MOS2BbPtr   ) += (xgb+xbd+xbs)*s->real;            *(here->MOS2BbPtr +1) += (xgb+xbd+xbs)*s->imag;            *(here->MOS2DPdpPtr   ) += (xgd+xbd)*s->real;            *(here->MOS2DPdpPtr +1) += (xgd+xbd)*s->imag;            *(here->MOS2SPspPtr   ) += (xgs+xbs)*s->real;            *(here->MOS2SPspPtr +1) += (xgs+xbs)*s->imag;            *(here->MOS2GbPtr   ) -= xgb*s->real;            *(here->MOS2GbPtr +1) -= xgb*s->imag;            *(here->MOS2GdpPtr   ) -= xgd*s->real;            *(here->MOS2GdpPtr +1) -= xgd*s->imag;            *(here->MOS2GspPtr   ) -= xgs*s->real;            *(here->MOS2GspPtr +1) -= xgs*s->imag;            *(here->MOS2BgPtr   ) -= xgb*s->real;            *(here->MOS2BgPtr +1) -= xgb*s->imag;            *(here->MOS2BdpPtr   ) -= xbd*s->real;            *(here->MOS2BdpPtr +1) -= xbd*s->imag;            *(here->MOS2BspPtr   ) -= xbs*s->real;            *(here->MOS2BspPtr +1) -= xbs*s->imag;            *(here->MOS2DPgPtr   ) -= xgd*s->real;            *(here->MOS2DPgPtr +1) -= xgd*s->imag;            *(here->MOS2DPbPtr   ) -= xbd*s->real;            *(here->MOS2DPbPtr +1) -= xbd*s->imag;            *(here->MOS2SPgPtr   ) -= xgs*s->real;            *(here->MOS2SPgPtr +1) -= xgs*s->imag;            *(here->MOS2SPbPtr   ) -= xbs*s->real;            *(here->MOS2SPbPtr +1) -= xbs*s->imag;            *(here->MOS2DdPtr) += here->MOS2drainConductance;            *(here->MOS2SsPtr) += here->MOS2sourceConductance;            *(here->MOS2BbPtr) += here->MOS2gbd+here->MOS2gbs;            *(here->MOS2DPdpPtr) += here->MOS2drainConductance+                    here->MOS2gds+here->MOS2gbd+                    xrev*(here->MOS2gm+here->MOS2gmbs);            *(here->MOS2SPspPtr) += here->MOS2sourceConductance+                    here->MOS2gds+here->MOS2gbs+                    xnrm*(here->MOS2gm+here->MOS2gmbs);            *(here->MOS2DdpPtr) -= here->MOS2drainConductance;            *(here->MOS2SspPtr) -= here->MOS2sourceConductance;            *(here->MOS2BdpPtr) -= here->MOS2gbd;            *(here->MOS2BspPtr) -= here->MOS2gbs;            *(here->MOS2DPdPtr) -= here->MOS2drainConductance;            *(here->MOS2DPgPtr) += (xnrm-xrev)*here->MOS2gm;            *(here->MOS2DPbPtr) += -here->MOS2gbd+(xnrm-xrev)*here->MOS2gmbs;            *(here->MOS2DPspPtr) -= here->MOS2gds+                    xnrm*(here->MOS2gm+here->MOS2gmbs);            *(here->MOS2SPgPtr) -= (xnrm-xrev)*here->MOS2gm;            *(here->MOS2SPsPtr) -= here->MOS2sourceConductance;            *(here->MOS2SPbPtr) -= here->MOS2gbs+(xnrm-xrev)*here->MOS2gmbs;            *(here->MOS2SPdpPtr) -= here->MOS2gds+                    xrev*(here->MOS2gm+here->MOS2gmbs);        }    }    return(OK);}

⌨️ 快捷键说明

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