Specification

SCPI Commands :

SYSTem:SPECification:PARameter
SYSTem:SPECification
class SpecificationCls[source]

Specification commands group definition. 7 total commands, 2 Subgroups, 2 group commands

get_parameter() List[float][source]
# SCPI: SYSTem:SPECification:PARameter
value: List[float] = driver.system.specification.get_parameter()

Retrieves data sheet information for a specific parameter.

return:

val_list: float Comma-separated list with the specified and, if available, the typical value of the parameter, as specified in the data sheet.

get_value() List[float][source]
# SCPI: SYSTem:SPECification
value: List[float] = driver.system.specification.get_value()

Retrieves data sheet information for a specific parameter.

return:

val_list: float Comma-separated list with the specified and, if available, the typical value of the parameter, as specified in the data sheet.

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.system.specification.clone()

Subgroups