/*************************************************************************** sparamfile.cpp ---------------- 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 "sparamfile.h" #include "main.h" #include "schematic.h" #include "misc.h" #include SParamFile::SParamFile() { Description = QObject::tr("S parameter file"); Simulator = spicecompat::simAll; Model = "SPfile"; Name = "X"; SpiceModel = "X"; // must be the first property !!! Props.append(new Property("File", "test.s1p", true, QObject::tr("name of the s parameter file"))); Props.append(new Property("Data", "rectangular", false, QObject::tr("data type")+" [rectangular, polar]")); Props.append(new Property("Interpolator", "linear", false, QObject::tr("interpolation type")+" [linear, cubic]")); Props.append(new Property("duringDC", "open", false, QObject::tr("representation during DC analysis")+ " [open, short, shortall, unspecified]")); // must be the last property !!! Props.append(new Property("Ports", "1", false, QObject::tr("number of ports"))); createSymbol(); } // ------------------------------------------------------- Component* SParamFile::newOne() { SParamFile* p = new SParamFile(); p->Props.getLast()->Value = Props.getLast()->Value; p->recreate(0); return p; } // ------------------------------------------------------- Element* SParamFile::info(QString& Name, char* &BitmapFile, bool getNewOne) { Name = QObject::tr("n-port S parameter file"); BitmapFile = (char *) "spfile3"; if(getNewOne) { SParamFile* p = new SParamFile(); p->Props.getFirst()->Value = "test.s3p"; p->Props.getLast()->Value = "3"; p->recreate(0); return p; } return 0; } // ------------------------------------------------------- Element* SParamFile::info1(QString& Name, char* &BitmapFile, bool getNewOne) { Name = QObject::tr("1-port S parameter file"); BitmapFile = (char *) "spfile1"; if(getNewOne) return new SParamFile(); return 0; } // ------------------------------------------------------- Element* SParamFile::info2(QString& Name, char* &BitmapFile, bool getNewOne) { Name = QObject::tr("2-port S parameter file"); BitmapFile = (char *) "spfile2"; if(getNewOne) { SParamFile* p = new SParamFile(); p->Props.getFirst()->Value = "test.s2p"; p->Props.getLast()->Value = "2"; p->recreate(0); return p; } return 0; } // ------------------------------------------------------- QString SParamFile::getSubcircuitFile() { // construct full filename QString FileName = Props.getFirst()->Value; return misc::properAbsFileName(FileName); } // ------------------------------------------------------- QString SParamFile::netlist() { QString s = Model+":"+Name; // output all node names for (Port *p1 : Ports) s += " "+p1->Connection->Name; // node names // output all properties Property *p2 = Props.first(); s += " "+p2->Name+"=\"{"+getSubcircuitFile()+"}\""; // data type p2 = Props.next(); s += " "+p2->Name+"=\""+p2->Value+"\""; // interpolator type p2 = Props.next(); s += " "+p2->Name+"=\""+p2->Value+"\""; // DC property p2 = Props.next(); s += " "+p2->Name+"=\""+p2->Value+"\"\n"; return s; } // ------------------------------------------------------- void SParamFile::createSymbol() { QFont Font(QucsSettings.font); // default application font // symbol text is smaller (10 pt default) Font.setPointSize(10 ); // get the small font size; use the screen-compatible metric QFontMetrics smallmetrics(Font, 0); int fHeight = smallmetrics.lineSpacing(); QString stmp; int w, PortDistance = 60; int Num = Props.getLast()->Value.toInt(); // adjust number of ports if(Num < 1) Num = 1; else if(Num > 8) { PortDistance = 20; if(Num > 40) Num = 40; } Props.getLast()->Value = QString::number(Num); // draw symbol outline int h = (PortDistance/2)*((Num-1)/2) + 15; Lines.append(new qucs::Line(-15, -h, 15, -h,QPen(Qt::darkBlue,2))); Lines.append(new qucs::Line( 15, -h, 15, h,QPen(Qt::darkBlue,2))); Lines.append(new qucs::Line(-15, h, 15, h,QPen(Qt::darkBlue,2))); Lines.append(new qucs::Line(-15, -h,-15, h,QPen(Qt::darkBlue,2))); stmp = QObject::tr("file"); w = smallmetrics.boundingRect(stmp).width(); // compute text size to center it Texts.append(new Text(-w/2, -fHeight/2, stmp)); int i=0, y = 15-h; while(iValue.toInt(); s = "YLIN YLIN_" + Name; QString s_mod = "YLIN_" + Name + "_model"; for(int i = 0; i < Np; i++) { QString p_in = spicecompat::normalize_node_name(Ports.at(i)->Connection->Name); QString p_com = spicecompat::normalize_node_name(Ports.at(Np)->Connection->Name); s += QString(" %1 %2").arg(p_in).arg(p_com); } s += QString(" %1\n").arg(s_mod); s += QString(".MODEL %1 LIN TSTONEFILE=%2\n").arg(s_mod) .arg(getSubcircuitFile()); } else { s += SpiceModel+Name; for (Port *p1 : Ports) { s += " "+ spicecompat::normalize_node_name(p1->Connection->Name); // node names } s += " Sub_" + Model + "_" + Name + "\n"; } return s; }