mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-04-07 23:43:42 +00:00
Impedance renormalization moved to de-embedding
This commit is contained in:
parent
d08388f903
commit
4307a392fb
42 changed files with 584 additions and 330 deletions
|
|
@ -3,6 +3,7 @@
|
|||
#include "portextension.h"
|
||||
#include "twothru.h"
|
||||
#include "matchingnetwork.h"
|
||||
#include "impedancerenormalization.h"
|
||||
|
||||
DeembeddingOption *DeembeddingOption::create(DeembeddingOption::Type type)
|
||||
{
|
||||
|
|
@ -13,6 +14,8 @@ DeembeddingOption *DeembeddingOption::create(DeembeddingOption::Type type)
|
|||
return new TwoThru();
|
||||
case Type::MatchingNetwork:
|
||||
return new MatchingNetwork();
|
||||
case Type::ImpedanceRenormalization:
|
||||
return new ImpedanceRenormalization();
|
||||
default:
|
||||
return nullptr;
|
||||
}
|
||||
|
|
@ -27,6 +30,8 @@ QString DeembeddingOption::getName(DeembeddingOption::Type type)
|
|||
return "2xThru";
|
||||
case Type::MatchingNetwork:
|
||||
return "Matching Network";
|
||||
case Type::ImpedanceRenormalization:
|
||||
return "Impedance Renormalization";
|
||||
default:
|
||||
return "";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue