📄 mifask.c
字号:
/*============================================================================FILE MIFask.cMEMBER OF process XSPICECopyright 1991Georgia Tech Research CorporationAtlanta, Georgia 30332All Rights ReservedPROJECT A-8503AUTHORS 9/12/91 Bill KuhnMODIFICATIONS <date> <person name> <nature of modifications>SUMMARY This file contains the function used by nutmeg to request the value of a code model static var.INTERFACES MIFask()REFERENCED FILES None.NON-STANDARD FEATURES None.============================================================================*//* #include "prefix.h" */#include "ngspice.h"#include <stdio.h>//#include "CONST.h"//#include "util.h"#include "ifsim.h"#include "devdefs.h"#include "sperror.h"#include <string.h>#include "mifproto.h"#include "mifdefs.h"/* #include "suffix.h" */extern SPICEdev **DEVices;extern int DEVmaxnum;/*MIFaskThis function is called by SPICE/Nutmeg to query the value of aparameter on an instance. It locates the value of the parameterin the instance structure and converts the value into the IFvaluestructure understood by Nutmeg. For code models, this functionis provided to allow output of Instance Variables defined in thecode model's Interface Specification.*/int MIFask( CKTcircuit *ckt, /* The circuit structure */ GENinstance *inInst, /* The instance to get the value from */ int which, /* The parameter to get */ IFvalue *value, /* The value returned */ IFvalue *select) /* Unused */{ MIFinstance *inst; MIFmodel *model; int mod_type; int value_type; int i; int size; int inst_index; Mif_Boolean_t is_array; /* Arrange for access to MIF specific data in the instance */ inst = (MIFinstance *) inInst; /* Arrange for access to MIF specific data in the model */ model = inst->MIFmodPtr; /* Get model type */ mod_type = model->MIFmodType; if((mod_type < 0) || (mod_type >= DEVmaxnum)) return(E_BADPARM); /* Adjust parameter tag to actual index into inst info array */ inst_index = which - model->num_param; /* Check instance index for validity */ if((inst_index < 0) || (inst_index >= inst->num_inst_var)) return(E_BADPARM); /* get value type to know which members of unions to access */ value_type = DEVices[mod_type]->DEVpublic.instanceParms[inst_index].dataType; value_type &= IF_VARTYPES; /* determine if the parameter is an array or not */ is_array = value_type & IF_VECTOR; /* Transfer the values to the SPICE3C1 value union from the param elements */ /* This is analagous to what SPICE3 does with other device types */ if(! is_array) { switch(value_type) { case IF_FLAG: value->iValue = inst->inst_var[inst_index]->element[0].bvalue; break; case IF_INTEGER: value->iValue = inst->inst_var[inst_index]->element[0].ivalue; break; case IF_REAL: value->rValue = inst->inst_var[inst_index]->element[0].rvalue; break; case IF_STRING: /* Make copy of string. We don't trust caller to not free it */ /* These copies could get expensive! */ value->sValue = MIFcopy(inst->inst_var[inst_index]->element[0].svalue); break; case IF_COMPLEX: /* we don't trust the caller to have a parallel complex structure */ /* so copy the real and imaginary parts explicitly */ value->cValue.real = inst->inst_var[inst_index]->element[0].cvalue.real; value->cValue.imag = inst->inst_var[inst_index]->element[0].cvalue.imag; break; default: return(E_BADPARM); } } else { /* it is an array */ size = inst->inst_var[inst_index]->size; if(size < 0) size = 0; value->v.numValue = size; switch(value_type) { /* Note that we malloc space each time this function is called. */ /* This is what TRAask.c does, so we do it too, even though */ /* we don't know if it is ever freed... */ case IF_FLAGVEC: if(size <= 0) break; value->v.vec.iVec = (void *) MALLOC(size * sizeof(int)); for(i = 0; i < size; i++) value->v.vec.iVec[i] = inst->inst_var[inst_index]->element[i].bvalue; break; case IF_INTVEC: if(size <= 0) break; value->v.vec.iVec = (void *) MALLOC(size * sizeof(int)); for(i = 0; i < size; i++) value->v.vec.iVec[i] = inst->inst_var[inst_index]->element[i].ivalue; break; case IF_REALVEC: if(size <= 0) break; value->v.vec.rVec = (void *) MALLOC(size * sizeof(double)); for(i = 0; i < size; i++) value->v.vec.rVec[i] = inst->inst_var[inst_index]->element[i].rvalue; break; case IF_STRINGVEC: if(size <= 0) break; value->v.vec.sVec = (void *) MALLOC(size * sizeof(char *)); for(i = 0; i < size; i++) /* Make copy of string. We don't trust caller to not free it */ /* These copies could get expensive! */ value->v.vec.sVec[i] = MIFcopy(inst->inst_var[inst_index]->element[i].svalue); break; case IF_CPLXVEC: if(size <= 0) break; /* we don't trust the caller to have a parallel complex structure */ /* so copy the real and imaginary parts explicitly */ value->v.vec.cVec = (void *) MALLOC(size * sizeof(IFcomplex)); for(i = 0; i < size; i++) { value->v.vec.cVec[i].real = inst->inst_var[inst_index]->element[i].cvalue.real; value->v.vec.cVec[i].imag = inst->inst_var[inst_index]->element[i].cvalue.imag; } break; default: return(E_BADPARM); } /* end switch */ } /* end else */ return(OK);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -