2016-08-11 12:41:07 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2016 CERN
|
2021-03-18 19:31:02 +00:00
|
|
|
* Copyright (C) 2020-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
2021-01-26 15:23:37 +00:00
|
|
|
*
|
2016-08-11 12:41:07 +00:00
|
|
|
* @author Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
2016-08-11 12:41:43 +00:00
|
|
|
* as published by the Free Software Foundation; either version 3
|
2016-08-11 12:41:07 +00:00
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, you may find one here:
|
2016-08-11 12:41:43 +00:00
|
|
|
* https://www.gnu.org/licenses/gpl-3.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 3 license,
|
2016-08-11 12:41:07 +00:00
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SPICE_SIMULATOR_H
|
|
|
|
#define SPICE_SIMULATOR_H
|
2016-08-11 12:41:01 +00:00
|
|
|
|
2016-08-11 12:41:51 +00:00
|
|
|
#include "sim_types.h"
|
2021-03-19 13:04:28 +00:00
|
|
|
#include "spice_settings.h"
|
2022-03-05 23:49:25 +00:00
|
|
|
#include "simulator.h"
|
2016-08-11 12:41:51 +00:00
|
|
|
|
2022-02-19 16:58:48 +00:00
|
|
|
#include <mutex>
|
2016-08-11 12:41:01 +00:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2016-08-11 12:41:31 +00:00
|
|
|
#include <complex>
|
2018-03-21 16:21:13 +00:00
|
|
|
#include <memory>
|
2016-08-11 12:41:01 +00:00
|
|
|
|
2020-04-15 01:51:58 +00:00
|
|
|
#include <wx/string.h>
|
|
|
|
|
2023-07-14 09:21:58 +00:00
|
|
|
class SIMULATOR_REPORTER;
|
2016-08-11 12:41:07 +00:00
|
|
|
|
2016-08-11 12:41:31 +00:00
|
|
|
typedef std::complex<double> COMPLEX;
|
2016-08-11 12:41:01 +00:00
|
|
|
|
2021-03-18 19:31:02 +00:00
|
|
|
|
2022-03-05 23:49:25 +00:00
|
|
|
class SPICE_SIMULATOR : public SIMULATOR
|
2016-08-11 12:41:19 +00:00
|
|
|
{
|
2016-08-11 12:41:01 +00:00
|
|
|
public:
|
2021-03-18 19:31:02 +00:00
|
|
|
SPICE_SIMULATOR() :
|
2022-03-05 23:49:25 +00:00
|
|
|
SIMULATOR(),
|
2021-03-18 19:31:02 +00:00
|
|
|
m_reporter( nullptr ),
|
|
|
|
m_settings( nullptr )
|
|
|
|
{}
|
|
|
|
|
2016-08-11 12:41:07 +00:00
|
|
|
virtual ~SPICE_SIMULATOR() {}
|
2016-08-11 12:41:01 +00:00
|
|
|
|
2016-08-11 12:42:17 +00:00
|
|
|
/*
|
2021-03-18 19:31:02 +00:00
|
|
|
* Initialize the simulator using the optional \a aSettings.
|
|
|
|
*
|
|
|
|
* @param aSettings [in] are the simulator specific settings. Can be null if no settings need
|
|
|
|
* to be initialized.
|
|
|
|
*/
|
2023-07-14 09:21:58 +00:00
|
|
|
virtual void Init( const SPICE_SETTINGS* aSettings = nullptr ) = 0;
|
2021-03-18 19:31:02 +00:00
|
|
|
|
|
|
|
/**
|
2021-01-26 15:23:37 +00:00
|
|
|
* Load a netlist for the simulation.
|
|
|
|
*
|
2016-08-11 12:42:17 +00:00
|
|
|
* @return True in case of success, false otherwise.
|
|
|
|
*/
|
2016-08-11 12:41:07 +00:00
|
|
|
virtual bool LoadNetlist( const std::string& aNetlist ) = 0;
|
2016-08-11 12:42:17 +00:00
|
|
|
|
|
|
|
/**
|
2021-01-26 15:23:37 +00:00
|
|
|
* Execute a Spice command as if it was typed into console.
|
|
|
|
*
|
2016-08-11 12:42:17 +00:00
|
|
|
* @param aCmd is the command to be issued.
|
|
|
|
*/
|
2016-08-11 12:41:07 +00:00
|
|
|
virtual bool Command( const std::string& aCmd ) = 0;
|
|
|
|
|
2021-01-26 15:23:37 +00:00
|
|
|
///< Return X axis name for a given simulation type
|
2023-02-25 22:42:52 +00:00
|
|
|
virtual wxString GetXAxis( SIM_TYPE aType ) const = 0;
|
2016-08-11 12:41:51 +00:00
|
|
|
|
2023-07-14 09:21:58 +00:00
|
|
|
///< Set a #SIMULATOR_REPORTER object to receive the simulation log.
|
|
|
|
virtual void SetReporter( SIMULATOR_REPORTER* aReporter )
|
2016-08-11 12:41:01 +00:00
|
|
|
{
|
2016-08-11 12:41:19 +00:00
|
|
|
m_reporter = aReporter;
|
2016-08-11 12:41:01 +00:00
|
|
|
}
|
|
|
|
|
2020-04-15 01:51:58 +00:00
|
|
|
/**
|
2023-07-05 10:53:19 +00:00
|
|
|
* @return the current simulation plot name (tran1, tran2, etc.)
|
|
|
|
*/
|
|
|
|
virtual wxString CurrentPlotName() const = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return list of simulation vector (signal) names.
|
2020-04-15 01:51:58 +00:00
|
|
|
*/
|
2023-07-04 10:04:20 +00:00
|
|
|
virtual std::vector<std::string> AllVectors() const = 0;
|
2020-04-15 01:51:58 +00:00
|
|
|
|
2016-08-11 12:42:17 +00:00
|
|
|
/**
|
2021-01-26 15:23:37 +00:00
|
|
|
* Return a requested vector with complex values. If the vector is real, then
|
2016-08-11 12:42:17 +00:00
|
|
|
* the imaginary part is set to 0 in all values.
|
2021-01-26 15:23:37 +00:00
|
|
|
*
|
2016-08-11 12:42:17 +00:00
|
|
|
* @param aName is the vector named in Spice convention (e.g. V(3), I(R1)).
|
2017-06-18 07:04:42 +00:00
|
|
|
* @param aMaxLen is max count of returned values.
|
|
|
|
* if -1 (default) all available values are returned.
|
2016-08-11 12:42:17 +00:00
|
|
|
* @return Requested vector. It might be empty if there is no vector with requested name.
|
|
|
|
*/
|
2023-07-05 10:53:19 +00:00
|
|
|
virtual std::vector<COMPLEX> GetComplexVector( const std::string& aName, int aMaxLen = -1 ) = 0;
|
2016-08-11 12:42:17 +00:00
|
|
|
|
|
|
|
/**
|
2021-01-26 15:23:37 +00:00
|
|
|
* Return a requested vector with real values. If the vector is complex, then
|
2016-08-11 12:42:17 +00:00
|
|
|
* the real part is returned.
|
2021-01-26 15:23:37 +00:00
|
|
|
*
|
2016-08-11 12:42:17 +00:00
|
|
|
* @param aName is the vector named in Spice convention (e.g. V(3), I(R1)).
|
2017-06-18 07:04:42 +00:00
|
|
|
* @param aMaxLen is max count of returned values.
|
|
|
|
* if -1 (default) all available values are returned.
|
2016-08-11 12:42:17 +00:00
|
|
|
* @return Requested vector. It might be empty if there is no vector with requested name.
|
|
|
|
*/
|
2023-07-05 10:53:19 +00:00
|
|
|
virtual std::vector<double> GetRealVector( const std::string& aName, int aMaxLen = -1 ) = 0;
|
2016-08-11 12:42:17 +00:00
|
|
|
|
|
|
|
/**
|
2021-01-26 15:23:37 +00:00
|
|
|
* Return a requested vector with imaginary values. If the vector is complex, then
|
2016-08-11 12:42:17 +00:00
|
|
|
* the imaginary part is returned. If the vector is reql, then only zeroes are returned.
|
2021-01-26 15:23:37 +00:00
|
|
|
*
|
2016-08-11 12:42:17 +00:00
|
|
|
* @param aName is the vector named in Spice convention (e.g. V(3), I(R1)).
|
2017-06-18 07:04:42 +00:00
|
|
|
* @param aMaxLen is max count of returned values.
|
|
|
|
* if -1 (default) all available values are returned.
|
2016-08-11 12:42:17 +00:00
|
|
|
* @return Requested vector. It might be empty if there is no vector with requested name.
|
|
|
|
*/
|
2023-07-05 10:53:19 +00:00
|
|
|
virtual std::vector<double> GetImaginaryVector( const std::string& aName, int aMaxLen = -1 ) = 0;
|
2016-08-11 12:42:17 +00:00
|
|
|
|
|
|
|
/**
|
2021-01-26 15:23:37 +00:00
|
|
|
* Return a requested vector with magnitude values.
|
|
|
|
*
|
2016-08-11 12:42:17 +00:00
|
|
|
* @param aName is the vector named in Spice convention (e.g. V(3), I(R1)).
|
2017-06-18 07:04:42 +00:00
|
|
|
* @param aMaxLen is max count of returned values.
|
|
|
|
* if -1 (default) all available values are returned.
|
2016-08-11 12:42:17 +00:00
|
|
|
* @return Requested vector. It might be empty if there is no vector with requested name.
|
|
|
|
*/
|
2023-07-05 10:53:19 +00:00
|
|
|
virtual std::vector<double> GetGainVector( const std::string& aName, int aMaxLen = -1 ) = 0;
|
2016-08-11 12:41:31 +00:00
|
|
|
|
2016-08-11 12:42:17 +00:00
|
|
|
/**
|
2021-01-26 15:23:37 +00:00
|
|
|
* Return a requested vector with phase values.
|
|
|
|
*
|
2016-08-11 12:42:17 +00:00
|
|
|
* @param aName is the vector named in Spice convention (e.g. V(3), I(R1)).
|
2017-06-18 07:04:42 +00:00
|
|
|
* @param aMaxLen is max count of returned values.
|
|
|
|
* if -1 (default) all available values are returned.
|
2016-08-11 12:42:17 +00:00
|
|
|
* @return Requested vector. It might be empty if there is no vector with requested name.
|
|
|
|
*/
|
2023-07-05 10:53:19 +00:00
|
|
|
virtual std::vector<double> GetPhaseVector( const std::string& aName, int aMaxLen = -1 ) = 0;
|
2016-08-11 12:41:01 +00:00
|
|
|
|
2018-03-03 16:36:26 +00:00
|
|
|
/**
|
2021-01-26 15:23:37 +00:00
|
|
|
* Return current SPICE netlist used by the simulator.
|
|
|
|
*
|
2018-03-03 16:36:26 +00:00
|
|
|
* @return The netlist.
|
|
|
|
*/
|
|
|
|
virtual const std::string GetNetlist() const = 0;
|
|
|
|
|
2021-03-18 19:31:02 +00:00
|
|
|
/**
|
|
|
|
* @return a list of simulator setting command strings.
|
|
|
|
*/
|
|
|
|
virtual std::vector<std::string> GetSettingCommands() const = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the simulator configuration settings.
|
|
|
|
*
|
|
|
|
* @return the simulator specific settings.
|
|
|
|
*/
|
2023-07-14 09:21:58 +00:00
|
|
|
std::shared_ptr<SPICE_SETTINGS>& Settings() { return m_settings; }
|
2021-03-18 19:31:02 +00:00
|
|
|
|
2023-07-14 09:21:58 +00:00
|
|
|
const std::shared_ptr<SPICE_SETTINGS>& Settings() const { return m_settings; }
|
2021-03-18 19:31:02 +00:00
|
|
|
|
2020-04-15 01:51:58 +00:00
|
|
|
/**
|
2021-01-26 15:23:37 +00:00
|
|
|
* Return a string with simulation name based on enum.
|
|
|
|
*
|
2020-04-15 01:51:58 +00:00
|
|
|
* @param aType is the enum describing simulation type
|
|
|
|
* @param aShortName if true - return is in format "TRAN", "OP".
|
|
|
|
* if false - return is in format "Transient", "Operating Point".
|
|
|
|
* @return String with requested name as described above.
|
|
|
|
*/
|
|
|
|
static wxString TypeToName( SIM_TYPE aType, bool aShortName );
|
|
|
|
|
2016-08-11 12:41:01 +00:00
|
|
|
protected:
|
2021-01-26 15:23:37 +00:00
|
|
|
///< Reporter object to receive simulation log.
|
2023-07-14 09:21:58 +00:00
|
|
|
SIMULATOR_REPORTER* m_reporter;
|
2021-03-18 19:31:02 +00:00
|
|
|
|
|
|
|
///< We don't own this. We are just borrowing it from the #SCHEMATIC_SETTINGS.
|
2023-07-14 09:21:58 +00:00
|
|
|
std::shared_ptr<SPICE_SETTINGS> m_settings;
|
2016-08-11 12:41:01 +00:00
|
|
|
};
|
|
|
|
|
2016-08-11 12:41:07 +00:00
|
|
|
#endif /* SPICE_SIMULATOR_H */
|