2015-05-27 15:09:50 +01:00
/***************************************************************************
2015-05-28 16:05:59 +01:00
DIODE_SPICE . cpp - description
2015-05-27 15:09:50 +01:00
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
begin : Fri Mar 9 2007
copyright : ( C ) 2007 by Gunther Kraut
email : gn . kraut @ t - online . de
spice4qucs code added Wed . 27 May 2015
copyright : ( C ) 2015 by Mike Brinson
email : mbrin72043 @ yahoo . co . uk
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/***************************************************************************
* *
* 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 "DIODE_SPICE.h"
# include "node.h"
# include "misc.h"
# include "extsimkernels/spicecompat.h"
DIODE_SPICE : : DIODE_SPICE ( )
{
2015-09-14 11:20:50 +01:00
Description = QObject : : tr ( " SPICE D: \n Multiple line ngspice or Xyce D model specifications allowed using \" + \" continuation lines. \n Leave continuation lines blank when NOT in use. " ) ;
2015-05-27 15:09:50 +01:00
2022-02-20 15:43:44 +01:00
Lines . append ( new qucs : : Line ( - 30 , 0 , - 20 , 0 , QPen ( Qt : : darkBlue , 3 ) ) ) ;
Lines . append ( new qucs : : Line ( - 20 , 0 , - 6 , 0 , QPen ( Qt : : darkRed , 3 ) ) ) ;
Lines . append ( new qucs : : Line ( 6 , 0 , 20 , 0 , QPen ( Qt : : darkRed , 3 ) ) ) ;
Lines . append ( new qucs : : Line ( 20 , 0 , 30 , 0 , QPen ( Qt : : darkBlue , 3 ) ) ) ;
2015-05-27 15:09:50 +01:00
2022-02-20 15:43:44 +01:00
Lines . append ( new qucs : : Line ( - 6 , - 9 , - 6 , 9 , QPen ( Qt : : darkRed , 3 ) ) ) ;
Lines . append ( new qucs : : Line ( 6 , - 9 , 6 , 9 , QPen ( Qt : : darkRed , 3 ) ) ) ;
Lines . append ( new qucs : : Line ( - 6 , - 9 , 6 , 0 , QPen ( Qt : : darkRed , 3 ) ) ) ;
Lines . append ( new qucs : : Line ( - 6 , 9 , 6 , 0 , QPen ( Qt : : darkRed , 3 ) ) ) ;
2015-05-27 15:09:50 +01:00
Ports . append ( new Port ( - 30 , 0 ) ) ;
Ports . append ( new Port ( 30 , 0 ) ) ;
x1 = - 30 ; y1 = - 11 ;
x2 = 30 ; y2 = 11 ;
tx = x1 + 4 ;
ty = y2 + 4 ;
Model = " DIODE_SPICE " ;
SpiceModel = " D " ;
Name = " D " ;
2015-09-15 11:25:33 +01:00
Props . append ( new Property ( " D " , " " , true , " Param list and \n .model spec. " ) ) ;
2015-09-14 11:20:50 +01:00
Props . append ( new Property ( " D_Line 2 " , " " , false , " + continuation line 1 " ) ) ;
Props . append ( new Property ( " D_Line 3 " , " " , false , " + continuation line 2 " ) ) ;
Props . append ( new Property ( " D_Line 4 " , " " , false , " + continuation line 3 " ) ) ;
Props . append ( new Property ( " D_Line 5 " , " " , false , " + continuation line 4 " ) ) ;
2015-05-27 15:09:50 +01:00
}
DIODE_SPICE : : ~ DIODE_SPICE ( )
{
}
Component * DIODE_SPICE : : newOne ( )
{
return new DIODE_SPICE ( ) ;
}
Element * DIODE_SPICE : : info ( QString & Name , char * & BitmapFile , bool getNewOne )
{
2015-09-13 17:00:12 +01:00
Name = QObject : : tr ( " D Diode " ) ;
2015-05-27 15:09:50 +01:00
BitmapFile = ( char * ) " DIODE_SPICE " ;
if ( getNewOne ) return new DIODE_SPICE ( ) ;
return 0 ;
}
QString DIODE_SPICE : : netlist ( )
{
return QString ( " " ) ;
}
2015-06-05 09:02:34 +03:00
QString DIODE_SPICE : : spice_netlist ( bool )
2015-05-27 15:09:50 +01:00
{
QString s = spicecompat : : check_refdes ( Name , SpiceModel ) ;
2023-01-15 01:17:09 +03:00
for ( Port * p1 : Ports ) {
2015-05-27 15:09:50 +01:00
QString nam = p1 - > Connection - > Name ;
if ( nam = = " gnd " ) nam = " 0 " ;
s + = " " + nam + " " ; // node names
}
QString D = Props . at ( 0 ) - > Value ;
QString D_Line_2 = Props . at ( 1 ) - > Value ;
QString D_Line_3 = Props . at ( 2 ) - > Value ;
QString D_Line_4 = Props . at ( 3 ) - > Value ;
QString D_Line_5 = Props . at ( 4 ) - > Value ;
2021-06-10 16:38:29 -05:00
if ( D . length ( ) > 0 ) s + = QString ( " %1 " ) . arg ( D ) ;
if ( D_Line_2 . length ( ) > 0 ) s + = QString ( " \n %1 " ) . arg ( D_Line_2 ) ;
if ( D_Line_3 . length ( ) > 0 ) s + = QString ( " \n %1 " ) . arg ( D_Line_3 ) ;
if ( D_Line_4 . length ( ) > 0 ) s + = QString ( " \n %1 " ) . arg ( D_Line_4 ) ;
if ( D_Line_5 . length ( ) > 0 ) s + = QString ( " \n %1 " ) . arg ( D_Line_5 ) ;
s + = " \n " ;
2015-05-27 15:09:50 +01:00
return s ;
}