Tpc

SCPI Commands :

CONFigure:NRSub:MEASurement<Instance>:TPC:TOUT
CONFigure:NRSub:MEASurement<Instance>:TPC:DIRection
CONFigure:NRSub:MEASurement<Instance>:TPC:STID
CONFigure:NRSub:MEASurement<Instance>:TPC:PATTern
Commands in total: 6
Subgroups: 1
Direct child commands: 4
get_direction() Direction[source]
# CONFigure:NRSub:MEASurement<Instance>:TPC:DIRection
value: enums.Direction = driver.configure.nrSubMeas.tpc.get_direction()

Specifies the direction of the power pattern corresponding to the UL signal configuration.

Returns:

direction: Ramping up, ramping down, alternating

get_pattern() Pattern[source]
# CONFigure:NRSub:MEASurement<Instance>:TPC:PATTern
value: enums.Pattern = driver.configure.nrSubMeas.tpc.get_pattern()

Selects the power pattern corresponding to the UL signal configuration. The power pattern determines the position of the RB allocation change in ramping up and ramping down tests.

Returns:

pattern: A | B | C

get_st_id() int[source]
# CONFigure:NRSub:MEASurement<Instance>:TPC:STID
value: int = driver.configure.nrSubMeas.tpc.get_st_id()

Specifies the subtest ID corresponding to the UL signal configuration.

Returns:

sub_test_id: numeric

get_timeout() float[source]
# CONFigure:NRSub:MEASurement<Instance>:TPC:TOUT
value: float = driver.configure.nrSubMeas.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.

Returns:

timeout: numeric

set_direction(direction: Direction) None[source]
# CONFigure:NRSub:MEASurement<Instance>:TPC:DIRection
driver.configure.nrSubMeas.tpc.set_direction(direction = enums.Direction.ALTernating)

Specifies the direction of the power pattern corresponding to the UL signal configuration.

Parameters:

direction – Ramping up, ramping down, alternating

set_pattern(pattern: Pattern) None[source]
# CONFigure:NRSub:MEASurement<Instance>:TPC:PATTern
driver.configure.nrSubMeas.tpc.set_pattern(pattern = enums.Pattern.A)

Selects the power pattern corresponding to the UL signal configuration. The power pattern determines the position of the RB allocation change in ramping up and ramping down tests.

Parameters:

pattern – A | B | C

set_st_id(sub_test_id: int) None[source]
# CONFigure:NRSub:MEASurement<Instance>:TPC:STID
driver.configure.nrSubMeas.tpc.set_st_id(sub_test_id = 1)

Specifies the subtest ID corresponding to the UL signal configuration.

Parameters:

sub_test_id – numeric

set_timeout(timeout: float) None[source]
# CONFigure:NRSub:MEASurement<Instance>:TPC:TOUT
driver.configure.nrSubMeas.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.

Parameters:

timeout – numeric

Cloning the Group

# Create a copy of the original group, that exists independently
tpc_copy = driver.configure.nrSubMeas.tpc.clone()

Subgroups