Carrier

SCPI Commands

CONFigure:WCDMa:SIGNaling<Instance>:UL:CARRier<Carrier>:POFFset
CONFigure:WCDMa:SIGNaling<Instance>:UL:CARRier<Carrier>:SCODe
class Carrier[source]

Carrier commands group definition. 3 total commands, 1 Sub-groups, 2 group commands

get_poffset()float[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:UL:CARRier<carrier>:POFFset
value: float = driver.configure.uplink.carrier.get_poffset()

Sets the DPCCH power offset, used by the UE to calculate the initial DPCCH power for random access. The power offset of the carrier two is defined as the power offset between the initial DPCCH power level on UL2 and the current DPCCH power level of UL1.

return

power_offset: Range: -164 dB to -6 dB for carrier one; 0 dB to 7 dB for carrier two , Unit: dB

Global Repeated Capabilities: repcap.Carrier

get_scode()float[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:UL:CARRier<carrier>:SCODe
value: float = driver.configure.uplink.carrier.get_scode()

Sets the long code number that the UE has to use to scramble the uplink WCDMA signal.

return

scrambling_code: Range: #H0 to #HFFFFFF

Global Repeated Capabilities: repcap.Carrier

set_poffset(power_offset: float)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:UL:CARRier<carrier>:POFFset
driver.configure.uplink.carrier.set_poffset(power_offset = 1.0)

Sets the DPCCH power offset, used by the UE to calculate the initial DPCCH power for random access. The power offset of the carrier two is defined as the power offset between the initial DPCCH power level on UL2 and the current DPCCH power level of UL1.

param power_offset

Range: -164 dB to -6 dB for carrier one; 0 dB to 7 dB for carrier two , Unit: dB

Global Repeated Capabilities: repcap.Carrier

set_scode(scrambling_code: float)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:UL:CARRier<carrier>:SCODe
driver.configure.uplink.carrier.set_scode(scrambling_code = 1.0)

Sets the long code number that the UE has to use to scramble the uplink WCDMA signal.

param scrambling_code

Range: #H0 to #HFFFFFF

Global Repeated Capabilities: repcap.Carrier

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.uplink.carrier.clone()

Subgroups