More component symbol improvements.

This commit is contained in:
MikeBrinson 2015-09-15 11:25:33 +01:00 committed by Vadim Kuznetzov
parent c5b83a0db2
commit 6ff44484a7
15 changed files with 68 additions and 231 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1002 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1003 B

BIN
qucs/bitmaps/S4Q_VCVS.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1023 B

View File

@ -103,7 +103,6 @@ sp_noise.cpp
# Qucs-S new components cpp list
#
S4Q_V_DC.cpp
S4Q_V.cpp
S4Q_Ieqndef.cpp
S4Q_I.cpp
@ -331,7 +330,6 @@ sp_noise.h
# Qucs-S new components h list
#
S4Q_V_DC.h
S4Q_V.h
S4Q_Ieqndef.h
S4Q_I.h

View File

@ -53,7 +53,7 @@ DIODE_SPICE::DIODE_SPICE()
SpiceModel = "D";
Name = "D";
Props.append(new Property("D", "", true,"D param list and\n .model spec."));
Props.append(new Property("D", "", true,"Param list and\n .model spec."));
Props.append(new Property("D_Line 2", "", false,"+ continuation line 1"));
Props.append(new Property("D_Line 3", "", false,"+ continuation line 2"));
Props.append(new Property("D_Line 4", "", false,"+ continuation line 3"));

View File

