mirror of
https://github.com/jankae/LibreVNA.git
synced 2025-12-06 07:12:10 +01:00
- Add Z parameters with general conversion from and to S parameters - Implement impedance renormalization over general Z parameters - Fix crash after taking de-embedding measurement - Fix various small bugs with new parameter implementation
22 lines
314 B
C++
22 lines
314 B
C++
#ifndef PARAMETERTESTS_H
|
|
#define PARAMETERTESTS_H
|
|
|
|
#include <QtTest>
|
|
|
|
class ParameterTests : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
ParameterTests();
|
|
|
|
private slots:
|
|
void S2ABCD();
|
|
void ABCD2S();
|
|
void S2Z_1P();
|
|
void S2Z_2P();
|
|
void Z2S_1P();
|
|
void Z2S_2P();
|
|
};
|
|
|
|
#endif // PARAMETERTESTS_H
|