mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2024-11-21 22:25:03 +00:00
45 lines
1.3 KiB
C++
45 lines
1.3 KiB
C++
/*
|
|
* stripline.h - stripline class definition
|
|
*
|
|
* Copyright (C) 2011 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
|
|
* Modifications 2011 for Kicad: Jean-Pierre Charras
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this package; see the file COPYING. If not, write to
|
|
* the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*
|
|
*/
|
|
|
|
#ifndef __STRIPLINE_H
|
|
#define __STRIPLINE_H
|
|
|
|
|
|
#include "transline/transline.h"
|
|
|
|
class STRIPLINE : public TRANSLINE
|
|
{
|
|
public:
|
|
STRIPLINE();
|
|
|
|
private:
|
|
void calcAnalyze() override;
|
|
void calcSynthesize() override;
|
|
void showSynthesize() override;
|
|
void showAnalyze() override;
|
|
double lineImpedance( double, double& );
|
|
void show_results() override;
|
|
};
|
|
|
|
#endif
|