173
S:\Hp8960\E1962B CDMA 2000\Pi Release\Reference Guide\Chapters\cdma2000_prog_gpower.fm
Programming a Gated Power Measurement
Programming a Gated Power Measurement
This section provides an example of how to make a gated power measurement via GPIB.
The following program example assumes that the mobile station’s antenna output is connected to the RF
IN/OUT connector, and the mobile station has found service.
The basic procedure to measure gated power is as follows:
1. Make a call using IS-95 or IS-2000 system type with F1R1 (radio configuration 1) or F2R2 (radio
configuration 2). See “CALL[:CELL]:RCONfig” .
2. Select a loopback service option (SO2, SO9, or SO55) .
3. Select eighth rate data (see “CALL:TRAFfic:DRATe” ).
4. Configure the gated power measurement setup parameters using the “SETup:GPOWer” subsystem.
5. Start the waveform quality measurement using the “INITiate” subsystem.
6. Use the “FETCh:GPOWer” command to obtain gated power measurement results.
NOTE Gated power measurement display trace data is available using the “FETCh:GPOWer:TRACe?”
command.
Programming Example
10 RE-SAVE "c:\roadhog\programs\gated_power.txt"
20 !This program measures gated power
30 !See "Standby Output Power and Gated Output Power" in TIA/EIA-98-D for specifications
and standards
40 CLEAR SCREEN
50 A=714
60 !***Specify call parameters***
70 Systype$="DIGITAL2000" !Cell System Type
80 Band$="USC" !Frequency Band
90 Channel=384 !RF Channel
100 Sid=1 !System Identification
110 Nid=1 !Network Identification
120 Radio_config$="F2R2" !Radio Configuration 1 or 2 is required for Gated Power
measurements
130 Service_opt$="SO9" !Service Option
150 !
160 !***Specify test parameters***
170 Loss_frequency$="1900 MHZ,1945 MHZ" !Reverse channel, forward channel frequencies for
amplitude offset (path loss)
180 Expected_loss$="-2,-2" !Path loss at reverse channel, forward channel frequencies
190 Ior=-75 !Cell power for gated power testing
200 Pilot=-7 !Pilot channel power level for gated power testing
210 Traffic=-7.4 !Traffic channel power level for gated power testing
220 Data_pnt=300
230 !