Add missing parameter retrival
This commit is contained in:
parent
a2d7c342dd
commit
8023402db8
|
|
@ -37,7 +37,10 @@ INDmAsk(CKTcircuit *ckt, GENmodel *inst, int which, IFvalue *value)
|
||||||
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:
|
||||||
|
value->rValue = here->INDdia;
|
||||||
|
return(OK);
|
||||||
case IND_MOD_LENGTH:
|
case IND_MOD_LENGTH:
|
||||||
value->rValue = here->INDlength;
|
value->rValue = here->INDlength;
|
||||||
return(OK);
|
return(OK);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue