178 Advanced Programming with the VT1529B
Chapter 5
DCV Measurement
Sequence
Below is an example VXI
plug&play
command sequence. Note that this is
not executable; it has been simplified for easier reading. The C++ example
source file (
dcv.cpp
) is on the CD supplied with the instrument. View the
readme.txt file provided with the VXI
plug&play
driver for example
program file location.
/* This shows measuring low-level inputs on channels 10000-10005 */
/* and high-level inputs on channels 10008-10015 */
/* optionally set VT1529B input filters (2, 10 or 100 Hz) */
errStatus = hpe1422_cmd(vi, "inp:filt:freq 10,(@10000:10005)");
errStatus = hpe1422_cmd(vi, "inp:filt:stat on,(@10000:10005)");
/* set up channels 10000-10005 for DCV, low level inputs */
errStatus = hpe1422_cmd(vi, "sens:func:volt auto,(@10000:10005)");
/* set up channels 10008-10015 for DCV, high level inputs */
errStatus = hpe1422_cmd(vi, "sens:func:hvol auto,(@10008:10015)");
/* set up the scan list to include the DCV channels */
errStatus = hpe1422_cmd(vi,"rout:seq:def (@10000:10005,10008:10015)");
/* set up the trigger system to make one scan for each trigger.
Note that the default is one scan per trigger and trigger source
is TIMer, so we only have to INITiate the trigger system to
take readings.
errStatus = hpe1422_cmd(vi,"trig:coun 1"); /* *RST default */
errStatus = hpe1422_cmd(vi,"trig:sour tim"); /* *RST default */
errStatus = hpe1422_cmd(vi,"arm:sour imm"); /* *RST default */
/* set up the sample timer. This controls the channel-to-channel scan
rate and can be important when channels need more than the default
40 us sample time. */
errStatus = hpe1422_cmd(vi,"samp:tim 40e-6"); /* *RST default */
/* INITiate the trigger system to execute a measurement scan */
errStatus = hpe1422_cmd(vi,"init:imm");
/* retrieve one scan’s data from the FIFO */
/* Note: if you’re not doing any measurements that require post-processed
EU conversions, you can use hpe1422_readFifo_Q instead */
errStatus = hpe1422_readFifoPost_Q(vi, 1, 0, 65024, f64_array);
Settling Time Considerations
Channel settling interactions are present in every scanning system. A
significant engineering effort has been applied to minimize these interactions,
however, if the correct situation is present, errors caused by settling can be
detected. This section presents a brief tutorial on settling errors and explains
how to control the source of these errors.
Settling errors occur when the voltage value of one channel seems to leak
into successive channels being scanned. This can be called
switching
crosstalk
. Traditional crosstalk occurs when one input signal interferes with
another input and is related to the frequency of the interfering signal.
However, switching crosstalk is not related to the signal frequency, but
rather is a function of the following factors which can be controlled:
•
The dc voltage of the interfering channel relative to the channel
being measured.
•
The amount of time the system remains on the interfering channel
before measurement of the desired channel (“soak” time).
•
The time elapsed between switching from the interfering channel
to the actual measurement on the desired channel (“discharge” time).
Summary of Contents for VT1422A
Page 2: ...This page is blank...
Page 8: ...8 Notes...
Page 22: ...22 Support...
Page 57: ...Field Wiring 57 Chapter 2...
Page 58: ...58 Field Wiring Chapter 2...
Page 96: ...94 Programming the VT1422A VT1529A B for Remote Strain Measurement Chapter 3...
Page 162: ...160 Programming the VT1422A for Data Acquisition and Control Chapter 4...
Page 224: ...222 Creating and Running Algorithms Chapter 6...
Page 419: ...VT1422A Command Reference 417 Chapter 7 Notes...
Page 420: ...418 VT1422A Command Reference Chapter 7 Notes...
Page 425: ...Specifications 423 Appendix A Thermocouple Type E 200 800 C SCPs VT1501 02 03A...
Page 426: ...424 Specifications Appendix A Thermocouple Type E 200 800 C SCPs VT1508 09A...
Page 427: ...Specifications 425 Appendix A Thermocouple Type E 0 800 C SCPs VT1501A 02A 03A...
Page 428: ...426 Specifications Appendix A Thermocouple Type E 0 800 C SCPs VT1508A 09A...
Page 429: ...Specifications 427 Appendix A Thermocouple Type E Extended SCPs VT1501A 02A 03A...
Page 430: ...428 Specifications Appendix A Thermocouple Type E Extended SCPs VT1508A 09A...
Page 431: ...Specifications 429 Appendix A Thermocouple Type J SCPs VT1501A 02A 03A...
Page 432: ...430 Specifications Appendix A Thermocouple Type J SCPs VT1508A 09A...
Page 433: ...Specifications 431 Appendix A Thermocouple Type K SCPs VT1501A 02A 03A...
Page 434: ...432 Specifications Appendix A Thermocouple Type R SCPs VT1501A 02A 03A...
Page 435: ...Specifications 433 Appendix A Thermocouple Type R SCPs VT1508A 09A...
Page 436: ...434 Specifications Appendix A Thermocouple Type S SCPs VT1501A 02A 03A...
Page 437: ...Specifications 435 Appendix A Thermocouple Type S SCPs VT1508A 09A...
Page 438: ...436 Specifications Appendix A Thermocouple Type T SCPs VT1501A 02A 03A...
Page 439: ...Specifications 437 Appendix A Thermocouple Type T SCPs VT1508A 09A...
Page 440: ...438 Specifications Appendix A 5k Thermistor Reference SCPs VT1501A 02A 03A...
Page 441: ...Specifications 439 Appendix A 5k Thermistor Reference SCPs VT1508A 09A...
Page 442: ...440 Specifications Appendix A RTD Reference SCPs VT1501A 02A 03A...
Page 443: ...Specifications 441 Appendix A RTD SCPs VT1501A 02A 03A...
Page 444: ...442 Specifications Appendix A RTD SCPs VT1508A 09A...
Page 445: ...Specifications 443 Appendix A 2250 Thermistor SCPs VT1501A 02A 03A...
Page 446: ...444 Specifications Appendix A 2250 Thermistor SCPs VT1508A 09A...
Page 447: ...Specifications 445 Appendix A 5k Thermistor SCPs VT1501A 02A 03A...
Page 448: ...446 Specifications Appendix A 5k Thermistor SCPs VT1508A 09A...
Page 449: ...Specifications 447 Appendix A 10k Thermistor SCPs VT1501A 02A 03A...
Page 450: ...448 Specifications Appendix A 10k Thermistor SCPs VT1508A 09A...
Page 454: ...452 Specifications Appendix A...
Page 480: ...478 VT1529A B Verification Calibration Appendix C...
Page 484: ...482 Glossary Appendix D Notes...