qucs_s/qucs/components/bondwire.cpp

76 lines
2.7 KiB
C++
Raw Normal View History

2006-12-27 07:08:30 +00:00
/***************************************************************************
bondwire.cpp
--------------
begin : Dec 22 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 "bondwire.h"
2023-06-09 13:54:29 +03:00
#include "extsimkernels/spicecompat.h"
2006-12-27 07:08:30 +00:00
BondWire::BondWire()
{
Description = QObject::tr("bond wire");
2023-06-09 13:54:29 +03:00
Simulator = spicecompat::simQucsator;
2006-12-27 07:08:30 +00:00
Lines.append(new qucs::Line(-30, 0,-8, 0,QPen(Qt::darkBlue,3)));
Lines.append(new qucs::Line( 30, 0, 8, 0,QPen(Qt::darkBlue,3)));
2006-12-27 07:08:30 +00:00
Arcs.append(new qucs::Arc(-11,-10, 22, 26, 16*30,16*120,QPen(Qt::darkBlue,1)));
Arcs.append(new qucs::Arc(-19,-13, 10, 13,16*205,16*130,QPen(Qt::darkBlue,1)));
Arcs.append(new qucs::Arc( 9,-13, 10, 13,16*205,16*130,QPen(Qt::darkBlue,1)));
2006-12-27 07:08:30 +00:00
Ports.append(new Port(-30, 0));
Ports.append(new Port( 30, 0));
x1 = -30; y1 =-13;
x2 = 30; y2 = 5;
tx = x1+4;
ty = y2+4;
2007-01-15 08:20:19 +00:00
Model = "BOND";
2006-12-27 07:08:30 +00:00
Name = "Line";
Props.append(new Property("L", "3 mm", true,
QObject::tr("length of the wire")));
Props.append(new Property("D", "50 um", true,
QObject::tr("diameter of the wire")));
Props.append(new Property("H", "2 mm", true,
QObject::tr("height above ground plane")));
Props.append(new Property("rho", "0.022e-6", false,
QObject::tr("specific resistance of the metal")));
Props.append(new Property("mur", "1", false,
QObject::tr("relative permeability of the metal")));
Props.append(new Property("Model", "FREESPACE", false,
2007-01-15 08:20:19 +00:00
QObject::tr("bond wire model")+" [FREESPACE, MIRROR, DESCHARLES]"));
2006-12-27 07:08:30 +00:00
Props.append(new Property("Subst", "Subst1", true,
QObject::tr("substrate")));
Props.append(new Property("Temp", "26.85", false,
QObject::tr("simulation temperature in degree Celsius")));
}
Component* BondWire::newOne()
{
return new BondWire();
}
Element* BondWire::info(QString& Name, char* &BitmapFile, bool getNewOne)
{
Name = QObject::tr("Bond Wire");
BitmapFile = (char *) "bondwire";
2006-12-27 07:08:30 +00:00
if(getNewOne) return new BondWire();
return 0;
}