Ran

SCPI Commands

CONFigure:DATA:MEASurement<MeasInstance>:THRoughput:RAN:CATaloge
CONFigure:DATA:MEASurement<MeasInstance>:THRoughput:RAN:MCOunt
CONFigure:DATA:MEASurement<MeasInstance>:THRoughput:RAN<Slot>
class Ran[source]

Ran commands group definition. 5 total commands, 1 Sub-groups, 3 group commands

get(slot=<Slot.Nr1: 1>)str[source]
# SCPI: CONFigure:DATA:MEASurement<Instance>:THRoughput:RAN<Index>
value: str = driver.configure.data.measurement.throughput.ran.get(slot = repcap.Slot.Nr1)

Assigns a RAN to the RAN slot number <Index>. You can query a complete list of all supported strings via the command method RsCmwDau.Configure.Data.Measurement.Throughput.Ran.cataloge.

param slot

optional repeated capability selector. Default value: Nr1

return

ran: String parameter, selecting a signaling application instance

get_cataloge()List[str][source]
# SCPI: CONFigure:DATA:MEASurement<Instance>:THRoughput:RAN:CATaloge
value: List[str] = driver.configure.data.measurement.throughput.ran.get_cataloge()

Lists all available signaling applications. You can use the returned strings in other commands to select a RAN.

return

ran: Comma-separated list of all supported values. Each value is represented as a string.

get_mcount()int[source]
# SCPI: CONFigure:DATA:MEASurement<Instance>:THRoughput:RAN:MCOunt
value: int = driver.configure.data.measurement.throughput.ran.get_mcount()

Specifies the total number of RAN throughput results to be measured.

return

max_count: Range: 5 to 3600

set(ran: str, slot=<Slot.Nr1: 1>)None[source]
# SCPI: CONFigure:DATA:MEASurement<Instance>:THRoughput:RAN<Index>
driver.configure.data.measurement.throughput.ran.set(ran = '1', slot = repcap.Slot.Nr1)

Assigns a RAN to the RAN slot number <Index>. You can query a complete list of all supported strings via the command method RsCmwDau.Configure.Data.Measurement.Throughput.Ran.cataloge.

param ran

String parameter, selecting a signaling application instance

param slot

optional repeated capability selector. Default value: Nr1

set_mcount(max_count: int)None[source]
# SCPI: CONFigure:DATA:MEASurement<Instance>:THRoughput:RAN:MCOunt
driver.configure.data.measurement.throughput.ran.set_mcount(max_count = 1)

Specifies the total number of RAN throughput results to be measured.

param max_count

Range: 5 to 3600

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.data.measurement.throughput.ran.clone()

Subgroups