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.
 
 
 
 
 
 

254 lines
6.8 KiB

/**********
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
**********/
/* CKTsetup(ckt)
* this is a driver program to iterate through all the various
* setup functions provided for the circuit elements in the
* given circuit
*/
#include "ngspice/ngspice.h"
#include "ngspice/smpdefs.h"
#include "ngspice/cktdefs.h"
#include "ngspice/devdefs.h"
#include "ngspice/sperror.h"
#include "ngspice/fteext.h"
#ifdef XSPICE
#include "ngspice/enh.h"
#endif
#ifdef USE_OMP
#include <omp.h>
#include "ngspice/cpextern.h"
int nthreads;
#endif
#define CKALLOC(var,size,type) \
if(size && ((var = TMALLOC(type, size)) == NULL)){\
return(E_NOMEM);\
}
int
CKTsetup(CKTcircuit *ckt)
{
int i;
int error;
#ifdef XSPICE
/* gtri - begin - Setup for adding rshunt option resistors */
CKTnode *node;
int num_nodes;
/* gtri - end - Setup for adding rshunt option resistors */
#ifdef KLU
BindElement BindNode, *matched, *BindStruct ;
size_t nz ;
#endif
#endif
SMPmatrix *matrix;
if (!ckt->CKThead) {
fprintf(stderr, "Error: No model list found, device setup not possible!\n");
if (ft_stricterror)
controlled_exit(EXIT_BAD);
return E_PANIC;
}
if (!DEVices) {
fprintf(stderr, "Error: No device list found, device setup not possible!\n");
if (ft_stricterror)
controlled_exit(EXIT_BAD);
return E_PANIC;
}
ckt->CKTnumStates=0;
#ifdef WANT_SENSE2
if(ckt->CKTsenInfo){
error = CKTsenSetup(ckt);
if (error)
return(error);
}
#endif
if (ckt->CKTisSetup)
return E_NOCHANGE;
error = NIinit(ckt);
if (error)
return(error);
ckt->CKTisSetup = 1;
matrix = ckt->CKTmatrix;
#ifdef USE_OMP
if (!cp_getvar("num_threads", CP_NUM, &nthreads, 0))
nthreads = 2;
omp_set_num_threads(nthreads);
/* if (nthreads == 1)
printf("OpenMP: %d thread is requested in ngspice\n", nthreads);
else
printf("OpenMP: %d threads are requested in ngspice\n", nthreads);*/
#endif
#ifdef HAS_PROGREP
SetAnalyse("Device Setup", 0);
#endif
/* preserve CKTlastNode before invoking DEVsetup()
* so we can check for incomplete CKTdltNNum() invocations
* during DEVunsetup() causing an erronous circuit matrix
* when reinvoking CKTsetup()
*/
ckt->prev_CKTlastNode = ckt->CKTlastNode;
for (i=0;i<DEVmaxnum;i++) {
if ( DEVices[i] && DEVices[i]->DEVsetup && ckt->CKThead[i] ) {
error = DEVices[i]->DEVsetup (matrix, ckt->CKThead[i], ckt,
&ckt->CKTnumStates);
if(error) return(error);
}
}
#ifdef XSPICE
/* gtri - begin - Setup for adding rshunt option resistors */
if(ckt->enh->rshunt_data.enabled) {
/* Count number of voltage nodes in circuit */
for(num_nodes = 0, node = ckt->CKTnodes; node; node = node->next)
if((node->type == SP_VOLTAGE) && (node->number != 0))
num_nodes++;
/* Allocate space for the matrix diagonal data */
if(num_nodes > 0) {
ckt->enh->rshunt_data.diag =
TMALLOC(double *, num_nodes);
}
/* Set the number of nodes in the rshunt data */
ckt->enh->rshunt_data.num_nodes = num_nodes;
/* Get/create matrix diagonal entry following what RESsetup does */
for(i = 0, node = ckt->CKTnodes; node; node = node->next) {
if((node->type == SP_VOLTAGE) && (node->number != 0)) {
ckt->enh->rshunt_data.diag[i] =
SMPmakeElt(matrix,node->number,node->number);
i++;
}
}
}
/* gtri - end - Setup for adding rshunt option resistors */
#endif
#ifdef KLU
if (ckt->CKTmatrix->CKTkluMODE)
{
fprintf (stderr, "Using KLU as Direct Linear Solver\n") ;
/* Convert the COO Storage to CSC for KLU and Fill the Binding Table */
SMPconvertCOOtoCSC (matrix) ;
/* Assign the KLU Pointers */
for (i = 0 ; i < DEVmaxnum ; i++)
if (DEVices [i] && DEVices [i]->DEVbindCSC && ckt->CKThead [i])
DEVices [i]->DEVbindCSC (ckt->CKThead [i], ckt) ;
#ifdef XSPICE
if (ckt->enh->rshunt_data.num_nodes > 0) {
BindStruct = ckt->CKTmatrix->SMPkluMatrix->KLUmatrixBindStructCOO ;
nz = (size_t)ckt->CKTmatrix->SMPkluMatrix->KLUmatrixLinkedListNZ ;
for(i = 0, node = ckt->CKTnodes; node; node = node->next) {
if((node->type == SP_VOLTAGE) && (node->number != 0)) {
BindNode.COO = ckt->enh->rshunt_data.diag [i] ;
BindNode.CSC = NULL ;
BindNode.CSC_Complex = NULL ;
matched = (BindElement *) bsearch (&BindNode, BindStruct, nz, sizeof (BindElement), BindCompare) ;
if (matched == NULL) {
printf ("Ptr %p not found in BindStruct Table\n", ckt->enh->rshunt_data.diag [i]) ;
}
ckt->enh->rshunt_data.diag [i] = matched->CSC ;
i++;
}
}
}
#endif
} else {
fprintf (stderr, "Using SPARSE 1.3 as Direct Linear Solver\n") ;
}
#endif
for(i=0;i<=MAX(2,ckt->CKTmaxOrder)+1;i++) { /* dctran needs 3 states as minimum */
CKALLOC(ckt->CKTstates[i],ckt->CKTnumStates,double);
}
#ifdef WANT_SENSE2
if(ckt->CKTsenInfo){
/* to allocate memory to sensitivity structures if
* it is not done before */
error = NIsenReinit(ckt);
if(error) return(error);
}
#endif
if(ckt->CKTniState & NIUNINITIALIZED) {
error = NIreinit(ckt);
if(error) return(error);
}
return(OK);
}
int
CKTunsetup(CKTcircuit *ckt)
{
int i, error, e2;
CKTnode *node;
error = OK;
if (!ckt->CKTisSetup)
return OK;
for(i=0;i<=ckt->CKTmaxOrder+1;i++) {
tfree(ckt->CKTstates[i]);
}
/* added by HT 050802*/
for(node=ckt->CKTnodes;node;node=node->next){
if(node->icGiven || node->nsGiven) {
node->ptr=NULL;
}
}
for (i=0;i<DEVmaxnum;i++) {
if ( DEVices[i] && DEVices[i]->DEVunsetup && ckt->CKThead[i] ) {
e2 = DEVices[i]->DEVunsetup (ckt->CKThead[i], ckt);
if (!error && e2)
error = e2;
}
}
if (ckt->prev_CKTlastNode != ckt->CKTlastNode) {
fprintf(stderr, "Internal Error: incomplete CKTunsetup(), this will cause serious problems, please report this issue !\n");
controlled_exit(EXIT_FAILURE);
}
ckt->prev_CKTlastNode = NULL;
ckt->CKTisSetup = 0;
if(error) return(error);
NIdestroy(ckt);
/*
if (ckt->CKTmatrix)
SMPdestroy(ckt->CKTmatrix);
ckt->CKTmatrix = NULL;
*/
return OK;
}