KiCad PCB EDA Suite
Loading...
Searching...
No Matches
pcb_calculator/transline/coplanar.h
Go to the documentation of this file.
1/*
2 * coplanar.h - coplanar class definition
3 *
4 * Copyright (C) 2008 Michael Margraf <[email protected]>
5 * Copyright (C) 2005 Stefan Jahn <[email protected]>
6 * Modified for Kicad: 2015 jean-pierre.charras
7 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this package; see the file COPYING. If not, write to
21 * the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
22 * Boston, MA 02110-1301, USA.
23 */
24
25
26#ifndef __COPLANAR_H
27#define __COPLANAR_H
28
29#include "transline/transline.h"
31
32
38class COPLANAR_UI : public TRANSLINE
39{
40public:
42
43protected:
45 void getProperties() override;
46
48
49private:
50 void show_results() override;
51 void showAnalyze() override;
52 void showSynthesize() override;
53 void calcAnalyze() override;
54 void calcSynthesize() override;
55};
56
57
64{
65public:
67
68protected:
69 void getProperties() override;
70};
71
72#endif // __COPLANAR_H
void getProperties() override
Pushes back-metal flag and common UI parameters into the calculator.
void showAnalyze() override
Shows synthesis results and checks for errors / warnings.
void calcSynthesize() override
Computation for synthesis.
void showSynthesize() override
Shows analysis results and checks for errors / warnings.
void show_results() override
Shows results.
void calcAnalyze() override
Computation for analysis.
Coplanar waveguide (CPW) and conductor-backed coplanar waveguide (CBCPW) calculation.
void getProperties() override
Pushes back-metal flag and common UI parameters into the calculator.