2000-04-27 22:03:57 +02:00
|
|
|
|
/**********
|
|
|
|
|
|
Copyright 1990 Regents of the University of California. All rights reserved.
|
|
|
|
|
|
Author: 1988 Wayne A. Christopher, U. C. Berkeley CAD Group
|
2005-05-30 22:28:29 +02:00
|
|
|
|
Modified: 2000 AlansFixes
|
|
|
|
|
|
$Id$
|
2000-04-27 22:03:57 +02:00
|
|
|
|
**********/
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
* This module replaces the old "writedata" routines in nutmeg.
|
|
|
|
|
|
* Unlike the writedata routines, the OUT routines are only called by
|
|
|
|
|
|
* the simulator routines, and only call routines in nutmeg. The rest
|
|
|
|
|
|
* of nutmeg doesn't deal with OUT at all.
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "ngspice.h"
|
|
|
|
|
|
#include "cpdefs.h"
|
|
|
|
|
|
#include "ftedefs.h"
|
2000-05-06 16:12:51 +02:00
|
|
|
|
#include "dvec.h"
|
|
|
|
|
|
#include "plot.h"
|
|
|
|
|
|
#include "sim.h"
|
2000-04-27 22:03:57 +02:00
|
|
|
|
#include "inpdefs.h" /* for INPtables */
|
|
|
|
|
|
#include "ifsim.h"
|
|
|
|
|
|
#include "jobdefs.h"
|
|
|
|
|
|
#include "iferrmsg.h"
|
2000-06-27 18:09:02 +02:00
|
|
|
|
#include "circuits.h"
|
2000-04-27 22:03:57 +02:00
|
|
|
|
#include "outitf.h"
|
2000-06-27 18:09:02 +02:00
|
|
|
|
#include "variable.h"
|
2000-10-03 07:22:07 +02:00
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
#include "cktdefs.h"
|
2008-01-02 19:24:56 +01:00
|
|
|
|
#include "inpdefs.h"
|
2005-05-30 22:28:29 +02:00
|
|
|
|
#include "breakp2.h"
|
|
|
|
|
|
#include "runcoms.h"
|
|
|
|
|
|
#include "plotting/graf.h"
|
2000-04-27 22:03:57 +02:00
|
|
|
|
|
2000-09-05 21:48:22 +02:00
|
|
|
|
extern char *spice_analysis_get_name(int index);
|
|
|
|
|
|
extern char *spice_analysis_get_description(int index);
|
|
|
|
|
|
|
2000-10-03 07:22:07 +02:00
|
|
|
|
|
2000-04-27 22:03:57 +02:00
|
|
|
|
/* static declarations */
|
|
|
|
|
|
static int beginPlot(void *analysisPtr, void *circuitPtr, char *cktName, char *analName,
|
2000-10-03 07:22:07 +02:00
|
|
|
|
char *refName, int refType, int numNames, char **dataNames, int dataType,
|
|
|
|
|
|
bool windowed, runDesc **runp);
|
2000-04-27 22:03:57 +02:00
|
|
|
|
static int addDataDesc(runDesc *run, char *name, int type, int ind);
|
|
|
|
|
|
static int addSpecialDesc(runDesc *run, char *name, char *devname, char *param, int depind);
|
|
|
|
|
|
static void fileInit(runDesc *run);
|
|
|
|
|
|
static void fileInit_pass2(runDesc *run);
|
|
|
|
|
|
static void fileStartPoint(FILE *fp, bool bin, int num);
|
|
|
|
|
|
static void fileAddRealValue(FILE *fp, bool bin, double value);
|
|
|
|
|
|
static void fileAddComplexValue(FILE *fp, bool bin, IFcomplex value);
|
|
|
|
|
|
static void fileEndPoint(FILE *fp, bool bin);
|
|
|
|
|
|
static void fileEnd(runDesc *run);
|
|
|
|
|
|
static void plotInit(runDesc *run);
|
|
|
|
|
|
static void plotAddRealValue(dataDesc *desc, double value);
|
|
|
|
|
|
static void plotAddComplexValue(dataDesc *desc, IFcomplex value);
|
|
|
|
|
|
static void plotEnd(runDesc *run);
|
|
|
|
|
|
static bool parseSpecial(char *name, char *dev, char *param, char *ind);
|
|
|
|
|
|
static bool name_eq(char *n1, char *n2);
|
|
|
|
|
|
static bool getSpecial(dataDesc *desc, runDesc *run, IFvalue *val);
|
|
|
|
|
|
static void freeRun(runDesc *run);
|
|
|
|
|
|
|
2008-08-27 15:39:05 +02:00
|
|
|
|
/*Output data to spice module saj*/
|
|
|
|
|
|
#ifdef TCL_MODULE
|
|
|
|
|
|
#include "tclspice.h"
|
|
|
|
|
|
#endif
|
|
|
|
|
|
/*saj*/
|
|
|
|
|
|
|
2000-04-27 22:03:57 +02:00
|
|
|
|
|
|
|
|
|
|
#define DOUBLE_PRECISION 15
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-09-13 00:00:57 +02:00
|
|
|
|
static clock_t lastclock, currclock;
|
2001-01-21 18:18:20 +01:00
|
|
|
|
static double *rowbuf;
|
2000-09-13 00:00:57 +02:00
|
|
|
|
static int column, rowbuflen;
|
|
|
|
|
|
|
2000-09-12 21:02:26 +02:00
|
|
|
|
static bool shouldstop = FALSE; /* Tell simulator to stop next time it asks. */
|
2000-10-03 07:22:07 +02:00
|
|
|
|
static bool printinfo = FALSE; /* Print informational "error messages". */
|
|
|
|
|
|
|
2000-09-03 11:00:08 +02:00
|
|
|
|
|
2000-04-27 22:03:57 +02:00
|
|
|
|
/* The two "begin plot" routines share all their internals... */
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
|
OUTpBeginPlot(void *circuitPtr, void *analysisPtr, IFuid analName, IFuid refName, int refType, int numNames, IFuid *dataNames, int dataType, void **plotPtr)
|
|
|
|
|
|
{
|
2003-12-25 18:30:36 +01:00
|
|
|
|
char *name;
|
|
|
|
|
|
|
2000-04-27 22:03:57 +02:00
|
|
|
|
#ifdef PARALLEL_ARCH
|
|
|
|
|
|
if (ARCHme != 0) return(OK);
|
|
|
|
|
|
#endif /* PARALLEL_ARCH */
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-12-25 18:30:36 +01:00
|
|
|
|
if (ft_curckt->ci_ckt == circuitPtr)
|
|
|
|
|
|
name = ft_curckt->ci_name;
|
|
|
|
|
|
else
|
|
|
|
|
|
name = "circuit name";
|
|
|
|
|
|
|
|
|
|
|
|
return (beginPlot(analysisPtr, circuitPtr, name,
|
|
|
|
|
|
(char *) analName, (char *) refName, refType, numNames,
|
|
|
|
|
|
(char **) dataNames, dataType, FALSE,
|
|
|
|
|
|
(runDesc **) plotPtr));
|
2000-04-27 22:03:57 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
|
OUTwBeginPlot(void *circuitPtr, void *analysisPtr, IFuid analName, IFuid refName, int refType, int numNames, IFuid *dataNames, int dataType, void **plotPtr)
|
|
|
|
|
|
{
|
|
|
|
|
|
#ifdef PARALLEL_ARCH
|
|
|
|
|
|
if (ARCHme != 0) return(OK);
|
|
|
|
|
|
#endif /* PARALLEL_ARCH */
|
|
|
|
|
|
|
|
|
|
|
|
return (beginPlot(analysisPtr, circuitPtr, "circuit name",
|
|
|
|
|
|
(char *) analName, (char *) refName, refType, numNames,
|
|
|
|
|
|
(char **) dataNames, dataType, TRUE,
|
|
|
|
|
|
(runDesc **) plotPtr));
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
|
beginPlot(void *analysisPtr, void *circuitPtr, char *cktName, char *analName, char *refName, int refType, int numNames, char **dataNames, int dataType, bool windowed, runDesc **runp)
|
|
|
|
|
|
{
|
|
|
|
|
|
runDesc *run;
|
|
|
|
|
|
struct save_info *saves;
|
2001-02-09 20:46:36 +01:00
|
|
|
|
bool *savesused = NULL;
|
2000-04-27 22:03:57 +02:00
|
|
|
|
int numsaves;
|
2001-02-09 20:46:36 +01:00
|
|
|
|
int i, j, depind = 0;
|
2000-04-27 22:03:57 +02:00
|
|
|
|
char namebuf[BSIZE_SP], parambuf[BSIZE_SP], depbuf[BSIZE_SP];
|
2000-10-03 07:22:07 +02:00
|
|
|
|
char *ch, tmpname[BSIZE_SP];
|
|
|
|
|
|
bool saveall = TRUE;
|
|
|
|
|
|
bool savealli = FALSE;
|
2003-12-25 18:30:36 +01:00
|
|
|
|
char *an_name;
|
2003-07-23 21:36:39 +02:00
|
|
|
|
/*to resume a run saj
|
|
|
|
|
|
*All it does is reassign the file pointer and return (requires *runp to be NULL if this is not needed)
|
|
|
|
|
|
*/
|
|
|
|
|
|
if(dataType == 666 && numNames == 666){
|
|
|
|
|
|
run = *runp;
|
|
|
|
|
|
run->writeOut = ft_getOutReq(&run->fp, &run->runPlot, &run->binary,
|
|
|
|
|
|
run->type, run->name);
|
|
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
/*end saj*/
|
2003-12-25 18:30:36 +01:00
|
|
|
|
|
2000-04-27 22:03:57 +02:00
|
|
|
|
/* Check to see if we want to print informational data. */
|
|
|
|
|
|
if (cp_getvar("printinfo", VT_BOOL, (char *) &printinfo))
|
2000-10-03 07:22:07 +02:00
|
|
|
|
fprintf(cp_err, "(debug printing enabled)\n");
|
2000-04-27 22:03:57 +02:00
|
|
|
|
|
|
|
|
|
|
*runp = run = alloc(struct runDesc);
|
|
|
|
|
|
|
|
|
|
|
|
/* First fill in some general information. */
|
|
|
|
|
|
run->analysis = analysisPtr;
|
|
|
|
|
|
run->circuit = circuitPtr;
|
|
|
|
|
|
run->name = copy(cktName);
|
|
|
|
|
|
run->type = copy(analName);
|
|
|
|
|
|
run->windowed = windowed;
|
|
|
|
|
|
run->numData = 0;
|
|
|
|
|
|
|
2000-09-05 21:48:22 +02:00
|
|
|
|
an_name = spice_analysis_get_name(((JOB *) analysisPtr)->JOBtype);
|
2007-10-08 22:18:38 +02:00
|
|
|
|
ft_curckt->ci_last_an = an_name;
|
2000-04-27 22:03:57 +02:00
|
|
|
|
|
|
|
|
|
|
/* Now let's see which of these things we need. First toss in the
|
|
|
|
|
|
* reference vector. Then toss in anything that getSaves() tells
|
|
|
|
|
|
* us to save that we can find in the name list. Finally unpack
|
|
|
|
|
|
* the remaining saves into parameters.
|
|
|
|
|
|
*/
|
|
|
|
|
|
numsaves = ft_getSaves(&saves);
|
|
|
|
|
|
if (numsaves) {
|
|
|
|
|
|
savesused = (bool *) tmalloc(sizeof (bool) * numsaves);
|
|
|
|
|
|
saveall = FALSE;
|
|
|
|
|
|
for (i = 0; i < numsaves; i++) {
|
2001-02-09 20:46:36 +01:00
|
|
|
|
if (saves[i].analysis && !cieq((char *)saves[i].analysis, an_name)) {
|
2000-10-03 07:22:07 +02:00
|
|
|
|
/* ignore this one this time around */
|
2001-02-09 20:46:36 +01:00
|
|
|
|
savesused[i] = TRUE;
|
2000-10-03 07:22:07 +02:00
|
|
|
|
continue;
|
|
|
|
|
|
}
|
2001-02-07 16:24:51 +01:00
|
|
|
|
|
|
|
|
|
|
/* Check for ".save all" and new synonym ".save allv" */
|
|
|
|
|
|
|
2000-10-03 07:22:07 +02:00
|
|
|
|
if (cieq(saves[i].name, "all") || cieq(saves[i].name, "allv")) {
|
2000-09-12 21:02:26 +02:00
|
|
|
|
saveall = TRUE;
|
2000-09-05 21:48:22 +02:00
|
|
|
|
savesused[i] = TRUE;
|
2000-10-03 07:22:07 +02:00
|
|
|
|
saves[i].used = 1;
|
2000-09-03 11:00:08 +02:00
|
|
|
|
continue;
|
|
|
|
|
|
}
|
2001-02-07 16:24:51 +01:00
|
|
|
|
|
|
|
|
|
|
/* And now for the new ".save alli" option */
|
|
|
|
|
|
|
2000-10-03 07:22:07 +02:00
|
|
|
|
if (cieq(saves[i].name, "alli")) {
|
2000-09-13 00:00:57 +02:00
|
|
|
|
savealli = TRUE;
|
|
|
|
|
|
savesused[i] = TRUE;
|
|
|
|
|
|
saves[i].used = 1;
|
|
|
|
|
|
continue;
|
|
|
|
|
|
}
|
2000-10-03 07:22:07 +02:00
|
|
|
|
}
|
2000-04-27 22:03:57 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Pass 0. */
|
|
|
|
|
|
if (refName) {
|
|
|
|
|
|
addDataDesc(run, refName, refType, -1);
|
|
|
|
|
|
for (i = 0; i < numsaves; i++)
|
|
|
|
|
|
if (!savesused[i] && name_eq(saves[i].name, refName)) {
|
|
|
|
|
|
savesused[i] = TRUE;
|
2000-10-03 07:22:07 +02:00
|
|
|
|
saves[i].used = 1;
|
2000-04-27 22:03:57 +02:00
|
|
|
|
}
|
|
|
|
|
|
} else {
|
|
|
|
|
|
run->refIndex = -1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Pass 1. */
|
|
|
|
|
|
if (numsaves && !saveall) {
|
|
|
|
|
|
for (i = 0; i < numsaves; i++) {
|
2000-10-03 07:22:07 +02:00
|
|
|
|
if (!savesused[i]) {
|
|
|
|
|
|
for (j = 0; j < numNames; j++) {
|
|
|
|
|
|
if (name_eq(saves[i].name, dataNames[j])) {
|
|
|
|
|
|
addDataDesc(run, dataNames[j], dataType, j);
|
|
|
|
|
|
savesused[i] = TRUE;
|
|
|
|
|
|
saves[i].used = 1;
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2000-04-27 22:03:57 +02:00
|
|
|
|
}
|
|
|
|
|
|
} else {
|
|
|
|
|
|
for (i = 0; i < numNames; i++)
|
|
|
|
|
|
if (!refName || !name_eq(dataNames[i], refName)) {
|
2001-02-07 16:24:51 +01:00
|
|
|
|
|
|
|
|
|
|
/* Save the node as long as it's an internal device node */
|
|
|
|
|
|
|
2000-10-03 07:22:07 +02:00
|
|
|
|
if (!strstr(dataNames[i], "#internal") &&
|
2000-09-13 00:00:57 +02:00
|
|
|
|
!strstr(dataNames[i], "#source") &&
|
|
|
|
|
|
!strstr(dataNames[i], "#drain") &&
|
|
|
|
|
|
!strstr(dataNames[i], "#collector") &&
|
|
|
|
|
|
!strstr(dataNames[i], "#emitter") &&
|
|
|
|
|
|
!strstr(dataNames[i], "#base")) {
|
2000-10-03 07:22:07 +02:00
|
|
|
|
addDataDesc(run, dataNames[i], dataType, i);
|
|
|
|
|
|
}
|
2000-04-27 22:03:57 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2001-02-07 16:24:51 +01:00
|
|
|
|
/* Pass 1 and a bit.
|
|
|
|
|
|
This is a new pass which searches for all the internal device
|
|
|
|
|
|
nodes, and saves the terminal currents instead */
|
|
|
|
|
|
|
2000-09-13 00:00:57 +02:00
|
|
|
|
if (savealli) {
|
|
|
|
|
|
depind=0;
|
|
|
|
|
|
for (i = 0; i < numNames; i++) {
|
|
|
|
|
|
if (strstr(dataNames[i], "#internal") ||
|
|
|
|
|
|
strstr(dataNames[i], "#source") ||
|
|
|
|
|
|
strstr(dataNames[i], "#drain") ||
|
|
|
|
|
|
strstr(dataNames[i], "#collector") ||
|
|
|
|
|
|
strstr(dataNames[i], "#emitter") ||
|
|
|
|
|
|
strstr(dataNames[i], "#base")) {
|
|
|
|
|
|
tmpname[0]='@';
|
|
|
|
|
|
tmpname[1]='\0';
|
|
|
|
|
|
strncat(tmpname, dataNames[i], BSIZE_SP-1);
|
|
|
|
|
|
ch=strchr(tmpname, '#');
|
|
|
|
|
|
|
|
|
|
|
|
if (strstr(ch, "#collector")!=NULL) {
|
|
|
|
|
|
strcpy(ch, "[ic]");
|
|
|
|
|
|
} else if (strstr(ch, "#base")!=NULL) {
|
|
|
|
|
|
strcpy(ch, "[ib]");
|
|
|
|
|
|
} else if (strstr(ch, "#emitter")!=NULL) {
|
|
|
|
|
|
strcpy(ch, "[ie]");
|
|
|
|
|
|
if (parseSpecial(tmpname, namebuf, parambuf, depbuf)) {
|
|
|
|
|
|
addSpecialDesc(run, tmpname, namebuf, parambuf, depind);
|
|
|
|
|
|
};
|
|
|
|
|
|
strcpy(ch, "[is]");
|
|
|
|
|
|
} else if (strstr(ch, "#drain")!=NULL) {
|
|
|
|
|
|
strcpy(ch, "[id]");
|
|
|
|
|
|
if (parseSpecial(tmpname, namebuf, parambuf, depbuf)) {
|
|
|
|
|
|
addSpecialDesc(run, tmpname, namebuf, parambuf, depind);
|
|
|
|
|
|
};
|
|
|
|
|
|
strcpy(ch, "[ig]");
|
|
|
|
|
|
} else if (strstr(ch, "#source")!=NULL) {
|
|
|
|
|
|
strcpy(ch, "[is]");
|
|
|
|
|
|
if (parseSpecial(tmpname, namebuf, parambuf, depbuf)) {
|
|
|
|
|
|
addSpecialDesc(run, tmpname, namebuf, parambuf, depind);
|
|
|
|
|
|
};
|
|
|
|
|
|
strcpy(ch, "[ib]");
|
|
|
|
|
|
} else
|
|
|
|
|
|
if ((strstr(ch, "#internal")!=NULL)&&(tmpname[1]=='d')) {
|
|
|
|
|
|
strcpy(ch, "[id]");
|
|
|
|
|
|
} else {
|
|
|
|
|
|
fprintf(cp_err,
|
|
|
|
|
|
"Debug: could output current for %s\n", tmpname);
|
|
|
|
|
|
continue;
|
|
|
|
|
|
};
|
|
|
|
|
|
if (parseSpecial(tmpname, namebuf, parambuf, depbuf)) {
|
|
|
|
|
|
if (*depbuf) { fprintf( stderr,
|
|
|
|
|
|
"Warning : unexpected dependant variable on %s\n", tmpname);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
addSpecialDesc(run, tmpname, namebuf, parambuf, depind);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2000-10-03 07:22:07 +02:00
|
|
|
|
|
|
|
|
|
|
|
2000-04-27 22:03:57 +02:00
|
|
|
|
/* Pass 2. */
|
|
|
|
|
|
for (i = 0; i < numsaves; i++) {
|
|
|
|
|
|
if (savesused[i])
|
|
|
|
|
|
continue;
|
|
|
|
|
|
if (!parseSpecial(saves[i].name, namebuf, parambuf, depbuf)) {
|
2000-10-03 07:22:07 +02:00
|
|
|
|
if (saves[i].analysis)
|
|
|
|
|
|
fprintf(cp_err, "Warning: can't parse '%s': ignored\n",
|
|
|
|
|
|
saves[i].name);
|
2000-04-27 22:03:57 +02:00
|
|
|
|
continue;
|
|
|
|
|
|
}
|
|
|
|
|
|
/* Now, if there's a dep variable, do we already have it? */
|
|
|
|
|
|
if (*depbuf) {
|
|
|
|
|
|
for (j = 0; j < run->numData; j++)
|
|
|
|
|
|
if (name_eq(depbuf, run->data[j].name))
|
|
|
|
|
|
break;
|
|
|
|
|
|
if (j == run->numData) {
|
|
|
|
|
|
/* Better add it. */
|
|
|
|
|
|
for (j = 0; j < numNames; j++)
|
|
|
|
|
|
if (name_eq(depbuf, dataNames[j]))
|
|
|
|
|
|
break;
|
|
|
|
|
|
if (j == numNames) {
|
|
|
|
|
|
fprintf(cp_err,
|
|
|
|
|
|
"Warning: can't find '%s': value '%s' ignored\n",
|
|
|
|
|
|
depbuf, saves[i].name);
|
|
|
|
|
|
continue;
|
|
|
|
|
|
}
|
|
|
|
|
|
addDataDesc(run, dataNames[j], dataType, j);
|
|
|
|
|
|
savesused[i] = TRUE;
|
2000-10-03 07:22:07 +02:00
|
|
|
|
saves[i].used = 1;
|
2000-04-27 22:03:57 +02:00
|
|
|
|
depind = j;
|
|
|
|
|
|
} else
|
|
|
|
|
|
depind = run->data[j].outIndex;
|
|
|
|
|
|
}
|
|
|
|
|
|
addSpecialDesc(run, saves[i].name, namebuf, parambuf, depind);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (numsaves) {
|
2000-10-03 07:22:07 +02:00
|
|
|
|
for (i = 0; i < numsaves; i++) {
|
|
|
|
|
|
tfree(saves[i].analysis);
|
|
|
|
|
|
tfree(saves[i].name);
|
|
|
|
|
|
}
|
2000-04-27 22:03:57 +02:00
|
|
|
|
tfree(savesused);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2001-02-09 20:46:36 +01:00
|
|
|
|
if (numNames &&
|
2003-07-23 21:36:39 +02:00
|
|
|
|
( (run->numData == 1 && run->refIndex != -1)
|
|
|
|
|
|
|| (run->numData == 0 && run->refIndex == -1)) ) /* va: suggested parentheses */
|
2000-04-27 22:03:57 +02:00
|
|
|
|
{
|
2000-10-03 07:22:07 +02:00
|
|
|
|
fprintf(cp_err, "Error: no data saved for %s; analysis not run\n",
|
|
|
|
|
|
spice_analysis_get_description(((JOB *) analysisPtr)->JOBtype));
|
|
|
|
|
|
return E_NOTFOUND;
|
2000-04-27 22:03:57 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Now that we have our own data structures built up, let's see what
|
|
|
|
|
|
* nutmeg wants us to do.
|
|
|
|
|
|
*/
|
|
|
|
|
|
run->writeOut = ft_getOutReq(&run->fp, &run->runPlot, &run->binary,
|
|
|
|
|
|
run->type, run->name);
|
|
|
|
|
|
|
|
|
|
|
|
if (run->writeOut)
|
|
|
|
|
|
fileInit(run);
|
|
|
|
|
|
else {
|
|
|
|
|
|
plotInit(run);
|
2000-10-03 07:22:07 +02:00
|
|
|
|
if (refName)
|
|
|
|
|
|
run->runPlot->pl_ndims = 1;
|
2000-04-27 22:03:57 +02:00
|
|
|
|
}
|
2003-08-06 12:53:38 +02:00
|
|
|
|
}
|
2008-08-27 15:39:05 +02:00
|
|
|
|
/*Start BLT, initilises the blt vectors saj*/
|
|
|
|
|
|
#ifdef TCL_MODULE
|
|
|
|
|
|
blt_init(run);
|
|
|
|
|
|
#endif
|
2000-04-27 22:03:57 +02:00
|
|
|
|
return (OK);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
|
addDataDesc(runDesc *run, char *name, int type, int ind)
|
|
|
|
|
|
{
|
|
|
|
|
|
dataDesc *data;
|
|
|
|
|
|
|
|
|
|
|
|
if (!run->numData)
|
2000-09-12 21:02:26 +02:00
|
|
|
|
run->data = (dataDesc *) tmalloc(sizeof (dataDesc));
|
2000-04-27 22:03:57 +02:00
|
|
|
|
else
|
|
|
|
|
|
run->data = (dataDesc *) trealloc((char *) run->data,
|
|
|
|
|
|
sizeof (dataDesc) * (run->numData + 1));
|
|
|
|
|
|
data = &run->data[run->numData];
|
|
|
|
|
|
/* so freeRun will get nice NULL pointers for the fields we don't set */
|
|
|
|
|
|
bzero(data, sizeof(dataDesc));
|
|
|
|
|
|
|
|
|
|
|
|
data->name = copy(name);
|
|
|
|
|
|
data->type = type;
|
|
|
|
|
|
data->gtype = GRID_LIN;
|
|
|
|
|
|
data->regular = TRUE;
|
|
|
|
|
|
data->outIndex = ind;
|
|
|
|
|
|
|
|
|
|
|
|
if (ind == -1) {
|
|
|
|
|
|
/* It's the reference vector. */
|
|
|
|
|
|
run->refIndex = run->numData;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
run->numData++;
|
|
|
|
|
|
|
|
|
|
|
|
return (OK);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
|
addSpecialDesc(runDesc *run, char *name, char *devname, char *param, int depind)
|
|
|
|
|
|
{
|
|
|
|
|
|
dataDesc *data;
|
|
|
|
|
|
char *unique; /* unique char * from back-end */
|
|
|
|
|
|
|
|
|
|
|
|
if (!run->numData)
|
2000-09-12 21:02:26 +02:00
|
|
|
|
run->data = (dataDesc *) tmalloc(sizeof (dataDesc));
|
2000-04-27 22:03:57 +02:00
|
|
|
|
else
|
|
|
|
|
|
run->data = (dataDesc *) trealloc((char *) run->data,
|
|
|
|
|
|
sizeof (dataDesc) * (run->numData + 1));
|
|
|
|
|
|
data = &run->data[run->numData];
|
|
|
|
|
|
/* so freeRun will get nice NULL pointers for the fields we don't set */
|
|
|
|
|
|
bzero(data, sizeof(dataDesc));
|
|
|
|
|
|
|
|
|
|
|
|
data->name = copy(name);
|
|
|
|
|
|
|
|
|
|
|
|
unique = copy(devname);
|
|
|
|
|
|
|
|
|
|
|
|
/* MW. My "special" routine here */
|
|
|
|
|
|
INPinsertNofree(&unique, (INPtables *) ft_curckt->ci_symtab);
|
|
|
|
|
|
data->specName = unique;
|
|
|
|
|
|
|
|
|
|
|
|
data->specParamName = copy(param);
|
|
|
|
|
|
|
|
|
|
|
|
data->specIndex = depind;
|
|
|
|
|
|
data->specType = -1;
|
|
|
|
|
|
data->specFast = NULL;
|
|
|
|
|
|
data->regular = FALSE;
|
|
|
|
|
|
|
|
|
|
|
|
run->numData++;
|
|
|
|
|
|
|
|
|
|
|
|
return (OK);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2000-10-03 07:22:07 +02:00
|
|
|
|
|
2000-04-27 22:03:57 +02:00
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
|
OUTpData(void *plotPtr, IFvalue *refValue, IFvalue *valuePtr)
|
|
|
|
|
|
{
|
|
|
|
|
|
runDesc *run = (runDesc *) plotPtr;
|
|
|
|
|
|
IFvalue val;
|
|
|
|
|
|
int i;
|
|
|
|
|
|
#ifdef PARALLEL_ARCH
|
|
|
|
|
|
if (ARCHme != 0) return(OK);
|
|
|
|
|
|
#endif /* PARALLEL_ARCH */
|
|
|
|
|
|
|
|
|
|
|
|
run->pointCount++;
|
2008-08-27 15:39:05 +02:00
|
|
|
|
#ifdef TCL_MODULE
|
|
|
|
|
|
steps_completed = run->pointCount;
|
|
|
|
|
|
#endif
|
2000-04-27 22:03:57 +02:00
|
|
|
|
|
|
|
|
|
|
if (run->writeOut) {
|
2000-10-03 07:22:07 +02:00
|
|
|
|
if (run->pointCount == 1)
|
|
|
|
|
|
fileInit_pass2(plotPtr);
|
2000-04-27 22:03:57 +02:00
|
|
|
|
fileStartPoint(run->fp, run->binary, run->pointCount);
|
|
|
|
|
|
|
|
|
|
|
|
if (run->refIndex != -1) {
|
2000-10-03 07:22:07 +02:00
|
|
|
|
if (run->isComplex){
|
2000-04-27 22:03:57 +02:00
|
|
|
|
fileAddComplexValue(run->fp, run->binary, refValue->cValue);
|
2001-02-07 16:24:51 +01:00
|
|
|
|
|
|
|
|
|
|
/* While we're looking at the reference value, print it to the screen
|
|
|
|
|
|
every quarter of a second, to give some feedback without using
|
|
|
|
|
|
too much CPU time */
|
2008-05-06 21:35:05 +02:00
|
|
|
|
#ifndef HAS_WINDOWS
|
2000-09-13 00:00:57 +02:00
|
|
|
|
currclock = clock();
|
|
|
|
|
|
if ((currclock-lastclock)>(0.25*CLOCKS_PER_SEC)) {
|
|
|
|
|
|
fprintf(stderr, " Reference value : % 12.5e\r",
|
|
|
|
|
|
refValue->cValue.real);
|
2000-10-03 07:22:07 +02:00
|
|
|
|
lastclock = currclock;
|
|
|
|
|
|
}
|
2008-05-06 21:35:05 +02:00
|
|
|
|
#endif
|
2000-09-13 00:00:57 +02:00
|
|
|
|
} else {
|
2001-02-07 16:24:51 +01:00
|
|
|
|
|
|
|
|
|
|
/* And the same for a non-complex value */
|
|
|
|
|
|
|
2000-04-27 22:03:57 +02:00
|
|
|
|
fileAddRealValue(run->fp, run->binary, refValue->rValue);
|
2008-05-06 21:35:05 +02:00
|
|
|
|
#ifndef HAS_WINDOWS
|
2000-09-13 00:00:57 +02:00
|
|
|
|
currclock = clock();
|
|
|
|
|
|
if ((currclock-lastclock)>(0.25*CLOCKS_PER_SEC)) {
|
2000-10-03 07:22:07 +02:00
|
|
|
|
fprintf(stderr, " Reference value : % 12.5e\r", refValue->rValue);
|
|
|
|
|
|
lastclock = currclock;
|
|
|
|
|
|
}
|
2008-05-06 21:35:05 +02:00
|
|
|
|
#endif
|
2000-04-27 22:03:57 +02:00
|
|
|
|
}
|
2000-10-03 07:22:07 +02:00
|
|
|
|
}
|
2000-04-27 22:03:57 +02:00
|
|
|
|
for (i = 0; i < run->numData; i++) {
|
|
|
|
|
|
/* we've already printed reference vec first */
|
|
|
|
|
|
if (run->data[i].outIndex == -1) continue;
|
2008-08-27 15:39:05 +02:00
|
|
|
|
#ifdef TCL_MODULE
|
|
|
|
|
|
blt_add(i,refValue->rValue);
|
|
|
|
|
|
#endif
|
2000-04-27 22:03:57 +02:00
|
|
|
|
|
|
|
|
|
|
if (run->data[i].regular) {
|
|
|
|
|
|
if(run->data[i].type == IF_REAL)
|
|
|
|
|
|
fileAddRealValue(run->fp, run->binary,
|
|
|
|
|
|
valuePtr->v.vec.rVec
|
|
|
|
|
|
[run->data[i].outIndex]);
|
|
|
|
|
|
else if (run->data[i].type == IF_COMPLEX)
|
|
|
|
|
|
fileAddComplexValue(run->fp, run->binary,
|
|
|
|
|
|
valuePtr->v.vec.cVec
|
|
|
|
|
|
[run->data[i].outIndex]);
|
|
|
|
|
|
else
|
|
|
|
|
|
fprintf(stderr, "OUTpData: unsupported data type\n");
|
|
|
|
|
|
} else {
|
|
|
|
|
|
/* should pre-check instance */
|
|
|
|
|
|
if (!getSpecial(&run->data[i], run, &val))
|
2000-10-03 07:22:07 +02:00
|
|
|
|
{
|
2001-02-07 16:24:51 +01:00
|
|
|
|
|
|
|
|
|
|
/* If this is the first data point, print a warning for any unrecognized
|
|
|
|
|
|
variables, since this has not already been checked */
|
|
|
|
|
|
|
2000-09-13 00:00:57 +02:00
|
|
|
|
if (run->pointCount==1)
|
|
|
|
|
|
fprintf(stderr, "Warning: unrecognized variable - %s\n",
|
|
|
|
|
|
run->data[i].name);
|
2001-02-07 16:24:51 +01:00
|
|
|
|
|
2000-09-13 00:00:57 +02:00
|
|
|
|
if (run->isComplex) {
|
|
|
|
|
|
val.cValue.real=0;
|
|
|
|
|
|
val.cValue.imag=0;
|
|
|
|
|
|
fileAddComplexValue(run->fp, run->binary,
|
|
|
|
|
|
val.cValue);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
val.rValue=0;
|
|
|
|
|
|
fileAddRealValue(run->fp, run->binary,
|
|
|
|
|
|
val.rValue);
|
|
|
|
|
|
};
|
2000-04-27 22:03:57 +02:00
|
|
|
|
continue;
|
2000-09-13 00:00:57 +02:00
|
|
|
|
};
|
2000-04-27 22:03:57 +02:00
|
|
|
|
if (run->data[i].type == IF_REAL)
|
|
|
|
|
|
fileAddRealValue(run->fp, run->binary,
|
|
|
|
|
|
val.rValue);
|
|
|
|
|
|
else if (run->data[i].type == IF_COMPLEX)
|
|
|
|
|
|
fileAddComplexValue(run->fp, run->binary,
|
|
|
|
|
|
val.cValue);
|
|
|
|
|
|
else
|
|
|
|
|
|
fprintf(stderr, "OUTpData: unsupported data type\n");
|
|
|
|
|
|
}
|
2008-08-27 15:39:05 +02:00
|
|
|
|
#ifdef TCL_MODULE
|
|
|
|
|
|
blt_add(i,valuePtr->v.vec.rVec
|
|
|
|
|
|
[run->data[i].outIndex]);
|
|
|
|
|
|
#endif
|
2000-04-27 22:03:57 +02:00
|
|
|
|
}
|
|
|
|
|
|
fileEndPoint(run->fp, run->binary);
|
2001-02-07 16:24:51 +01:00
|
|
|
|
|
|
|
|
|
|
/* Check that the write to disk completed successfully, otherwise abort */
|
|
|
|
|
|
|
2000-09-13 00:00:57 +02:00
|
|
|
|
if (ferror(run->fp)) {
|
|
|
|
|
|
fprintf(stderr, "Warning: rawfile write error !!\n");
|
2000-10-03 07:22:07 +02:00
|
|
|
|
shouldstop = TRUE;
|
2000-09-13 00:00:57 +02:00
|
|
|
|
};
|
2000-04-27 22:03:57 +02:00
|
|
|
|
} else {
|
2001-02-07 16:24:51 +01:00
|
|
|
|
|
|
|
|
|
|
/* This is interactive mode. Update the screen with the reference
|
|
|
|
|
|
variable just the same */
|
|
|
|
|
|
|
|
|
|
|
|
currclock = clock();
|
2002-01-03 23:44:21 +01:00
|
|
|
|
#ifndef HAS_WINDOWS
|
2001-02-07 16:24:51 +01:00
|
|
|
|
if ((currclock-lastclock)>(0.25*CLOCKS_PER_SEC)) {
|
|
|
|
|
|
if (run->isComplex) {
|
2007-10-09 09:19:45 +02:00
|
|
|
|
fprintf(stderr, " Reference value : % 12.5e\r",
|
2001-02-07 16:24:51 +01:00
|
|
|
|
refValue->cValue.real);
|
|
|
|
|
|
} else {
|
2007-10-09 09:19:45 +02:00
|
|
|
|
fprintf(stderr, " Reference value : % 12.5e\r",
|
2001-02-07 16:24:51 +01:00
|
|
|
|
refValue->rValue);
|
|
|
|
|
|
}
|
|
|
|
|
|
lastclock = currclock;
|
|
|
|
|
|
}
|
2002-01-03 23:44:21 +01:00
|
|
|
|
#endif
|
2000-04-27 22:03:57 +02:00
|
|
|
|
for (i = 0; i < run->numData; i++) {
|
2008-08-27 15:39:05 +02:00
|
|
|
|
#ifdef TCL_MODULE
|
|
|
|
|
|
/*Locks the blt vector to stop access*/
|
|
|
|
|
|
blt_lockvec(i);
|
|
|
|
|
|
#endif
|
2000-04-27 22:03:57 +02:00
|
|
|
|
if (run->data[i].outIndex == -1) {
|
2003-12-25 18:30:36 +01:00
|
|
|
|
if (run->data[i].type == IF_REAL)
|
|
|
|
|
|
plotAddRealValue(&run->data[i],
|
|
|
|
|
|
refValue->rValue);
|
|
|
|
|
|
else if (run->data[i].type == IF_COMPLEX)
|
|
|
|
|
|
plotAddComplexValue(&run->data[i],
|
|
|
|
|
|
refValue->cValue);
|
2000-04-27 22:03:57 +02:00
|
|
|
|
} else if (run->data[i].regular) {
|
2003-12-25 18:30:36 +01:00
|
|
|
|
if (run->data[i].type == IF_REAL)
|
|
|
|
|
|
plotAddRealValue(&run->data[i],
|
|
|
|
|
|
valuePtr->v.vec.rVec
|
|
|
|
|
|
[run->data[i].outIndex]);
|
|
|
|
|
|
else if (run->data[i].type == IF_COMPLEX)
|
|
|
|
|
|
plotAddComplexValue(&run->data[i],
|
|
|
|
|
|
valuePtr->v.vec.cVec
|
|
|
|
|
|
[run->data[i].outIndex]);
|
2000-04-27 22:03:57 +02:00
|
|
|
|
} else {
|
2003-12-25 18:30:36 +01:00
|
|
|
|
/* should pre-check instance */
|
|
|
|
|
|
if (!getSpecial(&run->data[i], run, &val))
|
|
|
|
|
|
continue;
|
|
|
|
|
|
if (run->data[i].type == IF_REAL)
|
|
|
|
|
|
plotAddRealValue(&run->data[i],
|
|
|
|
|
|
val.rValue);
|
|
|
|
|
|
else if (run->data[i].type == IF_COMPLEX)
|
|
|
|
|
|
plotAddComplexValue(&run->data[i],
|
2000-04-27 22:03:57 +02:00
|
|
|
|
val.cValue);
|
2003-12-25 18:30:36 +01:00
|
|
|
|
else
|
|
|
|
|
|
fprintf(stderr, "OUTpData: unsupported data type\n");
|
2000-04-27 22:03:57 +02:00
|
|
|
|
}
|
2008-08-27 15:39:05 +02:00
|
|
|
|
#ifdef TCL_MODULE
|
|
|
|
|
|
/*relinks and unlocks vector*/
|
|
|
|
|
|
blt_relink(i,(run->data[i]).vec);
|
|
|
|
|
|
#endif
|
2000-04-27 22:03:57 +02:00
|
|
|
|
}
|
|
|
|
|
|
gr_iplot(run->runPlot);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (ft_bpcheck(run->runPlot, run->pointCount) == FALSE)
|
|
|
|
|
|
shouldstop = TRUE;
|
|
|
|
|
|
|
2008-08-27 15:39:05 +02:00
|
|
|
|
#ifdef TCL_MODULE
|
|
|
|
|
|
Tcl_ExecutePerLoop();
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-04-27 22:03:57 +02:00
|
|
|
|
return (OK);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2000-10-03 07:22:07 +02:00
|
|
|
|
|
2000-04-27 22:03:57 +02:00
|
|
|
|
|
|
|
|
|
|
/* ARGSUSED */ /* until some code gets written */
|
|
|
|
|
|
int
|
|
|
|
|
|
OUTwReference(void *plotPtr, IFvalue *valuePtr, void **refPtr)
|
|
|
|
|
|
{
|
|
|
|
|
|
return (OK);
|
|
|
|
|
|
}
|
|
|
|
|
|
/* ARGSUSED */ /* until some code gets written */
|
|
|
|
|
|
int
|
|
|
|
|
|
OUTwData(void *plotPtr, int dataIndex, IFvalue *valuePtr, void *refPtr)
|
|
|
|
|
|
{
|
|
|
|
|
|
return (OK);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ARGSUSED */ /* until some code gets written */
|
|
|
|
|
|
int
|
|
|
|
|
|
OUTwEnd(void *plotPtr)
|
|
|
|
|
|
{
|
|
|
|
|
|
return (OK);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2000-10-03 07:22:07 +02:00
|
|
|
|
|
2000-04-27 22:03:57 +02:00
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
|
OUTendPlot(void *plotPtr)
|
|
|
|
|
|
{
|
|
|
|
|
|
runDesc *run = (runDesc *) plotPtr;
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef PARALLEL_ARCH
|
|
|
|
|
|
if (ARCHme != 0) return(OK);
|
|
|
|
|
|
#endif /* PARALLEL_ARCH */
|
|
|
|
|
|
|
|
|
|
|
|
if (run->writeOut)
|
|
|
|
|
|
fileEnd(run);
|
|
|
|
|
|
else {
|
|
|
|
|
|
gr_end_iplot();
|
|
|
|
|
|
plotEnd(run);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
freeRun(run);
|
|
|
|
|
|
|
|
|
|
|
|
return (OK);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2000-10-03 07:22:07 +02:00
|
|
|
|
|
2000-04-27 22:03:57 +02:00
|
|
|
|
|
|
|
|
|
|
/* ARGSUSED */ /* until some code gets written */
|
|
|
|
|
|
int
|
|
|
|
|
|
OUTbeginDomain(void *plotPtr, char *refName, int refType, IFvalue *outerRefValue)
|
|
|
|
|
|
{
|
|
|
|
|
|
return (OK);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ARGSUSED */ /* until some code gets written */
|
|
|
|
|
|
int
|
|
|
|
|
|
OUTendDomain(void *plotPtr)
|
|
|
|
|
|
{
|
|
|
|
|
|
return (OK);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2000-10-03 07:22:07 +02:00
|
|
|
|
|
2000-04-27 22:03:57 +02:00
|
|
|
|
|
|
|
|
|
|
/* ARGSUSED */ /* until some code gets written */
|
|
|
|
|
|
int
|
|
|
|
|
|
OUTattributes(void *plotPtr, char *varName, int param, IFvalue *value)
|
|
|
|
|
|
{
|
|
|
|
|
|
runDesc *run = (runDesc *) plotPtr;
|
|
|
|
|
|
struct dvec *d;
|
|
|
|
|
|
int type;
|
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
|
|
if (param == OUT_SCALE_LIN)
|
2000-10-03 07:22:07 +02:00
|
|
|
|
type = GRID_LIN;
|
2000-04-27 22:03:57 +02:00
|
|
|
|
else if (param == OUT_SCALE_LOG)
|
2000-10-03 07:22:07 +02:00
|
|
|
|
type = GRID_XLOG;
|
2000-04-27 22:03:57 +02:00
|
|
|
|
else
|
2000-10-03 07:22:07 +02:00
|
|
|
|
return E_UNSUPP;
|
2000-04-27 22:03:57 +02:00
|
|
|
|
|
|
|
|
|
|
if (run->writeOut) {
|
2000-10-03 07:22:07 +02:00
|
|
|
|
if (varName) {
|
|
|
|
|
|
for (i = 0; i < run->numData; i++)
|
|
|
|
|
|
if (!strcmp(varName, run->data[i].name))
|
|
|
|
|
|
run->data[i].gtype = type;
|
|
|
|
|
|
} else {
|
|
|
|
|
|
run->data[run->refIndex].gtype = type;
|
|
|
|
|
|
}
|
2000-04-27 22:03:57 +02:00
|
|
|
|
} else {
|
2000-10-03 07:22:07 +02:00
|
|
|
|
if (varName) {
|
|
|
|
|
|
for (d = run->runPlot->pl_dvecs; d; d = d->v_next)
|
|
|
|
|
|
if (!strcmp(varName, d->v_name))
|
|
|
|
|
|
d->v_gridtype = type;
|
|
|
|
|
|
} else {
|
|
|
|
|
|
run->runPlot->pl_scale->v_gridtype = type;
|
|
|
|
|
|
}
|
2000-04-27 22:03:57 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return (OK);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2000-10-03 07:22:07 +02:00
|
|
|
|
|
2000-04-27 22:03:57 +02:00
|
|
|
|
|
|
|
|
|
|
/* The file writing routines. */
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
|
fileInit(runDesc *run)
|
|
|
|
|
|
{
|
|
|
|
|
|
char buf[513];
|
2001-01-21 18:18:20 +01:00
|
|
|
|
int i;
|
2000-10-03 07:22:07 +02:00
|
|
|
|
|
|
|
|
|
|
lastclock = clock();
|
2000-04-27 22:03:57 +02:00
|
|
|
|
|
|
|
|
|
|
/* This is a hack. */
|
|
|
|
|
|
run->isComplex = FALSE;
|
|
|
|
|
|
for (i = 0; i < run->numData; i++)
|
|
|
|
|
|
if (run->data[i].type == IF_COMPLEX)
|
|
|
|
|
|
run->isComplex = TRUE;
|
|
|
|
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
|
|
sprintf(buf, "Title: %s\n", run->name);
|
|
|
|
|
|
i += strlen(buf);
|
|
|
|
|
|
fputs(buf, run->fp);
|
2001-01-21 18:18:20 +01:00
|
|
|
|
sprintf(buf, "Date: %s\n", datestring());
|
2000-09-12 21:02:26 +02:00
|
|
|
|
i += strlen(buf);
|
|
|
|
|
|
fputs(buf, run->fp);
|
2001-01-21 18:18:20 +01:00
|
|
|
|
sprintf(buf, "Plotname: %s\n", run->type);
|
2000-09-12 21:02:26 +02:00
|
|
|
|
i += strlen(buf);
|
|
|
|
|
|
fputs(buf, run->fp);
|
2001-01-21 18:18:20 +01:00
|
|
|
|
sprintf(buf, "Flags: %s\n", run->isComplex ? "complex" : "real");
|
2000-04-27 22:03:57 +02:00
|
|
|
|
i += strlen(buf);
|
|
|
|
|
|
fputs(buf, run->fp);
|
2001-01-21 18:18:20 +01:00
|
|
|
|
sprintf(buf, "No. Variables: %d\n", run->numData);
|
|
|
|
|
|
i += strlen(buf);
|
|
|
|
|
|
fputs(buf, run->fp);
|
|
|
|
|
|
sprintf(buf, "No. Points: ");
|
|
|
|
|
|
i += strlen(buf);
|
|
|
|
|
|
fputs(buf, run->fp);
|
2000-09-03 11:00:08 +02:00
|
|
|
|
|
2000-04-27 22:03:57 +02:00
|
|
|
|
fflush(run->fp); /* Gotta do this for LATTICE. */
|
|
|
|
|
|
if (run->fp == stdout || (run->pointPos = ftell(run->fp)) <= 0)
|
2001-01-21 18:18:20 +01:00
|
|
|
|
run->pointPos = i;
|
|
|
|
|
|
fprintf(run->fp, "0 \n"); /* Save 8 spaces here. */
|
|
|
|
|
|
|
2007-10-08 22:18:38 +02:00
|
|
|
|
/*fprintf(run->fp, "Command: version %s\n", ft_sim->version);*/
|
2001-01-21 18:18:20 +01:00
|
|
|
|
fprintf(run->fp, "Variables:\n");
|
2000-09-13 00:00:57 +02:00
|
|
|
|
|
2007-10-08 22:18:38 +02:00
|
|
|
|
printf("No. of Data Columns : %d \n", run->numData);
|
2000-04-27 22:03:57 +02:00
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
|
fileInit_pass2(runDesc *run)
|
|
|
|
|
|
{
|
2001-01-21 18:18:20 +01:00
|
|
|
|
int i, type;
|
2008-01-02 19:24:56 +01:00
|
|
|
|
char *name, *branch;
|
2000-04-27 22:03:57 +02:00
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < run->numData; i++) {
|
2008-01-02 19:24:56 +01:00
|
|
|
|
|
|
|
|
|
|
name = run->data[i].name;
|
|
|
|
|
|
|
2001-01-21 18:18:20 +01:00
|
|
|
|
if (substring("#branch", name))
|
2000-04-27 22:03:57 +02:00
|
|
|
|
type = SV_CURRENT;
|
|
|
|
|
|
else if (cieq(name, "time"))
|
|
|
|
|
|
type = SV_TIME;
|
|
|
|
|
|
else if (cieq(name, "frequency"))
|
|
|
|
|
|
type = SV_FREQUENCY;
|
2005-05-09 22:20:18 +02:00
|
|
|
|
else if (cieq(name, "temp-sweep")) /* Added by H.T */
|
|
|
|
|
|
type = SV_TEMP;
|
|
|
|
|
|
else if (cieq(name, "res-sweep")) /* Added by H.T */
|
|
|
|
|
|
type = SV_RES;
|
2001-01-21 18:18:20 +01:00
|
|
|
|
else
|
2000-04-27 22:03:57 +02:00
|
|
|
|
type = SV_VOLTAGE;
|
2001-01-21 18:18:20 +01:00
|
|
|
|
|
2008-01-02 19:24:56 +01:00
|
|
|
|
if ( type == SV_CURRENT ) {
|
|
|
|
|
|
branch = NULL;
|
|
|
|
|
|
if ( (branch = strstr( name, "#branch" )) ) {
|
|
|
|
|
|
*branch = '\0';
|
|
|
|
|
|
}
|
|
|
|
|
|
fprintf(run->fp, "\t%d\ti(%s)\t%s", i, name, ft_typenames(type));
|
|
|
|
|
|
if ( branch != NULL ) *branch = '#';
|
|
|
|
|
|
} else if ( type == SV_VOLTAGE ) {
|
|
|
|
|
|
fprintf(run->fp, "\t%d\tv(%s)\t%s", i, name, ft_typenames(type));
|
|
|
|
|
|
} else {
|
|
|
|
|
|
fprintf(run->fp, "\t%d\t%s\t%s", i, name, ft_typenames(type));
|
|
|
|
|
|
}
|
2001-01-21 18:18:20 +01:00
|
|
|
|
if (run->data[i].gtype == GRID_XLOG)
|
|
|
|
|
|
fprintf(run->fp, "\tgrid=3");
|
|
|
|
|
|
fprintf(run->fp, "\n");
|
2000-09-03 11:00:08 +02:00
|
|
|
|
|
2000-09-12 21:02:26 +02:00
|
|
|
|
}
|
2000-09-03 11:00:08 +02:00
|
|
|
|
|
2001-01-21 18:18:20 +01:00
|
|
|
|
fprintf(run->fp, "%s:\n", run->binary ? "Binary" : "Values");
|
|
|
|
|
|
|
2000-09-13 00:00:57 +02:00
|
|
|
|
fflush(run->fp); /* Make all sure this gets to disk */
|
|
|
|
|
|
|
2000-10-03 07:22:07 +02:00
|
|
|
|
/* Allocate Row buffer */
|
2000-09-13 00:00:57 +02:00
|
|
|
|
|
2001-01-21 18:18:20 +01:00
|
|
|
|
if (run->binary) {
|
|
|
|
|
|
rowbuflen=(run->numData)*sizeof(double);
|
|
|
|
|
|
if (run->isComplex) rowbuflen *=2;
|
|
|
|
|
|
rowbuf=(double *)tmalloc(rowbuflen);
|
|
|
|
|
|
} else rowbuf=NULL;
|
2000-04-27 22:03:57 +02:00
|
|
|
|
|
|
|
|
|
|
return;
|
2000-10-03 07:22:07 +02:00
|
|
|
|
|
2000-04-27 22:03:57 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
|
fileStartPoint(FILE *fp, bool bin, int num)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (!bin)
|
|
|
|
|
|
fprintf(fp, "%d\t", num - 1);
|
2000-09-13 00:00:57 +02:00
|
|
|
|
|
2001-01-21 18:18:20 +01:00
|
|
|
|
/* reset buffer pointer to zero */
|
2000-10-03 07:22:07 +02:00
|
|
|
|
|
2001-01-21 18:18:20 +01:00
|
|
|
|
column = 0;
|
2000-04-27 22:03:57 +02:00
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2000-10-03 07:22:07 +02:00
|
|
|
|
fileAddRealValue(FILE *fp, bool bin, double value)
|
2000-04-27 22:03:57 +02:00
|
|
|
|
{
|
2001-01-21 18:18:20 +01:00
|
|
|
|
if (bin)
|
|
|
|
|
|
rowbuf[column++]=value;
|
|
|
|
|
|
else
|
|
|
|
|
|
fprintf(fp, "\t%.*e\n", DOUBLE_PRECISION, value);
|
2000-09-13 00:00:57 +02:00
|
|
|
|
|
|
|
|
|
|
return;
|
2000-04-27 22:03:57 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2000-10-03 07:22:07 +02:00
|
|
|
|
fileAddComplexValue(FILE *fp, bool bin, IFcomplex value)
|
2000-04-27 22:03:57 +02:00
|
|
|
|
{
|
|
|
|
|
|
|
2001-01-21 18:18:20 +01:00
|
|
|
|
if (bin) {
|
|
|
|
|
|
rowbuf[column++]=value.real;
|
|
|
|
|
|
rowbuf[column++]=value.imag;
|
|
|
|
|
|
} else {
|
|
|
|
|
|
fprintf(fp, "\t%.*e,%.*e\n", DOUBLE_PRECISION, value.real,
|
2000-04-27 22:03:57 +02:00
|
|
|
|
DOUBLE_PRECISION, value.imag);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ARGSUSED */ /* until some code gets written */
|
|
|
|
|
|
static void
|
|
|
|
|
|
fileEndPoint(FILE *fp, bool bin)
|
|
|
|
|
|
{
|
2001-01-21 18:18:20 +01:00
|
|
|
|
if (bin) {
|
|
|
|
|
|
/* write row buffer to file */
|
|
|
|
|
|
fwrite((char *)rowbuf, rowbuflen, 1, fp);
|
|
|
|
|
|
}; /* otherwise the data has already been written */
|
|
|
|
|
|
return;
|
2000-04-27 22:03:57 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Here's the hack... Run back and fill in the number of points. */
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
|
fileEnd(runDesc *run)
|
|
|
|
|
|
{
|
|
|
|
|
|
long place;
|
|
|
|
|
|
|
|
|
|
|
|
if (run->fp != stdout) {
|
2000-10-03 07:22:07 +02:00
|
|
|
|
place = ftell(run->fp);
|
|
|
|
|
|
fseek(run->fp, run->pointPos, 0);
|
2001-01-21 18:18:20 +01:00
|
|
|
|
fprintf(run->fp, "%d", run->pointCount);
|
2008-12-23 19:00:10 +01:00
|
|
|
|
fprintf(stdout, "\nNo. of Data Rows : %d\n", run->pointCount);
|
2000-10-03 07:22:07 +02:00
|
|
|
|
fseek(run->fp, place, 0);
|
2000-04-27 22:03:57 +02:00
|
|
|
|
} else {
|
2000-10-03 07:22:07 +02:00
|
|
|
|
/* Yet another hack-around */
|
|
|
|
|
|
fprintf(stderr, "@@@ %ld %d\n", run->pointPos, run->pointCount);
|
2000-04-27 22:03:57 +02:00
|
|
|
|
}
|
|
|
|
|
|
fflush(run->fp);
|
2000-10-03 07:22:07 +02:00
|
|
|
|
|
2001-01-21 18:18:20 +01:00
|
|
|
|
if (run->binary) {
|
|
|
|
|
|
/* deallocate row buffer */
|
|
|
|
|
|
tfree(rowbuf);
|
|
|
|
|
|
}
|
2000-04-27 22:03:57 +02:00
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2000-10-03 07:22:07 +02:00
|
|
|
|
|
2000-04-27 22:03:57 +02:00
|
|
|
|
|
|
|
|
|
|
/* The plot maintenance routines. */
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
|
plotInit(runDesc *run)
|
|
|
|
|
|
{
|
|
|
|
|
|
struct plot *pl = plot_alloc(run->type);
|
|
|
|
|
|
char buf[100];
|
|
|
|
|
|
struct dvec *v;
|
|
|
|
|
|
dataDesc *dd;
|
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
|
|
pl->pl_title = copy(run->name);
|
|
|
|
|
|
pl->pl_name = copy(run->type);
|
|
|
|
|
|
pl->pl_date = copy(datestring( ));
|
|
|
|
|
|
pl->pl_ndims = 0;
|
|
|
|
|
|
plot_new(pl);
|
|
|
|
|
|
plot_setcur(pl->pl_typename);
|
|
|
|
|
|
run->runPlot = pl;
|
|
|
|
|
|
|
|
|
|
|
|
/* This is a hack. */
|
|
|
|
|
|
/* if any of them complex, make them all complex */
|
|
|
|
|
|
run->isComplex = FALSE;
|
|
|
|
|
|
for (i = 0; i < run->numData; i++) {
|
|
|
|
|
|
if (run->data[i].type == IF_COMPLEX) run->isComplex = TRUE;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < run->numData; i++) {
|
|
|
|
|
|
dd = &run->data[i];
|
|
|
|
|
|
v = alloc(struct dvec);
|
|
|
|
|
|
if (isdigit(*dd->name)) {
|
|
|
|
|
|
(void) sprintf(buf, "V(%s)", dd->name);
|
|
|
|
|
|
v->v_name = copy(buf);
|
|
|
|
|
|
} else
|
|
|
|
|
|
v->v_name = copy(dd->name);
|
|
|
|
|
|
if (substring("#branch", v->v_name))
|
|
|
|
|
|
v->v_type = SV_CURRENT;
|
|
|
|
|
|
else if (cieq(v->v_name, "time"))
|
|
|
|
|
|
v->v_type = SV_TIME;
|
|
|
|
|
|
else if (cieq(v->v_name, "frequency"))
|
|
|
|
|
|
v->v_type = SV_FREQUENCY;
|
2005-05-09 22:20:18 +02:00
|
|
|
|
else if (cieq(v->v_name, "temp-sweep")) /* Added by H.T */
|
|
|
|
|
|
v->v_type = SV_TEMP;
|
|
|
|
|
|
else if (cieq(v->v_name, "res-sweep")) /* Added by H.T */
|
|
|
|
|
|
v->v_type = SV_RES;
|
2000-04-27 22:03:57 +02:00
|
|
|
|
else
|
|
|
|
|
|
v->v_type = SV_VOLTAGE;
|
|
|
|
|
|
v->v_length = 0;
|
|
|
|
|
|
v->v_scale = NULL;
|
|
|
|
|
|
if (!run->isComplex) {
|
|
|
|
|
|
v->v_flags = VF_REAL;
|
|
|
|
|
|
v->v_realdata = NULL;
|
|
|
|
|
|
} else {
|
|
|
|
|
|
v->v_flags = VF_COMPLEX;
|
|
|
|
|
|
v->v_compdata = NULL;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
v->v_flags |= VF_PERMANENT;
|
|
|
|
|
|
|
|
|
|
|
|
vec_new(v);
|
|
|
|
|
|
dd->vec = v;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
|
plotAddRealValue(dataDesc *desc, double value)
|
|
|
|
|
|
{
|
|
|
|
|
|
struct dvec *v = desc->vec;
|
|
|
|
|
|
|
|
|
|
|
|
if (isreal(v)) {
|
|
|
|
|
|
v->v_realdata = (double *) trealloc((char *) v->v_realdata,
|
|
|
|
|
|
sizeof (double) * (v->v_length + 1));
|
|
|
|
|
|
v->v_realdata[v->v_length] = value;
|
|
|
|
|
|
} else {
|
|
|
|
|
|
/* a real parading as a VF_COMPLEX */
|
|
|
|
|
|
v->v_compdata = (complex *) trealloc((char *) v->v_compdata,
|
|
|
|
|
|
sizeof (complex) * (v->v_length + 1));
|
|
|
|
|
|
v->v_compdata[v->v_length].cx_real = value;
|
|
|
|
|
|
v->v_compdata[v->v_length].cx_imag = (double) 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
v->v_length++;
|
2003-12-25 18:30:36 +01:00
|
|
|
|
v->v_dims[0]=v->v_length; /* va, must be updated */
|
2000-04-27 22:03:57 +02:00
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
|
plotAddComplexValue(dataDesc *desc, IFcomplex value)
|
|
|
|
|
|
{
|
|
|
|
|
|
struct dvec *v = desc->vec;
|
|
|
|
|
|
|
|
|
|
|
|
v->v_compdata = (complex *) trealloc((char *) v->v_compdata,
|
|
|
|
|
|
sizeof (complex) * (v->v_length + 1));
|
|
|
|
|
|
v->v_compdata[v->v_length].cx_real = value.real;
|
|
|
|
|
|
v->v_compdata[v->v_length].cx_imag = value.imag;
|
|
|
|
|
|
v->v_length++;
|
2003-12-25 18:30:36 +01:00
|
|
|
|
v->v_dims[0]=v->v_length; /* va, must be updated */
|
2000-04-27 22:03:57 +02:00
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ARGSUSED */ /* until some code gets written */
|
|
|
|
|
|
static void
|
|
|
|
|
|
plotEnd(runDesc *run)
|
|
|
|
|
|
{
|
2007-10-08 22:18:38 +02:00
|
|
|
|
fprintf(stderr,"\n");
|
2008-12-23 19:00:10 +01:00
|
|
|
|
fprintf(stdout, "\nNo. of Data Rows : %d\n", run->pointCount);
|
2007-10-08 22:18:38 +02:00
|
|
|
|
return;
|
2000-04-27 22:03:57 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2000-10-03 07:22:07 +02:00
|
|
|
|
|
2000-04-27 22:03:57 +02:00
|
|
|
|
|
|
|
|
|
|
/* ParseSpecial takes something of the form "@name[param,index]" and rips
|
|
|
|
|
|
* out name, param, andstrchr.
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
static bool
|
|
|
|
|
|
parseSpecial(char *name, char *dev, char *param, char *ind)
|
|
|
|
|
|
{
|
|
|
|
|
|
char *s;
|
|
|
|
|
|
|
|
|
|
|
|
*dev = *param = *ind = '\0';
|
|
|
|
|
|
|
|
|
|
|
|
if (*name != '@')
|
2000-10-03 07:22:07 +02:00
|
|
|
|
return FALSE;
|
2000-04-27 22:03:57 +02:00
|
|
|
|
name++;
|
|
|
|
|
|
|
|
|
|
|
|
s = dev;
|
|
|
|
|
|
while (*name && (*name != '['))
|
|
|
|
|
|
*s++ = *name++;
|
|
|
|
|
|
*s = '\0';
|
|
|
|
|
|
if (!*name)
|
2000-10-03 07:22:07 +02:00
|
|
|
|
return TRUE;
|
2000-04-27 22:03:57 +02:00
|
|
|
|
name++;
|
|
|
|
|
|
|
|
|
|
|
|
s = param;
|
|
|
|
|
|
while (*name && (*name != ',') && (*name != ']'))
|
|
|
|
|
|
*s++ = *name++;
|
|
|
|
|
|
*s = '\0';
|
|
|
|
|
|
if (*name == ']')
|
|
|
|
|
|
return (!name[1] ? TRUE : FALSE);
|
|
|
|
|
|
else if (!*name)
|
2000-10-03 07:22:07 +02:00
|
|
|
|
return FALSE;
|
2000-04-27 22:03:57 +02:00
|
|
|
|
name++;
|
|
|
|
|
|
|
|
|
|
|
|
s = ind;
|
|
|
|
|
|
while (*name && (*name != ']'))
|
|
|
|
|
|
*s++ = *name++;
|
|
|
|
|
|
*s = '\0';
|
|
|
|
|
|
if (*name && !name[1])
|
2000-10-03 07:22:07 +02:00
|
|
|
|
return TRUE;
|
2000-04-27 22:03:57 +02:00
|
|
|
|
else
|
2000-10-03 07:22:07 +02:00
|
|
|
|
return FALSE;
|
2000-04-27 22:03:57 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* This routine must match two names with or without a V() around them. */
|
|
|
|
|
|
|
|
|
|
|
|
static bool
|
|
|
|
|
|
name_eq(char *n1, char *n2)
|
|
|
|
|
|
{
|
|
|
|
|
|
char buf1[BSIZE_SP], buf2[BSIZE_SP], *s;
|
|
|
|
|
|
|
|
|
|
|
|
if ((s =strchr(n1, '('))) {
|
|
|
|
|
|
strcpy(buf1, s);
|
|
|
|
|
|
if (!(s =strchr(buf1, ')')))
|
2000-10-03 07:22:07 +02:00
|
|
|
|
return FALSE;
|
2000-04-27 22:03:57 +02:00
|
|
|
|
*s = '\0';
|
|
|
|
|
|
n1 = buf1;
|
|
|
|
|
|
}
|
|
|
|
|
|
if ((s =strchr(n2, '('))) {
|
|
|
|
|
|
strcpy(buf2, s);
|
|
|
|
|
|
if (!(s =strchr(buf2, ')')))
|
2000-10-03 07:22:07 +02:00
|
|
|
|
return FALSE;
|
2000-04-27 22:03:57 +02:00
|
|
|
|
*s = '\0';
|
|
|
|
|
|
n2 = buf2;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return (strcmp(n1, n2) ? FALSE : TRUE);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static bool
|
|
|
|
|
|
getSpecial(dataDesc *desc, runDesc *run, IFvalue *val)
|
|
|
|
|
|
{
|
|
|
|
|
|
IFvalue selector;
|
|
|
|
|
|
struct variable *vv;
|
|
|
|
|
|
|
|
|
|
|
|
selector.iValue = desc->specIndex;
|
|
|
|
|
|
if (INPaName(desc->specParamName, val, run->circuit, &desc->specType,
|
|
|
|
|
|
desc->specName, &desc->specFast, ft_sim, &desc->type,
|
|
|
|
|
|
&selector) == OK) {
|
|
|
|
|
|
desc->type &= (IF_REAL | IF_COMPLEX); /* mask out other bits */
|
2000-10-03 07:22:07 +02:00
|
|
|
|
return TRUE;
|
2000-04-27 22:03:57 +02:00
|
|
|
|
} else if ((vv = if_getstat(run->circuit, &desc->name[1]))) {
|
2000-10-03 07:22:07 +02:00
|
|
|
|
/* skip @ sign */
|
2000-04-27 22:03:57 +02:00
|
|
|
|
desc->type = IF_REAL;
|
|
|
|
|
|
if (vv->va_type == VT_REAL)
|
2000-10-03 07:22:07 +02:00
|
|
|
|
val->rValue = vv->va_real;
|
2000-04-27 22:03:57 +02:00
|
|
|
|
else if (vv->va_type == VT_NUM)
|
2000-10-03 07:22:07 +02:00
|
|
|
|
val->rValue = vv->va_num;
|
2000-04-27 22:03:57 +02:00
|
|
|
|
else if (vv->va_type == VT_BOOL)
|
2000-10-03 07:22:07 +02:00
|
|
|
|
val->rValue = (vv->va_bool ? 1.0 : 0.0);
|
2000-04-27 22:03:57 +02:00
|
|
|
|
else {
|
2000-10-03 07:22:07 +02:00
|
|
|
|
return FALSE; /* not a real */
|
2000-04-27 22:03:57 +02:00
|
|
|
|
}
|
|
|
|
|
|
tfree(vv);
|
2000-10-03 07:22:07 +02:00
|
|
|
|
return TRUE;
|
2000-04-27 22:03:57 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2000-10-03 07:22:07 +02:00
|
|
|
|
return FALSE;
|
2000-04-27 22:03:57 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
|
freeRun(runDesc *run)
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
|
|
for (i=0; i < run->numData; i++) {
|
|
|
|
|
|
tfree(run->data[i].name);
|
|
|
|
|
|
tfree(run->data[i].specParamName);
|
|
|
|
|
|
}
|
|
|
|
|
|
tfree(run->data);
|
|
|
|
|
|
|
* src/main.c, src/multidec.c, src/proc2mod.c,
src/frontend/display.c, src/frontend/outitf.c,
src/frontend/help/readhelp.c, src/frontend/help/x11disp.c,
src/frontend/parser/complete.c, src/frontend/parser/glob.c,
src/frontend/plotting/graf.c,
src/frontend/plotting/graphdb.c,
src/frontend/plotting/x11.c, src/include/graph.h,
src/include/iferrmsg.h, src/include/ifsim.h,
src/include/macros.h, src/maths/poly/polyfit.c,
src/maths/sparse/spalloc.c, src/maths/sparse/spconfig.h,
src/misc/alloc.c, src/misc/mktemp.c,
src/spicelib/analysis/cktpzstr.c,
src/spicelib/devices/bsim2/b2temp.c,
src/spicelib/devices/bsim3/b3temp.c,
src/spicelib/devices/bsim3v1/b3v1temp.c,
src/spicelib/devices/bsim3v2/b3v2temp.c,
src/spicelib/devices/bsim4/b4temp.c: replaced malloc
realloc and free calls to use tmalloc trealloc and txfree.
* tests/diffpair.out, tests/fourbitadder.out,
tests/resistance/res_partition.out: Updated.
2000-10-14 15:16:53 +02:00
|
|
|
|
tfree(run->type);
|
|
|
|
|
|
tfree(run->name);
|
|
|
|
|
|
tfree(run);
|
2000-04-27 22:03:57 +02:00
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
|
OUTstopnow(void)
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
if (ft_intrpt || shouldstop) {
|
|
|
|
|
|
ft_intrpt = shouldstop = FALSE;
|
|
|
|
|
|
return (1);
|
|
|
|
|
|
} else
|
|
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Print out error messages. */
|
|
|
|
|
|
|
|
|
|
|
|
static struct mesg {
|
|
|
|
|
|
char *string;
|
|
|
|
|
|
long flag;
|
2003-12-25 18:30:36 +01:00
|
|
|
|
} msgs[] = {
|
2000-04-27 22:03:57 +02:00
|
|
|
|
{ "Warning", ERR_WARNING } ,
|
|
|
|
|
|
{ "Fatal error", ERR_FATAL } ,
|
|
|
|
|
|
{ "Panic", ERR_PANIC } ,
|
|
|
|
|
|
{ "Note", ERR_INFO } ,
|
|
|
|
|
|
{ NULL, 0 }
|
|
|
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
|
OUTerror(int flags, char *format, IFuid *names)
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
struct mesg *m;
|
|
|
|
|
|
char buf[BSIZE_SP], *s, *bptr;
|
|
|
|
|
|
int nindex = 0;
|
|
|
|
|
|
|
|
|
|
|
|
if ((flags == ERR_INFO) && cp_getvar("printinfo", VT_BOOL,
|
2000-10-03 07:22:07 +02:00
|
|
|
|
(char *) &printinfo))
|
|
|
|
|
|
return;
|
2000-04-27 22:03:57 +02:00
|
|
|
|
|
|
|
|
|
|
for (m = msgs; m->flag; m++)
|
|
|
|
|
|
if (flags & m->flag)
|
|
|
|
|
|
fprintf(cp_err, "%s: ", m->string);
|
|
|
|
|
|
|
|
|
|
|
|
for (s = format, bptr = buf; *s; s++) {
|
|
|
|
|
|
if (*s == '%' && (s == format || *(s-1) != '%') && *(s+1) == 's') {
|
2000-10-03 07:22:07 +02:00
|
|
|
|
if (names[nindex])
|
|
|
|
|
|
strcpy(bptr, names[nindex]);
|
|
|
|
|
|
else
|
|
|
|
|
|
strcpy(bptr, "(null)");
|
2000-04-27 22:03:57 +02:00
|
|
|
|
bptr += strlen(bptr);
|
|
|
|
|
|
s++;
|
|
|
|
|
|
nindex++;
|
|
|
|
|
|
} else {
|
|
|
|
|
|
*bptr++ = *s;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
*bptr = '\0';
|
|
|
|
|
|
fprintf(cp_err, "%s\n", buf);
|
|
|
|
|
|
fflush(cp_err);
|
|
|
|
|
|
|
2000-10-03 07:22:07 +02:00
|
|
|
|
}
|