Series 3700A System Switch/Multimeter Reference Manual Section 11: TSP command reference
3700AS-901-01 Rev. D/June 2018 11-225
dmm.func = "temperature"
dmm.transducer = dmm.TEMP_THREERTD
dmm.rtdzero = 300
dmm.configure.set("RTD_3wire")
dmm.transducer = dmm.TEMP_FOURRTD
dmm.rtdzero = 500
dmm.configure.set("RTD_4wire")
dmm.configure.recall("RTD_3wire")
print(dmm.transducer, dmm.rtdzero)
dmm.configure.recall("RTD_4wire")
print(dmm.transducer, dmm.rtdzero)
This example sets unique zero constants for
3-wire and 4-wire RTDs by creating two
DMM configurations.
Output:
3.000000000e+00
3.000000000e+02
4.000000000e+00
5.000000000e+02
Also see
dmm.configure.recall() (on page 11-165)
dmm.configure.set() (on page 11-166)
dmm.func (on page 11-179)
dmm.rtdalpha (on page 11-220)
dmm.rtdbeta (on page 11-221)
dmm.rtddelta (on page 11-222)
dmm.savebuffer()
Saves data from the specified reading buffer to a USB flash drive using the specified filename.
Usage
dmm.savebuffer("bufferVar", "fileName")
dmm.savebuffer("bufferVar", "fileName", timeFormat)
A string that specifies the name of the DMM reading buffer that was created by
dmm.makebuffer()
A string that indicates the name of the file on the USB flash drive in which to save
the reading buffer
How date and time information from the buffer is saved in the file on the USB flash
drive; the values are:
â–ª dmm.buffer.SAVE_FORMAT_TIME: The default. When this is selected,
dates, times, and fractional seconds are saved
â–ª dmm.buffer.SAVE_RELATIVE_TIME: Relative timestamps are saved
â–ª dmm.buffer.SAVE_RAW_TIME: Seconds and fractional seconds are saved
â–ª dmm.buffer.SAVE_TIMESTAMP_TIME: Timestamps are saved