2015-03-25 10:36:06 +00:00
|
|
|
/***************************************************************************
|
|
|
|
vAmpMod.cpp - description
|
|
|
|
--------------------------------------
|
|
|
|
begin : Fri Mar 9 2007
|
|
|
|
copyright : (C) 2007 by Gunther Kraut
|
|
|
|
email : gn.kraut@t-online.de
|
|
|
|
spice4qucs code added Tue. 23 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 "vAmpMod.h"
|
|
|
|
#include "node.h"
|
|
|
|
#include "extsimkernels/spicecompat.h"
|
|
|
|
|
|
|
|
|
|
|
|
vAmpMod::vAmpMod()
|
|
|
|
{
|
2015-09-24 16:31:16 +01:00
|
|
|
Description = QObject::tr("SPICE V(AM): ngspice only.");
|
2023-06-09 13:54:29 +03:00
|
|
|
Simulator = spicecompat::simSpice;
|
2015-03-25 10:36:06 +00:00
|
|
|
|
|
|
|
// normal voltage source symbol
|
2024-06-04 20:36:35 +02:00
|
|
|
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
|
2022-02-20 15:43:44 +01:00
|
|
|
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)));
|
2024-06-04 20:36:35 +02:00
|
|
|
// plus sign
|
|
|
|
Lines.append(new qucs::Line( 18, -5, 18, -11,QPen(Qt::red,2)));
|
|
|
|
Lines.append(new qucs::Line( 21, -8, 15, -8,QPen(Qt::red,2)));
|
|
|
|
// minus sign
|
|
|
|
Lines.append(new qucs::Line(-18, -5,-18, -11,QPen(Qt::black,2)));
|
2015-03-25 10:36:06 +00:00
|
|
|
|
|
|
|
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 = "VAmpMod";
|
|
|
|
SpiceModel = "V";
|
|
|
|
Name = "V";
|
|
|
|
|
2015-04-07 13:11:42 +01:00
|
|
|
Props.append(new Property("Va", "1 ", true,
|
2015-03-25 10:36:06 +00:00
|
|
|
QObject::tr("voltage amplitude")));
|
2015-04-07 13:11:42 +01:00
|
|
|
Props.append(new Property("Vo", "0 ", true,
|
2015-03-25 10:36:06 +00:00
|
|
|
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,
|
2015-03-25 10:36:06 +00:00
|
|
|
QObject::tr("carrier frequency")));
|
2015-04-01 17:08:29 +01:00
|
|
|
Props.append(new Property("Td", "0", true,
|
2015-03-25 10:36:06 +00:00
|
|
|
QObject::tr("signal delay")));
|
|
|
|
|
|
|
|
rotate(); // fix historical flaw
|
|
|
|
}
|
|
|
|
|
|
|
|
vAmpMod::~vAmpMod()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Component* vAmpMod::newOne()
|
|
|
|
{
|
|
|
|
return new vAmpMod();
|
|
|
|
}
|
|
|
|
|
|
|
|
Element* vAmpMod::info(QString& Name, char* &BitmapFile, bool getNewOne)
|
|
|
|
{
|
2015-09-24 16:31:16 +01:00
|
|
|
Name = QObject::tr("V(AM)");
|
2015-03-25 10:36:06 +00:00
|
|
|
BitmapFile = (char *) "vAmpMod";
|
|
|
|
|
|
|
|
if(getNewOne) return new vAmpMod();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString vAmpMod::netlist()
|
|
|
|
{
|
2024-10-19 15:13:10 +08:00
|
|
|
return QString();
|
2015-03-25 10:36:06 +00:00
|
|
|
}
|
|
|
|
|
2024-12-30 16:48:05 +01:00
|
|
|
QString vAmpMod::spice_netlist(spicecompat::SpiceDialect dialect /* = spicecompat::SPICEDefault */)
|
2015-03-25 10:36:06 +00:00
|
|
|
{
|
2024-12-30 16:48:05 +01:00
|
|
|
Q_UNUSED(dialect);
|
|
|
|
|
2015-03-25 10:36:06 +00:00
|
|
|
QString s = spicecompat::check_refdes(Name,SpiceModel);
|
2023-01-15 01:17:09 +03:00
|
|
|
for (Port *p1 : Ports) {
|
2015-03-25 10:36:06 +00:00
|
|
|
QString nam = p1->Connection->Name;
|
|
|
|
if (nam=="gnd") nam = "0";
|
|
|
|
s += " "+ nam; // node names
|
|
|
|
}
|
|
|
|
|
2015-04-01 17:08:29 +01:00
|
|
|
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);
|
2015-03-25 10:36:06 +00:00
|
|
|
|
|
|
|
|
2024-11-04 15:53:11 +08:00
|
|
|
s += QStringLiteral(" DC 0 AM(%1 %2 %3 %4 %5 ) AC 0\n").arg(Va).arg(Vo).arg(Mf).arg(Fc).arg(Td);
|
2015-03-25 10:36:06 +00:00
|
|
|
return s;
|
|
|
|
}
|