Skip to content

Commit 1875009

Browse files
committed
Reverted e10e32 calc, affects internal thru calibration.
1 parent d84dcc2 commit 1875009

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Calibration.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,8 @@ void __fastcall CCalibration::computeErrorTerms(t_calibration &calibration)
136136
const complexd throughCal = calibration.point[i].throughCal;
137137
try
138138
{
139-
// e10e32 = ((throughCal / gthru) - e30) * (complexf(1, 0) - (e11 * e11));
140-
e10e32 = ((throughCal / gthru) - e30); // this one drops the load calibration from S21 but produces flat through cable calibrations
139+
e10e32 = ((throughCal / gthru) - e30) * (complexd(1, 0) - (e11 * e11));
140+
// e10e32 = ((throughCal / gthru) - e30); // this one drops the load calibration from S21 but produces flat through cable calibrations
141141

142142
// inverse to let allow live corrections use faster multiply instead of slower divide
143143
e10e32 = complexd(1, 0) / e10e32;

Unit1.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ void __fastcall TForm1::FormCreate(TObject *Sender)
533533
String windows_ver = common.windowsVer;
534534
String local_name = common.localName;
535535

536-
common.title = Application->Title + " by OneOfEleven et al " + s + " (+OD15) ";
536+
common.title = Application->Title + " by OneOfEleven et al " + s + " (+OD16) ";
537537

538538
this->Caption = common.title;
539539
StatusBar2->Panels->Items[0]->Text = windows_ver + " " + local_name + " '" + String(common.decimalPoint()) + "'";

0 commit comments

Comments
 (0)