Gfactor

SCPI Commands

CONFigure:WCDMa:SIGNaling<Instance>:UL:GFACtor:VIDeo
CONFigure:WCDMa:SIGNaling<Instance>:UL:GFACtor:VOICe
CONFigure:WCDMa:SIGNaling<Instance>:UL:GFACtor:HSDPa
class Gfactor[source]

Gfactor commands group definition. 12 total commands, 3 Sub-groups, 3 group commands

class HsdpaStruct[source]

Structure for reading output parameters. Fields:

  • Beta_C: int: Range: 1 to 15

  • Beta_D: int: Range: 1 to 15

  • Delta_Ack: int: Range: 0 to 8

  • Delta_Nack: int: Range: 0 to 8

  • Delta_Cqi: int: Range: 0 to 8

class VideoStruct[source]

Structure for reading output parameters. Fields:

  • Beta_C: int: Range: 1 to 15

  • Beta_D: int: Range: 1 to 15

class VoiceStruct[source]

Structure for reading output parameters. Fields:

  • Beta_C: int: Range: 1 to 15

  • Beta_D: int: Range: 1 to 15

get_hsdpa()HsdpaStruct[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:UL:GFACtor:HSDPa
value: HsdpaStruct = driver.configure.uplink.gfactor.get_hsdpa()

Specifies the UE gain factors and power offsets for HSDPA connections.

return

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

get_video()VideoStruct[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:UL:GFACtor:VIDeo
value: VideoStruct = driver.configure.uplink.gfactor.get_video()

Specifies the UE gain factors βc (DPCCH) and βd (DPDCH) for video connections.

return

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

get_voice()VoiceStruct[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:UL:GFACtor:VOICe
value: VoiceStruct = driver.configure.uplink.gfactor.get_voice()

Specifies the UE gain factors βc (DPCCH) and βd (DPDCH) for voice connections.

return

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

set_hsdpa(value: RsCmwWcdmaSig.Implementations.Configure_.Uplink_.Gfactor.Gfactor.HsdpaStruct)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:UL:GFACtor:HSDPa
driver.configure.uplink.gfactor.set_hsdpa(value = HsdpaStruct())

Specifies the UE gain factors and power offsets for HSDPA connections.

param value

see the help for HsdpaStruct structure arguments.

set_video(value: RsCmwWcdmaSig.Implementations.Configure_.Uplink_.Gfactor.Gfactor.VideoStruct)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:UL:GFACtor:VIDeo
driver.configure.uplink.gfactor.set_video(value = VideoStruct())

Specifies the UE gain factors βc (DPCCH) and βd (DPDCH) for video connections.

param value

see the help for VideoStruct structure arguments.

set_voice(value: RsCmwWcdmaSig.Implementations.Configure_.Uplink_.Gfactor.Gfactor.VoiceStruct)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:UL:GFACtor:VOICe
driver.configure.uplink.gfactor.set_voice(value = VoiceStruct())

Specifies the UE gain factors βc (DPCCH) and βd (DPDCH) for voice connections.

param value

see the help for VoiceStruct structure arguments.

Cloning the Group

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

Subgroups