Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1988 Thomas L. Quarles
**********/
#include "ngspice/ngspice.h"
#include <stdio.h>
#include "ngspice/ifsim.h"
#include "ngspice/inpdefs.h"
#include "ngspice/inpmacs.h"
#include "ngspice/fteext.h"
#include "inpxx.h"
void INP2F(CKTcircuit *ckt, INPtables * tab, struct card *current)
{
int type;
char *line;
char *name;
char *nname1;
char *nname2;
CKTnode *node1;
CKTnode *node2;
int error;
GENinstance *fast;
IFvalue ptemp;
IFvalue *parm;
int waslead;
double leadval;
IFuid uid;
type = INPtypelook("CCCS");
if (type < 0) {
LITERR("Device type CCCS not supported by this binary\n");
return;
}
line = current->line;
INPgetNetTok(&line, &name, 1);
INPinsert(&name, tab);
INPgetNetTok(&line, &nname1, 1);
INPtermInsert(ckt, &nname1, tab, &node1);
INPgetNetTok(&line, &nname2, 1);
INPtermInsert(ckt, &nname2, tab, &node2);
if (!tab->defFmod) {
IFnewUid(ckt, &uid, NULL, "F", UID_MODEL, NULL);
IFC(newModel, (ckt, type, &(tab->defFmod), uid));
}
IFC(newInstance, (ckt, tab->defFmod, &fast, name));
IFC(bindNode, (ckt, fast, 1, node1));
IFC(bindNode, (ckt, fast, 2, node2));
parm = INPgetValue(ckt, &line, IF_INSTANCE, tab);
GCA(INPpName, ("control", parm, ckt, type, fast));
PARSECALL((&line, ckt, type, fast, &leadval, &waslead, tab));
if (waslead) {
ptemp.rValue = leadval;
GCA(INPpName, ("gain", &ptemp, ckt, type, fast));
}
}