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

📄 isrcacct.c

📁 ngspice又一个电子CAD仿真软件代码.功能更全
💻 C
字号:
/**********Copyright 1990 Regents of the University of California.  All rights reserved.Author: 1985 Thomas L. Quarles**********/#include "ngspice.h"#include "cktdefs.h"#include "isrcdefs.h"#include "trandefs.h"#include "sperror.h"#include "suffix.h"intISRCaccept(CKTcircuit *ckt, GENmodel *inModel)        /* set up the breakpoint table.  */{    ISRCmodel *model = (ISRCmodel*)inModel;    ISRCinstance *here;    int error;    /*  loop through all the voltage source models */    for( ; model != NULL; model = model->ISRCnextModel ) {        /* loop through all the instances of the model */        for (here = model->ISRCinstances; here != NULL ;                here=here->ISRCnextInstance) {                        if(!ckt->CKTmode & (MODETRAN | MODETRANOP)) {                /* not transient, so shouldn't be here */                return(OK);            } else {                /* use the transient functions */                switch(here->ISRCfunctionType) {                default: { /* no function specified:DC   no breakpoints */                    break;                }                                case PULSE: {#define SAMETIME(a,b) (fabs((a)-(b))<= TIMETOL * PW)#define TIMETOL 1e-7		    double	TD, TR, TF, PW, PER;/* gtri - begin - wbk - add PHASE parameter */#ifdef XSPICE		    		    double      PHASE;		    double phase;                    double deltat;                    double basephase;#endif		                        double time;                    double basetime = 0;		    TD = here->ISRCfunctionOrder > 2			? here->ISRCcoeffs[2] : 0.0;		    TR = here->ISRCfunctionOrder > 3			&& here->ISRCcoeffs[3] != 0.0			? here->ISRCcoeffs[3] : ckt->CKTstep;		    TF = here->ISRCfunctionOrder > 4			&& here->ISRCcoeffs[4] != 0.0			? here->ISRCcoeffs[4] : ckt->CKTstep;		    PW = here->ISRCfunctionOrder > 5			&& here->ISRCcoeffs[5] != 0.0			? here->ISRCcoeffs[5] : ckt->CKTfinalTime;		    PER = here->ISRCfunctionOrder > 6			&& here->ISRCcoeffs[6] != 0.0			? here->ISRCcoeffs[6] : ckt->CKTfinalTime;#ifdef XSPICE                    PHASE = here->ISRCfunctionOrder > 8 			? here->ISRCcoeffs[7] : 0.0;					     /* normalize phase to 0 - 2PI */                     phase = PHASE * M_PI / 180.0;                    basephase = 2 * M_PI * floor(phase / (2 * M_PI));                    phase -= basephase;                    /* compute equivalent delta time and add to time */                    deltat = (phase / (2 * M_PI)) * PER;                    time += deltat;	#endif		    /* gtri - end - wbk - add PHASE parameter */                                    /* offset time by delay */                    time = ckt->CKTtime - TD;                    if(time >= PER) {                        /* repeating signal - figure out where we are */                        /* in period */                        basetime = PER * floor(time/PER);                        time -= basetime;                    }                    if( time <= 0.0 || time >= TR + PW + TF) {                        if(ckt->CKTbreak &&  SAMETIME(time,0.0)) {                            /* set next breakpoint */                            error = CKTsetBreak(ckt,basetime + TR + TD);                            if(error) return(error);                        } else if(ckt->CKTbreak && SAMETIME(TR+PW+TF,time) ) {                            /* set next breakpoint */                            error = CKTsetBreak(ckt,basetime + PER + TD);                            if(error) return(error);                        } else if (ckt->CKTbreak && (time == -TD) ) {                            /* set next breakpoint */                            error = CKTsetBreak(ckt,basetime + TD);                            if(error) return(error);                        } else if (ckt->CKTbreak && SAMETIME(PER,time) ) {                            /* set next breakpoint */                            error = CKTsetBreak(ckt,basetime + TD + TR + PER);                            if(error) return(error);                        }                    } else  if ( time >= TR && time <= TR + PW) {                        if(ckt->CKTbreak &&  SAMETIME(time,TR) ) {                            /* set next breakpoint */                            error = CKTsetBreak(ckt,basetime + TD+TR + PW);                            if(error) return(error);                        } else if(ckt->CKTbreak &&  SAMETIME(TR+PW,time) ) {                            /* set next breakpoint */                            error = CKTsetBreak(ckt,basetime + TD+TR + PW + TF);                            if(error) return(error);                        }                    } else if (time > 0 && time < TR) {                        if(ckt->CKTbreak && SAMETIME(time,0) ) {                            /* set next breakpoint */                            error = CKTsetBreak(ckt,basetime + TD+TR);                            if(error) return(error);                        } else if(ckt->CKTbreak && SAMETIME(time,TR)) {                            /* set next breakpoint */                            error = CKTsetBreak(ckt,basetime + TD+TR + PW);                            if(error) return(error);                        }                    } else { /* time > TR + PW && < TR + PW + TF */                        if(ckt->CKTbreak && SAMETIME(time,TR+PW) ) {                            /* set next breakpoint */                            error = CKTsetBreak(ckt,basetime + TD+TR + PW +TF);                            if(error) return(error);                        } else if(ckt->CKTbreak && SAMETIME(time,TR+PW+TF) ) {                            /* set next breakpoint */                            error = CKTsetBreak(ckt,basetime + TD+PER);                            if(error) return(error);                        }                    }                }                break;                case SINE: {                    /* no  breakpoints (yet) */                }                break;                case EXP: {                    /* no  breakpoints (yet) */                }                break;                case SFFM:{                    /* no  breakpoints (yet) */                }                break;		case AM:{                    /* no  breakpoints (yet) */                }                break;                case PWL: {                    int i;                    if(ckt->CKTtime < *(here->ISRCcoeffs)) {                        if(ckt->CKTbreak) {                            error = CKTsetBreak(ckt,*(here->ISRCcoeffs));                            break;                        }                    }                    for(i=0;i<(here->ISRCfunctionOrder/2)-1;i++) {                        if((*(here->ISRCcoeffs+2*i)==ckt->CKTtime)) {                            if(ckt->CKTbreak) {                                error = CKTsetBreak(ckt,                                        *(here->ISRCcoeffs+2*i+2));                                if(error) return(error);                            }                            goto bkptset;                        }                     }                    break;                }                }            }bkptset: ;        }    }    return(OK);}

⌨️ 快捷键说明

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