NI-DAQmx Basic Course NITS John Shannon

Size: px
Start display at page:

Download "NI-DAQmx Basic Course NITS John Shannon"

Transcription

1 NI-DAQmx Basic Course NITS 2005 John Shannon

2 Agenda Intro to DAQMX Difference between traditional / DaqMX MAX and DAQ Assistance Analog Input / Output Property Nodes Buffered / Continuous Acquisition Analog Output Triggering Counter / Timers Counter Timer Concepts

3 What is NI-DAQmx? Driver level software DLL that makes direct calls to your DAQ device NI-DAQ does not support 3rd party Data Acquisition devices Supports the following National Instruments software: LabVIEW Measurement Studio Also supports the following 3rd party languages: ANSI C Borland C++ Microsoft C/C++ Borland Delphi Visual Basic Subset of NI-DAQmx can run under other Operating Systems MAC OS X Linux

4 Measurement Services: More than just a driver Streamlined API Polymorphic functions Automatic code generation Simple and intuitive API Improved Driver Architecture Multithreaded measurements Easy, Instant calibration 20x faster for single-point operations Code generation Configuration Manager (MAX) LabVIEW DAQ Assistant API Driver Engine Hardware NI-DAQmx Measurement Services Software

5 Measurement and Automation Explorer (MAX) Task and channel creation Built-in test panel windows Device configuration and connection management Signal connection diagrams 5 April 2002

6 DAQ Assistant A step-by-step guide that helps you configure DAQ tasks, virtual channels, and scales with zero programming. Can be launched by right clicking on DAQmx controls. DAQ Assistant Express VI (local to application, not in MAX) MAX, right click Data Neighborhood and select Create New.

7 Physical & Global Channels in MAX Physical Channels Terminal of pin at which you can measure or generate an analog or digital signal. Hardware level Global Channels Global channels configured in MAX or application through DAQ Assistant. Can be used in any application or added to any task. If you modify a global channel, it will affect all tasks in which it is used.

8 NI-DAQmx Task A collection of one or more local or global virtual channels with timing, triggering, and other properties included.

9 KF2 Example 1 Explore MAX Run Test Panels Configure a Global Channel, Scale, and Task

10 Slide 9 KF2 need to add B & C portions to this exercise that show calibration, import/export wizard Kristi Fairchild, 11/23/2004

11 Programming with NI-DAQmx and LabVIEW Flexible programming options: DAQ Assistant Creating Tasks and Channels in MAX DAQ Assistant Express VI DAQmx Task Name Constant Automatic code generation NI-DAQmx API DAQmx VIs DAQmx Property Nodes

12 KF3 Example 2 Measuring Voltage in LabVIEW Using the DAQ Assistant Express VI

13 Slide 11 KF3 need to add B & C portions to this exercise that show calibration, import/export wizard Kristi Fairchild, 11/23/2004

14 NI-DAQmx - VI s & Property Nodes in LabVIEW Core Polymorphic VIs NI-DAQmx Task and Channel Constants DAQ Assistant Property Nodes Advanced Utility Functions 12 April 2002

15 DAQmx Property Nodes NI-DAQmx uses these LabVIEW constructs to provide complete programmatic control for all properties supported by the NI- DAQmx API. NI-DAQmx also provides a set of VIs that you can use to write your application, they are equivalent but easier and more convenient to use. The two examples are functionally equivalent.

16 Read VI & Read Property Node Read VI Used for analog, digital, counter, and raw data Single or multiple channels and samples Properties include Offset Channels to Read Waveform Attributes Status Current Sample # Advanced Raw Data Width And many more!

17 Write VI & Write Property Node Write VI Used for analog, digital, and unscaled data Single or multiple channels and samples Properties include Position Offset Regeneration Mode Status Space Available in Buffer Advanced Raw Data Width And many more!

18 Data Transfer for an Input Operation Onboard FIFO Memory DATA Input Rate PCI Bus Transfer Rate ASIC PC Buffer ADE (Application) Memory RAM LabVIEW

19 Finite Buffered Acquisition Perform a hardware-timed, finite buffered acquisition Set the buffer size, sampling mode, sampling rate, and number of samples to read per channel Number of samples per channel equals the buffer size or configure with Configure Input Buffer VI. Configure buffer, sampling mode, and rate NSamp = Multiple Samples

20 Continuous Buffered Acquisition If Num of samples per channel is unwired or set to -1, DAQmx automatically determines how many samples to read, based on task configuration. Set buffer size Select continuous samples for sample mode Available samples per channel = # available to read While loop around DAQmx Read

21 DAQmx Analog Output Set the buffer size, sampling mode, sampling rate, and number of samples to read per channel. Number of samples per channel equals the buffer size. Can be set with either the DAQmx Timing VI or with Configure Input Buffer VI.

22 Example 2 Analog Input

23 Trigger VI & Trigger Property Node Trigger VI Configures the task to start or stop on a rising or falling digital edge, analog edge, or analog windows Properties include Start Trigger Type Start Digital Edge Source Start Analog Window Top Reference Pre-Trigger Samples per Channel Reference Analog Edge Slope And many more!

24 Triggering Digital Triggering Acquired Signal Input Signal Trigger Signal

25 Triggering Analog Triggering Acquired Signal Input Signal Trigger Signal Trigger Threshold

26 Counter Applications Edge Counting Simple Edge Counting Time Measurement Pulse Generation Single Pulse Generation Pulse Train Generation Pulse Measurement Period Measurement Pulse Width Measurement Frequency Measurement Position Measurement Gate Source Count Register Out

27 DAQmx Source and Gate Selectors Source and gate selection is seamless The terminology morphs depending on the specific application You only need to specify the input terminal for your measurement and DAQmx will connect it to the appropriate source or gate depending on the application Counter signals can be input on any PFI pins DAQ Assistant will give you the default PFI pin for the application

28 DAQmx Simple Edge Counting Use the Counter instance of the DAQmx Read VI Start Task Count Edges Stop Task

29 DAQmx Pause Trigger Edge Counting Pause trigger is set with DAQmx Trigger property node Create Virtual Channel Start Task Count Edges Stop Task

30 Example 4 Simple Event Counting

