Added SPICE npn and pnp models.

This commit is contained in:
MikeBrinson 2015-05-28 16:05:59 +01:00 committed by Vadim Kuznetzov
parent 2964759220
commit 32e35cf0a4
11 changed files with 336 additions and 20 deletions

BIN
qucs/bitmaps/NPN_SPICE.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 984 B

BIN
qucs/bitmaps/PNP_SPICE.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 985 B

View File

@ -87,6 +87,8 @@ LTL_SPICE.cpp
UDRCTL_SPICE.cpp
LTRA_SPICE.cpp
DIODE_SPICE.cpp
NPN_SPICE.cpp
PNP_SPICE.cpp
volt_ac_SPICE.cpp
sp_customsim.cpp
sp_fourier.cpp
@ -300,6 +302,8 @@ LTL_SPICE.h
UDRCTL_SPICE.h
LTRA_SPICE.h
DIODE_SPICE.h
NPN_SPICE.h
PNP_SPICE.h
volt_ac_SPICE.h
sp_customsim.h
sp_fourier.h

View File

@ -1,5 +1,5 @@
/***************************************************************************
NMF MESFET_SPICE.cpp - description
DIODE_SPICE.cpp - description
--------------------------------------
begin : Fri Mar 9 2007
copyright : (C) 2007 by Gunther Kraut

View File

@ -0,0 +1,117 @@
/***************************************************************************
NPN_SPICE.cpp - description
--------------------------------------
begin : Fri Mar 9 2007
copyright : (C) 2007 by Gunther Kraut
email : gn.kraut@t-online.de
spice4qucs code added Thur. 28 May 2015
copyright : (C) 2015 by Mike Brinson
email : mbrin72043@yahoo.co.uk
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
#include "NPN_SPICE.h"
#include "node.h"
#include "misc.h"
#include "extsimkernels/spicecompat.h"
NPN_SPICE::NPN_SPICE()
{
Description = QObject::tr("NPN BJT SPICE format");
Lines.append(new Line(-10,-15,-10, 15,QPen(Qt::red,3)));
Lines.append(new Line(-30, 0,-20, 0,QPen(Qt::darkBlue,3)));
Lines.append(new Line(-20, 0,-10, 0,QPen(Qt::red,3)));
Lines.append(new Line(-10, -5, 0,-15,QPen(Qt::red,3)));
Lines.append(new Line( 0,-15, 0,-20,QPen(Qt::red,3)));
Lines.append(new Line( 0,-20, 0,-30,QPen(Qt::darkBlue,3)));
Lines.append(new Line(-10, 5, 0, 15,QPen(Qt::red,3)));
Lines.append(new Line( 0, 15, 0, 20,QPen(Qt::red,3)));
Lines.append(new Line( 0, 20, 0, 30,QPen(Qt::darkBlue,3)));
Lines.append(new Line( -6, 15, 0, 15,QPen(Qt::red,3)));
Lines.append(new Line( 0, 9, 0, 15,QPen(Qt::red,3)));
Ports.append(new Port(0, -30));
Ports.append(new Port(-30, 0));
Ports.append(new Port( 0, 30));
x1 = -30; y1 = -30;
x2 = 4; y2 = 30;
tx = x1+4;
ty = y2+4;
Model = "NPN_SPICE";
SpiceModel = "Q";
Name = "Q";
Props.append(new Property("Q", "", true,"Expression"));
Props.append(new Property("Q_Line 2", "", false,"Expression"));
Props.append(new Property("Q_Line 3", "", false,"Expression"));
Props.append(new Property("Q _Line 4", "", false,"Expression"));
Props.append(new Property("Q _Line 5", "", false,"Expression"));
}
NPN_SPICE::~NPN_SPICE()
{
}
Component* NPN_SPICE::newOne()
{
return new NPN_SPICE();
}
Element* NPN_SPICE::info(QString& Name, char* &BitmapFile, bool getNewOne)
{
Name = QObject::tr(" NPN BJT");
BitmapFile = (char *) "NPN_SPICE";
if(getNewOne) return new NPN_SPICE();
return 0;
}
QString NPN_SPICE::netlist()
{
return QString("");
}
QString NPN_SPICE::spice_netlist(bool isXyce)
{
QString s = spicecompat::check_refdes(Name,SpiceModel);
foreach(Port *p1, Ports) {
QString nam = p1->Connection->Name;
if (nam=="gnd") nam = "0";
s += " "+ nam+" "; // node names
}
QString Q= Props.at(0)->Value;
QString Q_Line_2= Props.at(1)->Value;
QString Q_Line_3= Props.at(2)->Value;
QString Q_Line_4= Props.at(3)->Value;
QString Q_Line_5= Props.at(4)->Value;
if( Q.length() > 0) s += QString("%1\n").arg(Q);
if( Q_Line_2.length() > 0 ) s += QString("%1\n").arg(Q_Line_2);
if( Q_Line_3.length() > 0 ) s += QString("%1\n").arg(Q_Line_3);
if( Q_Line_4.length() > 0 ) s += QString("%1\n").arg(Q_Line_4);
if( Q_Line_5.length() > 0 ) s += QString("%1\n").arg(Q_Line_5);
return s;
}

View File

@ -0,0 +1,37 @@
/***************************************************************************
NPN_SPICE.h - description
--------------------------------------
begin : Fri Mar 9 2007
copyright : (C) 2007 by Gunther Kraut
email : gn.kraut@t-online.de
spice4qucs code added Thurs. 28 May 2015
copyright : (C) 2015 by Mike Brinson
email : mbrin72043@yahoo.co.uk
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
#ifndef NPN_SPICE_H
#define NPN_SPICE_H
#include "component.h"
class NPN_SPICE : public Component {
public:
NPN_SPICE();
~NPN_SPICE();
Component* newOne();
static Element* info(QString&, char* &, bool getNewOne=false);
protected:
QString netlist();
QString spice_netlist(bool isXyce = false);
};
#endif // NPN_SPICE_H

View File

@ -0,0 +1,117 @@
/***************************************************************************
PNP_SPICE.cpp - description
--------------------------------------
begin : Fri Mar 9 2007
copyright : (C) 2007 by Gunther Kraut
email : gn.kraut@t-online.de
spice4qucs code added Thur. 28 May 2015
copyright : (C) 2015 by Mike Brinson
email : mbrin72043@yahoo.co.uk
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
#include "PNP_SPICE.h"
#include "node.h"
#include "misc.h"
#include "extsimkernels/spicecompat.h"
PNP_SPICE::PNP_SPICE()
{
Description = QObject::tr("PNP BJT SPICE format");
Lines.append(new Line(-10,-15,-10, 15,QPen(Qt::red,3)));
Lines.append(new Line(-30, 0,-20, 0,QPen(Qt::darkBlue,3)));
Lines.append(new Line(-20, 0,-10, 0,QPen(Qt::red,3)));
Lines.append(new Line(-10, -5, 0,-15,QPen(Qt::red,3)));
Lines.append(new Line( 0,-15, 0,-20,QPen(Qt::red,3)));
Lines.append(new Line( 0,-20, 0,-30,QPen(Qt::darkBlue,3)));
Lines.append(new Line(-10, 5, 0, 15,QPen(Qt::red,3)));
Lines.append(new Line( 0, 15, 0, 20,QPen(Qt::red,3)));
Lines.append(new Line( 0, 20, 0, 30,QPen(Qt::darkBlue,3)));
Lines.append(new Line( -5, 10, -5, 16,QPen(Qt::red,3)));
Lines.append(new Line( -5, 10, 1, 10,QPen(Qt::red,3)));
Ports.append(new Port( 0,-30));
Ports.append(new Port(-30, 0));
Ports.append(new Port( 0, 30));
x1 = -30; y1 = -30;
x2 = 4; y2 = 30;
tx = x1+4;
ty = y2+4;
Model = "PNP_SPICE";
SpiceModel = "Q";
Name = "Q";
Props.append(new Property("Q", "", true,"Expression"));
Props.append(new Property("Q_Line 2", "", false,"Expression"));
Props.append(new Property("Q_Line 3", "", false,"Expression"));
Props.append(new Property("Q _Line 4", "", false,"Expression"));
Props.append(new Property("Q _Line 5", "", false,"Expression"));
}
PNP_SPICE::~PNP_SPICE()
{
}
Component* PNP_SPICE::newOne()
{
return new PNP_SPICE();
}
Element* PNP_SPICE::info(QString& Name, char* &BitmapFile, bool getNewOne)
{
Name = QObject::tr(" PNP BJT");
BitmapFile = (char *) "PNP_SPICE";
if(getNewOne) return new PNP_SPICE();
return 0;
}
QString PNP_SPICE::netlist()
{
return QString("");
}
QString PNP_SPICE::spice_netlist(bool isXyce)
{
QString s = spicecompat::check_refdes(Name,SpiceModel);
foreach(Port *p1, Ports) {
QString nam = p1->Connection->Name;
if (nam=="gnd") nam = "0";
s += " "+ nam+" "; // node names
}
QString Q= Props.at(0)->Value;
QString Q_Line_2= Props.at(1)->Value;
QString Q_Line_3= Props.at(2)->Value;
QString Q_Line_4= Props.at(3)->Value;
QString Q_Line_5= Props.at(4)->Value;
if( Q.length() > 0) s += QString("%1\n").arg(Q);
if( Q_Line_2.length() > 0 ) s += QString("%1\n").arg(Q_Line_2);
if( Q_Line_3.length() > 0 ) s += QString("%1\n").arg(Q_Line_3);
if( Q_Line_4.length() > 0 ) s += QString("%1\n").arg(Q_Line_4);
if( Q_Line_5.length() > 0 ) s += QString("%1\n").arg(Q_Line_5);
return s;
}

View File

@ -0,0 +1,37 @@
/***************************************************************************
PNP_SPICE.h - description
--------------------------------------
begin : Fri Mar 9 2007
copyright : (C) 2007 by Gunther Kraut
email : gn.kraut@t-online.de
spice4qucs code added Thurs. 28 May 2015
copyright : (C) 2015 by Mike Brinson
email : mbrin72043@yahoo.co.uk
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
#ifndef PNP_SPICE_H
#define PNP_SPICE_H
#include "component.h"
class PNP_SPICE : public Component {
public:
PNP_SPICE();
~PNP_SPICE();
Component* newOne();
static Element* info(QString&, char* &, bool getNewOne=false);
protected:
QString netlist();
QString spice_netlist(bool isXyce = false);
};
#endif // PNP_SPICE_H

View File

@ -217,15 +217,16 @@
#include "L_SPICE.h"
#include "R_SPICE.h"
#include "K_SPICE.h"
#include "MESFET_SPICE.h"
#include "PMF_MESFET_SPICE.h"
#include "Cmeter_SPICE.h"
#include "LTL_SPICE.h"
#include "UDRCTL_SPICE.h"
#include "LTRA_SPICE.h"
#include "volt_ac_SPICE.h"
#include "DIODE_SPICE.h"
#include "NPN_SPICE.h"
#include "PNP_SPICE.h"
#include "MESFET_SPICE.h"
#include "PMF_MESFET_SPICE.h"
#include "Cmeter_SPICE.h"
// Spice netlist sections
#include "sp_parameter.h"

View File

@ -433,6 +433,9 @@ void Module::registerModules (void) {
REGISTER_EXTERNAL_1 (ecvs);
//spice specific components
REGISTER_SPICE_1 (R_SPICE);
REGISTER_SPICE_1 (C_SPICE);
REGISTER_SPICE_1 (L_SPICE);
REGISTER_SPICE_1 (Vac_SPICE);
REGISTER_SPICE_1 (Src_eqndef);
REGISTER_SPICE_1 (iSffm);
@ -444,23 +447,21 @@ void Module::registerModules (void) {
REGISTER_SPICE_1 (eNL);
REGISTER_SPICE_1 (gNL);
REGISTER_SPICE_1 (vTRNOISE);
REGISTER_SPICE_1 (iTRNOISE);
REGISTER_SPICE_1 (vTRRANDOM);
REGISTER_SPICE_1 (C_SPICE);
REGISTER_SPICE_1 (L_SPICE);
REGISTER_SPICE_1 (R_SPICE);
REGISTER_SPICE_1 (K_SPICE);
REGISTER_SPICE_1 (MESFET_SPICE);
REGISTER_SPICE_1 (iTRNOISE);
REGISTER_SPICE_1 (vTRRANDOM);
REGISTER_SPICE_1 (C_SPICE);
REGISTER_SPICE_1 (L_SPICE);
REGISTER_SPICE_1 (R_SPICE);
REGISTER_SPICE_1 (K_SPICE);
REGISTER_SPICE_1 (LTL_SPICE);
REGISTER_SPICE_1 (UDRCTL_SPICE);
REGISTER_SPICE_1 (LTRA_SPICE);
REGISTER_SPICE_1 (MESFET_SPICE);
REGISTER_SPICE_1 (PMF_MESFET_SPICE);
REGISTER_SPICE_1 (LTL_SPICE);
REGISTER_SPICE_1 (UDRCTL_SPICE);
REGISTER_SPICE_1 (LTRA_SPICE);
REGISTER_SPICE_1 (DIODE_SPICE);
REGISTER_SPICE_1 (DIODE_SPICE);
REGISTER_SPICE_1 (NPN_SPICE);
REGISTER_SPICE_1 (PNP_SPICE);
REGISTER_SPICE_1 (MESFET_SPICE);
REGISTER_SPICE_1 (PMF_MESFET_SPICE);
// specific sections of spice netlists
REGISTER_SPICE_SEC_1 (SpiceParam);
REGISTER_SPICE_SEC_1 (SpiceGlobalParam);

View File

@ -261,7 +261,9 @@
<file>bitmaps/LTL_SPICE.png</file>
<file>bitmaps/UDRCTL_SPICE.png</file>
<file>bitmaps/LTRA_SPICE.png</file>
<file>bitmaps/DIODE_SPICE.png</file>
<file>bitmaps/DIODE_SPICE.png</file>
<file>bitmaps/NPN_SPICE.png</file>
<file>bitmaps/PNP_SPICE.png</file>
<file>bitmaps/sp_fourier.png</file>
<file>bitmaps/sp_customsim.png</file>
<file>bitmaps/sp_disto.png</file>