You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.3 KiB

  1. /*
  2. * stripline.h - stripline class definition
  3. *
  4. * Copyright (C) 2011 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
  5. * Modifications 2011 for Kicad: Jean-Pierre Charras
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License
  9. * as published by the Free Software Foundation; either version 2
  10. * of the License, or (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this package; see the file COPYING. If not, write to
  19. * the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
  20. * Boston, MA 02110-1301, USA.
  21. *
  22. */
  23. #ifndef __STRIPLINE_H
  24. #define __STRIPLINE_H
  25. #include "transline/transline.h"
  26. class STRIPLINE : public TRANSLINE
  27. {
  28. public:
  29. STRIPLINE();
  30. private:
  31. void calcAnalyze() override;
  32. void calcSynthesize() override;
  33. void showSynthesize() override;
  34. void showAnalyze() override;
  35. double lineImpedance( double, double& );
  36. void show_results() override;
  37. };
  38. #endif