PsGroup

SCPI Command :

CONFigure:WCDMa:MEASurement<instance>:TPC:LIMit:ILPControl:PSGRoup
class PsGroupCls[source]

PsGroup commands group definition. 1 total commands, 0 Subgroups, 1 group commands

class PsGroupStruct[source]

Response structure. Fields:

  • Enable: bool: Disables | enables the limit check.

  • Group_10_X_0_Db: float: Limit for groups with expected step size 10 x 0 dB (algorithm 2) .

  • Group_10_X_1_Dba_Lg_2: float: Limit for groups with expected step size 10 x ±1 dB + 40 x 0 dB (algorithm 2) .

  • Group_10_X_1_Db: float: Limit for groups with expected step size 10 x ±1 dB (algorithm 1) .

  • Group_10_X_2_Db: float: Limit for groups with expected step size 10 x ±2 dB (algorithm 1) .

get() PsGroupStruct[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:TPC:LIMit:ILPControl:PSGRoup
value: PsGroupStruct = driver.configure.wcdmaMeas.tpc.limit.ilpControl.psGroup.get()

Defines Inner Loop Power Control limits: upper limits for the absolute value of the power step group error, depending on the expected step size. Also it enables or disables the limit check.

return:

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

set(enable: bool, group_10_x_0_db: float, group_10_x_1_dba_lg_2: float, group_10_x_1_db: float, group_10_x_2_db: float) None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:TPC:LIMit:ILPControl:PSGRoup
driver.configure.wcdmaMeas.tpc.limit.ilpControl.psGroup.set(enable = False, group_10_x_0_db = 1.0, group_10_x_1_dba_lg_2 = 1.0, group_10_x_1_db = 1.0, group_10_x_2_db = 1.0)

Defines Inner Loop Power Control limits: upper limits for the absolute value of the power step group error, depending on the expected step size. Also it enables or disables the limit check.

param enable:

Disables | enables the limit check.

param group_10_x_0_db:

Limit for groups with expected step size 10 x 0 dB (algorithm 2) .

param group_10_x_1_dba_lg_2:

Limit for groups with expected step size 10 x ±1 dB + 40 x 0 dB (algorithm 2) .

param group_10_x_1_db:

Limit for groups with expected step size 10 x ±1 dB (algorithm 1) .

param group_10_x_2_db:

Limit for groups with expected step size 10 x ±2 dB (algorithm 1) .