Result

SCPI Commands :

CONFigure:NRMMw:MEASurement<Instance>:PRACh:RESult:MODulation
CONFigure:NRMMw:MEASurement<Instance>:PRACh:RESult:PDYNamics
class ResultCls[source]

Result commands group definition. 3 total commands, 1 Subgroups, 2 group commands

get_modulation() bool[source]
# SCPI: CONFigure:NRMMw:MEASurement<Instance>:PRACh:RESult:MODulation
value: bool = driver.configure.nrMmwMeas.prach.result.get_modulation()

Enables or disables the evaluation of modulation results in the PRACH measurement.

return:

enable: OFF: Do not evaluate the results. ON: Evaluate the results.

get_pdynamics() bool[source]
# SCPI: CONFigure:NRMMw:MEASurement<Instance>:PRACh:RESult:PDYNamics
value: bool = driver.configure.nrMmwMeas.prach.result.get_pdynamics()

Enables or disables the evaluation of power dynamics results in the PRACH measurement.

return:

enable: OFF: Do not evaluate the results. ON: Evaluate the results.

set_modulation(enable: bool) None[source]
# SCPI: CONFigure:NRMMw:MEASurement<Instance>:PRACh:RESult:MODulation
driver.configure.nrMmwMeas.prach.result.set_modulation(enable = False)

Enables or disables the evaluation of modulation results in the PRACH measurement.

param enable:

OFF: Do not evaluate the results. ON: Evaluate the results.

set_pdynamics(enable: bool) None[source]
# SCPI: CONFigure:NRMMw:MEASurement<Instance>:PRACh:RESult:PDYNamics
driver.configure.nrMmwMeas.prach.result.set_pdynamics(enable = False)

Enables or disables the evaluation of power dynamics results in the PRACH measurement.

param enable:

OFF: Do not evaluate the results. ON: Evaluate the results.

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.nrMmwMeas.prach.result.clone()

Subgroups