31 The Latest and Greatest Features of NI-DAQmx USB Support (7.5) Simulated Devices (7.4) Virtual Channel Calibration (7.4) Ability to Programmatically Save Tasks/Channels/Scales to MAX (7.4) Connection Diagram Report Generation (7.4) Continual Addition of Example Programs

32 Questions?

33 Virtual Channels Virtual Channels Are a collection of settings that can include a name, a physical channel, input terminal connections, type of measurement / generation and scaling info. Can be configured with DAQ Assistant (MAX or Application) Can also be configured through the DAQmx API in your application (DAQmx Create Virtual Channel VI). Virtual channels created inside a task are local channels. Virtual channels defined outside a task are global channels.

34 NI-DAQmx Simulated Devices Run NI-DAQmx programs and Assistant without the hardware! Assistant and programs run just like on a real device with some exceptions: Timing and triggering are instantaneous Reads return fake data (for AI, data is a sine wave with some noise) Works for any supported DAQmx Device (DAQmx Plug-in Devices, SCXI, SCC s, etc.)

35 Virtual Channel Calibration Complete end-to-end calibration Analog Input only Multi-channel if all same type All done in software Can be combined with all other scaling types: measurement, devicecal, TEDS, custom scales, etc.

36 Create Virtual Channel VI & Channel Property Node Create Virtual Channel VI Programmatic creation of virtual channel(s) Adds the created channel(s) to a specified task Properties include Channel Type Physical Channel Name Description Analog I/O Custom Scale Name Digital I/O Number of lines Counter I/O Pulse Duty Cycle And many more!

37 DAQmx Analog Output DAQmx allows single-point, buffered, continuous, or triggered generation. The Use Waveform instance of the DAQmx Timing VI allows you to generate a waveform data type Output waveform frequency depends on update rate and the number of cycles of the waveform in the buffer

38 DAQmx Virtual Channel Counter Options Frequency Instance Time Instance Ticks Instance

39 DAQmx Read Function 1. Select Settings Signal Type Single or Multiple Channels? 2. Verify Settings Single or Multiple Samples? Return data as waveform or double (array) type? Analog 1 Channel 1 Sample Waveform

40 Reference Triggering Acquisition starts as soon as software is started Data in the buffer keeps getting overwritten (first in first out) until the stop trigger is received Typically only for finite input operations Start acquire Post-trigger Data = Size of Buffer Pre-trigger Data Pre-trigger data Post-trigger data Reference Trigger

41 Advanced Trigger Method: Pause Triggering Allows you to pause an acquisition/generation Operation stops when trigger signal is low and resumes when trigger signal is high Analog Pause Trigger: Digital Pause Trigger:

Advanced NI-DAQmx Programming Techniques with LabVIEW

Advanced NI-DAQmx Programming Techniques with LabVIEW Advanced NI-DAQmx Programming Techniques with LabVIEW Agenda Understanding Your Hardware Data Acquisition Systems Data Acquisition Device Subsystems Advanced Programming with NI-DAQmx Understanding Your

More information

What s New in Data Acquisition

What s New in Data Acquisition What s New in Data Acquisition NEW! New DAQ Products and Demos NEW! USB DAQ Multifunction Intelligent DAQ DAQ Software New DAQ Products and Demos NEW! USB DAQ Multifunction Intelligent DAQ DAQ Software

More information

Measurement & Automation Explorer (MAX) View and control your devices and software

Measurement & Automation Explorer (MAX) View and control your devices and software 1. Labview basics virtual instruments, data flow, palettes 2. Structures for, while, case,... editing techniques 3. Controls&Indicators arrays, clusters, charts, graphs 4. Additional lecture State machines,

More information

Additional products and features

Additional products and features SECTION 7.3: adding national instruments hardware Step: 1 In order to record data from a National Instruments device, you must fi rst install NI-DAQmx software from the National Instruments website. http://ftp.ni.com/support/softlib/multifunc-

More information

LabVIEW Tutorials. T.1 Temperature Measurement and Cold Junction Compensation (CJC) LUMS School of Science and Engineering

LabVIEW Tutorials. T.1 Temperature Measurement and Cold Junction Compensation (CJC) LUMS School of Science and Engineering LabVIEW Tutorials T.1 Temperature Measurement and Cold Junction Compensation (CJC) LUMS School of Science and Engineering Umer Hassan & Muhammad Sabieh Anwar Introduction: In this tutorial we shall learn

More information

Answers to Frequently Asked Questions about NI-DAQmx and Traditional NI-DAQ (Legacy)

Answers to Frequently Asked Questions about NI-DAQmx and Traditional NI-DAQ (Legacy) Answers to Frequently Asked Questions about NI-DAQmx and Traditional NI-DAQ (Legacy) Introduction This document answers the most frequently asked questions about NI-DAQmx and Traditional NI-DAQ (Legacy).

More information

Hardware: Acquiring Data and Communicating with Instruments

Hardware: Acquiring Data and Communicating with Instruments Hardware: Acquiring Data and Communicating with Instruments 4 Acquiring a Signal This chapter introduces you to the Express VIs you use to acquire data and communicate with instruments on Windows. These

More information

PC-based data acquisition I

PC-based data acquisition I FYS3240 PC-based instrumentation and microcontrollers PC-based data acquisition I Spring 2016 Lecture #8 Bekkeng, 20.01.2016 General-purpose computer With a Personal Computer (PC) we mean a general-purpose

More information

Hands-on Lab 2: LabVIEW NI-DAQ Basics 2

Hands-on Lab 2: LabVIEW NI-DAQ Basics 2 Hands-on Lab 2: LabVIEW NI-DAQ Basics 2 Recall that the final objective is position regulation using computer-controlled state feedback. Computer control requires both software, like LabVIEW and hardware,

More information

A variety of ECONseries modules provide economical yet flexible solutions. Waveform Generation

A variety of ECONseries modules provide economical yet flexible solutions. Waveform Generation ECONseries BUS: USB Type: Economy, Mini-Instruments ECONseries Economy USB Mini-Instruments Flexible Yet Economical A variety of low-cost ECONseries modules are available to provide flexible yet economical

More information

