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

72 lines
2.3 KiB
C++

/***************************************************************************
opamp.cpp - description
-------------------
begin : Sun Oct 31 2004
copyright : (C) 2004 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 "opamp.h"
OpAmp::OpAmp()
{
Description = QObject::tr("operational amplifier");
Lines.append(new Line(-30,-20,-20,-20,QPen(QPen::darkBlue,2)));
Lines.append(new Line(-30, 20,-20, 20,QPen(QPen::darkBlue,2)));
Lines.append(new Line( 30, 0, 40, 0,QPen(QPen::darkBlue,2)));
Lines.append(new Line(-20,-35,-20, 35,QPen(QPen::darkBlue,2)));
Lines.append(new Line(-20,-35, 30, 0,QPen(QPen::darkBlue,2)));
Lines.append(new Line(-20, 35, 30, 0,QPen(QPen::darkBlue,2)));
Lines.append(new Line(-16, 19, -9, 19,QPen(QPen::black,1)));
Lines.append(new Line(-16,-19, -9,-19,QPen(QPen::red,1)));
Lines.append(new Line(-13,-22,-13,-15,QPen(QPen::red,1)));
Ports.append(new Port(-30, 20));
Ports.append(new Port(-30,-20));
Ports.append(new Port( 40, 0));
x1 = -30; y1 = -38;
x2 = 30; y2 = 38;
tx = x1+4;
ty = y2+4;
Model = "OpAmp";
Name = "OP";
Props.append(new Property("G", "1e6", true,
QObject::tr("voltage gain")));
Props.append(new Property("Umax", "15 V", false,
QObject::tr("absolute value of maximum and minimum output voltage")));
}
OpAmp::~OpAmp()
{
}
Component* OpAmp::newOne()
{
return new OpAmp();
}
Component* OpAmp::info(QString& Name, char* &BitmapFile, bool getNewOne)
{
Name = QObject::tr("OpAmp");
BitmapFile = "opamp";
if(getNewOne) return new OpAmp();
return 0;
}