KiCad PCB EDA Suite
Loading...
Searching...
No Matches
pcb_calculator/transline/twistedpair.h
Go to the documentation of this file.
1/*
2 * twistedpair.h - twisted pair UI wrapper
3 *
4 * Copyright (C) 2011 Michael Margraf <[email protected]>
5 * Modified for Kicad: 2015 jean-pierre.charras
6 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
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. If not, see <https://www.gnu.org/licenses/>.
20 */
21
22
23#ifndef __TWISTEDPAIR_H
24#define __TWISTEDPAIR_H
25
26#include "transline/transline.h"
28
29
36{
37public:
39
40private:
42
43 void getProperties() override;
44 void show_results() override;
45 void showAnalyze() override;
46 void showSynthesize() override;
47 void calcAnalyze() override;
48 void calcSynthesize() override;
49};
50
51#endif // __TWISTEDPAIR_H
void show_results() override
Shows results.
void calcSynthesize() override
Computation for synthesis.
void showSynthesize() override
Shows analysis results and checks for errors / warnings.
void getProperties() override
@function getProperties
void showAnalyze() override
Shows synthesis results and checks for errors / warnings.
void calcAnalyze() override
Computation for analysis.
Twisted-pair transmission line calculation.