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. If not, see <https://www.gnu.org/licenses/>.
16 */
17
18#ifndef C_STRIPLINE_H_
19#define C_STRIPLINE_H_
20
21
22#include "transline/transline.h"
24
25
26class C_STRIPLINE : public TRANSLINE
27{
28public:
30
31private:
32 void calcAnalyze() override;
33 void calcSynthesize() override;
34 void showAnalyze() override;
35 void showSynthesize() override;
36 void show_results() override;
37 void getProperties() override;
38
40};
41
42#endif // C_STRIPLINE_H_
void show_results() override
Shows results.
COUPLED_STRIPLINE m_calc
Definition c_stripline.h:39
void calcAnalyze() override
Computation for analysis.
void calcSynthesize() override
Computation for synthesis.
void showAnalyze() override
Shows synthesis results and checks for errors / warnings.
void getProperties() override
@function getProperties
void showSynthesize() override
Shows analysis results and checks for errors / warnings.