mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00

QList, std::vector etc. has front and back so this changes will reduce refactoring effort.
124 lines
4.2 KiB
C++
124 lines
4.2 KiB
C++
/*
|
|
* nigbt.cpp - device implementations for nigbt module
|
|
*
|
|
* This is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
* any later version.
|
|
*
|
|
*/
|
|
|
|
#include "nigbt.h"
|
|
#include "extsimkernels/spicecompat.h"
|
|
|
|
nigbt::nigbt()
|
|
{
|
|
Description = QObject::tr ("NIGBT verilog device");
|
|
Simulator = spicecompat::simQucsator;
|
|
|
|
Props.append (new Property ("Agd", "5.0e-6", false,
|
|
QObject::tr ("gate-drain overlap area")
|
|
+" ("+QObject::tr ("m**2")+")"));
|
|
Props.append (new Property ("Area", "1.0e-5", false,
|
|
QObject::tr ("area of the device")
|
|
+" ("+QObject::tr ("m**2")+")"));
|
|
Props.append (new Property ("Kp", "0.38", false,
|
|
QObject::tr ("MOS transconductance")
|
|
+" ("+QObject::tr ("A/V**2")+")"));
|
|
Props.append (new Property ("Tau", "7.1e-6", false,
|
|
QObject::tr ("ambipolar recombination lifetime")
|
|
+" ("+QObject::tr ("s")+")"));
|
|
Props.append (new Property ("Wb", "9.0e-5", false,
|
|
QObject::tr ("metallurgical base width")
|
|
+" ("+QObject::tr ("m")+")"));
|
|
Props.append (new Property ("BVf", "1.0", false,
|
|
QObject::tr ("avalanche uniformity factor")));
|
|
Props.append (new Property ("BVn", "4.0", false,
|
|
QObject::tr ("avalanche multiplication exponent")));
|
|
Props.append (new Property ("Cgs", "1.24e-8", false,
|
|
QObject::tr ("gate-source capacitance per unit area")
|
|
+" ("+QObject::tr ("F/cm**2")+")"));
|
|
Props.append (new Property ("Coxd", "3.5e-8", false,
|
|
QObject::tr ("gate-drain oxide capacitance per unit area")
|
|
+" ("+QObject::tr ("F/cm**2")+")"));
|
|
Props.append (new Property ("Jsne", "6.5e-13", false,
|
|
QObject::tr ("emitter saturation current density")
|
|
+" ("+QObject::tr ("A/cm**2")+")"));
|
|
Props.append (new Property ("Kf", "1.0", false,
|
|
QObject::tr ("triode region factor")));
|
|
Props.append (new Property ("Mun", "1.5e-3", false,
|
|
QObject::tr ("electron mobility")
|
|
+" ("+QObject::tr ("cm**2/Vs")+")"));
|
|
Props.append (new Property ("Mup", "4.5e-2", false,
|
|
QObject::tr ("hole mobility")
|
|
+" ("+QObject::tr ("cm**2/Vs")+")"));
|
|
Props.append (new Property ("Nb", "2.0e14", false,
|
|
QObject::tr ("base doping")
|
|
+" ("+QObject::tr ("1/cm**3")+")"));
|
|
Props.append (new Property ("Theta", "0.02", false,
|
|
QObject::tr ("transverse field factor")
|
|
+" ("+QObject::tr ("1/V")+")"));
|
|
Props.append (new Property ("Vt", "4.7", false,
|
|
QObject::tr ("threshold voltage")
|
|
+" ("+QObject::tr ("V")+")"));
|
|
Props.append (new Property ("Vtd", "1.0e-3", false,
|
|
QObject::tr ("gate-drain overlap depletion threshold")
|
|
+" ("+QObject::tr ("V")+")"));
|
|
Props.append (new Property ("Tnom", "26.85", false,
|
|
QObject::tr ("parameter measurement temperature")
|
|
+" ("+QObject::tr ("Celsius")+")"));
|
|
Props.append (new Property ("Temp", "26.85", false,
|
|
QObject::tr ("simulation temperature")
|
|
+" ("+QObject::tr ("Celsius")+")"));
|
|
|
|
createSymbol ();
|
|
tx = x2 + 4;
|
|
ty = y1 + 4;
|
|
Model = "nigbt";
|
|
Name = "T";
|
|
}
|
|
|
|
Component * nigbt::newOne()
|
|
{
|
|
nigbt * p = new nigbt();
|
|
p->Props.front()->Value = Props.front()->Value;
|
|
p->recreate(0);
|
|
return p;
|
|
}
|
|
|
|
Element * nigbt::info(QString& Name, char * &BitmapFile, bool getNewOne)
|
|
{
|
|
Name = QObject::tr("NIGBT");
|
|
BitmapFile = (char *) "nigbt";
|
|
|
|
if(getNewOne) return new nigbt();
|
|
return 0;
|
|
}
|
|
|
|
void nigbt::createSymbol()
|
|
{
|
|
// bipolar
|
|
Lines.append(new qucs::Line(-10,-15,-10, 15,QPen(Qt::darkBlue,3)));
|
|
Lines.append(new qucs::Line(-30, 0,-14, 0,QPen(Qt::darkBlue,2)));
|
|
Lines.append(new qucs::Line(-10, -5, 0,-15,QPen(Qt::darkBlue,2)));
|
|
Lines.append(new qucs::Line( 0,-15, 0,-30,QPen(Qt::darkBlue,2)));
|
|
Lines.append(new qucs::Line(-10, 5, 0, 15,QPen(Qt::darkBlue,2)));
|
|
Lines.append(new qucs::Line( 0, 15, 0, 30,QPen(Qt::darkBlue,2)));
|
|
|
|
// mos gate
|
|
Lines.append(new qucs::Line(-14,-13,-14, 13,QPen(Qt::darkBlue,3)));
|
|
|
|
// arrow
|
|
Lines.append(new qucs::Line( -6, 15, 0, 15,QPen(Qt::darkBlue,2)));
|
|
Lines.append(new qucs::Line( 0, 9, 0, 15,QPen(Qt::darkBlue,2)));
|
|
|
|
// terminal definitions
|
|
Ports.append(new Port( 0,-30)); // collector
|
|
Ports.append(new Port(-30, 0)); // gate
|
|
Ports.append(new Port( 0, 30)); // emitter
|
|
|
|
// relative boundings
|
|
x1 = -30; y1 = -30;
|
|
x2 = 4; y2 = 30;
|
|
}
|