mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Make DC sensitivity with XYCE inherit from SimulationComponent
This commit is contained in:
parent
1e7d905e9f
commit
2fba0f4968
@ -15,7 +15,6 @@
|
||||
* *
|
||||
***************************************************************************/
|
||||
#include "sp_sens_xyce.h"
|
||||
#include "main.h"
|
||||
#include "extsimkernels/spicecompat.h"
|
||||
|
||||
|
||||
@ -24,20 +23,7 @@ SpiceSENS_Xyce::SpiceSENS_Xyce()
|
||||
isSimulation = true;
|
||||
Description = QObject::tr("DC .SENS simulation with Xyce");
|
||||
Simulator = spicecompat::simXyce;
|
||||
|
||||
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_XYCE";
|
||||
Name = "SENS";
|
||||
SpiceModel = ".SENS";
|
||||
|
@ -18,10 +18,10 @@
|
||||
#ifndef SP_SENS_XYCE_H
|
||||
#define SP_SENS_XYCE_H
|
||||
|
||||
#include "components/component.h"
|
||||
#include "components/simulation.h"
|
||||
|
||||
|
||||
class SpiceSENS_Xyce : public Component {
|
||||
class SpiceSENS_Xyce : public qucs::component::SimulationComponent {
|
||||
public:
|
||||
SpiceSENS_Xyce();
|
||||
~SpiceSENS_Xyce();
|
||||
@ -30,6 +30,7 @@ public:
|
||||
|
||||
protected:
|
||||
QString spice_netlist(bool isXyce = false);
|
||||
Qt::GlobalColor color() const override { return Qt::darkGreen; }
|
||||
};
|
||||
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user