KiCad PCB EDA Suite
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-2022 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
32{
33public:
35 {
37 double zin;
38 double zout;
39 };
40
42 {
43 int type;
44 std::unordered_map<std::string, ATTENUATOR> attenuators;
45 };
46
48 {
51 };
52
54 {
55 wxString r1;
56 wxString r2;
57 wxString vref;
58 wxString vout;
59 wxString data_file;
61 int type;
63 };
64
66 {
74 };
75
77 {
80 double frequency;
86 };
87
89 {
90 wxString current;
91 wxString delta_tc;
92 wxString track_len;
94 wxString resistivity;
103 };
104
106 typedef std::map<std::string, double> TL_PARAM_MAP;
107
109 typedef std::map<std::string, int> TL_PARAM_UNITS_MAP;
110
112 {
113 int type;
114
116 std::map<std::string, TL_PARAM_MAP> param_values;
117
119 std::map<std::string, TL_PARAM_UNITS_MAP> param_units;
120 };
121
122 struct VIA_SIZE
123 {
126 wxString thickness;
128 wxString length;
130 wxString pad_diameter;
138 wxString permittivity;
139 wxString temp_rise;
141 };
142
144 {
146 };
147
149
151
152 virtual bool MigrateFromLegacy( wxConfigBase* aLegacyConfig ) override;
153
154protected:
155 virtual std::string getLegacyFrameName() const override { return "pcb_calculator"; }
156
157public:
159
161
163
165
167
169
171
173
175
177
179
181};
182
183#endif
APP_SETTINGS_BASE is a settings class that should be derived for each standalone KiCad application.
Definition: app_settings.h:110
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.