qucs_s/qucs/components/ampere_dc.cpp
2004-06-16 17:41:33 +00:00

64 lines
2.1 KiB
C++

/***************************************************************************
ampere_dc.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 "ampere_dc.h"
Ampere_dc::Ampere_dc()
{
Description = QObject::tr("ideal dc current source");
Arcs.append(new Arc(-12,-12, 25, 25, 0, 16*360,QPen(QPen::darkBlue,2)));
Lines.append(new Line(-30, 0,-12, 0,QPen(QPen::darkBlue,2)));
Lines.append(new Line( 30, 0, 12, 0,QPen(QPen::darkBlue,2)));
Lines.append(new Line( -7, 0, 7, 0,QPen(QPen::darkBlue,3)));
Lines.append(new Line( 6, 0, 0, -4,QPen(QPen::darkBlue,3)));
Lines.append(new Line( 6, 0, 0, 4,QPen(QPen::darkBlue,3)));
Ports.append(new Port( 30, 0));
Ports.append(new Port(-30, 0));
x1 = -30; y1 = -14;
x2 = 30; y2 = 14;
tx = x1+4;
ty = y2+4;
Model = "Idc";
Name = "I";
Props.append(new Property("I", "1 mA", true,
QObject::tr("current in Ampere")));
}
Ampere_dc::~Ampere_dc()
{
}
Component* Ampere_dc::newOne()
{
return new Ampere_dc();
}
Component* Ampere_dc::info(QString& Name, char* &BitmapFile, bool getNewOne)
{
Name = QObject::tr("dc Current Source");
BitmapFile = "dc_current";
if(getNewOne) return new Ampere_dc();
return 0;
}