Tpc

SCPI Commands :

CONFigure:WCDMa:MEASurement<instance>:TPC:CSELection
CONFigure:WCDMa:MEASurement<instance>:TPC:SETup
CONFigure:WCDMa:MEASurement<instance>:TPC:MODE
CONFigure:WCDMa:MEASurement<instance>:TPC:MOEXception
CONFigure:WCDMa:MEASurement<instance>:TPC:TOUT
class TpcCls[source]

Tpc commands group definition. 32 total commands, 7 Subgroups, 5 group commands

get_cselection() Carrier[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:TPC:CSELection
value: enums.Carrier = driver.configure.wcdmaMeas.tpc.get_cselection()

Selects the uplink carrier to be measured. This parameter is relevant only for the dual uplink carrier configuration.

return:

carrier: C1: primary uplink carrier C2: secondary uplink carrier

get_mo_exception() bool[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:TPC:MOEXception
value: bool = driver.configure.wcdmaMeas.tpc.get_mo_exception()

Specifies whether measurement results that the CMP180 identifies as faulty or inaccurate are rejected.

return:

meas_on_exception: OFF: Faulty results are rejected. ON: Results are never rejected.

get_mode() MeasMode[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:TPC:MODE
value: enums.MeasMode = driver.configure.wcdmaMeas.tpc.get_mode()

Queries the active measurement mode resulting from the currently selected TPC setup.

return:

meas_mode: MONitor: Monitor ILPControl: Inner Loop Power Control MPEDch: Max. Power E-DCH CTFC: Change of TFC ULCM: UL Commpressed Mode DHIB: DC HSPA In-Band Emission

get_setup() SetType[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:TPC:SETup
value: enums.SetType = driver.configure.wcdmaMeas.tpc.get_setup()

Selects the TPC setup (expected) to be executed during the measurement.

return:

set_type: CLOop: Closed Loop ALTernating: Alternating ALL1: All 1 ALL0: All 0 SALT: Single Pattern + Alternating SAL1: Single Pattern + All 1 SAL0: Single Pattern + All 0 CONTinuous: Continuous Pattern TSE: TPC Test Step E TSF: TPC Test Step F PHUP: Phase Discontinuity Up PHDown: Phase Discontinuity Down TSABc: TPC Test Step ABC TSEF: TPC Test Step EF TSGH: TPC Test Step GH MPEDch:Max. Power E-DCH ULCM: TPC Test Step UL CM CTFC: Change of TFC DHIB: DC HSPA In-Band Emission

get_timeout() float[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:TPC:TOUT
value: float = driver.configure.wcdmaMeas.tpc.get_timeout()

Defines a timeout for the measurement. The timer is started when the measurement is initiated via a READ or INIT command. It is not started if the measurement is initiated manually. When the measurement has completed the first measurement cycle (first single shot) , the statistical depth is reached and the timer is reset. If the first measurement cycle has not been completed when the timer expires, the measurement is stopped. The measurement state changes to RDY. The reliability indicator is set to 1, indicating that a measurement timeout occurred. Still running READ, FETCh or CALCulate commands are completed, returning the available results. At least for some results, there are no values at all or the statistical depth has not been reached. A timeout of 0 s corresponds to an infinite measurement timeout.

return:

timeout: No help available

set_cselection(carrier: Carrier) None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:TPC:CSELection
driver.configure.wcdmaMeas.tpc.set_cselection(carrier = enums.Carrier.C1)

Selects the uplink carrier to be measured. This parameter is relevant only for the dual uplink carrier configuration.

param carrier:

C1: primary uplink carrier C2: secondary uplink carrier

set_mo_exception(meas_on_exception: bool) None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:TPC:MOEXception
driver.configure.wcdmaMeas.tpc.set_mo_exception(meas_on_exception = False)

Specifies whether measurement results that the CMP180 identifies as faulty or inaccurate are rejected.

param meas_on_exception:

OFF: Faulty results are rejected. ON: Results are never rejected.

set_setup(set_type: SetType) None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:TPC:SETup
driver.configure.wcdmaMeas.tpc.set_setup(set_type = enums.SetType.ALL0)

Selects the TPC setup (expected) to be executed during the measurement.

param set_type:

CLOop: Closed Loop ALTernating: Alternating ALL1: All 1 ALL0: All 0 SALT: Single Pattern + Alternating SAL1: Single Pattern + All 1 SAL0: Single Pattern + All 0 CONTinuous: Continuous Pattern TSE: TPC Test Step E TSF: TPC Test Step F PHUP: Phase Discontinuity Up PHDown: Phase Discontinuity Down TSABc: TPC Test Step ABC TSEF: TPC Test Step EF TSGH: TPC Test Step GH MPEDch:Max. Power E-DCH ULCM: TPC Test Step UL CM CTFC: Change of TFC DHIB: DC HSPA In-Band Emission

set_timeout(timeout: float) None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:TPC:TOUT
driver.configure.wcdmaMeas.tpc.set_timeout(timeout = 1.0)

Defines a timeout for the measurement. The timer is started when the measurement is initiated via a READ or INIT command. It is not started if the measurement is initiated manually. When the measurement has completed the first measurement cycle (first single shot) , the statistical depth is reached and the timer is reset. If the first measurement cycle has not been completed when the timer expires, the measurement is stopped. The measurement state changes to RDY. The reliability indicator is set to 1, indicating that a measurement timeout occurred. Still running READ, FETCh or CALCulate commands are completed, returning the available results. At least for some results, there are no values at all or the statistical depth has not been reached. A timeout of 0 s corresponds to an infinite measurement timeout.

param timeout:

No help available

Cloning the Group

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

Subgroups