mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
119 lines
4.2 KiB
C++
119 lines
4.2 KiB
C++
/***************************************************************************
|
|
UDRCTL_SPICE.cpp - description
|
|
--------------------------------------
|
|
begin : Fri Mar 9 2007
|
|
copyright : (C) 2007 by Gunther Kraut
|
|
email : gn.kraut@t-online.de
|
|
spice4qucs code added : Fri. 15 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 "UDRCTL_SPICE.h"
|
|
#include "node.h"
|
|
#include "misc.h"
|
|
#include "extsimkernels/spicecompat.h"
|
|
|
|
|
|
UDRCTL_SPICE::UDRCTL_SPICE()
|
|
{
|
|
Description = QObject::tr("SPICE U(URC):\nMultiple line ngspice or Xyce U specifications allowed using \"+\" continuation lines.\nLeave continuation lines blank when NOT in use.");
|
|
|
|
|
|
Lines.append(new qucs::Line( -60, 0, -45, 0,QPen(Qt::darkBlue,2)));
|
|
Lines.append(new qucs::Line( -45, 20, 45, 20,QPen(Qt::blue,4)));
|
|
Lines.append(new qucs::Line( 60, 0, 45, 0,QPen(Qt::darkBlue,2)));
|
|
Lines.append(new qucs::Line( 0, 20, 0, 40,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line(-45, 0, -37, 0,QPen(Qt::blue,4)));
|
|
Lines.append(new qucs::Line(-37, 0, -30, -10,QPen(Qt::blue,4)));
|
|
Lines.append(new qucs::Line(-30, -10, -15, 10,QPen(Qt::blue,4)));
|
|
Lines.append(new qucs::Line(-15, 10, 0, -10,QPen(Qt::blue,4)));
|
|
Lines.append(new qucs::Line( 0, -10, 15, 10,QPen(Qt::blue,4)));
|
|
Lines.append(new qucs::Line( 15, 10, 30, -10,QPen(Qt::blue,4)));
|
|
Lines.append(new qucs::Line( 30, -10, 37, 0,QPen(Qt::blue,4)));
|
|
Lines.append(new qucs::Line( 37, 0, 45, 0,QPen(Qt::blue,4)));
|
|
|
|
|
|
|
|
|
|
Ports.append(new Port( -60, 0)); // P1
|
|
Ports.append(new Port( 60, 0)); // P2
|
|
Ports.append(new Port( 0, 40)); // P3
|
|
|
|
x1 = -60; y1 = -20;
|
|
x2 = 60; y2 = 40;
|
|
|
|
tx = x1+4;
|
|
ty = y2+4;
|
|
|
|
Model = "UDRCTL_SPICE";
|
|
SpiceModel = "U";
|
|
Name = "U";
|
|
|
|
Props.append(new Property("U", "", true,"Specification expression"));
|
|
Props.append(new Property("U_Line 2", "", false,"+ continuation line 1"));
|
|
Props.append(new Property("U_Line 3", "", false,"+ continuation line 2"));
|
|
Props.append(new Property("U_Line 4", "", false,"+ continuation line 3"));
|
|
Props.append(new Property("U_Line 5", "", false,"+ continuation line 4"));
|
|
|
|
// rotate(); // fix historical flaw
|
|
}
|
|
|
|
UDRCTL_SPICE::~UDRCTL_SPICE()
|
|
{
|
|
}
|
|
|
|
Component* UDRCTL_SPICE::newOne()
|
|
{
|
|
return new UDRCTL_SPICE();
|
|
}
|
|
|
|
Element* UDRCTL_SPICE::info(QString& Name, char* &BitmapFile, bool getNewOne)
|
|
{
|
|
Name = QObject::tr("U(URC)");
|
|
BitmapFile = (char *) "UDRCTL_SPICE";
|
|
|
|
if(getNewOne) return new UDRCTL_SPICE();
|
|
return 0;
|
|
}
|
|
|
|
QString UDRCTL_SPICE::netlist()
|
|
{
|
|
return QString("");
|
|
}
|
|
|
|
QString UDRCTL_SPICE::spice_netlist(bool)
|
|
{
|
|
QString s = spicecompat::check_refdes(Name,SpiceModel);
|
|
for (Port *p1 : Ports) {
|
|
QString nam = p1->Connection->Name;
|
|
if (nam=="gnd") nam = "0";
|
|
s += " "+ nam+" "; // node names
|
|
}
|
|
|
|
QString U= Props.at(0)->Value;
|
|
QString U_Line_2= Props.at(1)->Value;
|
|
QString U_Line_3= Props.at(2)->Value;
|
|
QString U_Line_4= Props.at(3)->Value;
|
|
QString U_Line_5= Props.at(4)->Value;
|
|
|
|
if( U.length() > 0) s += QString("%1").arg(U);
|
|
if( U_Line_2.length() > 0 ) s += QString("\n%1").arg(U_Line_2);
|
|
if( U_Line_3.length() > 0 ) s += QString("\n%1").arg(U_Line_3);
|
|
if( U_Line_4.length() > 0 ) s += QString("\n%1").arg(U_Line_4);
|
|
if( U_Line_5.length() > 0 ) s += QString("\n%1").arg(U_Line_5);
|
|
s += "\n";
|
|
|
|
return s;
|
|
}
|