Qucs-S S-parameter Viewer & RF Synthesis Tools
Loading...
Searching...
No Matches
Lsection.h
Go to the documentation of this file.
1
7
8#ifndef LSECTION_H
9#define LSECTION_H
10
11#include "Schematic/Network.h"
12#include "Schematic/component.h"
13
18class Lsection : public Network {
19public:
22
27 Specs = AS;
28 f_match = freq;
29 }
30
32 virtual ~Lsection() {}
33
35 void synthesize();
36
37private:
40
41 double f_match;
42};
43#endif // LSECTION_H
Abstract base class for network implementations.
L-section matching network synthesis Reference: RF design guide. Systems, circuits,...
Definition Lsection.h:18
Lsection(MatchingNetworkDesignParameters AS, double freq)
Class constructor with parameters.
Definition Lsection.h:26
virtual ~Lsection()
Class destructor.
Definition Lsection.h:32
void synthesize()
Calculate component values and build schematic.
Definition Lsection.cpp:12
Lsection()
Class constructor.
Definition Lsection.h:21
Abstract base class for network implementations.
Definition Network.h:27
Graphical component representation in schematic (definition)
Matching network design parameters.
Definition structures.h:220