Step-by-Step Data Acquisition Part II Exercise 2: Generating an Analog Output Waveform

Step-by-Step Data Acquisition Part II Exercise 2: Generating an Analog Output Waveform Step-by-Step Data Acquisition Part II Exercise 2: Generating an Analog Output Waveform In this exercise, you will use the DAQ Assistant to build a LabVIEW VI that generates and outputs an analog waveform.

More information

Features. High-precision Analog input board (Low Profile size) for PCI Express AI-1616L-LPE AI-1616L-LPE 1. Ver.1.01

Features. High-precision Analog input board (Low Profile size) for PCI Express AI-1616L-LPE AI-1616L-LPE 1. Ver.1.01 High-precision Analog input board (Low Profile size) for PCI Express AI-1616L-LPE *Specifications, colors and design of the products are subject to change without notice. This product is a multi-function,

More information

ni.com/training Quizzes LabVIEW Core 1 ni.com/training Courses Skills learned: LabVIEW environment Certifications Skills tested: LabVIEW environment

ni.com/training Quizzes LabVIEW Core 1 ni.com/training Courses Skills learned: LabVIEW environment Certifications Skills tested: LabVIEW environment LabVIEW Core 1 What You Need To Get Started LabVIEW Core 1 Course Manual LabVIEW Core 1 Exercise Manual LabVIEW Core 1 Course CD Multifunction DAQ device GPIB interface DAQ Signal Accessory, wires, and

More information

LabVIEW Core 1. What You Need To Get Started. File Locations. The course installer places the course files in the following location: ni.

LabVIEW Core 1. What You Need To Get Started. File Locations. The course installer places the course files in the following location: ni. LabVIEW Core 1 What You Need To Get Started LabVIEW Core 1 Course Manual (online) LabVIEW Core 1 Exercise Manual (online) LabVIEW Core 1 Course CD (preloaded on S Share) Multifunction DAQ device File Locations

More information

1. Learn about LabView software and its different components

1. Learn about LabView software and its different components SfwrEng 4aa3/4ga3 Lab 1 Lab Sessions: Week starting Sept. 21, 2009. Pre-lab reports Due: Week Starting Sept. 21, 2009 at the start of lab sessions. Lab-Reports Due: Week Starting Oct. 5, 2009 at the start

More information

LabVIEW Basics I: Introduction Course

LabVIEW Basics I: Introduction Course www.ni.com/training LabVIEW Basics I Page 1 of 4 LabVIEW Basics I: Introduction Course Overview The LabVIEW Basics I course prepares you to develop test and measurement, data acquisition, instrument control,

More information

Install the Software and Hardware

Install the Software and Hardware WHERE TO START WITH YOUR NI 4350/4351 This document explains how to begin using your National Instruments 4350/4351 high-precision temperature and voltage meters. The NI 4350/4351 (NI 435x) products include

More information

The data acquisition components, and their relationship to each other, are shown below.

The data acquisition components, and their relationship to each other, are shown below. Data acquisition system Part (1) Digital inputs output and counter You can think of a data acquisition system as a collection of software and hardware that connects you to the physical world. A typical

More information

E Series Multifunction I/O 1.25 MS/s, 12-Bit, 16 or 64 Analog Inputs

E Series Multifunction I/O 1.25 MS/s, 12-Bit, 16 or 64 Analog Inputs E Series Multifunction I/O 1.25 MS/s, 12-Bit, 16 or 64 Inputs Families (E-1) Families (E-1) Family (MIO-16E-1) PCI-MIO-16E-1 PXI- AT-MIO-16E-1 Family (MIO-64E-1) PCI- PXI- VXI-MIO-64E-1 Input 16 single-ended,

More information

High-Accuracy M Series Multifunction DAQ 18-Bit, up to 625 ks/s, up to 32 Analog Inputs

High-Accuracy M Series Multifunction DAQ 18-Bit, up to 625 ks/s, up to 32 Analog Inputs High-Accuracy M Series Multifunction DAQ 18-Bit, up to 625 ks/s, up to 32 Analog Inputs NI M Series High-Accuracy 16 or 32 analog inputs at 18 bits, 625 ks/s (500 ks/s scanning) Up to 4 analog outputs

More information

Data Acquisition in LabVIEW

Data Acquisition in LabVIEW University College of Southeast Norway Data Acquisition in LabVIEW Hans-Petter Halvorsen, 2016.10.28 http://home.hit.no/~hansha Preface This tutorial explains the basic concepts of a Data Acquisition in

More information

Analog Input Sample Rate

Analog Input Sample Rate ECONseries Low Cost USB Data Acquisition Modules Overview The ECONseries is a flexible yet economical series of multifunction DAQ modules. You chse the number of analog I/O and digital I/O channels, the

More information

Measurement Studio Using.NET in Your Test and Measurement Applications

Measurement Studio Using.NET in Your Test and Measurement Applications Measurement Studio Using.NET in Your Test and Measurement Applications Agenda Introduction to Microsoft Visual Studio.NET Acquire Analyze Present Resources What are Customers Saying About Measurement Studio?

More information

BE/EE189 Design and Construction of Biodevices Lecture 5. BE/EE189 Design and Construction of Biodevices - Caltech

BE/EE189 Design and Construction of Biodevices Lecture 5. BE/EE189 Design and Construction of Biodevices - Caltech BE/EE189 Design and Construction of Biodevices Lecture 5 LabVIEW Programming Data acquisition DAQ system Signals and signal conditioning Nyquist frequency NI ELVIS II NI-DAQmx and DAQ assistant LabVIEW

More information

A variety of ECONseries modules provide economical yet flexible solutions

A variety of ECONseries modules provide economical yet flexible solutions Economy USB Mini-Instruments Flexible Yet Economical A variety of low-cost modules are available to provide flexible yet economical solutions. Choose the number of analog I/O and digital I/O channels,

More information

DaqBoard/1000. Series 16-Bit, 200-kHz PCI Data Acquisition Boards

DaqBoard/1000. Series 16-Bit, 200-kHz PCI Data Acquisition Boards 16-Bit, 200-kHz PCI Data Acquisition Boards Features 16-bit, 200-kHz A/D converter 8 differential or 16 single-ended analog inputs (software selectable per channel) Up to four boards can be installed into

