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 (C) 2020-2023 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
59 {
62
73 };
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
93 {
102 };
103
105 {
108 double frequency;
114 };
115
117 {
118 wxString current;
119 wxString delta_tc;
120 wxString track_len;
122 wxString resistivity;
131 };
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;
142
144 std::map<std::string, TL_PARAM_MAP> param_values;
145
147 std::map<std::string, TL_PARAM_UNITS_MAP> param_units;
148 };
149
150 struct VIA_SIZE
151 {
154 wxString thickness;
156 wxString length;
158 wxString pad_diameter;
166 wxString permittivity;
167 wxString temp_rise;
169 };
170
172 {
175 };
176
178
180
181 virtual bool MigrateFromLegacy( wxConfigBase* aLegacyConfig ) override;
182
183protected:
184 virtual std::string getLegacyFrameName() const override { return "pcb_calculator"; }
185
186public:
188
190
192
194
196
198
200
202
204
206
208
210};
211
212#endif
APP_SETTINGS_BASE is a settings class that should be derived for each standalone KiCad application.
Definition: app_settings.h:92
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
std::map< std::string, TL_PARAM_MAP > param_values
Transline parameters, per transline type.
std::map< std::string, TL_PARAM_UNITS_MAP > param_units
Transline parameter units selections, per transline type.