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

@ -38,6 +38,9 @@ INDmAsk(CKTcircuit *ckt, GENmodel *inst, int which, IFvalue *value)
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);