mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00

* equation.cpp (verilogCode, vhdlCode): Added code for equations. 2009-05-04 Stefan Jahn <stefan@lkcc.org> * schematic_file.cpp (createSubNetlistPlain): Allow equations to be put into Verilog and VHDL netlists.
92 lines
2.8 KiB
C++
92 lines
2.8 KiB
C++
/***************************************************************************
|
|
equation.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 "equation.h"
|
|
#include "main.h"
|
|
|
|
|
|
Equation::Equation()
|
|
{
|
|
Type = isComponent; // Analogue and digital component.
|
|
Description = QObject::tr("equation");
|
|
|
|
QFont f = QucsSettings.font;
|
|
f.setWeight(QFont::Light);
|
|
f.setPointSizeFloat(12.0);
|
|
QFontMetrics metrics(f);
|
|
QSize r = metrics.size(0, QObject::tr("Equation"));
|
|
int xb = r.width() >> 1;
|
|
int yb = r.height() >> 1;
|
|
|
|
Lines.append(new Line(-xb, -yb, -xb, yb,QPen(QPen::darkBlue,2)));
|
|
Lines.append(new Line(-xb, yb, xb+3,yb,QPen(QPen::darkBlue,2)));
|
|
Texts.append(new Text(-xb+4, -yb-3, QObject::tr("Equation"),
|
|
QColor(0,0,0), 12.0));
|
|
|
|
x1 = -xb-3; y1 = -yb-5;
|
|
x2 = xb+9; y2 = yb+3;
|
|
|
|
tx = x1+4;
|
|
ty = y2+4;
|
|
Model = "Eqn";
|
|
Name = "Eqn";
|
|
|
|
Props.append(new Property("y", "1", true));
|
|
Props.append(new Property("Export", "yes", false,
|
|
QObject::tr("put result into dataset")+" [yes, no]"));
|
|
}
|
|
|
|
Equation::~Equation()
|
|
{
|
|
}
|
|
|
|
// -------------------------------------------------------
|
|
QString Equation::verilogCode(int)
|
|
{
|
|
QString s;
|
|
// output all equations
|
|
for(Property *pr = Props.first(); pr != 0; pr = Props.next())
|
|
if(pr->Name != "Export")
|
|
s += " real "+pr->Name+"; initial "+pr->Name+" = "+pr->Value+";\n";
|
|
return s;
|
|
}
|
|
|
|
// -------------------------------------------------------
|
|
QString Equation::vhdlCode(int)
|
|
{
|
|
QString s;
|
|
// output all equations
|
|
for(Property *pr = Props.first(); pr != 0; pr = Props.next())
|
|
if(pr->Name != "Export")
|
|
s += " constant "+pr->Name+" : time := "+pr->Value+";\n";
|
|
return s;
|
|
}
|
|
|
|
Component* Equation::newOne()
|
|
{
|
|
return new Equation();
|
|
}
|
|
|
|
Element* Equation::info(QString& Name, char* &BitmapFile, bool getNewOne)
|
|
{
|
|
Name = QObject::tr("Equation");
|
|
BitmapFile = (char *) "";
|
|
|
|
if(getNewOne) return new Equation();
|
|
return 0;
|
|
}
|