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; 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 __TWISTEDPAIR_H
26#define __TWISTEDPAIR_H
27
28#include "transline/transline.h"
30
31
38{
39public:
41
42private:
44
45 void getProperties() override;
46 void show_results() override;
47 void showAnalyze() override;
48 void showSynthesize() override;
49 void calcAnalyze() override;
50 void calcSynthesize() override;
51};
52
53#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.