@ -26,41 +26,40 @@
NJF_SPICE::NJF_SPICE()
{
Description = QObject::tr("NJF JFT SPICE format");
Lines.append(new Line(-10,-15,-10, 15,QPen(Qt::red,3)));
Description = QObject::tr("J(NJF) JFET:\nMultiple line ngspice or Xyce J model specifications allowed using \"+\" continuation lines.\nLeave continuation lines blank when NOT in use.");
Lines.append(new Line(-10,-15,-10, 15,QPen(Qt::darkRed,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(-20, 0,-10, 0,QPen(Qt::darkRed,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(-10,-10, 0,-10,QPen(Qt::darkRed,3)));
Lines.append(new Line( 0,-10, 0,-20,QPen(Qt::darkRed,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(-10, 10, 0, 10,QPen(Qt::darkRed,3)));
Lines.append(new Line( 0, 10, 0, 20,QPen(Qt::darkRed,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)));
Lines.append(new Line(-16, -5,-11, 0,QPen(Qt::darkRed,3)));
Lines.append(new Line(-16, 5,-11, 0,QPen(Qt::darkRed,3)));
// Texts.append(new Text(30,12,"NJF",Qt::darkRed,10.0,0.0,1.0));
// 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)));
// Lines.append(new Line( 10, 30, 10, 20,QPen(Qt::darkRed,2)));
// Lines.append(new Line( 10, 20, 20, 30,QPen(Qt::darkred,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)));
// 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( 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
@ -75,11 +74,11 @@ NJF_SPICE::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"));
Props.append(new Property("J", "", true,"Param list and\n .model spec."));
Props.append(new Property("J_Line 2", "", false,"+ continuation line 1"));
Props.append(new Property("J_Line 3", "", false,"+ continuation line 2"));
Props.append(new Property("J_Line 4", "", false,"+ continuation line 2"));
Props.append(new Property("J_Line 5", "", false,"+ continuation line 2"));
}
@ -94,7 +93,7 @@ Component* NJF_SPICE::newOne()
Element* NJF_SPICE::info(QString& Name, char* &BitmapFile, bool getNewOne)
{
Name = QObject::tr(" NJF FET");
Name = QObject::tr("J(NJF) JFET");
BitmapFile = (char *) "NJF_SPICE";
if(getNewOne) return new NJF_SPICE();

View File

@ -61,7 +61,7 @@ NPN_SPICE::NPN_SPICE()
SpiceModel = "Q";
Name = "Q";
Props.append(new Property("Q", "", true,"Q(NPN) param list and\n .model spec."));
Props.append(new Property("Q", "", true,"Param list and\n .model spec."));
Props.append(new Property("Q_Line 2", "", false,"+ continuation line 1"));
Props.append(new Property("Q_Line 3", "", false,"+ continuation line 2"));
Props.append(new Property("Q_Line 4", "", false,"+ continuation line 3"));

View File

@ -26,39 +26,23 @@
PJF_SPICE::PJF_SPICE()
{
Description = QObject::tr("PJF JFT SPICE format");
Lines.append(new Line(-10,-15,-10, 15,QPen(Qt::red,3)));
Description = QObject::tr("J(PJF) JFET:\nMultiple line ngspice or Xyce J model specifications allowed using \"+\" continuation lines.\nLeave continuation lines blank when NOT in use.");
Lines.append(new Line(-10,-15,-10, 15,QPen(Qt::darkRed,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(-20, 0,-10, 0,QPen(Qt::darkRed,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(-10,-10, 0,-10,QPen(Qt::darkRed,3)));
Lines.append(new Line( 0,-10, 0,-20,QPen(Qt::darkRed,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(-10, 10, 0, 10,QPen(Qt::darkRed,3)));
Lines.append(new Line( 0, 10, 0, 20,QPen(Qt::darkRed,3)));
Lines.append(new Line( 0, 20, 0, 30,QPen(Qt::darkBlue,3)));
Lines.append(new Line(-16, -5,-11, 0,QPen(Qt::red,3)));
Lines.append(new Line(-16, 5,-11, 0,QPen(Qt::red,3)));
Lines.append(new Line(-16, -5,-11, 0,QPen(Qt::darkRed,3)));
Lines.append(new Line(-16, 5,-11, 0,QPen(Qt::darkRed,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
@ -74,11 +58,11 @@ PJF_SPICE::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"));
Props.append(new Property("J", "", true,"Param list and\n .model spec."));
Props.append(new Property("J_Line 2", "", false,"+ continuation line 1"));
Props.append(new Property("J_Line 3", "", false,"+ continuation line 2"));
Props.append(new Property("J_Line 4", "", false,"+ continuation line 3"));
Props.append(new Property("J_Line 5", "", false,"+ continuation line 4"));
}
@ -93,7 +77,7 @@ Component* PJF_SPICE::newOne()
Element* PJF_SPICE::info(QString& Name, char* &BitmapFile, bool getNewOne)
{
Name = QObject::tr(" PJF FET");
Name = QObject::tr("J(PJF) JFET");
BitmapFile = (char *) "PJF_SPICE";
if(getNewOne) return new PJF_SPICE();

View File

@ -61,7 +61,7 @@ PNP_SPICE::PNP_SPICE()
SpiceModel = "Q";
Name = "Q";
Props.append(new Property("Q", "", true,"Q(PNP) param list and\n .model spec."));
Props.append(new Property("Q", "", true,"Param list and\n .model spec."));
Props.append(new Property("Q_Line 2", "", false,"+ continuation line 1"));
Props.append(new Property("Q_Line 3", "", false,"+ continuation line 2"));
Props.append(new Property("Q_Line 4", "", false,"+ continuation line 3"));

View File

@ -1,91 +0,0 @@
/***************************************************************************
S4Q_V_DC.cpp
-------------
begin : Sat Aug 23 2003
copyright : (C) 2003 by Michael Margraf
email : michael.margraf@alumni.tu-berlin.de
SPICE Version : Friday Sept 11 2015
copyright : (C) 2015 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 "S4Q_V_DC.h"
#include "node.h"
#include "misc.h"
#include "extsimkernels/spicecompat.h"
S4Q_V_DC::S4Q_V_DC()
{
Description = QObject::tr("Battery");
Lines.append(new Line( 4,-13, 4, 13,QPen(Qt::darkRed,3)));
Lines.append(new Line( -4, -6, -4, 6,QPen(Qt::darkRed,3)));
Lines.append(new Line( 30, 0, 15, 0,QPen(Qt::darkBlue,2)));
Lines.append(new Line( 15, 0, 4, 0,QPen(Qt::darkRed,2)));
Lines.append(new Line(-30, 0, -15, 0,QPen(Qt::darkBlue,2)));
Lines.append(new Line( -15, 0, -4, 0,QPen(Qt::darkRed,2)));
Lines.append(new Line( 11, 5, 11, 11,QPen(Qt::red,2)));
Lines.append(new Line( 14, 8, 8, 8,QPen(Qt::red,2)));
Lines.append(new Line(-11, 5,-11, 11,QPen(Qt::black,2)));
Ports.append(new Port( 30, 0));
Ports.append(new Port(-30, 0));
x1 = -30; y1 = -14;
x2 = 30; y2 = 14;
tx = x1+4;
ty = y2+4;
Model = "S4Q_V_DC";
Name = "V";
SpiceModel = "V";
Props.append(new Property("U", "1 V", true,
QObject::tr("voltage in Volts")));
rotate(); // fix historical flaw
}
S4Q_V_DC::~S4Q_V_DC()
{
}
Component* S4Q_V_DC::newOne()
{
return new S4Q_V_DC();
}
QString S4Q_V_DC::spice_netlist(bool)
{
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
}
s += QString(" DC %1\n").arg(spicecompat::normalize_value(Props.at(0)->Value));
return s;
}
Element* S4Q_V_DC::info(QString& Name, char* &BitmapFile, bool getNewOne)
{
Name = QObject::tr("Battery");
BitmapFile = (char *) "S4Q_V_DC";
if(getNewOne) return new S4Q_V_DC();
return 0;
}

View File

@ -1,37 +0,0 @@
/***************************************************************************
S4Q_V_DC.h - description
-------------------
begin : Sat Aug 23 2003
copyright : (C) 2003 by Michael Margraf
email : michael.margraf@alumni.tu-berlin.de
SPICE Version : Friday Sept 11 2015
copyright : (C) 2015 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 S4Q_V_DC_H
#define S4Q_V_DC_H
#include "component.h"
class S4Q_V_DC : public Component {
public:
S4Q_V_DC();
~S4Q_V_DC();
Component* newOne();
static Element* info(QString&, char* &, bool getNewOne=false);
QString spice_netlist(bool isXyce = false);
};
#endif

View File

@ -202,7 +202,6 @@
//
// Qucs-S ngspice and Xyce components
#include "S4Q_V_DC.h"
#include "S4Q_V.h"
#include "S4Q_Ieqndef.h"
#include "S4Q_I.h"

View File

@ -1,9 +1,9 @@
/***************************************************************************
eNL.cpp - description
--------------------------------------
begin : Fri Mar 27 2015
begin : Fri Mar 27 2015
copyright : (C) by Mike Brinson (mbrin72043@yahoo.co.uk),
Vadim Kuznetsov (ra3xdh@gmail.com)
: Vadim Kuznetsov (ra3xdh@gmail.com)
***************************************************************************/
@ -24,16 +24,16 @@
eNL::eNL()
{
Description = QObject::tr("Equation defined (E-type) voltage source");
// Value, Table and POLY forms are allowed: should work with ngspice and Xyce.
Description = QObject::tr("SPICE E (Non-linear):\nMultiple line ngspice non-linear E specifications allowed using \"+\" continuation lines.\nLeave continuation lines blank when NOT in use.");
// Value, Table and POLY forms are allowed.
Arcs.append(new Arc(-14,-14, 28, 28, 0, 16*360,QPen(Qt::cyan,3)));
Texts.append(new Text(20,12,"ENL",Qt::cyan,10.0,0.0,-1.0));
Texts.append(new Text(30,12,"ENL",Qt::cyan,10.0,0.0,-1.0));
Lines.append(new Line(-30, 0,-14, 0,QPen(Qt::darkBlue,2)));
Lines.append(new Line( 30, 0, 14, 0,QPen(Qt::darkBlue,2)));
Lines.append(new Line( 18, -5, 18, -11,QPen(Qt::red,1)));
Lines.append(new Line( 21, -8, 15, -8,QPen(Qt::red,1)));
Lines.append(new Line(-18, -5,-18, -11,QPen(Qt::black,1)));
Lines.append(new Line( 18, -5, 18, -11,QPen(Qt::red,2)));
Lines.append(new Line( 21, -8, 15, -8,QPen(Qt::red,2)));
Lines.append(new Line(-18, -5,-18, -11,QPen(Qt::black,2)));
Ports.append(new Port( 30, 0));
Ports.append(new Port(-30, 0));
@ -47,16 +47,12 @@ eNL::eNL()
SpiceModel = "E";
Name = "E";
Props.append(new Property("E", "", true,"Expression"));
Props.append(new Property("Line_2", "", false,"Expression"));
Props.append(new Property("Line_3", "", false,"Expression"));
Props.append(new Property("Line_4", "", false,"Expression"));
Props.append(new Property("Line_5", "", false,"Expression"));
Props.append(new Property("Line_6", "", false,"Expression"));
Props.append(new Property("Line_7", "", false,"Expression"));
Props.append(new Property("Line_8", "", false,"Expression"));
Props.append(new Property("Line_9", "", false,"Expression"));
Props.append(new Property("Line_10", "", false,"Expression"));
Props.append(new Property("E", "", true,"Non-linear spec.\n(with control nodes)"));
Props.append(new Property("Line_2", "", false,"+ continuation line 1"));
Props.append(new Property("Line_3", "", false,"+ continuation line 2"));
Props.append(new Property("Line_4", "", false,"+ continuation line 3"));
Props.append(new Property("Line_5", "", false,"+ continuation line 4"));
rotate(); // fix historical flaw
}
@ -71,8 +67,8 @@ Component* eNL::newOne()
Element* eNL::info(QString& Name, char* &BitmapFile, bool getNewOne)
{
Name = QObject::tr("E Non-linear independent voltage source");
BitmapFile = (char *) "eNL";
Name = QObject::tr("E non-lin");
BitmapFile = (char *) "eNL";
if(getNewOne) return new eNL();
return 0;
@ -96,22 +92,13 @@ QString eNL::spice_netlist(bool)
QString Line_3 = Props.at(2)->Value;
QString Line_4 = Props.at(3)->Value;
QString Line_5 = Props.at(4)->Value;
QString Line_6 = Props.at(5)->Value;
QString Line_7 = Props.at(6)->Value;
QString Line_8 = Props.at(7)->Value;
QString Line_9 = Props.at(8)->Value;
QString Line_10 = Props.at(9)->Value;
if( E.length() > 2) s += QString("%1\n").arg(E);
if( Line_2.length() > 2 ) s += QString("%1\n").arg(Line_2);
if( Line_3.length() > 2 ) s += QString("%1\n").arg(Line_3);
if( Line_4.length() > 2 ) s += QString("%1\n").arg(Line_4);
if( Line_5.length() > 2 ) s += QString("%1\n").arg(Line_5);
if( Line_6.length () > 2 ) s += QString("%1\n").arg(Line_6);
if( Line_7.length () > 2 ) s += QString("%1\n").arg(Line_7);
if( Line_8.length() > 2) s += QString("%1\n").arg(Line_8);
if( Line_9.length() > 2 ) s += QString("%1\n").arg(Line_9);
if( Line_10.length() > 2 ) s += QString("%1\n").arg(Line_10);
if( E.length() > 0) s += QString("%1\n").arg(E);
if( Line_2.length() > 0 ) s += QString("%1\n").arg(Line_2);
if( Line_3.length() > 0 ) s += QString("%1\n").arg(Line_3);
if( Line_4.length() > 0 ) s += QString("%1\n").arg(Line_4);
if( Line_5.length() > 0 ) s += QString("%1\n").arg(Line_5);
return s;
}

View File

@ -439,7 +439,6 @@ void Module::registerModules (void) {
REGISTER_SPICE_1 (C_SPICE);
REGISTER_SPICE_1 (L_SPICE);
REGISTER_SPICE_1 (K_SPICE);
REGISTER_SPICE_1 (S4Q_V_DC);
REGISTER_SPICE_1 (S4Q_V);
REGISTER_SPICE_1 (S4Q_I);
REGISTER_SPICE_1 (Src_eqndef);

View File

@ -234,8 +234,7 @@
<file>bitmaps/vcresistor.png</file>
<file>bitmaps/tick.png</file>
<file>bitmaps/error.png</file>
<file>bitmaps/hicolor/128x128/apps/qucs.png</file>
<file>bitmaps/S4Q_V_DC.png</file>
<file>bitmaps/hicolor/128x128/apps/qucs.png</file>
<file>bitmaps/S4Q_V.png</file>
<file>bitmaps/S4Q_I.png</file>
<file>bitmaps/S4Q_Ieqndef.png</file>