Added njf and pjf SPICE models.

This commit is contained in:
MikeBrinson 2015-05-30 12:47:15 +01:00 committed by Vadim Kuznetzov
parent 69a11d11e3
commit 1ff280b697
10 changed files with 357 additions and 15 deletions

BIN
qucs/bitmaps/NJF_SPICE.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

BIN
qucs/bitmaps/PJF_SPICE.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1023 B

View File

@ -89,6 +89,8 @@ LTRA_SPICE.cpp
DIODE_SPICE.cpp
NPN_SPICE.cpp
PNP_SPICE.cpp
NJF_SPICE.cpp
PJF_SPICE.cpp
volt_ac_SPICE.cpp
sp_customsim.cpp
sp_fourier.cpp
@ -304,6 +306,8 @@ LTRA_SPICE.h
DIODE_SPICE.h
NPN_SPICE.h
PNP_SPICE.h
NJF_SPICE.h
PJF_SPICE.h
volt_ac_SPICE.h
sp_customsim.h
sp_fourier.h

View File

@ -0,0 +1,131 @@
/***************************************************************************
NJF_SPICE.cpp - description
--------------------------------------
begin : Fri Mar 9 2007
copyright : (C) 2007 by Gunther Kraut
email : gn.kraut@t-online.de
spice4qucs code added Fri. 29 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 "NJF_SPICE.h"
#include "node.h"
#include "misc.h"
#include "extsimkernels/spicecompat.h"
NJF_SPICE::NJF_SPICE()
{
Description = QObject::tr("NJF JFT 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,-10, 0,-10,QPen(Qt::red,3)));
Lines.append(new Line( 0,-10, 0,-20,QPen(Qt::red,3)));
Lines.append(new Line( 0,-20, 0,-30,QPen(Qt::darkBlue,3)));
Lines.append(new Line(-10, 10, 0, 10,QPen(Qt::red,3)));
Lines.append(new Line( 0, 10, 0, 20,QPen(Qt::red,3)));
Lines.append(new Line( 0, 20, 0, 30,QPen(Qt::darkBlue,2)));
Lines.append(new Line(-16, -5,-11, 0,QPen(Qt::red,3)));
Lines.append(new Line(-16, 5,-11, 0,QPen(Qt::red,3)));
// N
Lines.append(new Line( 10, 30, 10, 20,QPen(Qt::red,2)));
Lines.append(new Line( 10, 20, 20, 30,QPen(Qt::red,2)));
Lines.append(new Line( 20, 30, 20, 20,QPen(Qt::red,2)));
//J
Lines.append(new Line( 25, 20, 35, 20,QPen(Qt::red,2)));
Lines.append(new Line( 30, 20, 30, 30,QPen(Qt::red,2)));
Lines.append(new Line( 30, 30, 25, 30,QPen(Qt::red,2)));
//F
Lines.append(new Line( 40, 30, 40, 20,QPen(Qt::red,2)));
Lines.append(new Line( 40, 20, 45, 20,QPen(Qt::red,2)));
Lines.append(new Line( 40, 25, 45, 25,QPen(Qt::red,2)));
// Lines.append(new Line(-18, 0,-13, -5,QPen(Qt::darkBlue,2)));
// Lines.append(new Line(-18, 0,-13, 5,QPen(Qt::darkBlue,2)));
Ports.append(new Port( 0,-30)); //D
Ports.append(new Port(-30, 0)); //G
Ports.append(new Port( 0, 30)); //S
x1 = -30; y1 = -30;
x2 = 4; y2 = 30;
tx = x1+4;
ty = y2+4;
Model = "NJF_SPICE";
SpiceModel = "J";
Name = "J";
Props.append(new Property("J", "", true,"Expression"));
Props.append(new Property("J_Line 2", "", false,"Expression"));
Props.append(new Property("J_Line 3", "", false,"Expression"));
Props.append(new Property("J _Line 4", "", false,"Expression"));
Props.append(new Property("J _Line 5", "", false,"Expression"));
}
NJF_SPICE::~NJF_SPICE()
{
}
Component* NJF_SPICE::newOne()
{
return new NJF_SPICE();
}
Element* NJF_SPICE::info(QString& Name, char* &BitmapFile, bool getNewOne)
{
Name = QObject::tr(" NJF FET");
BitmapFile = (char *) "NJF_SPICE";
if(getNewOne) return new NJF_SPICE();
return 0;
}
QString NJF_SPICE::netlist()
{
return QString("");
}
QString NJF_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 J= Props.at(0)->Value;
QString J_Line_2= Props.at(1)->Value;
QString J_Line_3= Props.at(2)->Value;
QString J_Line_4= Props.at(3)->Value;
QString J_Line_5= Props.at(4)->Value;
if( J.length() > 0) s += QString("%1\n").arg(J);
if( J_Line_2.length() > 0 ) s += QString("%1\n").arg(J_Line_2);
if( J_Line_3.length() > 0 ) s += QString("%1\n").arg(J_Line_3);
if( J_Line_4.length() > 0 ) s += QString("%1\n").arg(J_Line_4);
if( J_Line_5.length() > 0 ) s += QString("%1\n").arg(J_Line_5);
return s;
}

View File

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

View File

@ -0,0 +1,130 @@
/***************************************************************************
PJF_SPICE.cpp - description
--------------------------------------
begin : Fri Mar 9 2007
copyright : (C) 2007 by Gunther Kraut
email : gn.kraut@t-online.de
spice4qucs code added Fri. 29 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 "PJF_SPICE.h"
#include "node.h"
#include "misc.h"
#include "extsimkernels/spicecompat.h"
PJF_SPICE::PJF_SPICE()
{
Description = QObject::tr("PJF JFT 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,-10, 0,-10,QPen(Qt::red,3)));
Lines.append(new Line( 0,-10, 0,-20,QPen(Qt::red,3)));
Lines.append(new Line( 0,-20, 0,-30,QPen(Qt::darkBlue,3)));
Lines.append(new Line(-10, 10, 0, 10,QPen(Qt::red,3)));
Lines.append(new Line( 0, 10, 0, 20,QPen(Qt::red,3)));
Lines.append(new Line( 0, 20, 0, 30,QPen(Qt::darkBlue,2)));
Lines.append(new Line(-16, -5,-11, 0,QPen(Qt::red,3)));
Lines.append(new Line(-16, 5,-11, 0,QPen(Qt::red,3)));
// P
Lines.append(new Line( 10, 30, 10, 20,QPen(Qt::red,2)));
Lines.append(new Line( 10, 20, 20, 20,QPen(Qt::red,2)));
Lines.append(new Line( 20, 20, 20, 25,QPen(Qt::red,2)));
Lines.append(new Line( 20, 25, 10, 25,QPen(Qt::red,2)));
//J
Lines.append(new Line( 25, 20, 35, 20,QPen(Qt::red,2)));
Lines.append(new Line( 30, 20, 30, 30,QPen(Qt::red,2)));
Lines.append(new Line( 30, 30, 25, 30,QPen(Qt::red,2)));
//F
Lines.append(new Line( 40, 30, 40, 20,QPen(Qt::red,2)));
Lines.append(new Line( 40, 20, 45, 20,QPen(Qt::red,2)));
Lines.append(new Line( 40, 25, 45, 25,QPen(Qt::red,2)));
Ports.append(new Port( 0,-30)); //D
Ports.append(new Port(-30, 0)); //G
Ports.append(new Port( 0, 30)); //S
x1 = -30; y1 = -30;
x2 = 4; y2 = 30;
tx = x1+4;
ty = y2+4;
Model = "PJF_SPICE";
SpiceModel = "J";
Name = "J";
Props.append(new Property("J", "", true,"Expression"));
Props.append(new Property("J_Line 2", "", false,"Expression"));
Props.append(new Property("J_Line 3", "", false,"Expression"));
Props.append(new Property("J _Line 4", "", false,"Expression"));
Props.append(new Property("J _Line 5", "", false,"Expression"));
}
PJF_SPICE::~PJF_SPICE()
{
}
Component* PJF_SPICE::newOne()
{
return new PJF_SPICE();
}
Element* PJF_SPICE::info(QString& Name, char* &BitmapFile, bool getNewOne)
{
Name = QObject::tr(" PJF FET");
BitmapFile = (char *) "PJF_SPICE";
if(getNewOne) return new PJF_SPICE();
return 0;
}
QString PJF_SPICE::netlist()
{
return QString("");
}
QString PJF_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 J= Props.at(0)->Value;
QString J_Line_2= Props.at(1)->Value;
QString J_Line_3= Props.at(2)->Value;
QString J_Line_4= Props.at(3)->Value;
QString J_Line_5= Props.at(4)->Value;
if( J.length() > 0) s += QString("%1\n").arg(J);
if( J_Line_2.length() > 0 ) s += QString("%1\n").arg(J_Line_2);
if( J_Line_3.length() > 0 ) s += QString("%1\n").arg(J_Line_3);
if( J_Line_4.length() > 0 ) s += QString("%1\n").arg(J_Line_4);
if( J_Line_5.length() > 0 ) s += QString("%1\n").arg(J_Line_5);
return s;
}

View File

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

View File

@ -224,6 +224,8 @@
#include "DIODE_SPICE.h"
#include "NPN_SPICE.h"
#include "PNP_SPICE.h"
#include "NJF_SPICE.h"
#include "PJF_SPICE.h"
#include "MESFET_SPICE.h"
#include "PMF_MESFET_SPICE.h"
#include "Cmeter_SPICE.h"

View File

@ -447,20 +447,19 @@ 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 (LTL_SPICE);
REGISTER_SPICE_1 (UDRCTL_SPICE);
REGISTER_SPICE_1 (LTRA_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);
REGISTER_SPICE_1 (iTRNOISE);
REGISTER_SPICE_1 (vTRRANDOM);
REGISTER_SPICE_1 (K_SPICE);
REGISTER_SPICE_1 (LTL_SPICE);
REGISTER_SPICE_1 (UDRCTL_SPICE);
REGISTER_SPICE_1 (LTRA_SPICE);
REGISTER_SPICE_1 (DIODE_SPICE);
REGISTER_SPICE_1 (NPN_SPICE);
REGISTER_SPICE_1 (PNP_SPICE);
REGISTER_SPICE_1 (NJF_SPICE);
REGISTER_SPICE_1 (PJF_SPICE);
REGISTER_SPICE_1 (MESFET_SPICE);
REGISTER_SPICE_1 (PMF_MESFET_SPICE);
// specific sections of spice netlists
REGISTER_SPICE_SEC_1 (SpiceParam);

View File

@ -263,7 +263,9 @@
<file>bitmaps/LTRA_SPICE.png</file>
<file>bitmaps/DIODE_SPICE.png</file>
<file>bitmaps/NPN_SPICE.png</file>
<file>bitmaps/PNP_SPICE.png</file>
<file>bitmaps/PNP_SPICE.png</file>
<file>bitmaps/NJF_SPICE.png</file>
<file>bitmaps/PJF_SPICE.png</file>
<file>bitmaps/sp_fourier.png</file>
<file>bitmaps/sp_customsim.png</file>
<file>bitmaps/sp_disto.png</file>