KiCad PCB EDA Suite
Loading...
Searching...
No Matches
coax.h
Go to the documentation of this file.
1/*
2 * coax.h - coaxial class definition
3 *
4 * Copyright (C) 2001 Gopal Narayanan <[email protected]>
5 * Copyright (C) 2005 Stefan Jahn <[email protected]>
6 * Modifications for Kicad: 2015 Jean-Pierre Charras
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 __COAX_H
26#define __COAX_H
27
28#include "transline/transline.h"
29
30class COAX : public TRANSLINE
31{
32public:
33 COAX();
34
35private:
36 void calcAnalyze() override;
37 void calcSynthesize() override;
38 void showAnalyze() override;
39 void showSynthesize() override;
40 double alphad_coax();
41 double alphac_coax();
42 void show_results() override;
43};
44
45#endif // __COAX_H
Definition: coax.h:31
void calcSynthesize() override
Definition: coax.cpp:103
void calcAnalyze() override
Definition: coax.cpp:77
double alphac_coax()
Definition: coax.cpp:55
double alphad_coax()
Definition: coax.cpp:44
void showAnalyze() override
Shows synthesis results and checks for errors / warnings.
Definition: coax.cpp:129
void showSynthesize() override
Shows analysis results and checks for errors / warnings.
Definition: coax.cpp:161
void show_results() override
Shows results.
Definition: coax.cpp:209
COAX()
Definition: coax.cpp:38