qucs_s/qucs/components/diode.cpp

201 lines
7.5 KiB
C++
Raw Normal View History

2003-11-27 13:34:25 +00:00
/***************************************************************************
2006-12-18 06:57:24 +00:00
diode.cpp
-----------
2003-12-26 16:31:25 +00:00
begin : Sat Aug 23 2003
2003-11-27 13:34:25 +00:00
copyright : (C) 2003 by Michael Margraf
2004-06-16 17:41:33 +00:00
email : michael.margraf@alumni.tu-berlin.de
2003-11-27 13:34:25 +00:00
***************************************************************************/
/***************************************************************************
* *
* This program 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 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
2003-12-26 16:31:25 +00:00
#include "diode.h"
#include "node.h"
#include "main.h"
#include "misc.h"
2015-02-20 18:42:16 +03:00
#include "extsimkernels/spicecompat.h"
2003-11-27 13:34:25 +00:00
2003-12-26 16:31:25 +00:00
Diode::Diode()
2003-11-27 13:34:25 +00:00
{
2004-01-31 21:27:38 +00:00
Description = QObject::tr("diode");
2003-12-26 16:31:25 +00:00
2004-06-06 14:13:59 +00:00
Props.append(new Property("Is", "1e-15 A", true,
QObject::tr("saturation current")));
Props.append(new Property("N", "1", true,
QObject::tr("emission coefficient")));
2004-06-06 14:13:59 +00:00
Props.append(new Property("Cj0", "10 fF", true,
QObject::tr("zero-bias junction capacitance")));
2006-12-18 06:57:24 +00:00
Props.append(new Property("M", "0.5", false,
QObject::tr("grading coefficient")));
2006-12-18 06:57:24 +00:00
Props.append(new Property("Vj", "0.7 V", false,
QObject::tr("junction potential")));
Props.append(new Property("Fc", "0.5", false,
QObject::tr("forward-bias depletion capacitance coefficient")));
Props.append(new Property("Cp", "0.0 fF", false,
2014-12-21 10:43:42 +03:00
QObject::tr("linear capacitance")));
Props.append(new Property("Isr", "0.0", false,
QObject::tr("recombination current parameter")));
Props.append(new Property("Nr", "2.0", false,
QObject::tr("emission coefficient for Isr")));
Props.append(new Property("Rs", "0.0 Ohm", false,
QObject::tr("ohmic series resistance")));
Props.append(new Property("Tt", "0.0 ps", false,
QObject::tr("transit time")));
2007-03-05 06:59:54 +00:00
Props.append(new Property("Ikf", "0", false,
QObject::tr("high-injection knee current (0=infinity)")));
Props.append(new Property("Kf", "0.0", false,
2007-03-05 06:59:54 +00:00
QObject::tr("flicker noise coefficient")));
Props.append(new Property("Af", "1.0", false,
QObject::tr("flicker noise exponent")));
Props.append(new Property("Ffe", "1.0", false,
QObject::tr("flicker noise frequency exponent")));
Props.append(new Property("Bv", "0", false,
QObject::tr("reverse breakdown voltage")));
Props.append(new Property("Ibv", "1 mA", false,
QObject::tr("current at reverse breakdown voltage")));
2007-03-05 06:59:54 +00:00
Props.append(new Property("Temp", "26.85", false,
QObject::tr("simulation temperature in degree Celsius")));
Props.append(new Property("Xti", "3.0", false,
QObject::tr("saturation current temperature exponent")));
Props.append(new Property("Eg", "1.11", false,
QObject::tr("energy bandgap in eV")));
Props.append(new Property("Tbv", "0.0", false,
QObject::tr("Bv linear temperature coefficient")));
Props.append(new Property("Trs", "0.0", false,
QObject::tr("Rs linear temperature coefficient")));
Props.append(new Property("Ttt1", "0.0", false,
QObject::tr("Tt linear temperature coefficient")));
Props.append(new Property("Ttt2", "0.0", false,
QObject::tr("Tt quadratic temperature coefficient")));
Props.append(new Property("Tm1", "0.0", false,
QObject::tr("M linear temperature coefficient")));
Props.append(new Property("Tm2", "0.0", false,
QObject::tr("M quadratic temperature coefficient")));
Props.append(new Property("Tnom", "26.85", false,
QObject::tr("temperature at which parameters were extracted")));
Props.append(new Property("Area", "1.0", false,
QObject::tr("default area for diode")));
2006-12-18 06:57:24 +00:00
Props.append(new Property("Symbol", "normal", false,
QObject::tr("schematic symbol")+" [normal, US, Schottky, Zener, Varactor]"));
2003-11-27 13:34:25 +00:00
2006-12-18 06:57:24 +00:00
createSymbol();
tx = x1+4;
ty = y2+4;
Model = "Diode";
Name = "D";
SpiceModel = "D";
2003-11-27 13:34:25 +00:00
}
2004-06-06 14:13:59 +00:00
Component* Diode::newOne()
2003-11-27 13:34:25 +00:00
{
2003-12-26 16:31:25 +00:00
return new Diode();
2003-11-27 13:34:25 +00:00
}
2004-06-06 14:13:59 +00:00
QString Diode::spice_netlist(bool isXyce)
{
2015-02-20 18:42:16 +03:00
QString s = spicecompat::check_refdes(Name,SpiceModel);
// output all node names
2014-12-22 14:49:42 +03:00
QList<int> pin_seq;
pin_seq<<1<<0; // Pin sequence: CBE
// output all node names
2023-01-15 01:17:09 +03:00
for (int pin : pin_seq) {
2014-12-22 14:49:42 +03:00
QString nam = Ports.at(pin)->Connection->Name;
if (nam=="gnd") nam = "0";
s += " "+ nam; // node names
}
2014-12-21 10:43:42 +03:00
QStringList spice_incompat,spice_tr;
if (isXyce) {
spice_tr<<"Tbv"<<"Tbv1"<<"Trs"<<"Trs1"; // parameters that need conversion of names
spice_incompat<<"Ttt1"<<"Ttt2"<<"Tm1"<<"Tm2"<<"Cp"<<"Isr"
<<"Nr"<<"Ffe"<<"Temp"<<"Area"<<"Symbol"; // spice-incompatible parameters
} else {
spice_tr<<"Tbv"<<"Tcv";
spice_incompat<<"Cp"<<"Isr"<<"Nr"<<"Ffe"<<"Temp"<<"Area"<<"Symbol";
}
2014-12-21 10:43:42 +03:00
QString par_str;
//= form_spice_param_list(spice_incompat,spice_tr);
for (unsigned int i=0;i<Props.count();i++) {
if (!spice_incompat.contains(Props.at(i)->Name)) {
if (Props.at(i)->Name == "Ikf") { // Bug Ngspice37
if (Props.at(i)->Value == "0") continue; // convergence error if Ikf=0
}
QString unit,nam;
if (spice_tr.contains(Props.at(i)->Name)) {
nam = spice_tr.at(spice_tr.indexOf(Props.at(i)->Name)+1);
} else {
nam = Props.at(i)->Name;
}
double val,fac;
misc::str2num(Props.at(i)->Value,val,unit,fac);
val *= fac;
par_str += QString("%1=%2 ").arg(nam).arg(val);
}
}
2014-12-24 11:18:43 +03:00
s += QString(" DMOD_%1 AREA=%2 Temp=%3\n").arg(Name).arg(getProperty("Area")->Value)
.arg(getProperty("Temp")->Value);
if (isXyce) {
s += QString(".MODEL DMOD_%1 D (LEVEL = 2 %2)\n").arg(Name).arg(par_str);
} else {
s += QString(".MODEL DMOD_%1 D (%2)\n").arg(Name).arg(par_str);
}
return s;
}
2005-06-23 06:06:40 +00:00
Element* Diode::info(QString& Name, char* &BitmapFile, bool getNewOne)
2004-06-06 14:13:59 +00:00
{
Name = QObject::tr("Diode");
BitmapFile = (char *) "diode";
2004-06-06 14:13:59 +00:00
if(getNewOne) return new Diode();
return 0;
}
2006-12-18 06:57:24 +00:00
// -------------------------------------------------------
void Diode::createSymbol()
{
if(Props.getLast()->Value.at(0) == 'V') {
Lines.append(new qucs::Line(-30, 0, -9, 0,QPen(Qt::darkBlue,2)));
Lines.append(new qucs::Line( -6, 0, 30, 0,QPen(Qt::darkBlue,2)));
Lines.append(new qucs::Line( -9, -9, -9, 9,QPen(Qt::darkBlue,2)));
}
else if(Props.getLast()->Value.at(0) == 'U') {
Lines.append(new qucs::Line(-30, 0, -6, 0,QPen(Qt::darkBlue,2)));
Lines.append(new qucs::Line( 6, 0, 30, 0,QPen(Qt::darkBlue,2)));
}
else {
Lines.append(new qucs::Line(-30, 0, 30, 0,QPen(Qt::darkBlue,2)));
}
Lines.append(new qucs::Line( -6, -9, -6, 9,QPen(Qt::darkBlue,2)));
Lines.append(new qucs::Line( 6, -9, 6, 9,QPen(Qt::darkBlue,2)));
Lines.append(new qucs::Line( -6, 0, 6, -9,QPen(Qt::darkBlue,2)));
Lines.append(new qucs::Line( -6, 0, 6, 9,QPen(Qt::darkBlue,2)));
2006-12-18 06:57:24 +00:00
if(Props.getLast()->Value.at(0) == 'S') {
Lines.append(new qucs::Line( -6, -9,-12,-12,QPen(Qt::darkBlue,2)));
Lines.append(new qucs::Line( -6, 9, 0, 12,QPen(Qt::darkBlue,2)));
2006-12-18 06:57:24 +00:00
}
else if(Props.getLast()->Value.at(0) == 'Z') {
Lines.append(new qucs::Line( -6, 9, -1, 9,QPen(Qt::darkBlue,2)));
2006-12-18 06:57:24 +00:00
}
Ports.append(new Port(-30, 0));
Ports.append(new Port( 30, 0));
x1 = -30; y1 = -11;
x2 = 30; y2 = 11;
}