Additional
SCPI Commands :
[SOURce<HW>]:BB:W3GPp:MSTation:ADDitional:COUNt
[SOURce<HW>]:BB:W3GPp:MSTation:ADDitional:STATe
- Commands in total: 5Subgroups: 3Direct child commands: 2
- get_count() int[source]
# [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.
- Returns:
count: integer Range: 1 to 128
- get_state() bool[source]
# [SOURce<HW>]:BB:W3GPp:MSTation:ADDitional:STATe value: bool = driver.source.bb.w3Gpp.mstation.additional.get_state()
Activates additional user equipment.
- Returns:
state: 1 | ON | 0| OFF
- set_count(count: int) None[source]
# [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.
- Parameters:
count – integer Range: 1 to 128
- set_state(state: bool) None[source]
# [SOURce<HW>]:BB:W3GPp:MSTation:ADDitional:STATe driver.source.bb.w3Gpp.mstation.additional.set_state(state = False)
Activates additional user equipment.
- Parameters:
state – 1 | ON | 0| OFF
Cloning the Group
# Create a copy of the original group, that exists independently
additional_copy = driver.source.bb.w3Gpp.mstation.additional.clone()
Subgroups