kicad/eeschema/dialogs/dialog_spice_model.h

163 lines
5.3 KiB
C
Raw Normal View History

2016-08-11 12:41:40 +00:00
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2016-2017 CERN
2016-08-11 12:41:40 +00:00
* @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:40 +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:40 +00:00
* or you may write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef DIALOG_SPICE_MODEL_H
#define DIALOG_SPICE_MODEL_H
#include "dialog_spice_model_base.h"
#include "netlist_exporter_pspice.h"
2016-08-11 12:41:56 +00:00
#include <sim/spice_value.h>
2016-08-11 12:41:40 +00:00
#include <sch_component.h>
#include <sch_field.h>
#include <lib_field.h>
2016-08-11 12:41:40 +00:00
2016-08-11 12:41:56 +00:00
#include <wx/valnum.h>
2016-08-11 12:41:40 +00:00
class DIALOG_SPICE_MODEL : public DIALOG_SPICE_MODEL_BASE
{
public:
DIALOG_SPICE_MODEL( wxWindow* aParent, SCH_COMPONENT& aComponent, SCH_FIELDS* aSchFields );
DIALOG_SPICE_MODEL( wxWindow* aParent, SCH_COMPONENT& aComponent, LIB_FIELDS* aLibFields );
2016-08-11 12:41:40 +00:00
private:
/**
* Parse a string describing a power source, so appropriate settings are checked in the dialog
* @param aModel contains the string to be parse (e.g. sin(0 1 10k))
* @return True if the input string was parsed without errors.
*/
bool parsePowerSource( const wxString& aModel );
/**
* Generates a string to describe power source parameters, basing on the current selection.
* If there are missing fields, it will not modify the target string.
* @param aTarget is the destination for the generated string.
* @return True if the string was saved successfully.
*/
bool generatePowerSource( wxString& aTarget ) const;
/**
* Loads a list of components (.model and .subckt) from a spice library
* file and adds them to a combo box.
2016-08-11 12:41:40 +00:00
* @param aComboBox is the target combo box
* @param aFilePath is path to the library file
2016-08-11 12:41:40 +00:00
*/
void loadLibrary( const wxString& aFilePath );
2016-08-11 12:41:40 +00:00
/**
* Returns or creates a field in the edited schematic fields vector.
* @param aFieldType is an SPICE_FIELD enum value.
* @return Requested field.
*/
SCH_FIELD& getSchField( int aFieldType );
LIB_FIELD& getLibField( int aFieldType );
2016-08-11 12:41:40 +00:00
/**
* Adds a value to the PWL values list.
* @param aTime is the time value.
* @param aValue is the source value at the given time.
* @return True if request has completed successfully, false if the data is invalid.
*/
bool addPwlValue( const wxString& aTime, const wxString& aValue );
virtual bool TransferDataFromWindow() override;
virtual bool TransferDataToWindow() override;
// The default dialog Validate() calls the validators of all widgets.
// This is not what we want; We want only validators of the selected page
// of the notbooks. So disable the wxDialog::Validate(), and let our
// TransferDataFromWindow doing the job.
virtual bool Validate() override
{
return true;
}
2016-08-11 12:41:40 +00:00
virtual void onInitDlg( wxInitDialogEvent& event ) override
{
// Call the default wxDialog handler of a wxInitDialogEvent
TransferDataToWindow();
// Now all widgets have the size fixed, call FinishDialogSettings
FinishDialogSettings();
}
/**
* Initializes the internal settings
*/
void Init();
/**
* Display a note info about pin order
*/
void showPinOrderNote( int aModelType );
2016-08-11 12:41:40 +00:00
// Event handlers
void onSelectLibrary( wxCommandEvent& event ) override;
void onModelSelected( wxCommandEvent& event ) override;
2016-08-11 12:41:40 +00:00
void onPwlAdd( wxCommandEvent& event ) override;
void onPwlRemove( wxCommandEvent& event ) override;
void onRandomSourceType( wxCommandEvent& event ) override;
void onTypeSelected( wxCommandEvent& event ) override;
2016-08-11 12:41:40 +00:00
///> Edited component
SCH_COMPONENT& m_component;
///> Fields from the component properties dialog
SCH_FIELDS* m_schfields;
LIB_FIELDS* m_libfields;
bool m_useSchFields;
2016-08-11 12:41:40 +00:00
///> Temporary field values
std::map<int, wxString> m_fieldsTmp;
struct MODEL
{
///> Line number in the library file
int line;
///> Type of the device
SPICE_PRIMITIVE model;
///> Convert string to model
static SPICE_PRIMITIVE parseModelType( const wxString& aValue );
MODEL( int aLine, enum SPICE_PRIMITIVE aModel )
: line( aLine ), model( aModel )
{
}
};
///> Models available in the selected library file
std::map<wxString, MODEL> m_models;
2016-08-11 12:41:40 +00:00
///> Column identifiers for PWL power source value list
long m_pwlTimeCol, m_pwlValueCol;
2016-08-11 12:41:56 +00:00
SPICE_VALIDATOR m_spiceValidator;
SPICE_VALIDATOR m_spiceEmptyValidator;
wxTextValidator m_notEmptyValidator;
2016-08-11 12:41:40 +00:00
};
#endif /* DIALOG_SPICE_MODEL_H */