Add missing parameter retrival

This commit is contained in:
Holger Vogt 2022-06-26 11:40:10 +02:00
parent a2d7c342dd
commit 8023402db8
1 changed files with 4 additions and 1 deletions

View File

@ -37,7 +37,10 @@ INDmAsk(CKTcircuit *ckt, GENmodel *inst, int which, IFvalue *value)
return(OK);
case IND_MOD_CSECT:
value->rValue = here->INDcsect;
return(OK);
return(OK);
case IND_MOD_DIA:
value->rValue = here->INDdia;
return(OK);
case IND_MOD_LENGTH:
value->rValue = here->INDlength;
return(OK);