⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 isrcpar.c

📁 ngspice又一个电子CAD仿真软件代码.功能更全
💻 C
字号:
/**********Copyright 1990 Regents of the University of California.  All rights reserved.Author: 1985 Thomas L. QuarlesModified: 2000 AlansFixes**********//* */#include "ngspice.h"#include "ifsim.h"#include "isrcdefs.h"#include "sperror.h"#include "suffix.h"/* ARGSUSED */intISRCparam(int param, IFvalue *value, GENinstance *inst, IFvalue *select){	int i;	    ISRCinstance *here = (ISRCinstance*)inst;    switch(param) {        case ISRC_DC:            here->ISRCdcValue = value->rValue;            here->ISRCdcGiven = TRUE;            break;        case ISRC_AC_MAG:            here->ISRCacMag = value->rValue;            here->ISRCacMGiven = TRUE;            here->ISRCacGiven = TRUE;            break;        case ISRC_AC_PHASE:            here->ISRCacPhase = value->rValue;            here->ISRCacPGiven = TRUE;            here->ISRCacGiven = TRUE;            break;        case ISRC_AC:            switch(value->v.numValue) {                case 2:                    here->ISRCacPhase = *(value->v.vec.rVec+1);                    here->ISRCacPGiven = TRUE;                case 1:                    here->ISRCacMag = *(value->v.vec.rVec);                    here->ISRCacMGiven = TRUE;                case 0:                    here->ISRCacGiven = TRUE;                    break;                default:                    return(E_BADPARM);            }            break;        case ISRC_PULSE:            if(value->v.numValue <2) return(E_BADPARM);            here->ISRCfunctionType = PULSE;            here->ISRCfuncTGiven = TRUE;            here->ISRCcoeffs = value->v.vec.rVec;            here->ISRCfunctionOrder = value->v.numValue;            here->ISRCcoeffsGiven = TRUE;            break;        case ISRC_SINE:            if(value->v.numValue <2) return(E_BADPARM);            here->ISRCfunctionType = SINE;            here->ISRCfuncTGiven = TRUE;            here->ISRCcoeffs = value->v.vec.rVec;            here->ISRCfunctionOrder = value->v.numValue;            here->ISRCcoeffsGiven = TRUE;            break;        case ISRC_EXP:            if(value->v.numValue <2) return(E_BADPARM);            here->ISRCfunctionType = EXP;            here->ISRCfuncTGiven = TRUE;            here->ISRCcoeffs = value->v.vec.rVec;            here->ISRCfunctionOrder = value->v.numValue;            here->ISRCcoeffsGiven = TRUE;            break;        case ISRC_PWL:            if(value->v.numValue <2) return(E_BADPARM);            here->ISRCfunctionType = PWL;            here->ISRCfuncTGiven = TRUE;            here->ISRCcoeffs = value->v.vec.rVec;            here->ISRCfunctionOrder = value->v.numValue;            here->ISRCcoeffsGiven = TRUE;                        for (i=0;i<((here->ISRCfunctionOrder/2)-1);i++) {                  if (*(here->ISRCcoeffs+2*(i+1))<=*(here->ISRCcoeffs+2*i)) {                     fprintf(stderr, "Warning : current source %s",                                                               here->ISRCname);                     fprintf(stderr, " has non-increasing PWL time points.\n");                  }            }                        break;        case ISRC_SFFM:            if(value->v.numValue <2) return(E_BADPARM);            here->ISRCfunctionType = SFFM;            here->ISRCfuncTGiven = TRUE;            here->ISRCcoeffs = value->v.vec.rVec;            here->ISRCfunctionOrder = value->v.numValue;            here->ISRCcoeffsGiven = TRUE;            break;	case ISRC_AM:	    if(value->v.numValue <2) return(E_BADPARM);            here->ISRCfunctionType = AM;            here->ISRCfuncTGiven = TRUE;            here->ISRCcoeffs = value->v.vec.rVec;            here->ISRCfunctionOrder = value->v.numValue;            here->ISRCcoeffsGiven = TRUE;	    break;	case ISRC_D_F1:	    here->ISRCdF1given = TRUE;	    here->ISRCdGiven = TRUE;	    switch(value->v.numValue) {		case 2:		    here->ISRCdF1phase = *(value->v.vec.rVec+1);		    here->ISRCdF1mag = *(value->v.vec.rVec);		    break;		case 1:		    here->ISRCdF1mag = *(value->v.vec.rVec);		    here->ISRCdF1phase = 0.0;		    break;		case 0:		    here->ISRCdF1mag = 1.0;		    here->ISRCdF1phase = 0.0;		    break;		default:		    return(E_BADPARM);	    }	    break;	case ISRC_D_F2:	    here->ISRCdF2given = TRUE;	    here->ISRCdGiven = TRUE;	    switch(value->v.numValue) {	        case 2:		    here->ISRCdF2phase = *(value->v.vec.rVec+1);		    here->ISRCdF2mag = *(value->v.vec.rVec);		    break;		case 1:		    here->ISRCdF2mag = *(value->v.vec.rVec);		    here->ISRCdF2phase = 0.0;		    break;		case 0:		    here->ISRCdF2mag = 1.0;		    here->ISRCdF2phase = 0.0;		    break;		default:		    return(E_BADPARM);	    }	    break;        default:            return(E_BADPARM);    }    return(OK);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -