![HP E4401B Programmer'S Manual Download Page 150](http://html.mh-extra.com/html/hp/e4401b/e4401b_programmers-manual_161548150.webp)
3-86
Chapter 3
Programming Examples
Measuring Harmonic Distortion (RS-232)
/*Calculate the total harmonic distortion by dividing
the square root of the sum of the squares (dSumSquare) by the
fundamental amplitude in volts (dFundaAmptdV).Multiply this
value by 100 to obtain a result in percent*/
dPrcntDistort = ((sqrt(double (dSumSquare)))
/dFundaAmptdV) *100 ;
/*Fundamental amplitude in dBm */
printf("Fundamental Amplitude: %lf dB
\n",fFundaAmptdDbm);
/*Fundamental Frequency in MHz*/
printf("Fundamental Frequency is: %lf MHz
\n",dFundamental/10e5);
/*Relative amplitude of each harmonic in dBc*/
for (lNum=2;lNum<=lMaxHarmonic;lNum++)
printf("Relative amplitude of Harmonic[%d]: %lf dBc
\n",lNum,fRelAmptd[lNum]);
/*Total harmonic distortion in percent*/
printf("Total Harmonic Distortion: %lf
\n",dPrcntDistort);
/*Close the session*/
viClose(viESA);
viClose(defaultRM);
}
Summary of Contents for E4401B
Page 6: ...vi ...
Page 14: ...xiv Contents ...
Page 64: ...2 34 Chapter2 HP ESA Status Registers Using the Analyzer Status Registers ...
Page 65: ...3 1 3 Programming Examples ...
Page 151: ...4 1 4 Programming Command Cross References ...
Page 286: ...5 132 Chapter5 Language Reference UNIT Subsystem ...
Page 287: ...6 1 6 HP 8590 HP ESA Spectrum Analyzers Programming Conversion Guide ...
Page 292: ...1 HP 8590 HP ESA Spectrum Analyzers Conversion Guide ...
Page 368: ...7 1 7 Error Messages ...
Page 393: ...7 26 Chapter7 Error Messages 201 to 799 Device Specific Errors ...