Ctfc

SCPI Command :

CONFigure:WCDMa:MEASurement<instance>:TPC:LIMit:CTFC
class CtfcCls[source]

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

class CtfcStruct[source]

Response structure. Fields:

  • Power_Step_Limit: float: Symmetrical tolerance value for the power step size.

  • Calc_Beta_Factors: bool: Enables or disables the automatic calculation of the expected power step size from the configured beta factors.

  • Power_Step_Size: float: The expected power step size applicable if the automatic calculation from beta factors is disabled.

get() CtfcStruct[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:TPC:LIMit:CTFC
value: CtfcStruct = driver.configure.wcdmaMeas.tpc.limit.ctfc.get()

Configures a power step limit for the measurement mode Change of TFC.

return:

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

set(power_step_limit: float, calc_beta_factors: bool, power_step_size: float = None) None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:TPC:LIMit:CTFC
driver.configure.wcdmaMeas.tpc.limit.ctfc.set(power_step_limit = 1.0, calc_beta_factors = False, power_step_size = 1.0)

Configures a power step limit for the measurement mode Change of TFC.

param power_step_limit:

Symmetrical tolerance value for the power step size.

param calc_beta_factors:

Enables or disables the automatic calculation of the expected power step size from the configured beta factors.

param power_step_size:

The expected power step size applicable if the automatic calculation from beta factors is disabled.