Skip to content

Commit aa46a75

Browse files
committed
Notation fix.
1 parent 72e9e69 commit aa46a75

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

GraphUnit.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ void __fastcall TGraphForm::createGraphTypeMenus()
374374
case 17: graph_type = GRAPH_TYPE_REAL_IMAG_S21; s = "S-Parameters S21"; break;
375375
case 18: graph_type = GRAPH_TYPE_VSWR_S11; s = "VSWR S11"; break;
376376
case 19: graph_type = GRAPH_TYPE_RETLOSS_S11; s = "Return Loss S11"; break;
377-
case 20: graph_type = GRAPH_TYPE_IMPEDANCE_S11; s = "Impedance S11"; break;
377+
case 20: graph_type = GRAPH_TYPE_IMPEDANCE_S11; s = "|Impedance S11|"; break;
378378
case 21: graph_type = GRAPH_TYPE_SERIES_RJX_S11; s = "Series R+jX S11"; break;
379379
case 22: graph_type = GRAPH_TYPE_GJB_S11; s = "Admittance G+jB S11"; break;
380380
case 23: graph_type = GRAPH_TYPE_PARALLEL_RJX_S11; s = "Parallel R||jX S11"; break;
@@ -395,7 +395,7 @@ void __fastcall TGraphForm::createGraphTypeMenus()
395395
case 38: graph_type = GRAPH_TYPE_TDR_LIN_BP_S11; s = "TDR linear band pass S11"; break;
396396
case 39: graph_type = GRAPH_TYPE_TDR_LOG_LP_IMPULSE_S11; s = "TDR log low pass impulse S11"; break;
397397
case 40: graph_type = GRAPH_TYPE_TDR_LOG_BP_S11; s = "TDR log band pass S11"; break;
398-
case 41: graph_type = GRAPH_TYPE_TDR_IMPEDANCE_S11; s = "TDR impedance S11"; break;
398+
case 41: graph_type = GRAPH_TYPE_TDR_IMPEDANCE_S11; s = "TDR |impedance S11|"; break;
399399
// case 42: graph_type = GRAPH_TYPE_PHASE_VECTOR_S11; s = "Phase vector S11"; break;
400400
// case 43: graph_type = GRAPH_TYPE_PHASE_VECTOR_S21; s = "Phase vector S21"; break;
401401
}

Graphs.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9257,7 +9257,7 @@ void __fastcall CGraphs::drawImpedanceS11(const int graph, const int graph_type,
92579257
}
92589258
}
92599259

9260-
String title = "Freq Impedance S11";
9260+
String title = "Freq |Impedance S11|";
92619261
drawDetails(graph, graph_type, 1, mem, index, title, units, s, s_value, "%#.6f");
92629262
}
92639263
}
@@ -12659,7 +12659,7 @@ void __fastcall CGraphs::drawTDRImpedance(const int graph, const int graph_type,
1265912659
}
1266012660

1266112661
{
12662-
String title = "Time Impedance S11";
12662+
String title = "Time |Impedance S11}";
1266312663
drawDetails(graph, graph_type, title);
1266412664
}
1266512665
}

Unit1.cpp

Lines changed: 3 additions & 3 deletions
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 + " (+OD11) ";
536+
common.title = Application->Title + " by OneOfEleven et al " + s + " (+OD12) ";
537537

538538
this->Caption = common.title;
539539
StatusBar2->Panels->Items[0]->Text = windows_ver + " " + local_name + " '" + String(common.decimalPoint()) + "'";
@@ -1699,7 +1699,7 @@ void __fastcall TForm1::createGraphTypeMenus()
16991699
case 17: graph_type = GRAPH_TYPE_REAL_IMAG_S21; s = "S-Parameters S21"; break;
17001700
case 18: graph_type = GRAPH_TYPE_VSWR_S11; s = "VSWR S11"; break;
17011701
case 19: graph_type = GRAPH_TYPE_RETLOSS_S11; s = "Return Loss S11"; break;
1702-
case 20: graph_type = GRAPH_TYPE_IMPEDANCE_S11; s = "Impedance S11"; break;
1702+
case 20: graph_type = GRAPH_TYPE_IMPEDANCE_S11; s = "|Impedance S11|"; break;
17031703
case 21: graph_type = GRAPH_TYPE_SERIES_RJX_S11; s = "Series R+jX S11"; break;
17041704
case 22: graph_type = GRAPH_TYPE_GJB_S11; s = "Admittance G+jB S11"; break;
17051705
case 23: graph_type = GRAPH_TYPE_PARALLEL_RJX_S11; s = "Parallel R||jX S11"; break;
@@ -1720,7 +1720,7 @@ void __fastcall TForm1::createGraphTypeMenus()
17201720
case 38: graph_type = GRAPH_TYPE_TDR_LIN_BP_S11; s = "TDR linear band pass S11"; break;
17211721
case 39: graph_type = GRAPH_TYPE_TDR_LOG_LP_IMPULSE_S11; s = "TDR log low pass impulse S11"; break;
17221722
case 40: graph_type = GRAPH_TYPE_TDR_LOG_BP_S11; s = "TDR log band pass S11"; break;
1723-
case 41: graph_type = GRAPH_TYPE_TDR_IMPEDANCE_S11; s = "TDR impedance S11"; break;
1723+
case 41: graph_type = GRAPH_TYPE_TDR_IMPEDANCE_S11; s = "TDR |impedance S11|"; break;
17241724
// case 42: graph_type = GRAPH_TYPE_PHASE_VECTOR_S11; s = "Phase vector S11"; break;
17251725
// case 43: graph_type = GRAPH_TYPE_PHASE_VECTOR_S21; s = "Phase vector S21"; break;
17261726
}

0 commit comments

Comments
 (0)