coriolis/chamsin/src/analogic/Capacitor.cpp

299 lines
10 KiB
C++

#include "hurricane/Technology.h"
#include "hurricane/Pad.h"
#include "hurricane/UpdateSession.h"
#include "hurricane/DataBase.h"
using namespace Hurricane;
#include "AEnv.h"
#include "ATechnology.h"
#include "Capacitor.h"
namespace {
Layer* getLayer(Technology* technology, const string& layerStr) {
Layer* layer = technology->getLayer(layerStr);
if (!layer) {
throw Error("Unknown Layer : " + layerStr);
}
return layer;
}
Pad* createPad(Technology* technology, Net* net, const string& layerName) {
static Box emptyBox(0, 0, 0, 0);
Layer* layer = getLayer(technology, layerName);
Pad* pad = Pad::create(net, layer, emptyBox);
return pad;
}
}
//Déclaration des deux armatures:
//*******************************
const Name Capacitor::BottomPlateName("BOTTOMPLATE");
const Name Capacitor::TopPlateName("TOPPLATE");
#if 0
const Name Capacitor::AnonymousName("ANONYMOUS");
//les 4 types des capas unitaire:
//1-capa unitaire
//2-le Rectangle
//3-le Stub
//4-le Trou
Capacitor::Type::Type(const Code& code):
_code(code)
{}
Capacitor::Type::Type(const Type& type):
_code(type._code)
{}SVN
Capasitor::Type& Capasitor::Type::operator=(const Type& type) {
_code = type._code;
return *this;
}
#endif
//la mise des valeurs initials:
//c'est le Constructeur:
//*********************
Capacitor::Capacitor(Library* library, const Name& name):
AnalogComponent(library, name),
_bottomPlate(NULL),
_topPlate(NULL),
_anonymous(NULL),
_l(0), _w(0),
_topPlate10(NULL),
_topPlate20(NULL),_topPlate30(NULL),
_bottomPlate00(NULL)
#if 0
_anonymous01(NULL),
_anonymous11(NULL),
_anonymous12(NULL),
_anonymous13(NULL),
_anonymous21(NULL),
_anonymousT11(NULL),
_anonymousT12(NULL),
_anonymousT13(NULL),
_anonymousT14(NULL),
_anonymousT21(NULL)
#endif
{}
//Déclaration de la library:
//*************************
Capacitor* Capacitor::create(Library* library, const Name& name) {
Capacitor* capacitor = new Capacitor(library, name);
capacitor->_postCreate();
return capacitor;
}
//création des signaux et des noeuds:
//***********************************
void Capacitor::_postCreate() {
Inherit::_postCreate();
DataBase* db = DataBase::getDB();
Technology* technology = db->getTechnology();
_bottomPlate = Net::create(this, BottomPlateName);
_bottomPlate->setExternal(true);
_topPlate = Net::create(this, TopPlateName);
_topPlate->setExternal(true);
// _anonymous = Net::create(this, AnonymousName);
_topPlate10 = createPad(technology, _topPlate, "topmim6");
_topPlate20 = createPad(technology, _topPlate, "padopen");
_topPlate30 = createPad(technology, _topPlate, "alucap");
_bottomPlate00 = createPad(technology, _bottomPlate, "botmim6");
#if 0
_anonymous01 = createPad(technology, _anonymous, "Implant");
_anonymous11 = createPad(technology, _anonymous, "topmim6");
_anonymous12 = createPad(technology, _anonymous, "topmim6");
_anonymous13 = createPad(technology, _anonymous, "topmim6");
_anonymous21 = createPad(technology, _anonymous, "padopen");
_anonymous14 = createPad(technology, _anonymous, "topmim6");
#endif
}
#if 0
void Capacitor::setType(Type type) {
UpdateSession::open();
if (type != _type) {
_type = type;
DataBase* db = DataBase::getDB();
Technology* technology = db->getTechnology();
if (_type == Type::unitaire) {
_anonymous01->setLayer(getLayer(technology, "Implant"));
} else if (_type == Type::Rectangle) {
_anonymous11->setLayer(getLayer(technology, "topmim6"));
_anonymous12->setLayer(getLayer(technology, "topmim6"));
_anonymous21->setLayer(getLayer(technology, "padopen"));
} else if (_type == Type::Stub) {
_anonymous11->setLayer(getLayer(technology, "topmim6"));
_anonymous12->setLayer(getLayer(technology, "topmim6"));
_anonymous13->setLayer(getLayer(technology, "topmim6"));
_anonymous21->setLayer(getLayer(technology, "padopen"));
} else if (_type == Type::Trou) {
_anonymous11->setLayer(getLayer(technology, "topmim6"));
_anonymous12->setLayer(getLayer(technology, "topmim6"));
_anonymous13->setLayer(getLayer(technology, "topmim6"));
_anonymous14->setLayer(getLayer(technology, "topmim6"));
_anonymous21->setLayer(getLayer(technology, "padopen"));
updateLayout();
}
UpdateSession::close();
}
#endif
//la fonction updateLayout
//qui met en oeuvre de nouvau les parametres du capa
//au cas ou il y a n' importe auel changement
//******************************************
void Capacitor::updateLayout() {
DataBase* db = DataBase::getDB();
if (!db) {
throw Error("Error : no DataBase");
}
Technology* techno = db->getTechnology();
if (!techno) {
throw Error("Error : no Technology");
}
ATechnology* atechno = AEnv::getATechnology();
//**Pour topPlate20 -> PADOPEN-MIM
//********************************
DbU::Unit widthCut6 = atechno->getPhysicalRule("padOpenMIMWidth")->getValue();
DbU::Unit spacingCut6 = atechno->getPhysicalRule("padOpenMIMSpace")->getValue();
DbU::Unit enclosureCut6 = atechno->getPhysicalRule("padOpenMIMMETAL6Enclosure")->getValue();
//**Pour topPlate30 -> ALUCAP-MIM
//*******************************
DbU::Unit widthAluCap = atechno->getPhysicalRule("aluCapMIMWidth")->getValue();
DbU::Unit enclosureVia6 = atechno->getPhysicalRule("aluCapMIMVIA6Enclosure")->getValue();
//DbU::Unit distanceAlucapTopmin = atechno->getPhysicalRule("aluCapMIMDistance")->getValue();
DbU::Unit enclosureTopMim = atechno->getPhysicalRule("aluCapMIMTopMIM6Enclosure")->getValue();
DbU::Unit enclosureBotMim = atechno->getPhysicalRule("aluCapMIMBotMIM6Enclosure")->getValue();
//DbU::Unit distanceAluc = atechno->getPhysicalRule("minAlucapDistance")->getValue();
//**Pour topPlate10 -> TOPMIM6
//****************************
DbU::Unit widthTopmim = atechno->getPhysicalRule("topPlateMIMminWidth")->getValue();
DbU::Unit spacingTopmim = atechno->getPhysicalRule("topPlateMIMSpacing")->getValue();
DbU::Unit enclosureByBotmimTopmim = atechno->getPhysicalRule("topPlateMIMBotEnclosure")->getValue();
//DbU::Unit enclosureVia6Topmim = atechno->getPhysicalRule("minViaEnclosure")->getValue();
DbU::Unit enclosureBotmimContact = atechno->getPhysicalRule("topPlateMIMBotmimContact")->getValue();
//**Pour BottomPlate -> BOTMIM6
//*****************************
DbU::Unit widthBotmim = atechno->getPhysicalRule("botPlateMIMWidth")->getValue();
DbU::Unit spacingBotmim = atechno->getPhysicalRule("botPlateMIMSpacing")->getValue();
DbU::Unit enclosureVia6Botmim = atechno->getPhysicalRule("botPlateMIMViaEnclosure")->getValue();
UpdateSession::open();
DbU::setStringMode(1);
//*les Box*//
//*********//
//topPlate 10:
//l'armature haute est le reference
//car la valeur du capa corespond au W et L de l'armature haute
//*************************************************************
DbU::Unit x10 = 0;
DbU::Unit y10 = 0;
DbU::Unit dx10 = _l;
DbU::Unit dy10 = _w;
Box box10(x10, y10, x10 + dx10, y10 + dy10);
_topPlate10->setBoundingBox(box10);
//topPlate 30:
//***********
DbU::Unit x30 = enclosureTopMim;
DbU::Unit y30 = enclosureTopMim;
DbU::Unit dx30 = _l -(2 * enclosureTopMim);
DbU::Unit dy30 = _w -(2 * enclosureTopMim) ;
Box box30(x30, y30, x30 + dx30, y30 + dy30);
_topPlate30->setBoundingBox(box30);
//topPlate 20:
//***********
DbU::Unit x20 = enclosureTopMim + enclosureVia6 ;
DbU::Unit y20 = enclosureTopMim + enclosureVia6 ;
DbU::Unit dx20 = widthCut6 ;
DbU::Unit dy20 = widthCut6 ;
Box box20(x20, y20, x20 + dx20, y20 + dy20);
_topPlate20->setBoundingBox(box20);
//bottomPlate 00:
//**************
DbU::Unit x00 = 0 - enclosureByBotmimTopmim;
DbU::Unit y00 = 0 - enclosureByBotmimTopmim;
DbU::Unit dx00 = _l + (2 * enclosureByBotmimTopmim);
DbU::Unit dy00 = _w + (2 * enclosureByBotmimTopmim);
Box box00(x00, y00, x00 + dx00, y00 + dy00);
_bottomPlate00->setBoundingBox(box00);
#if 0
//emboitement->anonymous01:
//************************
DbU::Unit x01 = 0 - enclosureByBotmimTopmim - spacingTopmim ;
DbU::Unit y01 = 0 - enclosureByBotmimTopmim - spacingTopmim ;
DbU::Unit dx01 = _l + (2 * enclosureByBotmimTopmim) + (2 * spacingTopmim);
DbU::Unit dy01 = _w + (2 * enclosureByBotmimTopmim) + (2 * spacingTopmim);
Box box01(x01, y01, x01 + dx01, y01 + dy01);
_anonymous01->setBoundingBox(box01);
#endif
UpdateSession::close();
}
Record* Capacitor::_getRecord() const {
Record* record = Inherit::_getRecord();
if (record) {
record->add(getSlot("BottomPlate", _bottomPlate));
record->add(getSlot("TopPlate", _topPlate));
record->add(getSlot("L", &_l));
record->add(getSlot("W", &_w));
record->add(getSlot("TopPlate20", _topPlate20));
record->add(getSlot("TopPlate30", _topPlate30));
record->add(getSlot("TopPlate10", _topPlate10));
record->add(getSlot("BottomPlate00", _bottomPlate00));
#if 0
record->add(getSlot("Anonymous01", _anonymous01));
record->add(getSlot("Anonymous11", _anonymous11));
record->add(getSlot("Anonymous12", _anonymous12));
record->add(getSlot("Anonymous13", _anonymous13));
record->add(getSlot("Anonymous21", _anonymous21));
record->add(getSlot("AnonymousT11", _anonymousT11));
record->add(getSlot("AnonymousT12", _anonymousT12));
record->add(getSlot("AnonymousT13", _anonymousT13));
record->add(getSlot("AnonymousT14", _anonymousT14));
record->add(getSlot("AnonymousT21", _anonymousT21));
#endif
}
return record;
}