Make externally driven transient sim. inherit from SimulationComponent

This commit is contained in:
Andrey Kalmykov 2024-06-23 11:56:27 +02:00
parent 267fa51fd4
commit 1813ec9b64
2 changed files with 3 additions and 17 deletions

View File

@ -15,27 +15,13 @@
* *
***************************************************************************/
#include "etr_sim.h"
#include "main.h"
ETR_Sim::ETR_Sim()
{
Description = QObject::tr("externally driven transient simulation");
Simulator = spicecompat::simQucsator;
QString s = Description;
int a = 17;
s[a] = '\n';
Texts.append(new Text(0, 0, s.left(a), Qt::darkBlue, QucsSettings.largeFontSize));
if (a != -1)
Texts.append(new Text(0, 0, s.mid(a+1), Qt::darkBlue, QucsSettings.largeFontSize));
x1 = -10; y1 = -9;
x2 = x1+130; y2 = y1+59;
tx = 0;
ty = y2+1;
initSymbol(Description);
Model = ".ETR";
Name = "ETR";

View File

@ -18,10 +18,10 @@
#ifndef ETR_SIM_H
#define ETR_SIM_H
#include "component.h"
#include "simulation.h"
class ETR_Sim : public Component {
class ETR_Sim : public qucs::component::SimulationComponent {
public:
ETR_Sim();
~ETR_Sim();