ngspice/src/spicelib/devices/vsrc/vsrcload.c

207 lines
7.3 KiB
C
Raw Normal View History

2000-04-27 22:03:57 +02:00
/**********
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
Modified: 2000 AlansFixes
2000-04-27 22:03:57 +02:00
**********/
#include "ngspice.h"
#include "cktdefs.h"
#include "vsrcdefs.h"
#include "trandefs.h"
#include "sperror.h"
#include "suffix.h"
int
VSRCload(GENmodel *inModel, CKTcircuit *ckt)
2000-04-27 22:03:57 +02:00
/* actually load the current voltage value into the
* sparse matrix previously provided
*/
{
VSRCmodel *model = (VSRCmodel *)inModel;
VSRCinstance *here;
2000-04-27 22:03:57 +02:00
double time;
double value;
2000-04-27 22:03:57 +02:00
/* 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 (here->VSRCowner != ARCHme) continue;
*(here->VSRCposIbrptr) += 1.0 ;
*(here->VSRCnegIbrptr) -= 1.0 ;
*(here->VSRCibrPosptr) += 1.0 ;
*(here->VSRCibrNegptr) -= 1.0 ;
if( (ckt->CKTmode & (MODEDCOP | MODEDCTRANCURVE)) &&
here->VSRCdcGiven ) {
/* grab dc value */
value = ckt->CKTsrcFact * here->VSRCdcValue;
2000-04-27 22:03:57 +02:00
} else {
if(ckt->CKTmode & (MODEDC)) {
time = 0;
} else {
time = ckt->CKTtime;
}
/* use the transient functions */
switch(here->VSRCfunctionType) {
default: { /* no function specified: use the DC value */
value = here->VSRCdcValue;
2000-04-27 22:03:57 +02:00
break;
}
case PULSE: {
double V1, V2, TD, TR, TF, PW, PER;
double basetime = 0;
V1 = here->VSRCcoeffs[0];
V2 = here->VSRCcoeffs[1];
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;
time -= TD;
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) {
value = V1;
2000-04-27 22:03:57 +02:00
} else if (time >= TR && time <= TR + PW) {
value = V2;
2000-04-27 22:03:57 +02:00
} else if (time > 0 && time < TR) {
value = V1 + (V2 - V1) * (time) / TR;
2000-04-27 22:03:57 +02:00
} else { /* time > TR + PW && < TR + PW + TF */
value = V2 + (V1 - V2) * (time - (TR + PW)) / TF;
2000-04-27 22:03:57 +02:00
}
}
break;
case SINE: {
#define VO (*(here->VSRCcoeffs))
#define VA (*(here->VSRCcoeffs+1))
#define FREQ (((here->VSRCfunctionOrder >=3) && (*(here->VSRCcoeffs+2)))? \
(*(here->VSRCcoeffs+2)):(1/ckt->CKTfinalTime))
#define TD ((here->VSRCfunctionOrder >=4)?(*(here->VSRCcoeffs+3)):(0.0))
#define THETA ((here->VSRCfunctionOrder >=5)?(*(here->VSRCcoeffs+4)):(0.0))
time -= TD;
if (time <= 0) {
value = VO;
2000-04-27 22:03:57 +02:00
} else {
value = VO + VA * sin(FREQ * time * 2.0 * M_PI) *
2000-04-27 22:03:57 +02:00
exp(-(time*THETA));
}
#undef VO
#undef VA
#undef FREQ
#undef TD
#undef THETA
}
break;
case EXP: {
double td1;
double td2;
#define V1 (*(here->VSRCcoeffs))
#define V2 (*(here->VSRCcoeffs+1))
#define TD1 ((here->VSRCfunctionOrder >=3)?(*(here->VSRCcoeffs+2)):\
ckt->CKTstep)
#define TAU1 (((here->VSRCfunctionOrder >=4) && (*(here->VSRCcoeffs+3)))? \
(*(here->VSRCcoeffs+3)):ckt->CKTstep)
#define TD2 (((here->VSRCfunctionOrder >=5) && (*(here->VSRCcoeffs+4)))? \
(*(here->VSRCcoeffs+4)):TD1+ckt->CKTstep)
#define TAU2 (((here->VSRCfunctionOrder >=6) && (*(here->VSRCcoeffs+5)))? \
(*(here->VSRCcoeffs+5)):ckt->CKTstep)
td1 = TD1;
td2 = TD2;
if(time <= td1) {
value = V1;
2000-04-27 22:03:57 +02:00
} else if (time <= td2) {
value = V1 + (V2-V1)*(1-exp(-(time-td1)/TAU1));
2000-04-27 22:03:57 +02:00
} else {
value = V1 + (V2-V1)*(1-exp(-(time-td1)/TAU1)) +
2000-04-27 22:03:57 +02:00
(V1-V2)*(1-exp(-(time-td2)/TAU2)) ;
}
#undef V1
#undef V2
#undef TD1
#undef TAU1
#undef TD2
#undef TAU2
}
break;
case SFFM:{
#define VO (*(here->VSRCcoeffs))
#define VA (*(here->VSRCcoeffs+1))
#define FC (((here->VSRCfunctionOrder >=3) && (*(here->VSRCcoeffs+2)))? \
(*(here->VSRCcoeffs+2)):(1/ckt->CKTfinalTime))
#define MDI ((here->VSRCfunctionOrder>=4)?(*(here->VSRCcoeffs+3)):\
0.0)
#define FS (((here->VSRCfunctionOrder >=5) && (*(here->VSRCcoeffs+4)))? \
(*(here->VSRCcoeffs+4)):(1/ckt->CKTfinalTime))
value = VO + VA *
sin((2 * 3.141592654 * FC * time) +
MDI * sin(2 * 3.141592654 * FS * time));
2000-04-27 22:03:57 +02:00
#undef VO
#undef VA
#undef FC
#undef MDI
#undef FS
}
break;
case PWL: {
int i;
2000-04-27 22:03:57 +02:00
double foo;
if(time < *(here->VSRCcoeffs)) {
foo = *(here->VSRCcoeffs + 1) ;
value = foo;
2000-04-27 22:03:57 +02:00
goto loadDone;
}
for(i=0;i<(here->VSRCfunctionOrder/2)-1;i++) {
if((*(here->VSRCcoeffs+2*i)==time)) {
foo = *(here->VSRCcoeffs+2*i+1);
value = foo;
2000-04-27 22:03:57 +02:00
goto loadDone;
} else if((*(here->VSRCcoeffs+2*i)<time) &&
(*(here->VSRCcoeffs+2*(i+1)) >time)) {
foo = *(here->VSRCcoeffs+2*i+1) +
(((time-*(here->VSRCcoeffs+2*i))/
(*(here->VSRCcoeffs+2*(i+1)) -
*(here->VSRCcoeffs+2*i))) *
(*(here->VSRCcoeffs+2*i+3) -
*(here->VSRCcoeffs+2*i+1)));
value = foo;
2000-04-27 22:03:57 +02:00
goto loadDone;
}
}
foo = *(here->VSRCcoeffs+ here->VSRCfunctionOrder-1) ;
value = foo;
2000-04-27 22:03:57 +02:00
break;
}
}
}
loadDone:
if (ckt->CKTmode & MODETRANOP) value *= ckt->CKTsrcFact;
*(ckt->CKTrhs + (here->VSRCbranch)) += value;
2000-04-27 22:03:57 +02:00
}
}
return(OK);
}