KiCad PCB EDA Suite
Loading...
Searching...
No Matches
stripline.h
Go to the documentation of this file.
1/*
2 * stripline.h - stripline class definition
3 *
4 * Copyright (C) 2011 Michael Margraf <[email protected]>
5 * Modifications 2011 for Kicad: Jean-Pierre Charras
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this package; see the file COPYING. If not, write to
19 * the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
20 * Boston, MA 02110-1301, USA.
21 *
22 */
23
24#ifndef __STRIPLINE_H
25#define __STRIPLINE_H
26
27
28#include "transline/transline.h"
29
30class STRIPLINE : public TRANSLINE
31{
32public:
33 STRIPLINE();
34
35private:
36 void calcAnalyze() override;
37 void calcSynthesize() override;
38 void showSynthesize() override;
39 void showAnalyze() override;
40 double lineImpedance( double, double& );
41 void show_results() override;
42};
43
44#endif
void showAnalyze() override
Shows synthesis results and checks for errors / warnings.
Definition: stripline.cpp:113
void calcAnalyze() override
Computation for analysis.
Definition: stripline.cpp:88
void show_results() override
Shows results.
Definition: stripline.cpp:165
void showSynthesize() override
Shows analysis results and checks for errors / warnings.
Definition: stripline.cpp:139
void calcSynthesize() override
Computation for synthesis.
Definition: stripline.cpp:179
double lineImpedance(double, double &)
Definition: stripline.cpp:45