2000-04-27 22:03:57 +02:00
|
|
|
/**********
|
|
|
|
|
Copyright 1990 Regents of the University of California. All rights reserved.
|
|
|
|
|
Author: 1985 Thomas L. Quarles
|
|
|
|
|
**********/
|
|
|
|
|
|
|
|
|
|
#include "ngspice.h"
|
|
|
|
|
#include "cktdefs.h"
|
|
|
|
|
#include "vsrcdefs.h"
|
|
|
|
|
#include "trandefs.h"
|
|
|
|
|
#include "sperror.h"
|
|
|
|
|
#include "suffix.h"
|
2007-11-21 18:05:51 +01:00
|
|
|
#include "missing_math.h"
|
2000-04-27 22:03:57 +02:00
|
|
|
|
2007-10-09 10:44:49 +02:00
|
|
|
#define SAMETIME(a,b) (fabs((a)-(b))<= TIMETOL * PW)
|
|
|
|
|
#define TIMETOL 1e-7
|
|
|
|
|
|
2000-04-27 22:03:57 +02:00
|
|
|
int
|
2004-01-26 20:51:11 +01:00
|
|
|
VSRCaccept(CKTcircuit *ckt, GENmodel *inModel)
|
2000-04-27 22:03:57 +02:00
|
|
|
/* set up the breakpoint table.
|
|
|
|
|
*/
|
|
|
|
|
{
|
2000-07-11 15:39:04 +02:00
|
|
|
VSRCmodel *model = (VSRCmodel *)inModel;
|
|
|
|
|
VSRCinstance *here;
|
2000-04-27 22:03:57 +02:00
|
|
|
int error;
|
|
|
|
|
|
|
|
|
|
/* loop through all the voltage source models */
|
|
|
|
|
for( ; model != NULL; model = model->VSRCnextModel ) {
|
|
|
|
|
|
|
|
|
|
/* loop through all the instances of the model */
|
|
|
|
|
for (here = model->VSRCinstances; here != NULL ;
|
|
|
|
|
here=here->VSRCnextInstance) {
|
|
|
|
|
|
|
|
|
|
if(!ckt->CKTmode & (MODETRAN | MODETRANOP)) {
|
|
|
|
|
/* not transient, so shouldn't be here */
|
|
|
|
|
return(OK);
|
|
|
|
|
} else {
|
|
|
|
|
/* use the transient functions */
|
|
|
|
|
switch(here->VSRCfunctionType) {
|
|
|
|
|
default: { /* no function specified:DC no breakpoints */
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case PULSE: {
|
2005-05-10 09:01:47 +02:00
|
|
|
|
2000-04-27 22:03:57 +02:00
|
|
|
double TD, TR, TF, PW, PER;
|
2005-05-10 09:01:47 +02:00
|
|
|
/* gtri - begin - wbk - add PHASE parameter */
|
|
|
|
|
#ifdef XSPICE
|
|
|
|
|
double PHASE;
|
|
|
|
|
double phase;
|
|
|
|
|
double deltat;
|
|
|
|
|
double basephase;
|
|
|
|
|
#endif
|
2000-04-27 22:03:57 +02:00
|
|
|
double time;
|
|
|
|
|
double basetime = 0;
|
|
|
|
|
|
|
|
|
|
TD = here->VSRCfunctionOrder > 2
|
|
|
|
|
? here->VSRCcoeffs[2] : 0.0;
|
|
|
|
|
TR = here->VSRCfunctionOrder > 3
|
|
|
|
|
&& here->VSRCcoeffs[3] != 0.0
|
|
|
|
|
? here->VSRCcoeffs[3] : ckt->CKTstep;
|
|
|
|
|
TF = here->VSRCfunctionOrder > 4
|
|
|
|
|
&& here->VSRCcoeffs[4] != 0.0
|
|
|
|
|
? here->VSRCcoeffs[4] : ckt->CKTstep;
|
|
|
|
|
PW = here->VSRCfunctionOrder > 5
|
|
|
|
|
&& here->VSRCcoeffs[5] != 0.0
|
|
|
|
|
? here->VSRCcoeffs[5] : ckt->CKTfinalTime;
|
|
|
|
|
PER = here->VSRCfunctionOrder > 6
|
|
|
|
|
&& here->VSRCcoeffs[6] != 0.0
|
|
|
|
|
? here->VSRCcoeffs[6] : ckt->CKTfinalTime;
|
2005-05-10 09:01:47 +02:00
|
|
|
#ifdef XSPICE
|
|
|
|
|
PHASE = here->VSRCfunctionOrder > 8
|
|
|
|
|
? here->VSRCcoeffs[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;
|
2000-04-27 22:03:57 +02:00
|
|
|
|
2005-05-10 09:01:47 +02:00
|
|
|
/* compute equivalent delta time and add to time */
|
|
|
|
|
deltat = (phase / (2 * M_PI)) * PER;
|
|
|
|
|
time += deltat;
|
|
|
|
|
#endif
|
|
|
|
|
/* gtri - end - wbk - add PHASE parameter */
|
2000-04-27 22:03:57 +02:00
|
|
|
|
|
|
|
|
time = ckt->CKTtime - TD;
|
2007-11-21 18:05:51 +01:00
|
|
|
|
2000-04-27 22:03:57 +02:00
|
|
|
if(time >= PER) {
|
|
|
|
|
/* repeating signal - figure out where we are */
|
|
|
|
|
/* in period */
|
|
|
|
|
basetime = PER * floor(time/PER);
|
|
|
|
|
time -= basetime;
|
|
|
|
|
}
|
|
|
|
|
if( time <= 0 || time >= TR + PW + TF) {
|
|
|
|
|
if(ckt->CKTbreak && SAMETIME(time,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;
|
2005-05-10 09:01:47 +02:00
|
|
|
case AM:{
|
|
|
|
|
/* no breakpoints (yet) */
|
|
|
|
|
}
|
|
|
|
|
break;
|
2000-04-27 22:03:57 +02:00
|
|
|
case PWL: {
|
2000-07-11 15:39:04 +02:00
|
|
|
int i;
|
2000-04-27 22:03:57 +02:00
|
|
|
if(ckt->CKTtime < *(here->VSRCcoeffs)) {
|
|
|
|
|
if(ckt->CKTbreak) {
|
|
|
|
|
error = CKTsetBreak(ckt,*(here->VSRCcoeffs));
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
for(i=0;i<(here->VSRCfunctionOrder/2)-1;i++) {
|
2007-11-21 18:05:51 +01:00
|
|
|
/* if((*(here->VSRCcoeffs+2*i)==ckt->CKTtime)) {
|
|
|
|
|
if(ckt->CKTbreak) {*/
|
2007-10-09 10:44:49 +02:00
|
|
|
if ( ckt->CKTbreak && AlmostEqualUlps(*(here->VSRCcoeffs+2*i), ckt->CKTtime, 3 ) ) {
|
|
|
|
|
error = CKTsetBreak(ckt, *(here->VSRCcoeffs+2*i+2));
|
|
|
|
|
if(error) return(error);
|
|
|
|
|
goto bkptset;
|
|
|
|
|
}
|
2000-04-27 22:03:57 +02:00
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
bkptset: ;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return(OK);
|
|
|
|
|
}
|