qucs_s/qucs/components/hb_sim.cpp
2004-12-04 18:41:22 +00:00

64 lines
1.9 KiB
C++

/***************************************************************************
hb_sim.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 "hb_sim.h"
#include "main.h"
HB_Sim::HB_Sim()
{
Description = QObject::tr("Harmonic balance simulation");
QString s = Description;
int a = s.findRev(" ");
if (a != -1) s[a] = '\n'; // break line before the word "simulation"
Texts.append(new Text(0, 0, s.left(a)));
if (a != -1) Texts.append(new Text(0, 0, s.mid(a+1)));
x1 = -10; y1 = -9;
x2 = x1+163; y2 = y1+59;
tx = 0;
ty = y2+1;
Model = ".HB";
Name = "HB";
Props.append(new Property("f", "1 GHz", true,
QObject::tr("frequency in Hertz")));
Props.append(new Property("n", "4", true,
QObject::tr("number of harmonics")));
}
HB_Sim::~HB_Sim()
{
}
Component* HB_Sim::newOne()
{
return new HB_Sim();
}
Component* HB_Sim::info(QString& Name, char* &BitmapFile, bool getNewOne)
{
Name = QObject::tr("Harmonic balance");
BitmapFile = "hb";
if(getNewOne) return new HB_Sim();
return 0;
}