mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
add csparam component
This commit is contained in:
parent
526eeedaf5
commit
86073b5be1
1
qucs/bitmaps/svg/sp_csparam.svg
Normal file
1
qucs/bitmaps/svg/sp_csparam.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="128" height="128"><path d="M10 18h105v80H10z" style="fill:none;fill-opacity:1;stroke:#00f;stroke-width:3;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke fill markers"/><path d="m10 98 10 15h105m-10-15 10 15m0 0V33l-10-15" style="fill:none;stroke:#00f;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"/><text xml:space="preserve" x="15.346" y="73.439" style="font-style:normal;font-weight:400;font-size:32px;line-height:1.25;font-family:sans-serif;letter-spacing:0;word-spacing:0;fill:#000;fill-opacity:1;stroke:none"><tspan x="15.346" y="73.439" style="font-size:26px">.CSPAR</tspan></text></svg>
|
After Width: | Height: | Size: 804 B |
@ -348,7 +348,7 @@ ComponentDialog::ComponentDialog(Component* schematicComponent, Schematic* schem
|
||||
componentNameWidget->setCheck(component->showName);
|
||||
|
||||
// Try to work out what kind of component this is.
|
||||
isEquation = QStringList({"Eqn", "NutmegEq", "SpiceIC", "SpicePar", "SpGlobPar"}).contains(component->Model);
|
||||
isEquation = QStringList({"Eqn", "NutmegEq", "SpiceIC", "SpicePar", "SpiceCSPar", "SpGlobPar"}).contains(component->Model);
|
||||
hasSweep = QStringList({".AC", ".DISTO", ".NOISE", ".SW", ".SP", ".TR"}).contains(component->Model);
|
||||
hasFile = component->Props.count() > 0 && component->Props.at(0)->Name == "File";
|
||||
|
||||
@ -358,8 +358,8 @@ ComponentDialog::ComponentDialog(Component* schematicComponent, Schematic* schem
|
||||
// for a given simulation type. Then only create the valid widgets fo
|
||||
// sweepParams[".AC"] = QStringList({"Type", "Start", "Stop", "Points"});
|
||||
|
||||
paramsHiddenBySim["Export"] = QStringList{"NutmegEq", "SpiceIC", "SpicePar", "SpGlobPar"};
|
||||
paramsHiddenBySim["Sim"] = QStringList{".AC", ".DISTO", ".SP", ".NOISE", ".TR", "Eqn", "SpiceIC", "SpicePar", "SpGlobPar"};
|
||||
paramsHiddenBySim["Export"] = QStringList{"NutmegEq", "SpiceIC", "SpicePar", "SpiceCSPar", "SpGlobPar"};
|
||||
paramsHiddenBySim["Sim"] = QStringList{".AC", ".DISTO", ".SP", ".NOISE", ".TR", "Eqn", "SpiceIC", "SpicePar", "SpiceCSPar", "SpGlobPar"};
|
||||
paramsHiddenBySim["Param"] = QStringList{".AC", ".DISTO", ".SP", ".NOISE", ".TR"};
|
||||
|
||||
// Setup the dialog according to the component kind.
|
||||
|
@ -557,6 +557,7 @@ void Module::registerModules (void) {
|
||||
// equations
|
||||
REGISTER_EQUATION_1 (NutmegEquation);
|
||||
REGISTER_EQUATION_1 (SpiceParam);
|
||||
REGISTER_EQUATION_1 (SpiceCSParam);
|
||||
REGISTER_EQUATION_1 (SpiceGlobalParam);
|
||||
REGISTER_EQUATION_1 (Equation);
|
||||
|
||||
@ -580,6 +581,7 @@ void Module::registerModules (void) {
|
||||
|
||||
// specific sections of spice netlists
|
||||
REGISTER_SPICE_SEC_1 (SpiceParam);
|
||||
REGISTER_SPICE_SEC_1 (SpiceCSParam);
|
||||
REGISTER_SPICE_SEC_1 (SpiceGlobalParam);
|
||||
REGISTER_SPICE_SEC_1 (SpiceOptions);
|
||||
REGISTER_SPICE_SEC_1 (SpiceIC);
|
||||
|
@ -93,6 +93,7 @@
|
||||
<file>bitmaps/svg/sp_nutmeg.svg</file>
|
||||
<file>bitmaps/svg/sp_options.svg</file>
|
||||
<file>bitmaps/svg/sp_param.svg</file>
|
||||
<file>bitmaps/svg/sp_csparam.svg</file>
|
||||
<file>bitmaps/svg/incl_script.svg</file>
|
||||
<file>bitmaps/svg/sp_spiceinit.svg</file>
|
||||
<file>bitmaps/svg/spicefile.svg</file>
|
||||
|
@ -10,6 +10,7 @@ src_eqndef.cpp
|
||||
#SPICE sections
|
||||
|
||||
sp_parameter.cpp
|
||||
sp_csparameter.cpp
|
||||
sp_globalpar.cpp
|
||||
sp_options.cpp
|
||||
sp_nutmeg.cpp
|
||||
@ -104,6 +105,7 @@ src_eqndef.h
|
||||
#SPICE sections
|
||||
|
||||
sp_parameter.h
|
||||
sp_csparameter.h
|
||||
sp_globalpar.h
|
||||
sp_options.h
|
||||
sp_nutmeg.h
|
||||
|
83
qucs/spicecomponents/sp_csparameter.cpp
Normal file
83
qucs/spicecomponents/sp_csparameter.cpp
Normal file
@ -0,0 +1,83 @@
|
||||
/***************************************************************************
|
||||
equation.cpp - description
|
||||
-------------------
|
||||
begin : Sat Aug 23 2003
|
||||
copyright : (C) 2003 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 "sp_csparameter.h"
|
||||
#include "main.h"
|
||||
|
||||
#include <QFontInfo>
|
||||
#include <QFontMetrics>
|
||||
|
||||
SpiceCSParam::SpiceCSParam()
|
||||
{
|
||||
isEquation = true;
|
||||
Type = isComponent; // Analogue and digital component.
|
||||
Description = QObject::tr(".CSPARAM section");
|
||||
Simulator = spicecompat::simSpice;
|
||||
|
||||
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(".CSPARAM"));
|
||||
int xb = r.width() >> 1;
|
||||
int yb = r.height() >> 1;
|
||||
|
||||
Lines.append(new qucs::Line(-xb, -yb, -xb, yb,QPen(Qt::blue,2)));
|
||||
Lines.append(new qucs::Line(-xb, yb, xb+3,yb,QPen(Qt::blue,2)));
|
||||
Texts.append(new Text(-xb+4, -yb-3, QObject::tr(".CSPARAM"),
|
||||
QColor(0,0,0), QFontInfo(f).pixelSize()));
|
||||
|
||||
x1 = -xb-3; y1 = -yb-5;
|
||||
x2 = xb+9; y2 = yb+3;
|
||||
|
||||
tx = x1+4;
|
||||
ty = y2+4;
|
||||
Model = "SpiceCSPar";
|
||||
Name = "SpiceCSPar";
|
||||
|
||||
Props.append(new Property("y", "1", true));
|
||||
}
|
||||
|
||||
SpiceCSParam::~SpiceCSParam()
|
||||
{
|
||||
}
|
||||
|
||||
Component* SpiceCSParam::newOne()
|
||||
{
|
||||
return new SpiceCSParam();
|
||||
}
|
||||
|
||||
Element* SpiceCSParam::info(QString& Name, char* &BitmapFile, bool getNewOne)
|
||||
{
|
||||
Name = QObject::tr(".CSPARAM Section");
|
||||
BitmapFile = (char *) "sp_csparam";
|
||||
|
||||
if(getNewOne) return new SpiceCSParam();
|
||||
return 0;
|
||||
}
|
||||
|
||||
QString SpiceCSParam::getExpression(bool)
|
||||
{
|
||||
if (isActive != COMP_IS_ACTIVE) return QString();
|
||||
|
||||
QString s;
|
||||
s.clear();
|
||||
for (Property *pp : Props) {
|
||||
s += QStringLiteral(".CSPARAM %1 = %2\n").arg(pp->Name).arg(pp->Value);
|
||||
}
|
||||
return s;
|
||||
}
|
||||
|
38
qucs/spicecomponents/sp_csparameter.h
Normal file
38
qucs/spicecomponents/sp_csparameter.h
Normal file
@ -0,0 +1,38 @@
|
||||
/***************************************************************************
|
||||
equation.h - description
|
||||
-------------------
|
||||
begin : Sat Aug 23 2003
|
||||
copyright : (C) 2003 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. *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
#ifndef SPCSPARAMETER_H
|
||||
#define SPCSPARAMETER_H
|
||||
|
||||
#include "components/component.h"
|
||||
|
||||
|
||||
class SpiceCSParam : public Component {
|
||||
|
||||
public:
|
||||
SpiceCSParam();
|
||||
~SpiceCSParam();
|
||||
Component* newOne();
|
||||
static Element* info(QString&, char* &, bool getNewOne=false);
|
||||
static void splitEqn(QString &eqn, QStringList &tokens);
|
||||
QString getExpression(bool isXyce = false);
|
||||
|
||||
protected:
|
||||
QString netlist() { return QString(); }
|
||||
};
|
||||
|
||||
#endif
|
@ -64,6 +64,7 @@
|
||||
#include "XAPWL.h"
|
||||
|
||||
// Spice netlist sections
|
||||
#include "sp_csparameter.h"
|
||||
#include "sp_parameter.h"
|
||||
#include "sp_globalpar.h"
|
||||
#include "sp_options.h"
|
||||
|
Loading…
x
Reference in New Issue
Block a user