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.
43 lines
640 B
43 lines
640 B
/**********
|
|
Copyright 1990 Regents of the University of California. All rights reserved.
|
|
Author: 1985 Thomas L. Quarles
|
|
**********/
|
|
|
|
#include "ngspice.h"
|
|
#include "ifsim.h"
|
|
#include "iferrmsg.h"
|
|
#include "cktdefs.h"
|
|
#include "opdefs.h"
|
|
|
|
|
|
#include "analysis.h"
|
|
|
|
/* ARGSUSED */
|
|
int
|
|
DCOsetParm(CKTcircuit *ckt, void *anal, int which, IFvalue *value)
|
|
{
|
|
switch(which) {
|
|
|
|
default:
|
|
break;
|
|
}
|
|
return(E_BADPARM);
|
|
}
|
|
|
|
|
|
SPICEanalysis DCOinfo = {
|
|
{
|
|
"OP",
|
|
"D.C. Operating point analysis",
|
|
|
|
0,
|
|
NULL,
|
|
},
|
|
sizeof(OP),
|
|
NODOMAIN,
|
|
1,
|
|
DCOsetParm,
|
|
DCOaskQuest,
|
|
NULL,
|
|
DCop
|
|
};
|