Qucs-S S-parameter Viewer & RF Synthesis Tools
Loading...
Searching...
No Matches
TappedCMatching.h
Go to the documentation of this file.
1
7
8#ifndef TAPPEDCMATCHING_H
9#define TAPPEDCMATCHING_H
10
11#include "Schematic/Network.h"
12#include "Schematic/component.h"
13
33class TappedCMatching : public Network {
34public:
36
41 : Specs(AS), f_match(freq), Q(Q) {}
42
43 virtual ~TappedCMatching() {}
44
45 void synthesize();
46
47private:
53 void computeValues(double &L, double &C1, double &C2, bool &stepUp) const;
54
56 double f_match;
57 double Q;
58};
59
60#endif // TAPPEDCMATCHING_H
Abstract base class for network implementations.
Abstract base class for network implementations.
Definition Network.h:27
Tapped-C transformer matching network synthesis.
Definition TappedCMatching.h:33
TappedCMatching(MatchingNetworkDesignParameters AS, double freq, double Q)
Definition TappedCMatching.h:40
void synthesize()
Synthesize the network.
Definition TappedCMatching.cpp:28
Graphical component representation in schematic (definition)
Matching network design parameters.
Definition structures.h:220