You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

48 lines
1.4 KiB

/**********
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
**********/
#include "ngspice/ngspice.h"
#include "ngspice/cktdefs.h"
#include "ngspice/complex.h"
#include "ngspice/sperror.h"
#include "vsrcdefs.h"
#include "ngspice/suffix.h"
/* ARGSUSED */
int
VSRCpzLoad(GENmodel *inModel, CKTcircuit *ckt, SPcomplex *s)
{
VSRCmodel *model = (VSRCmodel *)inModel;
VSRCinstance *here;
NG_IGNORE(s);
NG_IGNORE(ckt);
for( ; model != NULL; model = VSRCnextModel(model)) {
/* loop through all the instances of the model */
for (here = VSRCinstances(model); here != NULL ;
here=VSRCnextInstance(here)) {
if (!(here->VSRCacGiven)) {
/*a dc source*/
/*the connecting nodes are shorted*/
*(here->VSRCposIbrPtr) += 1.0 ;
*(here->VSRCnegIbrPtr) += -1.0 ;
*(here->VSRCibrPosPtr) += 1.0 ;
*(here->VSRCibrNegPtr) += -1.0 ;
} else {
/*an ac source*/
/*no effective contribution
*diagonal element made 1
*/
*(here->VSRCposIbrPtr) += 1.0 ;
*(here->VSRCnegIbrPtr) += -1.0 ;
*(here->VSRCibrIbrPtr) += 1.0 ;
}
}
}
return(OK);
}