Additional

SCPI Commands :

[SOURce<HW>]:BB:W3GPp:MSTation:ADDitional:COUNt
[SOURce<HW>]:BB:W3GPp:MSTation:ADDitional:STATe
class AdditionalCls[source]

Additional commands group definition. 5 total commands, 3 Subgroups, 2 group commands

get_count() int[source]
# SCPI: [SOURce<HW>]:BB:W3GPp:MSTation:ADDitional:COUNt
value: int = driver.source.bb.w3Gpp.mstation.additional.get_count()

The command sets the amount of additional user equipment. Up to 128 additional user equipment can be simulated - corresponding to a receive signal for a base station with high capacity utilization. The fourth user equipment (UE4) serves as a template for all other stations. The only parameters of the additional user equipment to be modified are the scrambling code and the power.

return

count: integer Range: 1 to 128

get_state() bool[source]
# SCPI: [SOURce<HW>]:BB:W3GPp:MSTation:ADDitional:STATe
value: bool = driver.source.bb.w3Gpp.mstation.additional.get_state()

Activates additional user equipment.

return

state: 1| ON| 0| OFF

set_count(count: int) None[source]
# SCPI: [SOURce<HW>]:BB:W3GPp:MSTation:ADDitional:COUNt
driver.source.bb.w3Gpp.mstation.additional.set_count(count = 1)

The command sets the amount of additional user equipment. Up to 128 additional user equipment can be simulated - corresponding to a receive signal for a base station with high capacity utilization. The fourth user equipment (UE4) serves as a template for all other stations. The only parameters of the additional user equipment to be modified are the scrambling code and the power.

param count

integer Range: 1 to 128

set_state(state: bool) None[source]
# SCPI: [SOURce<HW>]:BB:W3GPp:MSTation:ADDitional:STATe
driver.source.bb.w3Gpp.mstation.additional.set_state(state = False)

Activates additional user equipment.

param state

1| ON| 0| OFF

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.source.bb.w3Gpp.mstation.additional.clone()

Subgroups