2007-04-15 10:41:21 +00:00
|
|
|
/***************************************************************************
|
|
|
|
iexp.cpp
|
2015-03-18 17:11:31 +00:00
|
|
|
---------------
|
|
|
|
begin : Tue Mar 06 2007
|
|
|
|
copyright : (C) 2007 by Gunther Kraut
|
|
|
|
email : gn.kraut@t-online.de
|
|
|
|
spice4qucs code added Wed. 18 March 2015
|
|
|
|
copyright : (C) 2015 by Mike Brinson
|
|
|
|
email : mbrin72043@yahoo.co.uk
|
|
|
|
|
2007-04-15 10:41:21 +00:00
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
* *
|
|
|
|
* 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 "iexp.h"
|
2015-03-18 17:11:31 +00:00
|
|
|
#include "node.h"
|
|
|
|
#include "misc.h"
|
|
|
|
#include "extsimkernels/spicecompat.h"
|
2007-04-15 10:41:21 +00:00
|
|
|
|
|
|
|
iExp::iExp()
|
|
|
|
{
|
|
|
|
Description = QObject::tr("exponential current source");
|
|
|
|
|
|
|
|
// normal current source symbol
|
2022-02-20 15:43:44 +01:00
|
|
|
Arcs.append(new qucs::Arc(-12,-12, 24, 24, 0, 16*360,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line(-30, 0,-12, 0,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line( 30, 0, 12, 0,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line( -7, 0, 7, 0,QPen(Qt::darkBlue,3)));
|
|
|
|
Lines.append(new qucs::Line( 6, 0, 0, -4,QPen(Qt::darkBlue,3)));
|
|
|
|
Lines.append(new qucs::Line( 6, 0, 0, 4,QPen(Qt::darkBlue,3)));
|
2007-04-15 10:41:21 +00:00
|
|
|
|
|
|
|
// write 'Exp' beside current source symbol
|
2022-02-20 15:43:44 +01:00
|
|
|
Lines.append(new qucs::Line( 13, 7, 13, 10,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line( 13, 7, 21, 7,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line( 17, 7, 17, 10,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line( 21, 7, 21, 10,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line( 13, 13, 17, 17,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line( 17, 13, 13, 17,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line( 17, 20, 11, 20,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line( 17, 20, 17, 23,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line( 13, 20, 13, 23,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line( 17, 23, 13, 23,QPen(Qt::darkBlue,2)));
|
2007-04-15 10:41:21 +00:00
|
|
|
|
|
|
|
Ports.append(new Port( 30, 0));
|
|
|
|
Ports.append(new Port(-30, 0));
|
|
|
|
|
|
|
|
x1 = -30; y1 = -14;
|
|
|
|
x2 = 30; y2 = 20;
|
|
|
|
|
|
|
|
tx = x1+4;
|
|
|
|
ty = y2+8;
|
|
|
|
Model = "Iexp";
|
2015-03-18 17:11:31 +00:00
|
|
|
SpiceModel = "I";
|
2007-04-15 10:41:21 +00:00
|
|
|
Name = "I";
|
|
|
|
|
|
|
|
Props.append(new Property("I1", "0", true,
|
|
|
|
QObject::tr("current before rising edge")));
|
|
|
|
Props.append(new Property("I2", "1 A", true,
|
|
|
|
QObject::tr("maximum current of the pulse")));
|
|
|
|
Props.append(new Property("T1", "0", true,
|
|
|
|
QObject::tr("start time of the exponentially rising edge")));
|
|
|
|
Props.append(new Property("T2", "1 ms", true,
|
|
|
|
QObject::tr("start of exponential decay")));
|
|
|
|
Props.append(new Property("Tr", "1 ns", false,
|
|
|
|
QObject::tr("time constant of the rising edge")));
|
|
|
|
Props.append(new Property("Tf", "1 ns", false,
|
|
|
|
QObject::tr("time constant of the falling edge")));
|
|
|
|
|
|
|
|
rotate(); // fix historical flaw
|
|
|
|
}
|
|
|
|
|
|
|
|
iExp::~iExp()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Component* iExp::newOne()
|
|
|
|
{
|
|
|
|
return new iExp();
|
|
|
|
}
|
|
|
|
|
|
|
|
Element* iExp::info(QString& Name, char* &BitmapFile, bool getNewOne)
|
|
|
|
{
|
|
|
|
Name = QObject::tr("Exponential Current Pulse");
|
2007-09-17 21:57:02 +00:00
|
|
|
BitmapFile = (char *) "iexp";
|
2007-04-15 10:41:21 +00:00
|
|
|
|
|
|
|
if(getNewOne) return new iExp();
|
|
|
|
return 0;
|
|
|
|
}
|
2015-03-18 17:11:31 +00:00
|
|
|
|
2015-04-18 14:12:23 +03:00
|
|
|
QString iExp::spice_netlist(bool)
|
2015-03-18 17:11:31 +00:00
|
|
|
{
|
|
|
|
QString s = spicecompat::check_refdes(Name,SpiceModel);
|
2023-01-15 01:17:09 +03:00
|
|
|
for (Port *p1 : Ports) {
|
2015-03-18 17:11:31 +00:00
|
|
|
QString nam = p1->Connection->Name;
|
|
|
|
if (nam=="gnd") nam = "0";
|
|
|
|
s += " "+ nam; // node names
|
|
|
|
}
|
|
|
|
|
|
|
|
QString U1= spicecompat::normalize_value(Props.at(0)->Value);
|
|
|
|
QString U2 = spicecompat::normalize_value(Props.at(1)->Value);
|
|
|
|
QString T1 = spicecompat::normalize_value(Props.at(2)->Value);
|
|
|
|
QString T2 = spicecompat::normalize_value(Props.at(3)->Value);
|
|
|
|
QString Tr = spicecompat::normalize_value(Props.at(4)->Value);
|
|
|
|
QString Tf = spicecompat::normalize_value(Props.at(5)->Value);
|
|
|
|
|
2015-03-27 00:12:30 +00:00
|
|
|
s += QString(" DC 0 EXP(%1 %2 %3 %4 %5 %6) AC 0\n").arg(U1).arg(U2).arg(T1).arg(Tr).arg(T2).arg(Tf);
|
2015-03-18 17:11:31 +00:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|