Data
SCPI Command :
[SENSe]:CORRection:TRANsducer:DATA
- class DataCls[source]
Data commands group definition. 1 total commands, 0 Subgroups, 1 group commands
- class DataStruct[source]
Response structure. Fields:
Frequency: List[float]: The unit for Frequency is Hz, which may or may not be omitted. Frequencies have to be sorted in ascending order. Unit: Hz
Level: List[float]: The unit for Level depends on [SENSe:]CORRection:TRANsducer:UNIT.
- get() DataStruct [source]
# SCPI: [SENSe]:CORRection:TRANsducer:DATA value: DataStruct = driver.sense.correction.transducer.data.get()
This command configures transducer factors for specific trace points. A set of transducer factors defines an interpolated transducer line and can be stored on the instrument. You can define up to 1001 points. For details see ‘Basics on transducer factors’.
- return
structure: for return value, see the help for DataStruct structure arguments.
- set(frequency: List[float], level: List[float]) None [source]
# SCPI: [SENSe]:CORRection:TRANsducer:DATA driver.sense.correction.transducer.data.set(frequency = [1.1, 2.2, 3.3], level = [1.1, 2.2, 3.3])
This command configures transducer factors for specific trace points. A set of transducer factors defines an interpolated transducer line and can be stored on the instrument. You can define up to 1001 points. For details see ‘Basics on transducer factors’.
- param frequency
The unit for Frequency is Hz, which may or may not be omitted. Frequencies have to be sorted in ascending order. Unit: Hz
- param level
The unit for Level depends on [SENSe:]CORRection:TRANsducer:UNIT.