mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
110 lines
3.7 KiB
C++
110 lines
3.7 KiB
C++
/***************************************************************************
|
|
capacitor.cpp - description
|
|
-------------------
|
|
begin : Sat Aug 23 2003
|
|
copyright : (C) 2003 by Michael Margraf
|
|
email : michael.margraf@alumni.tu-berlin.de
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* 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 "capacitor.h"
|
|
#include "extsimkernels/spicecompat.h"
|
|
#include "extsimkernels/verilogawriter.h"
|
|
|
|
|
|
Capacitor::Capacitor()
|
|
{
|
|
Description = QObject::tr("capacitor");
|
|
|
|
Props.append(new Property("C", "1 nF", true,
|
|
QObject::tr("capacitance in Farad")));
|
|
Props.append(new Property("V", "", false,
|
|
QObject::tr("initial voltage for transient simulation")));
|
|
Props.append(new Property("Symbol", "neutral", false,
|
|
QObject::tr("schematic symbol")+" [neutral, polar]"));
|
|
|
|
createSymbol();
|
|
tx = x1+4;
|
|
ty = y2+4;
|
|
Model = "C";
|
|
SpiceModel = "C";
|
|
Name = "C";
|
|
}
|
|
|
|
Component* Capacitor::newOne()
|
|
{
|
|
return new Capacitor();
|
|
}
|
|
|
|
Element* Capacitor::info(QString& Name, char* &BitmapFile, bool getNewOne)
|
|
{
|
|
Name = QObject::tr("Capacitor");
|
|
BitmapFile = (char *) "capacitor";
|
|
|
|
if(getNewOne) return new Capacitor();
|
|
return 0;
|
|
}
|
|
|
|
QString Capacitor::spice_netlist(bool)
|
|
{
|
|
QString s = spicecompat::check_refdes(Name,SpiceModel);
|
|
|
|
s += QStringLiteral(" %1 %2 ").arg(Ports.at(0)->Connection->Name)
|
|
.arg(Ports.at(1)->Connection->Name); // output nodes
|
|
s.replace(" gnd ", " 0 ");
|
|
|
|
s += " "+spicecompat::normalize_value(Props.at(0)->Value) + " ";
|
|
QString val = Props.at(1)->Value; // add inial voltage if presents
|
|
val = val.remove(' ').toUpper();
|
|
if (!val.isEmpty()) {
|
|
s += " IC=" + val;
|
|
}
|
|
|
|
return s+'\n';
|
|
}
|
|
|
|
QString Capacitor::va_code()
|
|
{
|
|
QString val = vacompat::normalize_value(Props.at(0)->Value);
|
|
QString plus = Ports.at(0)->Connection->Name;
|
|
QString minus = Ports.at(1)->Connection->Name;
|
|
QString s = "";
|
|
QString Vpm = vacompat::normalize_voltage(plus,minus);
|
|
if (Vpm.startsWith("(-")) Vpm.remove(1,1); // Make capacitor unipolar, remove starting minus
|
|
QString Ipm = vacompat::normalize_current(plus,minus,true);
|
|
s += QStringLiteral("%1 <+ ddt( %2 * %3 );\n").arg(Ipm).arg(Vpm).arg(val);
|
|
|
|
return s;
|
|
}
|
|
|
|
void Capacitor::createSymbol()
|
|
{
|
|
if(Props.back()->Value.at(0) == 'n') {
|
|
Lines.append(new qucs::Line( -4,-11, -4, 11,QPen(Qt::darkBlue,4)));
|
|
Lines.append(new qucs::Line( 4,-11, 4, 11,QPen(Qt::darkBlue,4)));
|
|
}
|
|
else {
|
|
Lines.append(new qucs::Line(-11, -5,-11,-11,QPen(Qt::red,1)));
|
|
Lines.append(new qucs::Line(-14, -8, -8, -8,QPen(Qt::red,1)));
|
|
Lines.append(new qucs::Line( -4,-11, -4, 11,QPen(Qt::darkBlue,3)));
|
|
Arcs.append(new qucs::Arc(4,-12, 20, 24, 16*122, 16*116,QPen(Qt::darkBlue,3)));
|
|
}
|
|
|
|
Lines.append(new qucs::Line(-30, 0, -4, 0,QPen(Qt::darkBlue,2)));
|
|
Lines.append(new qucs::Line( 4, 0, 30, 0,QPen(Qt::darkBlue,2)));
|
|
|
|
Ports.append(new Port(-30, 0));
|
|
Ports.append(new Port( 30, 0));
|
|
|
|
x1 = -30; y1 = -13;
|
|
x2 = 30; y2 = 13;
|
|
}
|