mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-04-07 23:43:42 +00:00
Proof-of-concept TDR measurements
This commit is contained in:
parent
d313988bfd
commit
e68a9abffe
18 changed files with 1276 additions and 718 deletions
|
|
@ -26,7 +26,7 @@
|
|||
#include "Traces/tracemodel.h"
|
||||
#include "Traces/tracewidget.h"
|
||||
#include "Traces/tracesmithchart.h"
|
||||
#include "Traces/tracebodeplot.h"
|
||||
#include "Traces/tracexyplot.h"
|
||||
#include "Traces/traceimportdialog.h"
|
||||
#include "CustomWidgets/tilewidget.h"
|
||||
#include "CustomWidgets/siunitedit.h"
|
||||
|
|
@ -70,9 +70,9 @@ VNA::VNA(AppWindow *window)
|
|||
auto tracesmith2 = new TraceSmithChart(traceModel);
|
||||
tracesmith2->enableTrace(tS22, true);
|
||||
|
||||
auto tracebode1 = new TraceBodePlot(traceModel);
|
||||
auto tracebode1 = new TraceXYPlot(traceModel);
|
||||
tracebode1->enableTrace(tS12, true);
|
||||
auto tracebode2 = new TraceBodePlot(traceModel);
|
||||
auto tracebode2 = new TraceXYPlot(traceModel);
|
||||
tracebode2->enableTrace(tS21, true);
|
||||
|
||||
connect(&traceModel, &TraceModel::requiredExcitation, this, &VNA::ExcitationRequired);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue