mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Added .lib device #242
This commit is contained in:
parent
11579a57f0
commit
407beebdea
BIN
qucs/bitmaps/sp_lib.png
Normal file
BIN
qucs/bitmaps/sp_lib.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 514 B |
@ -191,6 +191,7 @@ void AbstractSpiceKernel::startNetlist(QTextStream &stream, bool xyce)
|
||||
// Include Directives
|
||||
for(Component *pc = Sch->DocComps.first(); pc != 0; pc = Sch->DocComps.next()) {
|
||||
if ((pc->SpiceModel==".INCLUDE")||
|
||||
(pc->SpiceModel==".LIB")||
|
||||
(pc->Model=="SpLib")) {
|
||||
s = pc->getSpiceModel();
|
||||
if (!incls.contains(s)) {
|
||||
|
@ -581,6 +581,7 @@ void Module::registerModules (void) {
|
||||
REGISTER_SPICE_SEC_1 (NutmegEquation);
|
||||
REGISTER_SPICE_SEC_1 (S4Q_Model);
|
||||
REGISTER_SPICE_SEC_1 (S4Q_Include);
|
||||
REGISTER_SPICE_SEC_1 (S4Q_Lib);
|
||||
REGISTER_SPICE_SEC_1 (SpiceFunc);
|
||||
REGISTER_SPICE_SEC_1 (SpiceSpiceinit);
|
||||
REGISTER_SPICE_SEC_1 (InclScript);
|
||||
|
@ -311,6 +311,7 @@
|
||||
<file>bitmaps/SDTF.png</file>
|
||||
<file>bitmaps/XAPWL.png</file>
|
||||
<file>bitmaps/sp_include.png</file>
|
||||
<file>bitmaps/sp_lib.png</file>
|
||||
<file>bitmaps/xspicegeneric.png</file>
|
||||
<file>bitmaps/xsp_cmlib.png</file>
|
||||
<file>bitmaps/xsp_cmod.png</file>
|
||||
|
@ -17,6 +17,7 @@ sp_ic.cpp
|
||||
sp_nodeset.cpp
|
||||
sp_model.cpp
|
||||
sp_include.cpp
|
||||
sp_lib.cpp
|
||||
sp_func.cpp
|
||||
sp_spiceinit.cpp
|
||||
incl_script.cpp
|
||||
@ -111,6 +112,7 @@ sp_ic.h
|
||||
sp_nodeset.h
|
||||
sp_model.h
|
||||
sp_include.h
|
||||
sp_lib.h
|
||||
sp_func.h
|
||||
sp_spiceinit.h
|
||||
incl_script.h
|
||||
|
84
qucs/spicecomponents/sp_lib.cpp
Normal file
84
qucs/spicecomponents/sp_lib.cpp
Normal file
@ -0,0 +1,84 @@
|
||||
/***************************************************************************
|
||||
sp_include.cpp - description
|
||||
-------------------
|
||||
begin : Mon Dec 07 2015
|
||||
copyright : (C) 2015 by Vadim Kuznetsov
|
||||
email : ra3xdh@gmail.com
|
||||
***************************************************************************/
|
||||
|
||||
/***************************************************************************
|
||||
* *
|
||||
* 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 "sp_lib.h"
|
||||
#include "main.h"
|
||||
|
||||
#include <QFontMetrics>
|
||||
|
||||
S4Q_Lib::S4Q_Lib()
|
||||
{
|
||||
isEquation = false;
|
||||
Type = isComponent; // Analogue and digital component.
|
||||
Description = QObject::tr(".LIB directive\n");
|
||||
|
||||
QFont f = QucsSettings.font;
|
||||
f.setWeight(QFont::Light);
|
||||
f.setPointSizeF(12.0);
|
||||
QFontMetrics metrics(f, 0); // use the the screen-compatible metric
|
||||
QSize r = metrics.size(0, QObject::tr(".LIB"));
|
||||
int xb = r.width() >> 1;
|
||||
int yb = r.height() >> 1;
|
||||
|
||||
Lines.append(new qucs::Line(-xb, -yb, -xb, yb,QPen(Qt::darkRed,2)));
|
||||
Lines.append(new qucs::Line(-xb, yb, xb+3,yb,QPen(Qt::darkRed,2)));
|
||||
Texts.append(new Text(-xb+4, -yb-3, QObject::tr(".LIB"),
|
||||
QColor(0,0,0), 12.0));
|
||||
|
||||
x1 = -xb-3; y1 = -yb-5;
|
||||
x2 = xb+9; y2 = yb+3;
|
||||
|
||||
tx = x1+4;
|
||||
ty = y2+4;
|
||||
Model = "SpiceLib";
|
||||
Name = "SpiceLib";
|
||||
SpiceModel = ".LIB";
|
||||
|
||||
Props.append(new Property("File", "/home/user/library.inc", true,"SPICE file to include"));
|
||||
Props.append(new Property("Section", "mos1", true,"Library section name"));
|
||||
}
|
||||
|
||||
S4Q_Lib::~S4Q_Lib()
|
||||
{
|
||||
}
|
||||
|
||||
Component* S4Q_Lib::newOne()
|
||||
{
|
||||
return new S4Q_Lib();
|
||||
}
|
||||
|
||||
Element* S4Q_Lib::info(QString& Name, char* &BitmapFile, bool getNewOne)
|
||||
{
|
||||
Name = QObject::tr(".Lib directive");
|
||||
BitmapFile = (char *) "sp_lib";
|
||||
|
||||
if(getNewOne) return new S4Q_Lib();
|
||||
return 0;
|
||||
}
|
||||
|
||||
QString S4Q_Lib::getSpiceModel()
|
||||
{
|
||||
if (isActive != COMP_IS_ACTIVE) return QString("");
|
||||
QString s;
|
||||
s.clear();
|
||||
|
||||
QString file = getProperty("File")->Value;
|
||||
QString sec = getProperty("Section")->Value;
|
||||
s += QString("%1 \"%2\" %3\n").arg(SpiceModel).arg(file).arg(sec);
|
||||
|
||||
return s;
|
||||
}
|
||||
|
39
qucs/spicecomponents/sp_lib.h
Normal file
39
qucs/spicecomponents/sp_lib.h
Normal file
@ -0,0 +1,39 @@
|
||||
/***************************************************************************
|
||||
sp_include.h - description
|
||||
-------------------
|
||||
begin : Mon Dec 07 2015
|
||||
copyright : (C) 2015 by Vadim Kuznetsov
|
||||
email : ra3xdh@gmail.com
|
||||
***************************************************************************/
|
||||
|
||||
/***************************************************************************
|
||||
* *
|
||||
* 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. *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
#ifndef SP_LIB_H
|
||||
#define SP_LIB_H
|
||||
|
||||
#include "components/component.h"
|
||||
|
||||
|
||||
class S4Q_Lib : public Component {
|
||||
|
||||
public:
|
||||
S4Q_Lib();
|
||||
~S4Q_Lib();
|
||||
Component* newOne();
|
||||
static Element* info(QString&, char* &, bool getNewOne=false);
|
||||
QString getSpiceModel();
|
||||
|
||||
protected:
|
||||
QString vhdlCode(int) { return QString(""); }
|
||||
QString verilogCode(int) { return QString(""); }
|
||||
QString netlist() { return QString(""); }
|
||||
};
|
||||
|
||||
#endif
|
@ -73,6 +73,7 @@
|
||||
#include "sp_ic.h"
|
||||
#include "sp_model.h"
|
||||
#include "sp_include.h"
|
||||
#include "sp_lib.h"
|
||||
#include "sp_func.h"
|
||||
#include "sp_spiceinit.h"
|
||||
#include "incl_script.h"
|
||||
|
Loading…
x
Reference in New Issue
Block a user