Cmr

SCPI Commands

SENSe:DATA:MEASurement<MeasInstance>:IPANalysis:VOIMs:BITRate:CMR
class Cmr[source]

Cmr commands group definition. 1 total commands, 0 Sub-groups, 1 group commands

class GetStruct[source]

Response structure. Fields:

  • Flow_Id: int: Flow ID, as returned by [CMDLINK: FETCh:DATA:MEASi:IPANalysis:VOIMs:ALL CMDLINK]

  • Direction: enums.DirectionB: UL | DL | UNK Flow direction uplink, downlink or unknown

  • Curr_Bitrate: float: Current measured bitrate Unit: bit/s

  • Avg_Bitrate: float: Average measured bitrate Unit: bit/s

  • Min_Bitrate: float: Minimum measured bitrate Unit: bit/s

  • Max_Bitrate: float: Maximum measured bitrate Unit: bit/s

  • Curr_Cmr_Bitrate: float: Bitrate currently requested for the other direction Unit: bit/s

  • Min_Cmr_Bitrate: float: Minimum of the bitrates requested for the other direction Unit: bit/s

  • Max_Cmr_Bitrate: float: Maximum of the bitrates requested for the other direction Unit: bit/s

  • Curr_Cmr_Bw: str: String indicating the bandwidth currently requested for the other direction

  • Min_Cmr_Bw: str: String indicating the minimum of the bandwidths requested for the other direction

  • Max_Cmr_Bw: str: String indicating the maximum of the bandwidths requested for the other direction

get(session_id: float, flow_id: int, direction: RsCmwDau.enums.DirectionB)GetStruct[source]
# SCPI: SENSe:DATA:MEASurement<Instance>:IPANalysis:VOIMs:BITRate:CMR
value: GetStruct = driver.sense.data.measurement.ipAnalysis.voIms.bitrate.cmr.get(session_id = 1.0, flow_id = 1, direction = enums.DirectionB.DL)

Queries bitrates and CMR information related to a voice over IMS call. A query returns all parameters except the <SessionID>: <FlowID>, <Direction>, <CurrBitrate>, <AvgBitrate>, …, <MaxCMRBW>

param session_id

Call ID, as returned by method RsCmwDau.Data.Measurement.IpAnalysis.VoIms.All.fetch

param flow_id

Flow ID, as returned by method RsCmwDau.Data.Measurement.IpAnalysis.VoIms.All.fetch

param direction

UL | DL | UNK Flow direction uplink, downlink or unknown

return

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