More information

DT MS/s High-Speed, Isolated Simultaneous USB Data Acquisition Module. Overview. Key Features. Bandwidth of the DT9862

DT MS/s High-Speed, Isolated Simultaneous USB Data Acquisition Module. Overview. Key Features. Bandwidth of the DT9862 DT9862 10 MS/s High-Speed, Isolated Simultaneous USB Data Acquisition Module Overview The DT9862 is a high-speed, high-performance USB data acquisition module that provide throughput rates up to 10 MS/s

More information

Programming for the LabVIEW Real-Time Module Using LabWindows/CVI

Programming for the LabVIEW Real-Time Module Using LabWindows/CVI Application Note 182 Programming for the LabVIEW Real-Time Module Using LabWindows/CVI Introduction This document discusses using LabWindows/CVI to interface with RT Series hardware and to write DLLs to

More information

AO-1604LX-USB. Features. High-Resolution Analog Output Unit for USB AO-1604LX-USB 1. Ver.1.01

AO-1604LX-USB. Features. High-Resolution Analog Output Unit for USB AO-1604LX-USB 1. Ver.1.01 High-Resolution Analog Output Unit for USB AO-1604LX-USB This product is a USB2.0-compliant analog output unit that extends the analog output function of USB port of PCs. This product features high-precision

More information

Portable E Series Multifunction DAQ 12 or 16-Bit, up to 1.25 MS/s, 16 Analog Inputs

Portable E Series Multifunction DAQ 12 or 16-Bit, up to 1.25 MS/s, 16 Analog Inputs Portable E Series Multifunction DAQ 12 or 16-Bit, up to 1.25 MS/s, 16 Analog Inputs E Series Portable 16 analog inputs at up to 1.25 MS/s, 12 or 16-bit resolution Up to 2 analog outputs at up to 1 MS/s,

More information

FPGA design with National Instuments

FPGA design with National Instuments FPGA design with National Instuments Rémi DA SILVA Systems Engineer - Embedded and Data Acquisition Systems - MED Region ni.com The NI Approach to Flexible Hardware Processor Real-time OS Application software

More information

High-Speed M Series Multifunction DAQ 16-Bit, up to 1.25 MS/s, up to 80 Analog Inputs

High-Speed M Series Multifunction DAQ 16-Bit, up to 1.25 MS/s, up to 80 Analog Inputs High-Speed M Series Multifunction DAQ 16-Bit, up to 1.25 MS/s, up to 80 Inputs NI M Series High-Speed NI recommends high-accuracy M Series for 5X more measurement sensitivity or industrial M Series for

More information

High-Speed Voltage Output up to 1 MS/s/Channel, up to 16-Bit, up to 32 Channels

High-Speed Voltage Output up to 1 MS/s/Channel, up to 16-Bit, up to 32 Channels NI 673x, NI 671x, NI 672x Low-cost arbitrary waveform generation High channel density Integrated multidevice synchronization bus Easy real-time control with LabVIEW Real-Time Digital triggering and external

More information

High-Speed M Series Multifunction DAQ 16-Bit, up to 1.25 MS/s, up to 80 Analog Inputs

High-Speed M Series Multifunction DAQ 16-Bit, up to 1.25 MS/s, up to 80 Analog Inputs High-Speed M Series Multifunction DAQ 16-Bit, up to 1.25 MS/s, up to 80 Inputs NI M Series High-Speed NI recommends high-accuracy M Series for 5X more measurement sensitivity and lowpass filtering 16,

More information

NI PCI-5153EX. Contents USER GUIDE. with Hardware Accumulation Firmware

NI PCI-5153EX. Contents USER GUIDE. with Hardware Accumulation Firmware USER GUIDE NI PCI-5153EX with Hardware Accumulation Firmware Contents The National Instruments PCI-5153EX is a version of the NI PCI-5153 that has a higher capacity FPGA. The larger FPGA enables the NI

More information

LabVIEW Real-Time Module Release Notes

LabVIEW Real-Time Module Release Notes LabVIEW Real-Time Module Release Notes Version 7.1 Contents Installation These release notes provide installation information, references to related documentation, descriptions of the new features, and

More information

AIO AH-PCI. Features. Packing List. 12-bits Analog I/O Board (High Gain) for PCI AIO AH-PCI 1. Ver.1.04

