Make AC sensitivity simulation inherit from SimulationComponent

This commit is contained in:
Andrey Kalmykov 2024-06-23 11:50:18 +02:00
parent 9433966fee
commit 66ba88147c
2 changed files with 3 additions and 17 deletions

View File

@ -15,7 +15,6 @@
* *
***************************************************************************/
#include "sp_sens_ac.h"
#include "main.h"
#include "extsimkernels/spicecompat.h"
@ -24,20 +23,7 @@ SpiceSENS_AC::SpiceSENS_AC()
isSimulation = true;
Description = QObject::tr("AC sensitivity simulation");
Simulator = spicecompat::simNgspice | spicecompat::simSpiceOpus;
QString s = Description;
int a = s.indexOf(" ");
if (a != -1) s[a] = '\n';
Texts.append(new Text(0, 0, s.left(a), Qt::darkRed, QucsSettings.largeFontSize));
if (a != -1)
Texts.append(new Text(0, 0, s.mid(a+1), Qt::darkRed, QucsSettings.largeFontSize));
x1 = -10; y1 = -9;
x2 = x1+104; y2 = y1+59;
tx = 0;
ty = y2+1;
initSymbol(Description);
Model = ".SENS_AC";
Name = "SENS";
SpiceModel = ".SENS";

View File

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