2017-09-14 16:54:01 +03:00
|
|
|
/***************************************************************************
|
2017-09-18 14:42:08 +03:00
|
|
|
sp_sens_ac.h
|
2017-09-14 16:54:01 +03:00
|
|
|
----------
|
2017-09-18 14:42:08 +03:00
|
|
|
begin : Mon Sep 18 2017
|
|
|
|
copyright : (C) 2017 by Vadim Kuznetsov
|
2017-09-14 16:54:01 +03:00
|
|
|
email : ra3xdh@gmail.com
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
* *
|
|
|
|
* 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. *
|
|
|
|
* *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef SP_SENS_AC_H
|
|
|
|
#define SP_SENS_AC_H
|
|
|
|
|
2024-06-23 11:50:18 +02:00
|
|
|
#include "components/simulation.h"
|
2017-09-14 16:54:01 +03:00
|
|
|
|
|
|
|
|
2024-06-23 11:50:18 +02:00
|
|
|
class SpiceSENS_AC : public qucs::component::SimulationComponent {
|
2017-09-14 16:54:01 +03:00
|
|
|
public:
|
|
|
|
SpiceSENS_AC();
|
|
|
|
~SpiceSENS_AC();
|
|
|
|
Component* newOne();
|
|
|
|
static Element* info(QString&, char* &, bool getNewOne=false);
|
|
|
|
|
|
|
|
protected:
|
2024-12-30 16:48:05 +01:00
|
|
|
QString spice_netlist(spicecompat::SpiceDialect dialect = spicecompat::SPICEDefault);
|
2017-09-14 16:54:01 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|