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.
44 lines
934 B
44 lines
934 B
/**********
|
|
Copyright 1990 Regents of the University of California. All rights reserved.
|
|
Author: 1988 Thomas L. Quarles
|
|
**********/
|
|
|
|
/*
|
|
* CKTnames(ckt)
|
|
* output information on all circuit nodes/equations
|
|
*
|
|
*/
|
|
|
|
#include "ngspice.h"
|
|
#include "cktdefs.h"
|
|
#include "ifsim.h"
|
|
#include "iferrmsg.h"
|
|
|
|
|
|
int
|
|
CKTnames(CKTcircuit *ckt, int *numNames, IFuid **nameList)
|
|
{
|
|
CKTnode *here;
|
|
int i;
|
|
*numNames = ckt->CKTmaxEqNum-1;
|
|
*nameList = (IFuid *)MALLOC(*numNames * sizeof(IFuid ));
|
|
if ((*nameList) == (IFuid *)NULL) return(E_NOMEM);
|
|
i=0;
|
|
for (here = ckt->CKTnodes->next; here; here = here->next) {
|
|
*((*nameList)+i++) = here->name;
|
|
}
|
|
return(OK);
|
|
}
|
|
|
|
int
|
|
CKTdnames(CKTcircuit *ckt)
|
|
{
|
|
CKTnode *here;
|
|
int i;
|
|
|
|
i=0;
|
|
for (here = ckt->CKTnodes->next; here; here = here->next) {
|
|
printf("%03d: %s\n", here->number, (char *)here->name);
|
|
}
|
|
return(OK);
|
|
}
|