2004-01-31 21:27:38 +00:00
|
|
|
/***************************************************************************
|
|
|
|
iprobe.cpp - description
|
|
|
|
-------------------
|
|
|
|
begin : Sat Aug 23 2003
|
|
|
|
copyright : (C) 2003 by Michael Margraf
|
2004-06-16 17:41:33 +00:00
|
|
|
email : michael.margraf@alumni.tu-berlin.de
|
2004-01-31 21:27:38 +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 "iprobe.h"
|
2015-02-15 18:52:59 +03:00
|
|
|
#include "node.h"
|
2004-01-31 21:27:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
iProbe::iProbe()
|
|
|
|
{
|
|
|
|
Description = QObject::tr("current probe");
|
|
|
|
|
2024-05-31 19:13:06 +03:00
|
|
|
// "contacts"
|
2022-02-20 15:43:44 +01:00
|
|
|
Lines.append(new qucs::Line(-30, 0,-20, 0,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line( 30, 0, 20, 0,QPen(Qt::darkBlue,2)));
|
|
|
|
|
2024-05-31 19:13:06 +03:00
|
|
|
// arrow
|
|
|
|
Lines.append(new qucs::Line(-20, 0, 20, 0,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line( -4, -4, 4, 0,QPen(Qt::darkBlue,2, Qt::SolidLine, Qt::FlatCap)));
|
|
|
|
Lines.append(new qucs::Line( 4, 0, -4, 4,QPen(Qt::darkBlue,2, Qt::SolidLine, Qt::FlatCap)));
|
|
|
|
|
|
|
|
// outer frame
|
2022-02-20 15:43:44 +01:00
|
|
|
Lines.append(new qucs::Line(-20,-31, 20,-31,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line(-20, 9, 20, 9,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line(-20,-31,-20, 9,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line( 20,-31, 20, 9,QPen(Qt::darkBlue,2)));
|
|
|
|
|
2024-05-31 19:13:06 +03:00
|
|
|
// gauge frame
|
2022-02-20 15:43:44 +01:00
|
|
|
Lines.append(new qucs::Line(-16,-27, 16,-27,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line(-16, -9, 16, -9,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line(-16,-27,-16, -9,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line( 16,-27, 16, -9,QPen(Qt::darkBlue,2)));
|
|
|
|
|
2024-05-31 19:13:06 +03:00
|
|
|
// gauge
|
2022-02-20 15:43:44 +01:00
|
|
|
Arcs.append(new qucs::Arc(-20,-23, 39, 39, 16*50, 16*80,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line(-11,-24, -2, -9,QPen(Qt::darkBlue,2)));
|
2004-01-31 21:27:38 +00:00
|
|
|
|
|
|
|
Ports.append(new Port(-30, 0));
|
|
|
|
Ports.append(new Port( 30, 0));
|
|
|
|
|
2004-02-08 17:50:55 +00:00
|
|
|
x1 = -30; y1 = -34;
|
|
|
|
x2 = 30; y2 = 12;
|
2004-01-31 21:27:38 +00:00
|
|
|
|
|
|
|
tx = x1+4;
|
|
|
|
ty = y2+4;
|
|
|
|
Model = "IProbe";
|
|
|
|
Name = "Pr";
|
2015-02-15 18:52:59 +03:00
|
|
|
isProbe = true;
|
2004-01-31 21:27:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
iProbe::~iProbe()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2004-06-06 14:13:59 +00:00
|
|
|
Component* iProbe::newOne()
|
2004-01-31 21:27:38 +00:00
|
|
|
{
|
|
|
|
return new iProbe();
|
|
|
|
}
|
2004-06-06 14:13:59 +00:00
|
|
|
|
2005-06-23 06:06:40 +00:00
|
|
|
Element* iProbe::info(QString& Name, char* &BitmapFile, bool getNewOne)
|
2004-06-06 14:13:59 +00:00
|
|
|
{
|
|
|
|
Name = QObject::tr("Current Probe");
|
2007-09-17 21:57:02 +00:00
|
|
|
BitmapFile = (char *) "iprobe";
|
2004-06-06 14:13:59 +00:00
|
|
|
|
|
|
|
if(getNewOne) return new iProbe();
|
|
|
|
return 0;
|
|
|
|
}
|
2015-02-15 18:52:59 +03:00
|
|
|
|
2024-12-30 16:48:05 +01:00
|
|
|
QString iProbe::spice_netlist(spicecompat::SpiceDialect dialect /* = spicecompat::SPICEDefault */)
|
2015-02-15 18:52:59 +03:00
|
|
|
{
|
2024-12-30 16:48:05 +01:00
|
|
|
Q_UNUSED(dialect);
|
|
|
|
|
2024-11-04 15:53:11 +08:00
|
|
|
QString s = QStringLiteral("V%1 %2 %3 DC 0\n").arg(Name).arg(Ports.at(0)->Connection->Name)
|
2015-02-15 18:52:59 +03:00
|
|
|
.arg(Ports.at(1)->Connection->Name);
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2015-04-25 12:58:25 +03:00
|
|
|
/*!
|
|
|
|
* \brief iProbe::getProbeVariable Get current probe variable
|
2025-01-19 15:37:39 +01:00
|
|
|
* \param dialect Spice dialect used
|
2015-04-25 12:58:25 +03:00
|
|
|
* \return Current probe variable in Ngspice or Xyce notation
|
|
|
|
*/
|
2025-01-19 15:37:39 +01:00
|
|
|
QString iProbe::getProbeVariable(spicecompat::SpiceDialect dialect)
|
2015-02-15 18:52:59 +03:00
|
|
|
{
|
|
|
|
QString s;
|
2025-01-19 15:37:39 +01:00
|
|
|
if (dialect == spicecompat::SPICEXyce) {
|
2024-11-04 15:53:11 +08:00
|
|
|
s = QStringLiteral("I(V%1)").arg(Name);
|
2015-02-15 18:52:59 +03:00
|
|
|
} else {
|
2024-11-04 15:53:11 +08:00
|
|
|
s = QStringLiteral("V%1#branch").arg(Name);
|
2015-02-15 18:52:59 +03:00
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|