mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
82 lines
3.3 KiB
C++
82 lines
3.3 KiB
C++
/***************************************************************************
|
|
etr_sim.cpp
|
|
------------
|
|
begin : Wed Dec 04 2013
|
|
copyright : (C) 2013 by Richard Crozier
|
|
email : richard.crozier@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 "etr_sim.h"
|
|
|
|
|
|
ETR_Sim::ETR_Sim()
|
|
{
|
|
Description = QObject::tr("externally driven transient simulation");
|
|
Simulator = spicecompat::simQucsator;
|
|
initSymbol(Description);
|
|
Model = ".ETR";
|
|
Name = "ETR";
|
|
|
|
Props.append(new Property("IntegrationMethod", "Trapezoidal", false,
|
|
QObject::tr("integration method")+
|
|
" [Euler, Trapezoidal, Gear, AdamsMoulton]"));
|
|
Props.append(new Property("Order", "2", false,
|
|
QObject::tr("order of integration method")+" (1-6)"));
|
|
Props.append(new Property("InitialStep", "1 ns", false,
|
|
QObject::tr("initial step size in seconds")));
|
|
Props.append(new Property("MinStep", "1e-16", false,
|
|
QObject::tr("minimum step size in seconds")));
|
|
Props.append(new Property("MaxIter", "150", false,
|
|
QObject::tr("maximum number of iterations until error")));
|
|
Props.append(new Property("reltol", "0.001", false,
|
|
QObject::tr("relative tolerance for convergence")));
|
|
Props.append(new Property("abstol", "1 pA", false,
|
|
QObject::tr("absolute tolerance for currents")));
|
|
Props.append(new Property("vntol", "1 uV", false,
|
|
QObject::tr("absolute tolerance for voltages")));
|
|
Props.append(new Property("Temp", "26.85", false,
|
|
QObject::tr("simulation temperature in degree Celsius")));
|
|
Props.append(new Property("LTEreltol", "1e-3", false,
|
|
QObject::tr("relative tolerance of local truncation error")));
|
|
Props.append(new Property("LTEabstol", "1e-6", false,
|
|
QObject::tr("absolute tolerance of local truncation error")));
|
|
Props.append(new Property("LTEfactor", "1", false,
|
|
QObject::tr("overestimation of local truncation error")));
|
|
Props.append(new Property("Solver", "CroutLU", false,
|
|
QObject::tr("method for solving the circuit matrix")+
|
|
" [CroutLU, DoolittleLU, HouseholderQR, HouseholderLQ, GolubSVD]"));
|
|
Props.append(new Property("relaxTSR", "no", false,
|
|
QObject::tr("relax time step raster")+" [no, yes]"));
|
|
Props.append(new Property("initialDC", "yes", false,
|
|
QObject::tr("perform an initial DC analysis")+" [yes, no]"));
|
|
Props.append(new Property("MaxStep", "0", false,
|
|
QObject::tr("maximum step size in seconds")));
|
|
}
|
|
|
|
ETR_Sim::~ETR_Sim()
|
|
{
|
|
}
|
|
|
|
Component* ETR_Sim::newOne()
|
|
{
|
|
return new ETR_Sim();
|
|
}
|
|
|
|
Element* ETR_Sim::info(QString& Name, char* &BitmapFile, bool getNewOne)
|
|
{
|
|
Name = QObject::tr("External transient simulation");
|
|
BitmapFile = (char *) "etran";
|
|
|
|
if(getNewOne) return new ETR_Sim();
|
|
return 0;
|
|
}
|
|
|