KiCad PCB EDA Suite
Loading...
Searching...
No Matches
c_stripline.h
Go to the documentation of this file.
1/*
2 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this package; see the file COPYING. If not, write to
16 * the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
17 * Boston, MA 02110-1301, USA.
18 */
19
20#ifndef C_STRIPLINE_H_
21#define C_STRIPLINE_H_
22
23
24#include "transline/transline.h"
26
27
28class C_STRIPLINE : public TRANSLINE
29{
30public:
32
33private:
34 void calcAnalyze() override;
35 void calcSynthesize() override;
36 void showAnalyze() override;
37 void showSynthesize() override;
38 void show_results() override;
39 void getProperties() override;
40
42};
43
44#endif // C_STRIPLINE_H_
void show_results() override
Shows results.
COUPLED_STRIPLINE m_calc
Definition: c_stripline.h:41
void calcAnalyze() override
Computation for analysis.
Definition: c_stripline.cpp:35
void calcSynthesize() override
Computation for synthesis.
Definition: c_stripline.cpp:41
void showAnalyze() override
Shows synthesis results and checks for errors / warnings.
Definition: c_stripline.cpp:47
void getProperties() override
@function getProperties
Definition: c_stripline.cpp:97
void showSynthesize() override
Shows analysis results and checks for errors / warnings.
Definition: c_stripline.cpp:72