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.
160 lines
4.2 KiB
160 lines
4.2 KiB
/**********
|
|
Copyright 1992 Regents of the University of California. All rights reserved.
|
|
Author: 1987 Kartikeya Mayaram, U. C. Berkeley CAD Group
|
|
Author: 1991 David A. Gates, U. C. Berkeley CAD Group
|
|
**********/
|
|
|
|
/*
|
|
* This is a simple routine to dump the internal device states. It produces
|
|
* states for .OP, .DC, & .TRAN simulations.
|
|
*/
|
|
|
|
#include "ngspice/ngspice.h"
|
|
#include "ngspice/cktdefs.h"
|
|
#include "numddefs.h"
|
|
#include "../../../ciderlib/oned/onedext.h"
|
|
#include "ngspice/cidersupt.h"
|
|
#include "ngspice/suffix.h"
|
|
|
|
|
|
/* Forward Declarations */
|
|
static void NUMDputHeader(FILE *, CKTcircuit *, NUMDinstance *);
|
|
|
|
/* State Counter */
|
|
static int state_numOP = 0;
|
|
static int state_numDC = 0;
|
|
static int state_numTR = 0;
|
|
|
|
void
|
|
NUMDdump(GENmodel *inModel, CKTcircuit *ckt)
|
|
{
|
|
register NUMDmodel *model = (NUMDmodel *) inModel;
|
|
register NUMDinstance *inst;
|
|
OUTPcard *output;
|
|
FILE *fpState;
|
|
char fileName[BSIZE_SP];
|
|
char description[BSIZE_SP];
|
|
char *prefix;
|
|
int *state_num;
|
|
int anyOutput = 0;
|
|
BOOLEAN writeAscii = TRUE;
|
|
|
|
if (ckt->CKTmode & MODEDCOP) {
|
|
prefix = "OP";
|
|
state_num = &state_numOP;
|
|
sprintf(description, "...");
|
|
} else if (ckt->CKTmode & MODEDCTRANCURVE) {
|
|
prefix = "DC";
|
|
state_num = &state_numDC;
|
|
sprintf(description, "sweep = % e", ckt->CKTtime);
|
|
} else if (ckt->CKTmode & MODETRAN) {
|
|
prefix = "TR";
|
|
state_num = &state_numTR;
|
|
sprintf(description, "time = % e", ckt->CKTtime);
|
|
} else {
|
|
/* Not a recognized CKT mode. */
|
|
return;
|
|
}
|
|
|
|
for (; model != NULL; model = NUMDnextModel(model)) {
|
|
output = model->NUMDoutputs;
|
|
for (inst = NUMDinstances(model); inst != NULL;
|
|
inst = NUMDnextInstance(inst)) {
|
|
|
|
if (inst->NUMDprintGiven) {
|
|
if ((ckt->CKTmode & MODETRAN) &&
|
|
((ckt->CKTstat->STATaccepted - 1) % inst->NUMDprint != 0)) {
|
|
continue;
|
|
}
|
|
anyOutput = 1;
|
|
sprintf(fileName, "%s%s.%d.%s", output->OUTProotFile, prefix,
|
|
*state_num, inst->NUMDname);
|
|
|
|
writeAscii = compareFiletypeVar("ascii");
|
|
|
|
if (!(fpState = fopen(fileName, (writeAscii ? "w" : "wb")))) {
|
|
perror(fileName);
|
|
} else {
|
|
NUMDputHeader(fpState, ckt, inst);
|
|
ONEprnSolution(fpState, inst->NUMDpDevice,
|
|
model->NUMDoutputs, writeAscii, "numd");
|
|
fclose(fpState);
|
|
LOGmakeEntry(fileName, description);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (anyOutput) {
|
|
(*state_num)++;
|
|
}
|
|
}
|
|
|
|
#define NUMDnumOutputs 4
|
|
|
|
static
|
|
void
|
|
NUMDputHeader(FILE *file, CKTcircuit *ckt, NUMDinstance *inst)
|
|
{
|
|
char *reference;
|
|
double refVal = 0.0;
|
|
int numVars = NUMDnumOutputs;
|
|
|
|
if (ckt->CKTmode & MODEDCOP) {
|
|
reference = NULL;
|
|
} else if (ckt->CKTmode & MODEDCTRANCURVE) {
|
|
reference = "sweep";
|
|
refVal = ckt->CKTtime;
|
|
numVars++;
|
|
} else if (ckt->CKTmode & MODETRAN) {
|
|
reference = "time";
|
|
refVal = ckt->CKTtime;
|
|
numVars++;
|
|
} else {
|
|
reference = NULL;
|
|
}
|
|
fprintf(file, "Title: Device %s external state\n", inst->NUMDname);
|
|
fprintf(file, "Plotname: Device Operating Point\n");
|
|
fprintf(file, "Command: deftype v conductance S\n");
|
|
fprintf(file, "Flags: real\n");
|
|
fprintf(file, "No. Variables: %d\n", numVars);
|
|
fprintf(file, "No. Points: 1\n");
|
|
numVars = 0;
|
|
fprintf(file, "Variables:\n");
|
|
if (reference) {
|
|
fprintf(file, "\t%d %s unknown\n", numVars++, reference);
|
|
}
|
|
fprintf(file, "\t%d v12 voltage\n", numVars++);
|
|
fprintf(file, "\t%d i1 current\n", numVars++);
|
|
fprintf(file, "\t%d i2 current\n", numVars++);
|
|
fprintf(file, "\t%d g11 conductance\n", numVars++);
|
|
fprintf(file, "Values:\n0");
|
|
if (reference) {
|
|
fprintf(file, "\t% e\n", refVal);
|
|
}
|
|
fprintf(file, "\t% e\n", *(ckt->CKTstate0 + inst->NUMDvoltage));
|
|
fprintf(file, "\t% e\n", *(ckt->CKTstate0 + inst->NUMDid));
|
|
fprintf(file, "\t% e\n", - *(ckt->CKTstate0 + inst->NUMDid));
|
|
fprintf(file, "\t% e\n", *(ckt->CKTstate0 + inst->NUMDconduct));
|
|
}
|
|
|
|
void
|
|
NUMDacct(GENmodel *inModel, CKTcircuit *ckt, FILE *file)
|
|
{
|
|
register NUMDmodel *model = (NUMDmodel *) inModel;
|
|
register NUMDinstance *inst;
|
|
OUTPcard *output;
|
|
|
|
NG_IGNORE(ckt);
|
|
|
|
for (; model != NULL; model = NUMDnextModel(model)) {
|
|
output = model->NUMDoutputs;
|
|
for (inst = NUMDinstances(model); inst != NULL;
|
|
inst = NUMDnextInstance(inst)) {
|
|
|
|
if (output->OUTPstats) {
|
|
ONEmemStats(file, inst->NUMDpDevice);
|
|
ONEcpuStats(file, inst->NUMDpDevice);
|
|
}
|
|
}
|
|
}
|
|
}
|