kicad/eeschema/sim/simulator_frame.h

224 lines
6.6 KiB
C
Raw Normal View History

2016-08-11 12:41:07 +00:00
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
2023-01-01 23:37:24 +00:00
* Copyright (C) 2016-2023 CERN
* Copyright (C) 2017-2023 KiCad Developers, see AUTHORS.txt for contributors.
*
2016-08-11 12:41:07 +00:00
* @author Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
* @author Maciej Suminski <maciej.suminski@cern.ch>
*
* 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 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:
* 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 SIMULATOR_FRAME_H
#define SIMULATOR_FRAME_H
2016-08-11 12:41:01 +00:00
#include <sim/simulator_frame_ui_base.h>
2023-01-01 23:37:24 +00:00
#include <sim/sim_types.h>
#include <kiway_player.h>
#include <dialogs/dialog_sim_command.h>
#include <wx/event.h>
2016-08-11 12:41:45 +00:00
#include <list>
#include <memory>
2016-08-11 12:41:45 +00:00
#include <map>
2016-08-11 12:41:01 +00:00
class SCH_EDIT_FRAME;
2021-06-10 14:10:55 +00:00
class SCH_SYMBOL;
class SIMULATOR_FRAME_UI;
class SIM_THREAD_REPORTER;
class ACTION_TOOLBAR;
class SPICE_SIMULATOR;
2016-08-11 12:41:01 +00:00
2023-01-01 23:37:24 +00:00
/**
*
* The SIMULATOR_FRAME holds the main user-interface for running simulations.
*
* It contains a workbook with multiple tabs, each tab holding a SIM_PLOT_TAB, a specific
* simulation command (.TRAN, .AC, etc.), and simulation settings (save all currents, etc.).
*
* Each plot can have multiple TRACEs. While internally each TRACE can have multiple cursors,
* the GUI supports only two cursors (and a differential cursor) for each plot.
*
* TRACEs are identified by a signal (V(OUT), I(R2), etc.) and a type (SPT_VOLTAGE, SPT_AC_PHASE,
* etc.).
*
* The simulator outputs simple signals in a vector of the same name. Complex signals (such as
* V(OUT) / V(IN)) are stored in vectors of the format "user%d".
*
*/
class SIMULATOR_FRAME : public KIWAY_PLAYER
2016-08-11 12:41:01 +00:00
{
2016-08-11 12:42:17 +00:00
public:
SIMULATOR_FRAME( KIWAY* aKiway, wxWindow* aParent );
~SIMULATOR_FRAME();
2016-08-11 12:42:17 +00:00
/**
* Check and load the current netlist into the simulator.
* @return true if document is fully annotated and netlist was loaded successfully.
*/
bool LoadSimulator( const wxString& aSimCommand, unsigned aSimOptions );
void StartSimulation();
2016-08-11 12:42:17 +00:00
/**
* Create a new plot tab for a given simulation type.
*
* @param aSimCommand is requested simulation command.
2016-08-11 12:42:17 +00:00
*/
SIM_TAB* NewSimTab( const wxString& aSimCommand );
2016-08-11 12:42:17 +00:00
2023-01-01 23:37:24 +00:00
/**
* Shows a dialog for editing the current tab's simulation command, or creating a new tab
* with a different simulation command type.
*/
bool EditAnalysis();
2023-01-01 23:37:24 +00:00
/**
* @return the list of vectors (signals) in the current simulation results.
*/
const std::vector<wxString> SimPlotVectors();
/**
* @return the list of schematic signals + any user defined signals.
*/
const std::vector<wxString> Signals();
const std::map<int, wxString>& UserDefinedSignals();
2023-02-21 09:06:02 +00:00
void SetUserDefinedSignals( const std::map<int, wxString>& aSignals );
2023-02-21 09:06:02 +00:00
2016-08-11 12:42:17 +00:00
/**
* Add a voltage trace for a given net to the current plot.
*
2016-08-11 12:42:17 +00:00
* @param aNetName is the net name for which a voltage plot should be created.
*/
void AddVoltageTrace( const wxString& aNetName );
2016-08-11 12:42:17 +00:00
/**
* Add a current trace for a given device to the current plot.
*
2016-08-11 12:42:17 +00:00
* @param aDeviceName is the device name (e.g. R1, C1).
* @param aParam is the current type (e.g. I, Ic, Id).
*/
void AddCurrentTrace( const wxString& aDeviceName );
2016-08-11 12:42:17 +00:00
/**
2021-06-10 14:10:55 +00:00
* Add a tuner for a symbol.
2016-08-11 12:42:17 +00:00
*/
void AddTuner( const SCH_SHEET_PATH& aSheetPath, SCH_SYMBOL* aSymbol );
2016-08-11 12:42:17 +00:00
/**
* Return the current tab (or NULL if there is none).
2016-08-11 12:42:17 +00:00
*/
SIM_TAB* GetCurrentSimTab() const;
2016-08-11 12:42:17 +00:00
/**
* Toggle dark-mode of the plot tabs.
2023-01-01 23:37:24 +00:00
*/
void ToggleDarkModePlots();
void ShowChangedLanguage() override;
2023-01-01 23:37:24 +00:00
void ReCreateHToolbar();
/**
* Load plot, signal, cursor, measurement, etc. settings from a file.
*/
2023-01-01 23:37:24 +00:00
bool LoadWorkbook( const wxString& aPath );
/**
* Save plot, signal, cursor, measurement, etc. settings to a file.
2023-01-01 23:37:24 +00:00
*/
bool SaveWorkbook( const wxString& aPath );
void LoadSettings( APP_SETTINGS_BASE* aCfg ) override;
void SaveSettings( APP_SETTINGS_BASE* aCfg ) override;
WINDOW_SETTINGS* GetWindowSettings( APP_SETTINGS_BASE* aCfg ) override;
2023-01-01 23:37:24 +00:00
SCH_EDIT_FRAME* GetSchematicFrame() const { return m_schematicFrame; }
std::shared_ptr<SPICE_CIRCUIT_MODEL> GetCircuitModel() const { return m_circuitModel; }
2023-01-01 23:37:24 +00:00
std::shared_ptr<SPICE_SIMULATOR> GetSimulator() const { return m_simulator; }
wxString GetCurrentSimCommand() const;
SIM_TYPE GetCurrentSimType() const;
int GetCurrentOptions() const;
bool SimFinished() const { return m_simFinished; }
2023-01-01 23:37:24 +00:00
// Simulator doesn't host a canvas
wxWindow* GetToolCanvas() const override { return nullptr; }
/**
* Set the main window title bar text.
*/
void UpdateTitle();
void OnModify() override;
DECLARE_EVENT_TABLE()
2016-08-11 12:42:17 +00:00
private:
2023-01-01 23:37:24 +00:00
void setupTools();
void doReCreateMenuBar() override;
void setupUIConditions() override;
bool canCloseWindow( wxCloseEvent& aEvent ) override;
void doCloseWindow() override;
2016-08-11 12:42:17 +00:00
void onUpdateSim( wxCommandEvent& aEvent );
2016-08-11 12:42:17 +00:00
void onSimReport( wxCommandEvent& aEvent );
void onSimStarted( wxCommandEvent& aEvent );
void onSimFinished( wxCommandEvent& aEvent );
2023-01-01 23:37:24 +00:00
void onExit( wxCommandEvent& event );
private:
SCH_EDIT_FRAME* m_schematicFrame;
ACTION_TOOLBAR* m_toolBar;
SIMULATOR_FRAME_UI* m_ui;
std::shared_ptr<SPICE_SIMULATOR> m_simulator;
SIM_THREAD_REPORTER* m_reporter;
std::shared_ptr<SPICE_CIRCUIT_MODEL> m_circuitModel;
2023-01-01 23:37:24 +00:00
bool m_simFinished;
bool m_workbookModified;
2016-08-11 12:41:01 +00:00
};
2016-08-11 12:41:45 +00:00
// Commands
wxDECLARE_EVENT( EVT_SIM_UPDATE, wxCommandEvent );
2016-08-11 12:41:27 +00:00
wxDECLARE_EVENT( EVT_SIM_REPORT, wxCommandEvent );
2016-08-11 12:41:45 +00:00
// Notifications
2016-08-11 12:41:27 +00:00
wxDECLARE_EVENT( EVT_SIM_STARTED, wxCommandEvent );
wxDECLARE_EVENT( EVT_SIM_FINISHED, wxCommandEvent );
#endif // SIMULATOR_FRAME_H