re-format indmask.c

This commit is contained in:
Holger Vogt 2022-06-26 11:43:18 +02:00
parent 0387a95218
commit d3a436b7dd
1 changed files with 30 additions and 30 deletions

View File

@ -14,43 +14,43 @@ Author: 2003 Paolo Nenzi
#include "ngspice/suffix.h" #include "ngspice/suffix.h"
/* ARGSUSED */ /* ARGSUSED */
int int
INDmAsk(CKTcircuit *ckt, GENmodel *inst, int which, IFvalue *value) INDmAsk(CKTcircuit* ckt, GENmodel* inst, int which, IFvalue* value)
{ {
INDmodel *here = (INDmodel*)inst; INDmodel* here = (INDmodel*)inst;
NG_IGNORE(ckt); NG_IGNORE(ckt);
switch(which) { switch (which) {
case IND_MOD_IND: case IND_MOD_IND:
value->rValue = here->INDmInd; value->rValue = here->INDmInd;
return(OK); return(OK);
case IND_MOD_TNOM: case IND_MOD_TNOM:
value->rValue = here->INDtnom-CONSTCtoK; value->rValue = here->INDtnom - CONSTCtoK;
return(OK); return(OK);
case IND_MOD_TC1: case IND_MOD_TC1:
value->rValue = here->INDtempCoeff1; value->rValue = here->INDtempCoeff1;
return(OK); return(OK);
case IND_MOD_TC2: case IND_MOD_TC2:
value->rValue = here->INDtempCoeff2; value->rValue = here->INDtempCoeff2;
return(OK); return(OK);
case IND_MOD_CSECT: case IND_MOD_CSECT:
value->rValue = here->INDcsect; value->rValue = here->INDcsect;
return(OK); return(OK);
case IND_MOD_DIA: case IND_MOD_DIA:
value->rValue = here->INDdia; value->rValue = here->INDdia;
return(OK); return(OK);
case IND_MOD_LENGTH: case IND_MOD_LENGTH:
value->rValue = here->INDlength; value->rValue = here->INDlength;
return(OK); return(OK);
case IND_MOD_NT: case IND_MOD_NT:
value->rValue = here->INDmodNt; value->rValue = here->INDmodNt;
return(OK); return(OK);
case IND_MOD_MU: case IND_MOD_MU:
value->rValue = here->INDmu; value->rValue = here->INDmu;
return(OK); return(OK);
default: default:
return(E_BADPARM); return(E_BADPARM);
} }
} }