FlPerformance

SCPI Commands

READ:EVDO:SIGNaling<Instance>:RXQuality:FLPFormance
FETCh:EVDO:SIGNaling<Instance>:RXQuality:FLPFormance
CALCulate:EVDO:SIGNaling<Instance>:RXQuality:FLPFormance
class FlPerformance[source]

FlPerformance commands group definition. 5 total commands, 2 Sub-groups, 3 group commands

class CalculateStruct[source]

Response structure. Fields:

  • Reliability: int: See ‘Reliability Indicator’

  • Mac_Pack_Received: float: MAC packets received Range: 0 or higher

  • Phy_Packet_Slots: float: Physical packet slots Range: 0 or higher

  • Th_Vs_Test_Time: float: Throughput vs. test time Range: 0 kbit/s or higher

  • Th_Vs_Transm_Slots: float: Throughput vs. transmitted slots Range: 0 kbit/s or higher

  • Test_Time: float: Test time Range: 0 to 10000, Unit: no. of CDMA frames

  • All_Th_Vs_Test_Time: float: No parameter help available

  • All_Th_Vs_Tra_Slots: float: No parameter help available

class ResultData[source]

Response structure. Fields:

  • Reliability: int: See ‘Reliability Indicator’

  • Mac_Pack_Received: int: MAC packets received Range: 0 or higher

  • Phy_Packet_Slots: int: Physical packet slots Range: 0 or higher

  • Th_Vs_Test_Time: float: Throughput vs. test time Range: 0 kbit/s or higher

  • Th_Vs_Transm_Slots: float: Throughput vs. transmitted slots Range: 0 kbit/s or higher

  • Test_Time: int: Test time Range: 0 to 10000, Unit: no. of CDMA frames

  • All_Th_Vs_Test_Time: float: No parameter help available

  • All_Th_Vs_Tra_Slots: float: No parameter help available

calculate(packet_size: Optional[RsCmwEvdoSig.enums.PacketSize] = None)CalculateStruct[source]
# SCPI: CALCulate:EVDO:SIGNaling<instance>:RXQuality:FLPFormance
value: CalculateStruct = driver.rxQuality.flPerformance.calculate(packet_size = enums.PacketSize.S128)

Returns the results of the ‘Forward Link Throughput’ measurement for the specified packet size (and the selected carrier in multi-carrier scenarios) , see ‘Forward Link Throughput Measurement’. Preselect the related carrier using the method RsCmwEvdoSig.Configure.Carrier.setting command. The values described below are returned by FETCh and READ commands. CALCulate commands return limit check results instead, one value for each result listed below.

param packet_size

S128 | S256 | S512 | S1K | S2K | S3K | S4K | S5K | S6K | S7K | S8K | TOTal In bit: 128, 256, 512, 1024, 2048, 3072, 4096, 5120, 6144, 7162, 8192 This query parameter represents the physical layer packet size for which the results are returned, i.e. it selects a row in the ‘Forward Link Throughput’ result table. If this parameter is omitted, the command returns the TOTal results, i.e. the aggregates over all packet sizes. Note that the ‘composite’ return values are aggregates over all carriers and packet sizes, i.e. no matter which packet size is specified, always the TOTal values are returned.

return

structure: for return value, see the help for CalculateStruct structure arguments.

fetch(packet_size: Optional[RsCmwEvdoSig.enums.PacketSize] = None)ResultData[source]
# SCPI: FETCh:EVDO:SIGNaling<instance>:RXQuality:FLPFormance
value: ResultData = driver.rxQuality.flPerformance.fetch(packet_size = enums.PacketSize.S128)

Returns the results of the ‘Forward Link Throughput’ measurement for the specified packet size (and the selected carrier in multi-carrier scenarios) , see ‘Forward Link Throughput Measurement’. Preselect the related carrier using the method RsCmwEvdoSig.Configure.Carrier.setting command. The values described below are returned by FETCh and READ commands. CALCulate commands return limit check results instead, one value for each result listed below.

param packet_size

S128 | S256 | S512 | S1K | S2K | S3K | S4K | S5K | S6K | S7K | S8K | TOTal In bit: 128, 256, 512, 1024, 2048, 3072, 4096, 5120, 6144, 7162, 8192 This query parameter represents the physical layer packet size for which the results are returned, i.e. it selects a row in the ‘Forward Link Throughput’ result table. If this parameter is omitted, the command returns the TOTal results, i.e. the aggregates over all packet sizes. Note that the ‘composite’ return values are aggregates over all carriers and packet sizes, i.e. no matter which packet size is specified, always the TOTal values are returned.

return

structure: for return value, see the help for ResultData structure arguments.

read(packet_size: Optional[RsCmwEvdoSig.enums.PacketSize] = None)ResultData[source]
# SCPI: READ:EVDO:SIGNaling<instance>:RXQuality:FLPFormance
value: ResultData = driver.rxQuality.flPerformance.read(packet_size = enums.PacketSize.S128)

Returns the results of the ‘Forward Link Throughput’ measurement for the specified packet size (and the selected carrier in multi-carrier scenarios) , see ‘Forward Link Throughput Measurement’. Preselect the related carrier using the method RsCmwEvdoSig.Configure.Carrier.setting command. The values described below are returned by FETCh and READ commands. CALCulate commands return limit check results instead, one value for each result listed below.

param packet_size

S128 | S256 | S512 | S1K | S2K | S3K | S4K | S5K | S6K | S7K | S8K | TOTal In bit: 128, 256, 512, 1024, 2048, 3072, 4096, 5120, 6144, 7162, 8192 This query parameter represents the physical layer packet size for which the results are returned, i.e. it selects a row in the ‘Forward Link Throughput’ result table. If this parameter is omitted, the command returns the TOTal results, i.e. the aggregates over all packet sizes. Note that the ‘composite’ return values are aggregates over all carriers and packet sizes, i.e. no matter which packet size is specified, always the TOTal values are returned.

return

structure: for return value, see the help for ResultData structure arguments.

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.rxQuality.flPerformance.clone()

Subgroups