Standard

SCPI Commands

CORRection:SPOT<Spot>:LOAD:STANdard
class StandardCls[source]

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

class StandardStruct[source]

Response structure. Fields:

  • Reference_Value_For_Primary: float: Sets the primary standard value as reference, e.g. the value of a calibration resistor.

  • Reference_Value_For_Secondary: float: Sets the secondary standard value.

get(spot=Spot.Default) StandardStruct[source]
# SCPI: CORRection:SPOT<Spot>:LOAD:STANdard
value: StandardStruct = driver.correction.spot.load.standard.get(spot = repcap.Spot.Default)

Defines a working point for load correction. Assign the working point number and the primary and secondary reference values.

param spot:

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Spot’)

return:

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

set(reference_value_for_primary: float, reference_value_for_secondary: float, spot=Spot.Default) None[source]
# SCPI: CORRection:SPOT<Spot>:LOAD:STANdard
driver.correction.spot.load.standard.set(reference_value_for_primary = 1.0, reference_value_for_secondary = 1.0, spot = repcap.Spot.Default)

Defines a working point for load correction. Assign the working point number and the primary and secondary reference values.

param reference_value_for_primary:

Sets the primary standard value as reference, e.g. the value of a calibration resistor.

param reference_value_for_secondary:

Sets the secondary standard value.

param spot:

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Spot’)