Added double ended XSPICE voltage gain block with offsets.

This commit is contained in:
MikeBrinson 2015-09-27 17:01:54 +01:00 committed by Vadim Kuznetzov
parent ce7978cc90
commit e57fbab65c
8 changed files with 166 additions and 4 deletions

BIN
qucs/bitmaps/DE_V_amp.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -114,6 +114,7 @@ S4Q_W.cpp
Cmeter_SPICE.cpp
SE_V_amp.cpp
DE_V_amp.cpp
)
@ -348,6 +349,7 @@ S4Q_W.h
Cmeter_SPICE.h
SE_V_amp.h
DE_V_amp.h
)

View File

@ -0,0 +1,120 @@
/***************************************************************************
DE_V_amp.cpp - description
--------------------------------------
begin : Sun September 24 2015
copyright : (C) by Mike Brinson (mbrin72043@yahoo.co.uk),
: Vadim Kuznetsov (ra3xdh@gmail.com)
***************************************************************************/
/***************************************************************************
* *
* 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 "DE_V_amp.h"
#include "node.h"
#include "misc.h"
#include "extsimkernels/spicecompat.h"
DE_V_amp::DE_V_amp()
{
Description = QObject::tr("XSPICE A_gain_DE block:\nTwo line XSPICE specification. ");
Lines.append(new Line(-50, -20, -30, -20,QPen(Qt::darkBlue,2)));
Lines.append(new Line(-50, 20, -30, 20,QPen(Qt::darkBlue,2)));
Lines.append(new Line( 50, -10, 30, -10,QPen(Qt::darkBlue,2)));
Lines.append(new Line( 50, 10, 30, 10,QPen(Qt::darkBlue,2)));
Lines.append(new Line( -30, 30, -30, -30,QPen(Qt::blue,3)));
Lines.append(new Line( -30, -30, 30, -10,QPen(Qt::blue,3)));
Lines.append(new Line( 30, -10, 30, 10,QPen(Qt::blue,3)));
Lines.append(new Line( 30, 10, -30, 30,QPen(Qt::blue,3)));
Lines.append(new Line( -5, 5, -5, -5,QPen(Qt::blue,3)));
Lines.append(new Line( -5, -5, 5, -5,QPen(Qt::blue,3)));
Lines.append(new Line( 5, -5, 5, 5,QPen(Qt::blue,3)));
Lines.append(new Line( -5, 0, 5, 0,QPen(Qt::blue,3)));
Lines.append(new Line( -43, -40, -37, -40,QPen(Qt::red,3))); // Input pins
Lines.append(new Line( -40, -37, -40, -43,QPen(Qt::red,3)));
Lines.append(new Line( -43, 40, -37, 40,QPen(Qt::black,3)));
Lines.append(new Line( 43, -40, 37, -40,QPen(Qt::red,3))); // Output pins
Lines.append(new Line( 40, -37, 40, -43,QPen(Qt::red,3)));
Lines.append(new Line( 43, 40, 37, 40,QPen(Qt::black,3)));
Ports.append(new Port( -50, -20)); // PIN+
Ports.append(new Port( -50, 20)); // PIN-
Ports.append(new Port( 50, -10)); // POUT+
Ports.append(new Port( 50, 10)); // POUT-
x1 = -40; y1 = -24;
x2 = 40; y2 = 24;
tx = x1+12;
ty = y2+12;
Model = "DE_V_amp";
SpiceModel = "A";
Name = "A_gain_DE";
Props.append(new Property("A", "", true,"Parameter list and\n .model spec."));
Props.append(new Property("A_Line 2", "", false,".model line"));
//rotate(); // fix historical flaw
}
DE_V_amp::~DE_V_amp()
{
}
Component* DE_V_amp::newOne()
{
return new DE_V_amp();
}
Element* DE_V_amp::info(QString& Name, char* &BitmapFile, bool getNewOne)
{
Name = QObject::tr("A_gain_DE");
BitmapFile = (char *) "DE_V_amp";
if(getNewOne) return new DE_V_amp();
return 0;
}
QString DE_V_amp::netlist()
{
return QString("");
}
QString DE_V_amp::spice_netlist(bool)
{
QString s = spicecompat::check_refdes(Name,SpiceModel);
QString P1 = Ports.at(0)->Connection->Name;
if (P1=="gnd") P1 = "0";
QString P2 = Ports.at(1)->Connection->Name;
if (P2=="gnd") P2 = "0";
QString P3 = Ports.at(2)->Connection->Name;
if (P3=="gnd") P3 = "0";
QString P4 = Ports.at(3)->Connection->Name;
if (P4=="gnd") P4 = "0";
s += " %vd( " + P1 + " " + P2 + " ) %vd( " + P3 + " " + P4 + " ) ";
QString A= Props.at(0)->Value;
QString A_Line_2= Props.at(1)->Value;
if( A.length() > 0) s += QString("%1\n").arg(A);
if( A_Line_2.length() > 0 ) s += QString("%1\n").arg(A_Line_2);
return s;
}

View File

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

View File

@ -24,7 +24,7 @@
SE_V_amp::SE_V_amp()
{
Description = QObject::tr("XSPICE A(gain) block:\nTwo line XSPICE specification. ");
Description = QObject::tr("XSPICE A_gain_SE block:\nTwo line XSPICE specification. ");
// Texts.append(new Text( 15,-10,"A",Qt::blue,16.0,0.0,1.0));
Lines.append(new Line(-40, 0,-20, 0,QPen(Qt::darkBlue,2)));
@ -50,7 +50,7 @@ SE_V_amp::SE_V_amp()
ty = y2+4;
Model = "SE_V_amp";
SpiceModel = "A";
Name = "Again";
Name = "A_gain_SE";
Props.append(new Property("A", "", true,"Parameter list and\n .model spec."));
Props.append(new Property("A_Line 2", "", false,".model line"));
@ -69,7 +69,7 @@ Component* SE_V_amp::newOne()
Element* SE_V_amp::info(QString& Name, char* &BitmapFile, bool getNewOne)
{
Name = QObject::tr("Again");
Name = QObject::tr("A_gain_SE");
BitmapFile = (char *) "SE_V_amp";
if(getNewOne) return new SE_V_amp();

View File

@ -242,6 +242,7 @@
// XSPICE analogue blocks
#include "Cmeter_SPICE.h"
#include "SE_V_amp.h"
#include "DE_V_amp.h"
// Spice netlist sections
#include "sp_parameter.h"

View File

@ -475,7 +475,8 @@ void Module::registerModules (void) {
// XSPICE analogue component blocks
REGISTER_XSPICE_ANALOGUE_1 (Cmeter_SPICE);
REGISTER_XSPICE_ANALOGUE_1 (SE_V_amp);
REGISTER_XSPICE_ANALOGUE_1 (SE_V_amp);
REGISTER_XSPICE_ANALOGUE_1 (DE_V_amp);
// specific sections of spice netlists
REGISTER_SPICE_SEC_1 (SpiceParam);

View File

@ -282,5 +282,6 @@
<file>bitmaps/Cmeter_SPICE.png</file>
<file>bitmaps/SE_V_amp.png</file>
<file>bitmaps/DE_V_amp.png</file>
</qresource>
</RCC>