qucs_s/qucs/components/pm_modulator.cpp
margraf 3159b4bf48 *** empty log message ***
git-svn-id: https://qucs.svn.sourceforge.net/svnroot/qucs/trunk@811 b5b04e8c-4942-46c9-ab4f-83783d557d1c
2006-02-27 07:10:34 +00:00

78 lines
2.8 KiB
C++

/***************************************************************************
pm_modulator.cpp
------------------
begin : Sat Feb 25 2006
copyright : (C) 2006 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 "pm_modulator.h"
PM_Modulator::PM_Modulator()
{
Description = QObject::tr("ac voltage source with phase modulator");
Arcs.append(new Arc(-12,-12, 25, 25, 0, 16*360,QPen(QPen::darkBlue,2)));
Arcs.append(new Arc( -7, -4, 8, 8, 0, 16*180,QPen(QPen::darkBlue,2)));
Arcs.append(new Arc( 0, -4, 8, 8,16*180, 16*180,QPen(QPen::darkBlue,2)));
Lines.append(new Line( 0, 30, 0, 12,QPen(QPen::darkBlue,2)));
Lines.append(new Line( 0,-30, 0,-12,QPen(QPen::darkBlue,2)));
Lines.append(new Line( 5,-18, 11,-18,QPen(QPen::red,1)));
Lines.append(new Line( 8,-21, 8,-15,QPen(QPen::red,1)));
Lines.append(new Line( 5, 18, 11, 18,QPen(QPen::black,1)));
Lines.append(new Line(-12, 0,-30, 0,QPen(QPen::darkBlue,2)));
Lines.append(new Line(-12, 0,-17, 5,QPen(QPen::darkBlue,2)));
Lines.append(new Line(-12, 0,-17, -5,QPen(QPen::darkBlue,2)));
Texts.append(new Text(-30,-18, QObject::tr("PM"), Qt::black, 10.0,1.0,0.0));
Ports.append(new Port( 0,-30));
Ports.append(new Port( 0, 30));
Ports.append(new Port(-30, 0));
x1 = -30; y1 = -30;
x2 = 14; y2 = 30;
tx = x2+4;
ty = y1+4;
Model = "PM_Mod";
Name = "V";
Props.append(new Property("U", "1 V", true,
QObject::tr("peak voltage in Volts")));
Props.append(new Property("f", "1 GHz", false,
QObject::tr("frequency in Hertz")));
Props.append(new Property("Phase", "0", false,
QObject::tr("initial phase in degrees")));
Props.append(new Property("M", "1.0", false,
QObject::tr("modulation index")));
}
PM_Modulator::~PM_Modulator()
{
}
Component* PM_Modulator::newOne()
{
return new PM_Modulator();
}
Element* PM_Modulator::info(QString& Name, char* &BitmapFile, bool getNewOne)
{
Name = QObject::tr("PM modulated Source");
BitmapFile = "pm_mod";
if(getNewOne) return new PM_Modulator();
return 0;
}