kicad/pcb_calculator/pcb_calculator_frame.h

369 lines
12 KiB
C
Raw Normal View History

/*
* This program source code file is part of KICAD, a free EDA CAD application.
*
* Copyright (C) 1992-2021 Kicad Developers, see AUTHORS.txt for contributors.
*
* 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
* 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, see <http://www.gnu.org/licenses/>.
*/
#ifndef PCB_CALCULATOR_H
#define PCB_CALCULATOR_H
2020-10-13 01:55:32 +00:00
#include "transline/transline.h" // Included for SUBST_PRMS_ID definition.
#include "transline_ident.h"
#include "pcb_calculator_frame_base.h"
#include "attenuators/attenuator_classes.h"
#include "class_regulator_data.h"
extern const wxString PcbCalcDataFileExt;
class APP_SETTINGS_BASE;
class KIWAY;
class PCB_CALCULATOR_SETTINGS;
2021-06-08 19:39:47 +00:00
/**
* PCB calculator the main frame.
*/
class PCB_CALCULATOR_FRAME : public PCB_CALCULATOR_FRAME_BASE
{
public:
* KIWAY Milestone A): Make major modules into DLL/DSOs. ! The initial testing of this commit should be done using a Debug build so that all the wxASSERT()s are enabled. Also, be sure and keep enabled the USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it off is senseless anyways. If you want stable code, go back to a prior version, the one tagged with "stable". * Relocate all functionality out of the wxApp derivative into more finely targeted purposes: a) DLL/DSO specific b) PROJECT specific c) EXE or process specific d) configuration file specific data e) configuration file manipulations functions. All of this functionality was blended into an extremely large wxApp derivative and that was incompatible with the desire to support multiple concurrently loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects. An amazing amount of organization come from simply sorting each bit of functionality into the proper box. * Switch to wxConfigBase from wxConfig everywhere except instantiation. * Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD, PGM_SINGLE_TOP, * Remove "Return" prefix on many function names. * Remove obvious comments from CMakeLists.txt files, and from else() and endif()s. * Fix building boost for use in a DSO on linux. * Remove some of the assumptions in the CMakeLists.txt files that windows had to be the host platform when building windows binaries. * Reduce the number of wxStrings being constructed at program load time via static construction. * Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that these functions are useful even when the wxConfigBase comes from another source, as is the case in the KICAD_MANAGER_FRAME. * Move the setting of the KIPRJMOD environment variable into class PROJECT, so that it can be moved into a project variable soon, and out of FP_LIB_TABLE. * Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all its child wxFrames and wxDialogs now have a Kiway() member function which returns a KIWAY& that that window tree branch is in support of. This is like wxWindows DNA in that child windows get this member with proper value at time of construction. * Anticipate some of the needs for milestones B) and C) and make code adjustments now in an effort to reduce work in those milestones. * No testing has been done for python scripting, since milestone C) has that being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
PCB_CALCULATOR_FRAME( KIWAY* aKiway, wxWindow* aParent );
~PCB_CALCULATOR_FRAME();
2021-06-08 19:39:47 +00:00
/**
* Read/write params values and results.
*
* @param aPrmId is the parameter id to write.
* @param aValue is the value to write.
*/
void SetPrmValue( enum PRMS_ID aPrmId, double aValue );
/**
* Put the text into the given result line.
*
* @param aLineNumber is the line (0 to 5) where to display the text.
* @param aText is the text to display.
*/
void SetResult( int aLineNumber, const wxString& aText );
/**
* Set the background color of a parameter.
*
* @param aPrmId is the parameter id to set.
* @param aCol is the new color.
*/
void SetPrmBgColor( enum PRMS_ID aPrmId, const KIGFX::COLOR4D* aCol );
/**
* Return a param value.
*
* @param aPrmId is the parameter id to write.
* @return the value always in normalized unit (meter, Hz, Ohm, radian).
*/
double GetPrmValue( enum PRMS_ID aPrmId ) const;
/**
* @return true if the parameter aPrmId is selected.
*/
bool IsPrmSelected( enum PRMS_ID aPrmId ) const;
// Board classes panel:
void OnBoardClassesUnitsSelection( wxCommandEvent& event ) override;
void BoardClassesUpdateData( double aUnitScale );
// Calculator doesn't host a tool framework
wxWindow* GetToolCanvas() const override
{
return nullptr;
}
private:
// Event handlers
2016-09-24 18:53:15 +00:00
void OnClosePcbCalc( wxCloseEvent& event ) override;
void OnUpdateUI( wxUpdateUIEvent& event ) override;
// Config read-write, virtual from EDA_BASE_FRAME
void LoadSettings( APP_SETTINGS_BASE* aCfg ) override;
void SaveSettings( APP_SETTINGS_BASE* aCfg ) override;
// R/W data files:
bool ReadDataFile();
bool WriteDataFile();
2012-04-05 18:56:06 +00:00
/**
* @return the full filename of the selected pcb_calculator data file
*/
const wxString GetDataFilename();
/**
* Initialize the full filename of the selected pcb_calculator data file
2021-06-08 19:39:47 +00:00
* force the standard extension of the file (.pcbcalc).
*
* @param aFilename is the full filename, with or without extension.
2012-04-05 18:56:06 +00:00
*/
void SetDataFilename( const wxString& aFilename );
/**
* Panel-specific initializers
*/
void initTrackWidthPanel();
void initESeriesPanel();
void initColorCodePanel();
void initViaSizePanel();
/**
* Called on calculate button and executes all E-series calculations
*/
void OnCalculateESeries( wxCommandEvent& event ) override;
/**
2021-06-08 19:39:47 +00:00
* Radio Buttons to select the E-serie for the resistor calculator.
*
* @param event contains the radio button state.
*/
void OnESeriesSelection( wxCommandEvent& event ) override;
/**
2021-06-08 19:39:47 +00:00
* Write track width parameters in configuration.
*/
void writeTrackWidthConfig();
/**
2021-06-08 19:39:47 +00:00
* Update the calculations the user changes the general parameters.
*/
2016-09-24 18:53:15 +00:00
void OnTWParametersChanged( wxCommandEvent& event ) override;
/**
2021-06-08 19:39:47 +00:00
* Update the calculations when the user changes the desired maximum current.
*/
2016-09-24 18:53:15 +00:00
void OnTWCalculateFromCurrent( wxCommandEvent& event ) override;
/**
2021-06-08 19:39:47 +00:00
* Update the calculations when the user changes the desired external trace width.
*/
2016-09-24 18:53:15 +00:00
void OnTWCalculateFromExtWidth( wxCommandEvent& event ) override;
/**
2021-06-08 19:39:47 +00:00
* Update the calculations when the user changes the desired internal trace width.
*/
2016-09-24 18:53:15 +00:00
void OnTWCalculateFromIntWidth( wxCommandEvent& event ) override;
/**
2021-06-08 19:39:47 +00:00
* Update the calculations when the user clicks the reset button.
*/
void OnTWResetButtonClick( wxCommandEvent& event ) override;
/**
* Calculate track width required based on given current and temperature rise.
*/
double TWCalculateWidth( double aCurrent, double aThickness, double aDeltaT_C,
bool aUseInternalLayer );
/**
* Calculate maximum current based on given width and temperature rise.
*/
double TWCalculateCurrent( double aWidth, double aThickness, double aDeltaT_C,
bool aUseInternalLayer );
/**
2021-06-08 19:39:47 +00:00
* Display the results of a calculation (including resulting values such
* as the resistance and power loss).
*/
void TWDisplayValues( double aCurrent, double aExtWidth, double aIntWidth,
double aExtThickness, double aIntThickness );
/**
2021-06-08 19:39:47 +00:00
* Update the fields to show whether the maximum current, external trace
* width, or internal trace width is currently the controlling parameter.
*/
void TWUpdateModeDisplay();
/**
2021-06-08 19:39:47 +00:00
* Write via size parameters in configuration.
*/
void writeViaSizeConfig();
/**
2021-06-08 19:39:47 +00:00
* Called when the user changes any value in the via calculator.
*/
void OnViaCalculate( wxCommandEvent& event ) override;
void OnViaEpsilonR_Button( wxCommandEvent& event ) override;
void OnViaRho_Button( wxCommandEvent& event ) override;
/**
2021-06-08 19:39:47 +00:00
* Update the Error message in via calculation panel.
*/
void onUpdateViaCalcErrorText( wxUpdateUIEvent& event ) override;
/**
* Called when the user clicks the reset button; sets the parameters to their default values.
*/
void OnViaResetButtonClick( wxCommandEvent& event ) override;
/**
2021-06-08 19:39:47 +00:00
* Display the results of the calculation.
*/
void VSDisplayValues( double aViaResistance, double aVoltageDrop, double aPowerLoss,
double aEstimatedAmpacity, double aThermalResistance,
double aCapacitance, double aTimeDegradation, double aInductance,
double aReactance );
// Electrical spacing panel:
2016-09-24 18:53:15 +00:00
void OnElectricalSpacingUnitsSelection( wxCommandEvent& event ) override;
void OnElectricalSpacingRefresh( wxCommandEvent& event ) override;
void ElectricalSpacingUpdateData( double aUnitScale );
/**
2021-06-08 19:39:47 +00:00
* Called on new transmission line selection.
*/
2016-09-24 18:53:15 +00:00
void OnTranslineSelection( wxCommandEvent& event ) override;
/**
* Called when the user clicks the reset button; sets the parameters to their default values.
*/
void OnTransLineResetButtonClick( wxCommandEvent& event ) override;
/**
2021-06-08 19:39:47 +00:00
* Run a new analyze for the current transline with current parameters and displays the
* electrical parameters.
*/
2016-09-24 18:53:15 +00:00
void OnTranslineAnalyse( wxCommandEvent& event ) override;
/**
2021-06-08 19:39:47 +00:00
* Run a new synthesis for the current transline with current parameters and displays the
* geometrical parameters.
*/
2016-09-24 18:53:15 +00:00
void OnTranslineSynthetize( wxCommandEvent& event ) override;
/**
* Shows a list of current relative dielectric constant(Er) and set the selected value in
2021-06-08 19:39:47 +00:00
* main dialog frame.
*/
2016-09-24 18:53:15 +00:00
void OnTranslineEpsilonR_Button( wxCommandEvent& event ) override;
/**
2021-06-08 19:39:47 +00:00
* Show a list of current dielectric loss factor (tangent delta) and set the selected value
* in main dialog frame.
*/
2016-09-24 18:53:15 +00:00
void OnTranslineTanD_Button( wxCommandEvent& event ) override;
/**
2021-06-08 19:39:47 +00:00
* Show a list of current Specific resistance list (rho) and set the selected value in main
* dialog frame.
*/
2016-09-24 18:53:15 +00:00
void OnTranslineRho_Button( wxCommandEvent& event ) override;
/**
2021-06-08 19:39:47 +00:00
* Must be called after selection of a new transline.
*
* Update all values, labels and tool tips of parameters needed by the new transline;
* irrelevant parameters are blanked.
*
* @param aType is the #TRANSLINE_TYPE_ID of the new selected transmission line.
*/
void TranslineTypeSelection( enum TRANSLINE_TYPE_ID aType );
/**
2021-06-08 19:39:47 +00:00
* Read values entered in dialog frame, and transfer these values in current transline
* parameters, converted in normalized units.
*/
void TransfDlgDataToTranslineParams();
// Color Code panel
2016-09-24 18:53:15 +00:00
void OnToleranceSelection( wxCommandEvent& event ) override;
void ToleranceSelection( int aSelection );
// Attenuators Panel
2016-09-24 18:53:15 +00:00
void OnAttenuatorSelection( wxCommandEvent& event ) override;
void SetAttenuator( unsigned aIdx );
2016-09-24 18:53:15 +00:00
void OnCalculateAttenuator( wxCommandEvent& event ) override;
void TransfPanelDataToAttenuator();
void TransfAttenuatorDataToPanel();
void TransfAttenuatorResultsToPanel();
// Regulators Panel
2016-09-24 18:53:15 +00:00
void OnRegulatorCalcButtonClick( wxCommandEvent& event ) override;
void OnRegulatorResetButtonClick( wxCommandEvent& event ) override;
2016-09-24 18:53:15 +00:00
void OnRegulTypeSelection( wxCommandEvent& event ) override;
void OnRegulatorSelection( wxCommandEvent& event ) override;
void OnDataFileSelection( wxCommandEvent& event ) override;
void OnAddRegulator( wxCommandEvent& event ) override;
void OnEditRegulator( wxCommandEvent& event ) override;
void OnRemoveRegulator( wxCommandEvent& event ) override;
/**
2021-06-08 19:39:47 +00:00
* Update the regulator page dialog display.
*
* Enable the current regulator drawings and the formula used for calculations.
*/
void RegulatorPageUpdate();
/**
* If m_lastSelectedRegulatorName is empty, just calls RegulatorPageUpdate()
*/
void SelectLastSelectedRegulator();
void RegulatorsSolve();
/**
2021-06-08 19:39:47 +00:00
* Write regulators parameters in configuration.
*
* @param aCfg is the configuration settings.
*/
void Regulators_WriteConfig( PCB_CALCULATOR_SETTINGS* aCfg );
public:
2021-06-08 19:39:47 +00:00
REGULATOR_LIST m_RegulatorList; // the list of known regulator
private:
2021-06-08 19:39:47 +00:00
bool m_RegulatorListChanged; // Set when m_RegulatorList is modified and the corresponding file
// must be rewritten
enum // Which dimension is controlling the track width / current
{ // calculations:
TW_MASTER_CURRENT, // the maximum current,
TW_MASTER_EXT_WIDTH, // the external trace width,
TW_MASTER_INT_WIDTH // or the internal trace width?
} m_TWMode;
bool m_TWNested; // Used to stop events caused by setting the answers.
enum TRANSLINE_TYPE_ID m_currTransLineType;
TRANSLINE* m_currTransLine;
std::vector<TRANSLINE_IDENT*> m_transline_list;
ATTENUATOR* m_currAttenuator;
std::vector<ATTENUATOR*> m_attenuator_list;
wxString m_lastSelectedRegulatorName;
wxBitmap* m_ccValueNamesBitmap;
wxBitmap* m_ccValuesBitmap;
wxBitmap* m_ccMultipliersBitmap;
wxBitmap* m_ccTolerancesBitmap;
int m_lastNotebookPage;
bool m_macHack;
};
2012-04-05 18:56:06 +00:00
extern const wxString DataFileNameExt;
#endif // PCB_CALCULATOR_H