User manual
Section 13: Instrument Control Library (ICL) Series 3700 System Switch/Multimeter Reference Manual
13-134 3700S-901-01 Rev. C / July 2008
dmm.drycircuit
Remarks
This is the dry circuit setting for the DMM and it applies to the selected function as
indicated by dmm.func. Querying the setting when the selected function does not
support it will cause nil to be returned.
This command only applies when dmm.func = "fourwireohms" or "commonsideohms".
All other function settings will generate an error if the command is received. Also, an
error will be generated if the value is invalid.
Changing functions with dmm.func (on page 13-137) will reflect the dry circuit setting
for that function.
The factory default and dmm.reset() (on page 13-161) function value is dmm.OFF.
Example
To enable dry circuit for 4-wire ohms:
dmm.func = "fourwireohms"
dmm.drycircuit = dmm.ON
dmm.filter.count
Attribute
Indicates the filter count setting for the selected DMM function.
Usage
To read the filter count:
value = dmm.filter.count
value: Represents the present filter count setting
To write the filter count:
dmm.filter.count = value
value: Represents the desired filter count setting from 1 to 100
Remarks
This is the filter count setting for the DMM and it applies to the selected function as
indicated by dmm.func. Querying the setting when the selected function does not
support it will cause nil to be returned.
This attribute indicates the number of measured readings to yield one filtered
measurements when filtered measurements are enabled.
The command will generate an error when dmm.func = "frequency", "period",
"continuity" or "nofunction". Also, an error will be generated if the value is out of range.
Changing functions with dmm.func (on page 13-137) will reflect the filter count setting
for that function.
The dmm.reset() (on page 13-161) function sets the filter count to 10.
Also see
dmm.filter.enable (on page 13-134)
dmm.filter.type (on page 13-135)
Example
To set the filter count for 2-wire ohms to 5:
dmm.func = "twowireohms"
dmm.filter.count = 5