111 lines
3.7 KiB
C++
Raw Normal View History

/***************************************************************************
iAmpMod.cpp - description
--------------------------------------
begin : Fri Mar 9 2007
copyright : (C) 2007 by Gunther Kraut
email : gn.kraut@t-online.de
spice4qucs code added Wed. 24 March 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 "iAmpMod.h"
#include "node.h"
#include "extsimkernels/spicecompat.h"
iAmpMod::iAmpMod()
{
2015-09-24 16:31:16 +01:00
Description = QObject::tr("SPICE I(AM): ngspice only.");
2023-06-09 13:54:29 +03:00
Simulator = spicecompat::simSpice;
2015-04-01 17:08:29 +01:00
// normal current source symbol
Ellipses.append(new qucs::Ellips(-12,-12, 24, 24, QPen(Qt::blue,3)));
Texts.append(new Text(26, 6,"AM",Qt::blue,12.0,0.0,-1.0));
// pins
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)));
// arrow
Lines.append(new qucs::Line( -6, 0, 7, 0,QPen(Qt::blue,3, Qt::SolidLine, Qt::FlatCap)));
Polylines.append(new qucs::Polyline(
std::vector<QPointF>{{0, -4},{-6, 0}, {0, 4}}, QPen(Qt::blue, 3, Qt::SolidLine, Qt::SquareCap, Qt::MiterJoin)));
Ports.append(new Port( 30, 0));
Ports.append(new Port(-30, 0));
x1 = -30; y1 = -14;
x2 = 30; y2 = 40;
tx = x1+4;
ty = y2+4;
Model = "IAmpMod";
SpiceModel = "I";
Name = "I";
2015-04-01 17:08:29 +01:00
Props.append(new Property("Va", "1 V", true,
QObject::tr("voltage amplitude")));
2015-04-01 17:08:29 +01:00
Props.append(new Property("Vo", "0 V", true,
QObject::tr("offset voltage")));
Props.append(new Property("Mf", "500", true,
QObject::tr("modulation frequency")));
2015-04-01 17:08:29 +01:00
Props.append(new Property("Fc", "10k", true,
QObject::tr("carrier frequency")));
2015-04-01 17:08:29 +01:00
Props.append(new Property("Td", "0", true,
QObject::tr("signal delay")));
rotate(); // fix historical flaw
}
iAmpMod::~iAmpMod()
{
}
Component* iAmpMod::newOne()
{
return new iAmpMod();
}
Element* iAmpMod::info(QString& Name, char* &BitmapFile, bool getNewOne)
{
2015-09-24 16:31:16 +01:00
Name = QObject::tr("I(AM)");
BitmapFile = (char *) "iAmpMod";
if(getNewOne) return new iAmpMod();
return 0;
}
QString iAmpMod::netlist()
{
return QString();
}
QString iAmpMod::spice_netlist(spicecompat::SpiceDialect dialect /* = spicecompat::SPICEDefault */)
{
Q_UNUSED(dialect);
QString s = spicecompat::check_refdes(Name,SpiceModel);
2023-01-15 01:17:09 +03:00
for (Port *p1 : Ports) {
QString nam = p1->Connection->Name;
if (nam=="gnd") nam = "0";
s += " "+ nam; // node names
}
QString Va = spicecompat::normalize_value(Props.at(0)->Value);
QString Vo = spicecompat::normalize_value(Props.at(1)->Value);
QString Mf = spicecompat::normalize_value(Props.at(2)->Value);
QString Fc = spicecompat::normalize_value(Props.at(3)->Value);
QString Td = spicecompat::normalize_value(Props.at(4)->Value);
s += QStringLiteral(" DC 0 AM(%1 %2 %3 %4 %5 ) AC 0\n").arg(Va).arg(Vo).arg(Mf).arg(Fc).arg(Td);
return s;
}