2006-07-04 09:21:49 +00:00
|
|
|
//-*- C++ -*-
|
|
|
|
/****************************************************************************
|
|
|
|
** Qucs Attenuator Synthesis
|
|
|
|
** attenuatorfunc.h
|
|
|
|
**
|
|
|
|
** since 2006/6/14
|
|
|
|
**
|
|
|
|
**
|
|
|
|
**
|
|
|
|
**
|
|
|
|
**
|
|
|
|
*****************************************************************************/
|
|
|
|
#ifndef QUCS_ATT_H
|
|
|
|
#define QUCS_ATT_H
|
|
|
|
|
|
|
|
#define PI_TYPE 0
|
|
|
|
#define TEE_TYPE 1
|
2006-07-28 07:13:18 +00:00
|
|
|
#define BRIDGE_TYPE 2
|
2024-04-21 10:58:42 +02:00
|
|
|
#define REFLECTION_TYPE 3
|
2024-04-21 19:20:35 +02:00
|
|
|
#define QW_SERIES_TYPE 4
|
|
|
|
#define QW_SHUNT_TYPE 5
|
2024-05-14 18:39:44 +02:00
|
|
|
#define L_PAD_1ST_SERIES 6
|
2024-05-14 19:19:27 +02:00
|
|
|
#define L_PAD_1ST_SHUNT 7
|
2024-05-15 17:21:54 +02:00
|
|
|
#define R_SERIES 8
|
2024-05-16 17:42:14 +02:00
|
|
|
#define R_SHUNT 9
|
2024-04-21 19:20:35 +02:00
|
|
|
|
|
|
|
#define C0 299792458
|
|
|
|
#define PI 3.141592653589793238462643383279502884197169399375105820974944592307816406286
|
2006-07-04 09:21:49 +00:00
|
|
|
|
2015-01-09 13:53:16 +01:00
|
|
|
#include <cmath>
|
2006-07-04 09:21:49 +00:00
|
|
|
|
|
|
|
struct tagATT
|
|
|
|
{
|
|
|
|
int Topology;
|
|
|
|
double Zin;
|
|
|
|
double Zout;
|
|
|
|
double Attenuation;
|
|
|
|
double MinimumATT;
|
|
|
|
double R1;
|
|
|
|
double R2;
|
|
|
|
double R3;
|
2024-04-21 11:38:46 +02:00
|
|
|
double R4;
|
2024-04-21 19:20:35 +02:00
|
|
|
double L; // Length of the quarter-wavelength inverter. QW series/shunt attenuator only
|
2024-04-21 11:38:46 +02:00
|
|
|
double PR1;//Power dissipated by R1 [W]
|
|
|
|
double PR2;//Power dissipated by R2 [W]
|
|
|
|
double PR3;//Power dissipated by R3 [W]
|
|
|
|
double PR4;//Power dissipated by R4 [W]
|
|
|
|
double Pin;//Input power [W]
|
|
|
|
bool minR; //The reflection attenuator can be designed using two different resistor values. The first one is such
|
|
|
|
//as R < Z0 whereas the other is such as R > Z0. This field is just a flag to indicate what solution
|
|
|
|
//qucsattenuator should use.
|
2024-04-21 19:20:35 +02:00
|
|
|
double freq;//Central frequency for quarter-wavelength attenuators
|
|
|
|
bool useLumped;//Used only in the quarter wave attenuators. It indicates that the program must replace the
|
|
|
|
//qw line by its lumped element equivalent (CLC)
|
2006-07-04 09:21:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class QString;
|
|
|
|
|
|
|
|
class QUCS_Att
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
QUCS_Att();
|
|
|
|
~QUCS_Att();
|
|
|
|
|
|
|
|
int Calc(tagATT*);
|
2024-04-21 09:27:11 +02:00
|
|
|
static QString* createSchematic(tagATT*, bool);
|
2006-07-04 09:21:49 +00:00
|
|
|
};
|
|
|
|
|
2024-04-21 19:20:35 +02:00
|
|
|
QString num2str(double);
|
|
|
|
|
2006-07-04 09:21:49 +00:00
|
|
|
#endif
|