📄 nbt2acld.c
字号:
/**********Copyright 1992 Regents of the University of California. All rights reserved.Author: 1987 Kartikeya Mayaram, U. C. Berkeley CAD Group**********//* * Function to load the COMPLEX circuit matrix using the small signal * parameters saved during a previous DC operating point analysis. */#include "spice.h"#include "util.h"#include <stdio.h>#include "cktdefs.h"#include "nbjt2def.h"#include "sperror.h"#include "complex.h"#include "suffix.h"/* External Declarations */extern int TWOacDebug;intNBJT2acLoad(inModel, ckt) GENmodel *inModel; CKTcircuit *ckt;{ register NBJT2model *model = (NBJT2model *) inModel; register NBJT2instance *inst; SPcomplex yIeVce, yIeVbe; SPcomplex yIcVce, yIcVbe; double startTime; int NBJT2admittance(); for (; model != NULL; model = model->NBJT2nextModel) { FieldDepMobility = model->NBJT2models->MODLfieldDepMobility; TransDepMobility = model->NBJT2models->MODLtransDepMobility; SurfaceMobility = model->NBJT2models->MODLsurfaceMobility; Srh = model->NBJT2models->MODLsrh; Auger = model->NBJT2models->MODLauger; AvalancheGen = model->NBJT2models->MODLavalancheGen; OneCarrier = model->NBJT2methods->METHoneCarrier; AcAnalysisMethod = model->NBJT2methods->METHacAnalysisMethod; MobDeriv = model->NBJT2methods->METHmobDeriv; TWOacDebug = model->NBJT2outputs->OUTPacDebug; for (inst = model->NBJT2instances; inst != NULL; inst = inst->NBJT2nextInstance) { if (inst->NBJT2owner != ARCHme) continue; startTime = SPfrontEnd->IFseconds(); /* Get Temp.-Dep. Global Parameters */ GLOBgetGlobals(&(inst->NBJT2globals)); model->NBJT2methods->METHacAnalysisMethod = NBJT2admittance(inst->NBJT2pDevice, ckt->CKTomega, &yIeVce, &yIcVce, &yIeVbe, &yIcVbe); *(inst->NBJT2colColPtr) += yIcVce.real; *(inst->NBJT2colColPtr + 1) += yIcVce.imag; *(inst->NBJT2colBasePtr) += yIcVbe.real; *(inst->NBJT2colBasePtr + 1) += yIcVbe.imag; *(inst->NBJT2colEmitPtr) -= yIcVbe.real + yIcVce.real; *(inst->NBJT2colEmitPtr + 1) -= yIcVbe.imag + yIcVce.imag; *(inst->NBJT2baseColPtr) -= yIcVce.real + yIeVce.real; *(inst->NBJT2baseColPtr + 1) -= yIcVce.imag + yIeVce.imag; *(inst->NBJT2baseBasePtr) -= yIcVbe.real + yIeVbe.real; *(inst->NBJT2baseBasePtr + 1) -= yIcVbe.imag + yIeVbe.imag; *(inst->NBJT2baseEmitPtr) += yIcVbe.real + yIcVce.real + yIeVbe.real + yIeVce.real; *(inst->NBJT2baseEmitPtr + 1) += yIcVbe.imag + yIcVce.imag + yIeVbe.imag + yIeVce.imag; *(inst->NBJT2emitColPtr) += yIeVce.real; *(inst->NBJT2emitColPtr + 1) += yIeVce.imag; *(inst->NBJT2emitBasePtr) += yIeVbe.real; *(inst->NBJT2emitBasePtr + 1) += yIeVbe.imag; *(inst->NBJT2emitEmitPtr) -= yIeVbe.real + yIeVce.real; *(inst->NBJT2emitEmitPtr + 1) -= yIeVbe.imag + yIeVce.imag; if (ckt->CKTomega != 0.0) { inst->NBJT2c11 = yIcVce.imag / ckt->CKTomega; inst->NBJT2c12 = yIcVbe.imag / ckt->CKTomega; inst->NBJT2c21 = (yIeVce.imag - yIcVce.imag) / ckt->CKTomega; inst->NBJT2c22 = (yIeVbe.imag - yIcVbe.imag) / ckt->CKTomega; } else { inst->NBJT2c11 = 0.0; /* XXX What else can be done?! */ inst->NBJT2c12 = 0.0; /* XXX What else can be done?! */ inst->NBJT2c21 = 0.0; /* XXX What else can be done?! */ inst->NBJT2c22 = 0.0; /* XXX What else can be done?! */ } inst->NBJT2y11r = yIcVce.real; inst->NBJT2y11i = yIcVce.imag; inst->NBJT2y12r = yIcVbe.real; inst->NBJT2y12i = yIcVbe.imag; inst->NBJT2y21r = yIeVce.real - yIcVce.real; inst->NBJT2y21i = yIeVce.imag - yIcVce.imag; inst->NBJT2y22r = yIeVbe.real - yIcVbe.real; inst->NBJT2y22i = yIeVbe.imag - yIcVbe.imag; inst->NBJT2smSigAvail = TRUE; inst->NBJT2pDevice->pStats->totalTime[STAT_AC] += SPfrontEnd->IFseconds() - startTime; } } return (OK);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -