Cqi

SCPI Commands

CONFigure:WCDMa:SIGNaling<Instance>:CELL:HSDPa:CQI:RFACtor
CONFigure:WCDMa:SIGNaling<Instance>:CELL:HSDPa:CQI:FBCYcle
CONFigure:WCDMa:SIGNaling<Instance>:CELL:HSDPa:CQI:TTI
CONFigure:WCDMa:SIGNaling<Instance>:CELL:HSDPa:CQI:HARQ
CONFigure:WCDMa:SIGNaling<Instance>:CELL:HSDPa:CQI:TINDex
CONFigure:WCDMa:SIGNaling<Instance>:CELL:HSDPa:CQI:SEQuence
CONFigure:WCDMa:SIGNaling<Instance>:CELL:HSDPa:CQI:FOLLow
class Cqi[source]

Cqi commands group definition. 12 total commands, 2 Sub-groups, 7 group commands

class FollowStruct[source]

Structure for reading output parameters. Fields:

  • Min_Value: int: Range: 1 to 30

  • Max_Value: int: Range: 1 to 30

class SequenceStruct[source]

Structure for reading output parameters. Fields:

  • Min_Value: int: Range: 1 to 30

  • Max_Value: int: Range: 1 to 30

get_fb_cycle()float[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:HSDPa:CQI:FBCYcle
value: float or bool = driver.configure.cell.hsdpa.cqi.get_fb_cycle()

Specifies the time after which the UE sends a new CQI value on the HS-DPCCH (CQI feedback cycle) . The CQI transmission can also be disabled completely.

return

feedback_cycle: Range: 2 ms to 160 ms, Unit: s Additional parameters: OFF | ON (disables | enables CQI transmission)

get_follow()FollowStruct[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:HSDPa:CQI:FOLLow
value: FollowStruct = driver.configure.cell.hsdpa.cqi.get_follow()

Defines the allowed range of CQI table indices. A value proposed by the UE is accepted if it is located within the range and FOLLow is configured via method RsCmwWcdmaSig.Configure.Cell.Hsdpa.Cqi.tindex.

return

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

get_harq()int[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:HSDPa:CQI:HARQ
value: int = driver.configure.cell.hsdpa.cqi.get_harq()

Specifies the number of HARQ processes.

return

number: Range: 1 to 8

get_rfactor()int[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:HSDPa:CQI:RFACtor
value: int = driver.configure.cell.hsdpa.cqi.get_rfactor()

Specifies how often the UE transmits the same CQI value per feedback cycle (CQI repetition factor) .

return

factor: Range: 1 to 4

get_sequence()SequenceStruct[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:HSDPa:CQI:SEQuence
value: SequenceStruct = driver.configure.cell.hsdpa.cqi.get_sequence()

Selects the range of CQI table indices to be used cyclically if SEQuence is configured via method RsCmwWcdmaSig.Configure. Cell.Hsdpa.Cqi.tindex.

return

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

get_tindex()RsCmwWcdmaSig.enums.TableIndex[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:HSDPa:CQI:TINDex
value: enums.TableIndex = driver.configure.cell.hsdpa.cqi.get_tindex()

Specifies the method to be used for selection of the CQI table index.

return

table_index: FIXed | SEQuence | CONFormance | FOLLow FIXed A fixed mapping table row is used. See also method RsCmwWcdmaSig.Configure.Cell.Carrier.Hsdpa.Cqi.fixed SEQuence A sequence of mapping table rows is used. See also method RsCmwWcdmaSig.Configure.Cell.Hsdpa.Cqi.sequence CONFormance A CQI reporting test is to be performed. See also method RsCmwWcdmaSig.Configure.Cell.Carrier.Hsdpa.Cqi.conformance FOLLow The CQI value to be used is proposed by the UE. See also method RsCmwWcdmaSig.Configure.Cell.Hsdpa.Cqi.follow

get_tti()int[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:HSDPa:CQI:TTI
value: int = driver.configure.cell.hsdpa.cqi.get_tti()

Queries the minimum distance between two consecutive transmission time intervals in which the HS-DSCH is allocated to the UE.

return

tti: Range: 1 to 3

set_fb_cycle(feedback_cycle: float)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:HSDPa:CQI:FBCYcle
driver.configure.cell.hsdpa.cqi.set_fb_cycle(feedback_cycle = 1.0)

Specifies the time after which the UE sends a new CQI value on the HS-DPCCH (CQI feedback cycle) . The CQI transmission can also be disabled completely.

param feedback_cycle

Range: 2 ms to 160 ms, Unit: s Additional parameters: OFF | ON (disables | enables CQI transmission)

set_follow(value: RsCmwWcdmaSig.Implementations.Configure_.Cell_.Hsdpa_.Cqi.Cqi.FollowStruct)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:HSDPa:CQI:FOLLow
driver.configure.cell.hsdpa.cqi.set_follow(value = FollowStruct())

Defines the allowed range of CQI table indices. A value proposed by the UE is accepted if it is located within the range and FOLLow is configured via method RsCmwWcdmaSig.Configure.Cell.Hsdpa.Cqi.tindex.

param value

see the help for FollowStruct structure arguments.

set_harq(number: int)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:HSDPa:CQI:HARQ
driver.configure.cell.hsdpa.cqi.set_harq(number = 1)

Specifies the number of HARQ processes.

param number

Range: 1 to 8

set_rfactor(factor: int)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:HSDPa:CQI:RFACtor
driver.configure.cell.hsdpa.cqi.set_rfactor(factor = 1)

Specifies how often the UE transmits the same CQI value per feedback cycle (CQI repetition factor) .

param factor

Range: 1 to 4

set_sequence(value: RsCmwWcdmaSig.Implementations.Configure_.Cell_.Hsdpa_.Cqi.Cqi.SequenceStruct)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:HSDPa:CQI:SEQuence
driver.configure.cell.hsdpa.cqi.set_sequence(value = SequenceStruct())

Selects the range of CQI table indices to be used cyclically if SEQuence is configured via method RsCmwWcdmaSig.Configure. Cell.Hsdpa.Cqi.tindex.

param value

see the help for SequenceStruct structure arguments.

set_tindex(table_index: RsCmwWcdmaSig.enums.TableIndex)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:HSDPa:CQI:TINDex
driver.configure.cell.hsdpa.cqi.set_tindex(table_index = enums.TableIndex.CONFormance)

Specifies the method to be used for selection of the CQI table index.

param table_index

FIXed | SEQuence | CONFormance | FOLLow FIXed A fixed mapping table row is used. See also method RsCmwWcdmaSig.Configure.Cell.Carrier.Hsdpa.Cqi.fixed SEQuence A sequence of mapping table rows is used. See also method RsCmwWcdmaSig.Configure.Cell.Hsdpa.Cqi.sequence CONFormance A CQI reporting test is to be performed. See also method RsCmwWcdmaSig.Configure.Cell.Carrier.Hsdpa.Cqi.conformance FOLLow The CQI value to be used is proposed by the UE. See also method RsCmwWcdmaSig.Configure.Cell.Hsdpa.Cqi.follow

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.cell.hsdpa.cqi.clone()

Subgroups