AIO AH-PCI. Features. Packing List. 12-bits Analog I/O Board (High Gain) for PCI AIO AH-PCI 1. Ver.1.04 12-bits alog I/O Board (High Gain) for PCI AIO-121602AH-PCI This product is a PCI-bus compatible multifunction board equipped with analog input x 16ch, analog output x 2ch, digital input/output (unisolated

More information

NI-DAQ mx Base 1.x. Contents GETTING STARTED GUIDE

NI-DAQ mx Base 1.x. Contents GETTING STARTED GUIDE GETTING STARTED GUIDE NI-DAQ mx Base 1.x Contents This guide describes how to install and configure the NI-DAQmx Base 1.x software and a data acquisition (DAQ) device. This guide also describes how to

More information

DT3016. High-Speed, Multifunction PCI Data Acquisition Board. Overview. Key Features. Supported Operating Systems

DT3016. High-Speed, Multifunction PCI Data Acquisition Board. Overview. Key Features. Supported Operating Systems DT3016 High-Speed, Multifunction PCI Data Acquisition Board Overview The DT3016 provides a full range of PCI compatible, plug-in data acquisition boards for high-speed, high accuracy, and high channelcount

More information

Low-Cost Multifunction DAQ for USB

Low-Cost Multifunction DAQ for USB NI USB-6008, NI USB-6009 Small and portable 12 or 14-bit input resolution, at up to 48 ks/s Built-in, removable connectors for easier and more cost-effective connectivity 2 true DAC analog outputs for

More information

ECONseries Low Cost USB DAQ

ECONseries Low Cost USB DAQ ECONseries Low Cost USB Data Acquisition Modules ECONseries Low Cost USB DAQ The ECONseries is a flexible yet economical series of multifunction data acquisition modules. You choose the number of analog

More information

Determination of Drag Coefficient

Determination of Drag Coefficient DEPARTMENT OF MECHANICAL, INDUSTRIAL AND MANUFACTURING ENGINEERING MIMU 505 - MEASUREMENT AND ANALYSIS Determination of Drag Coefficient You will need to bring a zip disk or USB storage device to the lab

More information

ECONseries Low Cost USB DAQ

ECONseries Low Cost USB DAQ ECONseries Low Cost USB Data Acquisition Modules ECONseries Low Cost USB DAQ The ECONseries is a flexible yet economical series of multifunction data acquisition modules. You choose the number of analog

More information

PCI-3E. PCI Interface Card Page 1 of 7. Description. Features

PCI-3E. PCI Interface Card Page 1 of 7. Description. Features Page 1 of 7 class="notice" style="color:#a82a2f;font-weight:bold">the PCI-3E does not support Windows 7 Operating System. Please see our USB4 interface product which is Windows 7 compatible. The PCI-3E

More information

High-Speed Voltage Output up to 1 MS/s/Channel, up to 16 Bits, up to 32 Channels

High-Speed Voltage Output up to 1 MS/s/Channel, up to 16 Bits, up to 32 Channels High-Speed Voltage Output up to 1 MS/s/Channel, up to 16 Bits, up to 32 Channels NI 673x, NI 671x, NI 672x Low-cost arbitrary waveform generation High-channel density Integrated multidevice synchronization

More information

Figure 3.174: Illustration of the code of the event f USB that plots an USB camera frame if the typed frame is under the acceptable limits (case 0)

Figure 3.174: Illustration of the code of the event f USB that plots an USB camera frame if the typed frame is under the acceptable limits (case 0) 107 Figure 3.174: Illustration of the code of the event f USB that plots an USB camera frame if the typed frame is under the acceptable limits (case 0) Typing the desired HS frame in the box f HS, it is

More information

NI-DAQmx: Reduce Development Time and Improve Performance

NI-DAQmx: Reduce Development Time and Improve Performance Learn 10 Functions in NI-DAQmx and Handle 80 Percent of Your Data Acquisition Applications The National Instruments Getting Started with NI-DAQmx Series is aimed at helping you learn NI-DAQmx programming

More information

Developing Measurement and Control Applications with the LabVIEW FPGA Pioneer System

Developing Measurement and Control Applications with the LabVIEW FPGA Pioneer System Developing Measurement and Control Applications with the LabVIEW FPGA Pioneer System Introduction National Instruments is now offering the LabVIEW FPGA Pioneer System to provide early access to the new

More information

CALIBRATION PROCEDURE PXIe channel, 16-bit, 400 ks/s/ch, Ch-Ch Isolated Analog Input Module. ni.com/manuals

CALIBRATION PROCEDURE PXIe channel, 16-bit, 400 ks/s/ch, Ch-Ch Isolated Analog Input Module. ni.com/manuals CALIBRATION PROCEDURE PXIe-4310 8-channel, 16-bit, 400 ks/s/ch, Ch-Ch Isolated Analog Input Module Français Deutsch ni.com/manuals This document contains the verification and adjustment procedures for

More information

NI Technical Symposium ni.com

NI Technical Symposium ni.com NI Technical Symposium 2016 1 New Hardware Technologies for DAQ Applications Nicholas Haripersad Field Sales Engineer Session Objectives Introduce the three major NI DAQ platforms Present future trends

More information

Strain and Force Measurement

Strain and Force Measurement NORTHEASTERN UNIVERSITY DEPARTMENT OF MECHANICAL, INDUSTRIAL AND MANUFACTURING ENGINEERING MIMU 0-MEASUREMENT AND ANALYSIS Strain and Force Measurement OBJECTIVES The primary objective of this experiment

More information

AIO UE3-PE. Features. 1MSPS 12-bit Analog I/O Board for PCI Express AIO UE3-PE 1. Ver.1.01

AIO UE3-PE. Features. 1MSPS 12-bit Analog I/O Board for PCI Express AIO UE3-PE 1. Ver.1.01 1MSPS 12-bit Analog I/O Board for PCI Express AIO-121601UE3-PE * Specifications, color and design of the products are subject to change without notice. This product is an unisolated PCI Express bus-compliant

More information

NI mydaq HANS-PETTER HALVORSEN, Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics

NI mydaq HANS-PETTER HALVORSEN, Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics NI mydaq HANS-PETTER HALVORSEN, 2012.01.20 Faculty of Technology, Postboks 203, Kjølnes ring 56,

More information

BTH-1208LS Wireless Multifunction DAQ Device

BTH-1208LS Wireless Multifunction DAQ Device Wireless Multifunction DAQ Device Features Eight 11-bit single-ended (SE) or four 12-bit differential (DIFF) analog input channels Acquires data over Bluetooth or USB connection Maximum sampling rate of

More information

CALIBRATION PROCEDURE SCXI Contents. Software Requirements. ni.com/manuals

CALIBRATION PROCEDURE SCXI Contents. Software Requirements. ni.com/manuals CALIBRATION PROCEDURE SCXI -10 Français Deutsch ni.com/manuals Contents This document contains information for verifying and adjusting the SCXI-10 module using NI-DAQmx 8.1 or later. For more information

More information

AD16-16(PCI)EV. Features. High-Resolution Analog Input Board for PCI AD16-16(PCI)EV 1. Ver.1.01

AD16-16(PCI)EV. Features. High-Resolution Analog Input Board for PCI AD16-16(PCI)EV 1. Ver.1.01 High-Resolution Analog Input Board for PCI AD6-6(PCI)EV * s, color and design of the products are subject to change without notice. Features Resolution :6-bit, combination speed : 0μsec/ch This product

More information

AD12-16(PCI)EV. Features. Analog Input Board for PCI AD12-16(PCI)EV 1. Ver.1.01

AD12-16(PCI)EV. Features. Analog Input Board for PCI AD12-16(PCI)EV 1. Ver.1.01 Analog Input Board for PCI AD2-6(PCI)EV * s, color and design of the products are subject to change without notice. This product is PCI-compliant interface boards that convert analog input signals to digital

More information

DT7816 Linux Data Acquisition Real-Time High Performance ARM Module for Embedded Applications

DT7816 Linux Data Acquisition Real-Time High Performance ARM Module for Embedded Applications DT7816 Linux Data Acquisition Real-Time High Performance ARM Module for Embedded Applications The DT7816 is a high performance, System on Module (SOM) for data acquisition, featuring an embedded Cortex-A8

More information

AIO LN-USB. Features. N Series for USB Multifunction DAQ Unit (8ch AI, 2ch AO, 16ch DIO) AIO LN-USB 1. Ver.1.01

AIO LN-USB. Features. N Series for USB Multifunction DAQ Unit (8ch AI, 2ch AO, 16ch DIO) AIO LN-USB 1. Ver.1.01 N Series for USB Multifunction DAQ Unit (8ch AI, 2ch AO, 16ch DIO) AIO-120802LN-USB This product is a USB2.0-compliant analog I/O unit that extends the analog I/O function of USB port of PCs. Compact design

More information

Developing Measurement and Analysis System using MATLAB

Developing Measurement and Analysis System using MATLAB Developing Measurement and Analysis System using MATLAB 성호현차장 Senior Application Engineer MathWorks Korea 2013 The MathWorks, Inc. 1 Agenda Great Demo : Battery test demo Overview of data acquisition capabilities

More information

DT9828. USB Powered Thermocouple Measurement Module. Key Features: Analog Input Channels

DT9828. USB Powered Thermocouple Measurement Module. Key Features: Analog Input Channels DT9828 USB Powered Thermocouple Measurement Module Key Features: 8 differential analog inputs for thermocouple or voltage measurements Support for B, E, J, K, N, R, S, and T thermocouple types One cold

More information

AMPLICON ADIO32. LabVIEW DRIVER SOFTWARE

AMPLICON ADIO32. LabVIEW DRIVER SOFTWARE AMPLICON ADIO32 LabVIEW DRIVER SOFTWARE GUIDE TO AMPLICON ADIO32 LABVIEW DRIVER SOFTWARE This Instruction Manual is supplied with Amplicon ADIO32 LabVIEW Driver Software to provide the user with sufficient

More information

DATENBLATT ADA16-32/2(PCI)F. HABEN SIE FRAGEN ODER WÜNSCHEN SIE EIN INDIVIDUELLES ANGEBOT? Unser Team berät Sie gerne persönlich.

DATENBLATT ADA16-32/2(PCI)F. HABEN SIE FRAGEN ODER WÜNSCHEN SIE EIN INDIVIDUELLES ANGEBOT? Unser Team berät Sie gerne persönlich. DATENBLATT ADA16-32/2(PCI)F HABEN SIE FRAGEN ODER WÜNSCHEN SIE EIN INDIVIDUELLES ANGEBOT? Unser Team berät Sie gerne persönlich. TELEFON + 49 (0) 81 41/36 97-0 TELEFAX + 49 (0) 81 41/36 97-30 E-MAIL info@plug-in.de

More information

Software opmaak.indd :32:15

Software opmaak.indd :32:15 Software Dynamic Linking Library (DLL) Interface packages AS-161-Linux drivers for AvaSpec USB1 platform spectrometers A special set of designated Linux drivers for the AvaSpec USB1 platform

More information

DT7837. ARM Module for Embedded Applications. Overview. Key Features. Supported Operating Systems

DT7837. ARM Module for Embedded Applications. Overview. Key Features. Supported Operating Systems DT7837 ARM Module for Embedded Applications Overview The DT7837 is a high accuracy dynamic signal acquisition module for noise, vibration, and acoustic measurements with an embedded Cortex-A8 600 MHz ARM

More information

VIBBOX. 32, 48, or 64-Channel Sound & Vibration Solution Expansion to 256 Channels. Key Feature of Each VIBbox: Table 1. Key Features of VIBbox Models

VIBBOX. 32, 48, or 64-Channel Sound & Vibration Solution Expansion to 256 Channels. Key Feature of Each VIBbox: Table 1. Key Features of VIBbox Models VIBBOX 32, 48, or 64-Channel Sound & Vibration Solution Expansion to 256 Channels VIBbox is a high-accuracy, high channel count, dynamic signal analyzer system for sound and vibration applications. Each

More information

AD16-16(PCI)EV. Features. High-Resolution Analog Input Board for PCI AD16-16(PCI)EV 1. Ver.1.02

AD16-16(PCI)EV. Features. High-Resolution Analog Input Board for PCI AD16-16(PCI)EV 1. Ver.1.02 High-Resolution Analog Input Board for PCI AD6-6(PCI)EV * s, color and design of the products are subject to change without notice. Features Resolution : 6-bit, combination speed : 0 sec/ch This product

More information

ADI12-16(PCI) Isolated Multi-Function Analog Input Board for PCI ADI12-16(PCI) 1. Ver.1.01

ADI12-16(PCI) Isolated Multi-Function Analog Input Board for PCI ADI12-16(PCI) 1. Ver.1.01 Isolated Multi-Function Analog Input for PCI ADI2-6(PCI) This product is PCI-compliant interface boards that convert analog input signals to digital equivalents (performing analog-to-digital conversion).

More information

USB 1608G Series USB Multifunction Devices

USB 1608G Series USB Multifunction Devices USB Multifunction Devices Features 16-bit high-speed USB devices Acquisition rates ranging from 250 ks/s to 500 ks/s differential (DIFF) or 16 singleended (SE) analog inputs (softwareselectable) Up to

More information

Acquiring Data from Sensors and Instruments Using MATLAB

Acquiring Data from Sensors and Instruments Using MATLAB Acquiring Data from Sensors and Instruments Using MATLAB Chirag Patel Application Engineer Control Systems MathWorks 2011 The MathWorks, Inc. 1 Agenda Why acquire data with MATLAB? Overview of data access

More information

AD12-16(PCI)EV. Features. Analog Input Board for PCI AD12-16(PCI)EV 1. Ver.1.02

AD12-16(PCI)EV. Features. Analog Input Board for PCI AD12-16(PCI)EV 1. Ver.1.02 Analog Input Board for PCI AD2-6(PCI)EV * s, color and design of the products are subject to change without notice. This product is PCI-compliant interface boards that convert analog input signals to digital

More information

USB 1608G Series USB Multifunction Devices

USB 1608G Series USB Multifunction Devices USB Multifunction Devices Features 16-bit high-speed USB devices Acquisition rates ranging from 250 ks/s to 500 ks/s differential (DIFF) or 16 singleended (SE) analog inputs (softwareselectable) Up to

More information

A Step Into the Future of Data Measurement. Focus on Tests and Measurements. Let idaq Do the Rest.

A Step Into the Future of Data Measurement. Focus on Tests and Measurements. Let idaq Do the Rest. W H I T E P A P E R A Step Into the Future of Data Measurement Focus on Tests and Measurements. Let idaq Do the Rest. idaq Whitepaper OVERVIEW IDAQ, THE INTUITIVE, COMPLETE AND RELIABLE SOFTWARE FOR YOUR

More information

Artisan Technology Group is your source for quality new and certified-used/pre-owned equipment

Artisan Technology Group is your source for quality new and certified-used/pre-owned equipment Artisan Technology Group is your source for quality new and certified-used/pre-owned equipment FAST SHIPPING AND DELIVERY TENS OF THOUSANDS OF IN-STOCK ITEMS EQUIPMENT DEMOS HUNDREDS OF MANUFACTURERS SUPPORTED

More information

PXDAC4800. Product Information Sheet. 1.2 GSPS 4-Channel Arbitrary Waveform Generator FEATURES APPLICATIONS OVERVIEW

PXDAC4800. Product Information Sheet. 1.2 GSPS 4-Channel Arbitrary Waveform Generator FEATURES APPLICATIONS OVERVIEW Product Information Sheet PXDAC4800 1.2 GSPS 4-Channel Arbitrary Waveform Generator FEATURES 4 AC-Coupled or DC-Coupled DAC Channel Outputs 14-bit Resolution @ 1.2 GSPS for 2 Channels or 600 MSPS for 4

More information

CompuScope Ultra-fast waveform digitizer card for PCI bus. APPLICATIONS. We offer the widest range of

CompuScope Ultra-fast waveform digitizer card for PCI bus.   APPLICATIONS. We offer the widest range of We offer the widest range of high-speed and high-resolution digitizers available on the market CompuScope 1602 Ultra-fast waveform digitizer card for PCI bus today. Our powerful PC-based instrumentation

More information

The following conventions appear in this document:

The following conventions appear in this document: CALIBRATION PROCEDURE NI PXI-4220 Conventions This document contains the information and instructions needed to calibrate the NI PXI-4220. You should calibrate the NI PXI-4220 at a regular interval as

More information

E/S/M/B Series Calibration Procedure for NI-DAQ mx

E/S/M/B Series Calibration Procedure for NI-DAQ mx E/S/M/B Series Calibration Procedure for NI-DAQ mx Contents This document contains information about calibrating National Instruments E, S, M, and B Series data acquisition (DAQ) devices. This document

More information

VIBbox 64-Channel Sound & Vibration Solution

VIBbox 64-Channel Sound & Vibration Solution VIBbox 64-Channel Sound & Vibration Solution VIBbox is a high-accuracy, high channel count, dynamic signal analyzer system for sound and vibration applications. VIBbox packages four DT9857E modules in

More information

GX5295 DIGITAL I/O DYNAMIC DIGITAL I/O WITH PER CHANNEL PROGRAMMABLE LOGIC LEVELS AND PMU PXI CARD DESCRIPTION FEATURES

GX5295 DIGITAL I/O DYNAMIC DIGITAL I/O WITH PER CHANNEL PROGRAMMABLE LOGIC LEVELS AND PMU PXI CARD DESCRIPTION FEATURES DYNAMIC WITH PER CHANNEL PROGRAMMABLE LOGIC LEVELS AND PMU PXI CARD 32 input / output channels, dynamically configurable on a per channel basis 4 control / timing channels with programmable levels 256

More information

PHYS 5061 Lab 1: Introduction to LabVIEW

PHYS 5061 Lab 1: Introduction to LabVIEW PHYS 5061 Lab 1: Introduction to LabVIEW In this lab, you will work through chapter 1 and 2 of Essick s book to become familiar with using LabVIEW to build simple programs, called VI s in LabVIEW-speak,

More information

Dept. of Electrical, Computer and Biomedical Engineering. Data Acquisition Systems and the NI LabVIEW environment

Dept. of Electrical, Computer and Biomedical Engineering. Data Acquisition Systems and the NI LabVIEW environment Dept. of Electrical, Computer and Biomedical Engineering Data Acquisition Systems and the NI LabVIEW environment Data Acquisition (DAQ) Use of some data acquisition technique can be convenient, when not

More information

M2i.xxxx LabVIEW Driver

M2i.xxxx LabVIEW Driver M2i.xxxx LabVIEW Driver Driver for all M2i cards and related digitizernetbox products Installation, Libraries, Data sorting, Examples, Standard mode, FIFO mode English version May 25, 2018 SPECTRUM INSTRUMENTATION

More information

Low Cost Multifunction I/O 100 ks/s, 12-Bit, 8 Analog Inputs

Low Cost Multifunction I/O 100 ks/s, 12-Bit, 8 Analog Inputs 00 ks/s, 2-Bit, Analog Inputs 200 Family PCI-200 DAQCard-200 Lab-PC-200 DAQPad-200 200AI Family Lab-PC-200AI Analog Inputs single-ended, 4 differential channels 00 ks/s sampling rate 2-bit resolution Analog

More information

16-Bit A/D Converter (ENOB=14.1) 16-bit D/A. 16-bit D/A. Digital I/O (8/8) Counter/Timer (2)

16-Bit A/D Converter (ENOB=14.1) 16-bit D/A. 16-bit D/A. Digital I/O (8/8) Counter/Timer (2) DT9818 Isolated, Embedded USB Data Acquisition Board The DT9818 is perfect for embedding in a custom application where isolation is required. The DT9818 is a highperformance USB data acquisition (DAQ)

More information

Data Acquisition HANS-PETTER HALVORSEN,

Data Acquisition HANS-PETTER HALVORSEN, Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics Data Acquisition HANS-PETTER HALVORSEN, 2011.10.14 Faculty of Technology, Postboks 203, Kjølnes

More information

Lab Exercise 2: Data Acquisition with NI LabVIEW

Lab Exercise 2: Data Acquisition with NI LabVIEW Objective When you have completed this exercise, you will be able: To use the DAQ Assistant to acquire analog data measurements with NI LabVIEW To use Write to Measurement express VI to log real time data

More information

Low-Cost E Series Multifunction DAQ. 12 or 16-Bit, 200 ks/s, 16 Analog Inputs

Low-Cost E Series Multifunction DAQ. 12 or 16-Bit, 200 ks/s, 16 Analog Inputs Low-Cost E Series Multifunction DAQ 12 or 16-Bit, 200 ks/s, 16 Analog Inputs Low-Cost E Series Multifunction DAQ E Series Low-Cost 16 analog inputs at up to 200 ks/s, 12 or 16-bit resolution Up to 2 analog

More information

Vernier SensorDAQ User s Manual

Vernier SensorDAQ User s Manual Vernier SensorDAQ User s Manual Vernier SensorDAQ User s Manual 2011 by Vernier Software & Technology. All rights reserved. You are entitled to reproduce parts of this manual for use in your educational

More information

DT7837 ARM Module for Embedded Applications

DT7837 ARM Module for Embedded Applications DT7837 ARM Module for Embedded Applications The DT7837 is a high accuracy dynamic signal acquisition module for noise, vibration, and acoustic measurements with an embedded Cortex-A8 600MHz ARM processor.

More information

LabVIEW Real-Time Module for Mac OS X User Manual Addendum

LabVIEW Real-Time Module for Mac OS X User Manual Addendum LabVIEW Real-Time Module for Mac OS X User Manual Addendum Contents Installing the Software This addendum supplements the LabVIEW Real-Time Module User Manual with information specific to running the LabVIEW

More information

OEMs: Contact IOtech if you require a custom version of this board with either PCI or USB

OEMs: Contact IOtech if you require a custom version of this board with either PCI or USB PCI 1-MHz, 16-Bit Multifunction Boards Features Four low-cost, 1-MHz, 16-bit multifunction PCI boards 8 differential or 16 single-ended analog inputs (software selectable per channel) User-expandable up

More information

DATENBLATT ADA16-8/2(LPCI)L. HABEN SIE FRAGEN ODER WÜNSCHEN SIE EIN INDIVIDUELLES ANGEBOT? Unser Team berät Sie gerne persönlich.

DATENBLATT ADA16-8/2(LPCI)L. HABEN SIE FRAGEN ODER WÜNSCHEN SIE EIN INDIVIDUELLES ANGEBOT? Unser Team berät Sie gerne persönlich. DATENBLATT ADA16-8/2(LPCI)L HABEN SIE FRAGEN ODER WÜNSCHEN SIE EIN INDIVIDUELLES ANGEBOT? Unser Team berät Sie gerne persönlich. TELEFON + 49 (0) 81 41/36 97-0 TELEFAX + 49 (0) 81 41/36 97-30 E-MAIL info@plug-in.de

More information

ni.com Integrating EPICS and LabVIEW

ni.com Integrating EPICS and LabVIEW Integrating EPICS and LabVIEW Agenda Overview Channel Access (CA) Support LabVIEW EPICS CA Server LabVIEW EPICS CA Client EPICS IOC Support CompactRIO PXI 3 rd Party Options Questions and Answers 3 Overview

More information

High-Density Industrial Digital I/O for USB 96-Channel, 5 V TTL/CMOS

High-Density Industrial Digital I/O for USB 96-Channel, 5 V TTL/CMOS High-Density Industrial Digital I/O for USB 96-Channel, 5 V TTL/CMOS NI USB-6509 NEW! Portable digital I/O device 96 bidirectional I/O channels (5 V TTL/CMOS) High-current drive (up to 24 sink or source)

More information

Contents. Software. CALIBRATION PROCEDURE NI 9216/ Channel, 24-Bit, 100 Ω/1000 Ω RTD Analog Input Module

Contents. Software. CALIBRATION PROCEDURE NI 9216/ Channel, 24-Bit, 100 Ω/1000 Ω RTD Analog Input Module CALIBRATION PROCEDURE NI 9216/9226 8-Channel, 24-Bit, 100 Ω/1000 Ω RTD Analog Input Module This document contains the verification and adjustment procedures for the National Instruments 9216 and National

More information

Register Map and Descriptions

Register Map and Descriptions Register Map and Descriptions Table 3-1. PCI-6110E Register Map Register Name Offset Address Type Size Hex Decimal Misc Register Group Serial Command 0D 13 Misc Command 0F 15 Magic 19 25 Write-Only Status

More information

Hands-On Introduction to. LabVIEW. for Scientists and Engineers. Second Edition. John Essick. Reed College OXFORD UNIVERSITY PRESS

Hands-On Introduction to. LabVIEW. for Scientists and Engineers. Second Edition. John Essick. Reed College OXFORD UNIVERSITY PRESS Hands-On Introduction to LabVIEW for Scientists and Engineers Second Edition John Essick Reed College New York Oxford OXFORD UNIVERSITY PRESS Contents. Preface xiii 1. THE WHILE LOOP AND WAVEFORM CHART

More information

M3i.xxxx LabVIEW Driver

M3i.xxxx LabVIEW Driver M3i.xxxx LabVIEW Driver Driver for all M3i cards and related digitizernetbox products Installation, Libraries, Data sorting, Examples, Standard mode, FIFO mode English version May 25, 2018 SPECTRUM INSTRUMENTATION

More information

Artisan Technology Group is your source for quality new and certified-used/pre-owned equipment

Artisan Technology Group is your source for quality new and certified-used/pre-owned equipment Artisan Technology Group is your source for quality new and certified-used/pre-owned equipment FAST SHIPPING AND DELIVERY TENS OF THOUSANDS OF IN-STOCK ITEMS EQUIPMENT DEMOS HUNDREDS OF MANUFACTURERS SUPPORTED

More information