KiCad PCB EDA Suite
Loading...
Searching...
No Matches
pcb_calculator_settings.h
Go to the documentation of this file.
1/*
2* This program source code file is part of KiCad, a free EDA CAD application.
3*
4* Copyright The KiCad Developers, see AUTHORS.txt for contributors.
5*
6* This program is free software; you can redistribute it and/or
7* modify it under the terms of the GNU General Public License
8* as published by the Free Software Foundation; either version 2
9* of the License, or (at your option) any later version.
10*
11* This program is distributed in the hope that it will be useful,
12* but WITHOUT ANY WARRANTY; without even the implied warranty of
13* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14* GNU General Public License for more details.
15*
16* You should have received a copy of the GNU General Public License
17* along with this program; if not, you may find one here:
18* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
19* or you may search the http://www.gnu.org website for the version 2 license,
20* or you may write to the Free Software Foundation, Inc.,
21* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22*/
23
24#ifndef _PCB_CALCULATOR_SETTINGS_H
25#define _PCB_CALCULATOR_SETTINGS_H
26
27#include <array>
28#include <unordered_map>
30
31// Deafult value for TI LM317
32#define DEFAULT_REGULATOR_RESTOL "1"
33#define DEFAULT_REGULATOR_R1 "0.240"
34#define DEFAULT_REGULATOR_R2 "0.720"
35#define DEFAULT_REGULATOR_VREF_MIN "1.20"
36#define DEFAULT_REGULATOR_VREF_TYP "1.25"
37#define DEFAULT_REGULATOR_VREF_MAX "1.30"
38#define DEFAULT_REGULATOR_VOUT_TYP "5"
39#define DEFAULT_REGULATOR_IADJ_TYP "50"
40#define DEFAULT_REGULATOR_IADJ_MAX "100"
41
43{
44public:
46 {
48 double zin;
49 double zout;
50 };
51
53 {
54 int type;
55 std::unordered_map<std::string, ATTENUATOR> attenuators;
56 };
57
74
76 {
77 wxString resTol;
78 wxString r1;
79 wxString r2;
80 wxString vrefMin;
81 wxString vrefTyp;
82 wxString vrefMax;
83 wxString voutTyp;
84 wxString iadjTyp;
85 wxString iadjMax;
86 wxString data_file;
88 int type;
90 };
91
103
115
132
134 typedef std::map<std::string, double> TL_PARAM_MAP;
135
137 typedef std::map<std::string, int> TL_PARAM_UNITS_MAP;
138
140 {
141 int type = 0;
142
145
147 wxString spec_frequency = wxT( "1" );
148
151
157
159 double soldermask_thickness = 20.0e-6;
160
163
166 double soldermask_tand = 0.025;
167
171
173 std::map<std::string, TL_PARAM_MAP> param_values;
174
176 std::map<std::string, TL_PARAM_UNITS_MAP> param_units;
177 };
178
199
201 {
204 };
205
207
209
210 virtual bool MigrateFromLegacy( wxConfigBase* aLegacyConfig ) override;
211
212protected:
213 virtual std::string getLegacyFrameName() const override { return "pcb_calculator"; }
214
215public:
217
219
221
223
225
227
229
231
233
235
237
239};
240
241#endif
APP_SETTINGS_BASE(const std::string &aFilename, int aSchemaVersion)
std::map< std::string, double > TL_PARAM_MAP
Map of TRANSLINE_PRM id to value.
virtual std::string getLegacyFrameName() const override
virtual bool MigrateFromLegacy(wxConfigBase *aLegacyConfig) override
Migrates from wxConfig to JSON-based configuration.
std::map< std::string, int > TL_PARAM_UNITS_MAP
Map of TRANSLINE_PRM id to units selection.
std::unordered_map< std::string, ATTENUATOR > attenuators
int soldermask_present
Soldermask / LPI overlay correction.
double soldermask_epsilonr
Mask relative permittivity. 3.5 is representative of green LPI.
int spec_frequency_unit
UNIT_SELECTOR_FREQUENCY index: 0 = GHz, 1 = MHz, 2 = kHz, 3 = Hz.
std::map< std::string, TL_PARAM_MAP > param_values
Transline parameters, per transline type.
int dielectric_model
Dielectric dispersion model. 0 = CONSTANT (default), 1 = Djordjevic-Sarkar causal.
wxString spec_frequency
Spec frequency at which EpsilonR and TanD are specified (user-entered text).
double soldermask_thickness
Cured mask thickness in metres. 20 um is typical for modern green LPI.
std::map< std::string, TL_PARAM_UNITS_MAP > param_units
Transline parameter units selections, per transline type.