System Switch/Multimeter User's Manual Section 5: Basic Digital Multimeter (DMM) Oper
-900-01 Rev. A / August 2007 5-
2 and
-
Autodelay 3ms and Auto Range 2.5ms.
utodelay and Auto Range 1ms.
For the selected sensor type, the appropriate
2 delays will be applied.
Measure count
The Series 3700 supports multi-sample measurements by using the dmm.measurecount ICL
command. For a single ICL trigger, such as print(dmm.measure()), the DMM will take "n"
measurements. This is useful in channel closures or a scanlist where multiple measurements
are required per channel. With a measurecount >1 and autodelay set to once, measurements
can be optimized for accuracy and fast throughput. For example, for a 10-channel scanlist
requiring twenty 10V ACV readings per channel at detectorbandwidth = 3, the measurements
can be optimized as follows:
dmm.func="acvolts"
dmm.range=10
dmm.detectorbandwidth=3
dmm.autodelay=dmm.AUTODELAY_ONCE
dmm.configure.set("myacv")
dmm.setconfig("4001:4010", "myacv")
scan.create("4001:4010")
scan.measurecount=20
buf=dmm.makebuffer(200)
buf.clear()
buf.appendmode=1
scan.execute(buf)