KiCad PCB EDA Suite
Loading...
Searching...
No Matches
coplanar.h
Go to the documentation of this file.
1/*
2 * coplanar.h - microstrip 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 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this package; see the file COPYING. If not, write to
20 * the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
21 * Boston, MA 02110-1301, USA.
22 */
23
24
25#ifndef __COPLANAR_H
26#define __COPLANAR_H
27
28#include "transline/transline.h"
29
30class COPLANAR : public TRANSLINE
31{
32public:
33 COPLANAR();
34
35public:
36 void calcSynthesize() override;
37
38protected:
40
41private:
42 void calcAnalyze() override;
43 void showSynthesize() override;
44 void showAnalyze() override;
45 void show_results() override;
46};
47
48
50{
51public:
53};
54
55#endif // __COPLANAR_H
void showAnalyze() override
Shows synthesis results and checks for errors / warnings.
Definition: coplanar.cpp:244
void show_results() override
Shows results.
Definition: coplanar.cpp:179
void calcAnalyze() override
Computation for analysis.
Definition: coplanar.cpp:50
bool backMetal
Definition: coplanar.h:39
void calcSynthesize() override
Computation for synthesis.
Definition: coplanar.cpp:198
COPLANAR()
Definition: coplanar.cpp:34
void showSynthesize() override
Shows analysis results and checks for errors / warnings.
Definition: coplanar.cpp:207