Data
SCPI Command :
[SENSe]:CORRection:TRANsducer:DATA
- Commands in total: 1Subgroups: 0Direct child commands: 1
- class DataStruct[source]
Response structure. Fields:
1 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
2 Level: List[float]: The unit for Level depends on method
RsFsw.sense.correction.transducer.unit.set().
- get() DataStruct[source]
# [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’.
- Returns:
structure: for return value, see the help for DataStruct structure arguments.
- set(frequency: List[float], level: List[float]) None[source]
# [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’.
- Parameters:
frequency – The unit for Frequency is Hz, which may or may not be omitted. Frequencies have to be sorted in ascending order. Unit: Hz
level – The unit for Level depends on method
RsFsw.sense.correction.transducer.unit.set().