Data Acquisition in MATLAB PDF
Data Acquisition in MATLAB PDF
Data Acquisition in MATLAB PDF
DAQ in MATLAB
HANS-PETTER HALVORSEN, 2012.09.11
Faculty of Technology, Postboks 203, Kjlnes ring 56, N-3901 Porsgrunn, Norway. Tel: +47 35 57 50 00 Fax: +47 35 57 54 01
Table of Contents
1 Introduction .................................................................................................................................... 4 1.1 1.2 MATLAB ................................................................................................................................... 4 Simulink ................................................................................................................................... 5 Data Acquisition Toolbox................................................................................................. 6
Data Acquisition.............................................................................................................................. 8 2.1 Introduction ............................................................................................................................. 8 Physical input/output signals .......................................................................................... 8 DAQ device/hardware ..................................................................................................... 9 Driver software .............................................................................................................. 10 Your software application ............................................................................................. 10
MAX Measurement and Automation Explorer ................................................................... 10 DAQ in MATLAB ..................................................................................................................... 12 NI-DAQmx ...................................................................................................................... 12
2.3.1 3
My First DAQ App ......................................................................................................................... 15 4.1 4.2 Introduction ........................................................................................................................... 15 Legacy Interface .................................................................................................................... 15 Simple DAQ Application ................................................................................................ 16 Source Code................................................................................................................... 17 2
4.2.1 4.2.2
3 4.3
4.3.1 5
DAQ in Simulink ............................................................................................................................ 21 5.1 5.2 Analog In ................................................................................................................................ 21 Analog Out ............................................................................................................................. 23
Control Application ....................................................................................................................... 26 6.1 6.2 6.3 6.4 Introduction ........................................................................................................................... 26 Low-pass Filter ....................................................................................................................... 27 PI Controller........................................................................................................................... 27 Process Model ....................................................................................................................... 29
1 Introduction
In this Tutorial we will learn how to create DAQ (Data Acquisition) applications in MATLAB and Simulink. We will use a USB-6008 DAQ device from National Instruments as an example. In order to use DAQ devices from National Instruments in MATLAB/Simulink we need to install the NI-DAQmx driver provided by National Instruments. In addition we need the Data Acquisition Toolbox for MATLAB/Simulink.
1.1 MATLAB
MATLAB is a tool for technical computing, computation and visualization in an integrated environment, e.g., Math and computation Algorithm development Data acquisition Modeling, simulation, and prototyping Data analysis, exploration, and visualization Scientific and engineering graphics Application development, including graphical user interface building
MATLAB is developed by The MathWorks. MATLAB is a short-term for MATrix LABoratory. MATLAB is in use world-wide by researchers and universities. For more information, see www.mathworks.com Below we see the MATLAB Environment:
Introduction
MATLAB has the following windows: Command Window Command History Workspace Current Directory
The Command window is the main window. Use the Command Window to enter variables and to run functions and M-files scripts (more about m-files later). Watch the following Getting Started with MATLAB video: http://www.mathworks.com/demos/matlab/getting-started-with-matlab-video-tutorial.html
1.2 Simulink
Simulink, developed by The MathWorks, is a commercial tool for modeling, simulating and analyzing dynamic systems. Its primary interface is a graphical block diagramming tool and a customizable set of block libraries. It offers tight integration with the rest of the MATLAB environment and can either drive MATLAB or be scripted from it. Simulink is widely used in control theory and digital signal processing for simulation and design. Basic information about Simulink can be found here:
Introduction
Read the Introduction to Simulink document. You will need to know these topics when doing the rest of the tasks in this Lab Work. The Tutorial is available from: http://home.hit.no/~hansha/.
Simulink Quickie!. Try to keep up and create the Simulink Block diagram while watching the video.
1.2.1
Data Acquisition Toolbox software provides a complete set of tools for analog input, analog output, and digital I/O from a variety of PC-compatible data acquisition hardware. The toolbox lets you configure your external hardware devices, read data into MATLAB and Simulink environments for immediate analysis, and send out data. Data Acquisition Toolbox also supports Simulink with blocks that enable you to incorporate live data or hardware configuration directly into Simulink models. You can then verify and validate your model against live, measured data as part of the system development process. We will use the Data Acquisition Toolbox in order to write and read data to and from a USB-6008 DAQ device from National Instruments.
The device has the following specifications: 8 analog inputs (12-bit, 10 kS/s) Tutorial: Data Acquisition in MATLAB
Introduction 2 analog outputs (12-bit, 150 S/s) 12 digital I/O USB connection, No extra power-supply neeeded Compatible with LabVIEW, LabWindows/CVI, and Measurement Studio for Visual Studio .NET NI-DAQmx driver software
The NI USB-6008 is well suited for education purposes due to its small size and easy USB connection. Note! The 64-bit version of Data Acquisition Toolbox supports National Instruments devices that can be used with the session-based interface (more about this later). For other supported NI data acquisition devices, you must use the 32-bit version of Data Acquisition Toolbox and MATLAB. The 32-bit versions of Data Acquisition Toolbox and MATLAB can be installed on a 64-bit Windows OS.
2 Data Acquisition
2.1 Introduction
The purpose of data acquisition is to measure an electrical or physical phenomenon such as voltage, current, temperature, pressure, or sound. PC-based data acquisition uses a combination of modular hardware, application software, and a computer to take measurements. While each data acquisition system is defined by its application requirements, every system shares a common goal of acquiring, analyzing, and presenting information. Data acquisition systems incorporate signals, sensors, actuators, signal conditioning, data acquisition devices, and application software. So summing up, Data Acquisition is the process of: Acquiring signals from real-world phenomena Digitizing the signals Analyzing, presenting and saving the data
The DAQ system has the following parts involved, see Figure:
The parts are: Physical input/output signals DAQ device/hardware Driver software Your software application (Application software)
2.1.1
Data Acquisition
2.1.2
DAQ device/hardware
DAQ hardware acts as the interface between the computer and the outside world. It primarily functions as a device that digitizes incoming analog signals so that the computer can interpret them A DAQ device (Data Acquisition Hardware) usually has these functions: Analog input Analog output Digital I/O Counter/timers
We have different DAQ devices, such as: Desktop DAQ devices where you need to plug a PCI DAQ board into your computer. The software is running on a computer. Portable DAQ devices for connection to the USB port, Wi-Fi connections, etc. The software is running on a computer Distributed DAQ devices where the software is developed on your computer and then later downloaded to the distributed DAQ device.
10
Data Acquisition
2.1.3
Driver software
Driver software is the layer of software for easily communicating with the hardware. It forms the middle layer between the application software and the hardware. Driver software also prevents a programmer from having to do register-level programming or complicated commands in order to access the hardware functions. Driver software from National Instruments: NI-DAQmx
2.1.4
Application software adds analysis and presentation capabilities to the driver software. Your software application normally does such tasks as: Real-time monitoring Data analysis Data logging Control algorithms Human machine interface (HMI)
In order to create your DAQ application you need a programming development tool, such as Visual Studio/C#, LabVIEW, etc..
11
Data Acquisition
Measurement & Automation Explorer (MAX) provides access to your National Instruments devices and systems. With MAX, you can: Configure your National Instruments hardware and software Create and edit channels, tasks, interfaces, scales, and virtual instruments Execute system diagnostics View devices and instruments connected to your system Update your National Instruments software
In addition to the standard tools, MAX can expose item-specific tools you can use to configure, diagnose, or test your system, depending on which NI products you install. As you navigate through MAX, the contents of the application menu and toolbar change to reflect these new tools.
12
Data Acquisition
2.3.1
NI-DAQmx
National Instruments provides a native .NET API for NI-DAQmx. This is available as a part of the NI-DAQmx driver and does not require Measurement Studio. In general, data acquisition programming with DAQmx involves the following steps: Create a Task and Virtual Channels Start the Task Perform a Read operation from the DAQ Perform a Write operation to the DAQ Stop and Clear the Task.
Data acquisition in text based-programming environment is very similar to the LabVIEW NI-DAQmx programming as the functions calls is the same as the NI-DAQmx VIs.
13
14
This will list all your Toolkits that you have installed and the version numbers.
In order to get an overview of the Data Acquisition Toolbox you can type the following in the MATLAB Command window:
help daq
Then you will get an overview of all the functions available in the Data Acquisition Toolbox. This Toolbox has DAQ functionality both for MATLAB and Simulink.
4.1 Introduction
Note! The 64-bit version of Data Acquisition Toolbox supports National Instruments devices that can be used with the session-based interface. For other supported NI data acquisition devices, you must use the 32-bit version of Data Acquisition Toolbox and MATLAB. The 32-bit versions of Data Acquisition Toolbox and MATLAB can be installed on a 64-bit Windows OS. Session-based Interface Legacy Interface 32-bit MATLAB 64-bit MATLAB X X X
NI USB-6008 support both interfaces, both the programming is different in MATLAB. Session-based Interface: You may use the daq.getVendors() in order to get a list of supported ad installed devices. Using Session-based Interface you create a data acquisition session object with daq.createSession. You can then add channels to the session and operate all channels within the session together. Legacy interface: The interface available with Data Acquisition Toolbox works with all supported data acquisition hardware, except CompactDAQ devices and devices using the counter/timer subsystem. Using this interface you create data acquisition objects with these commands:
analoginput() analogoutput()
16
We start by checking if the DAQmx driver has been properly installed. Use the following code:
out = daqhwinfo out.InstalledAdapters
Depending on what you have installed, you may, e.g., get the following answer:
ans = 'mcc' 'nidaq' 'parallel' 'winsound'
If you dont find your DAQ card in the list, make sure you run MATLAB as an administrator.
4.2.1
A Simple DAQ application should follow these steps: 1. Initialization 2. Read/Write 3. Clean Up We will explain the different steps below: 1 - Initialization: Creating a Device Object: In Initialization you need to specify what kind of device you are using. We can use the analoginput() and analogoutput() functions in the Data Acquisition Toolbox. Example:
ai = analoginput('nidaq', 'Dev1');
and:
ao = analogoutput('nidaq', 'Dev1');
The Data Acquisition Toolbox supports DAQ devices from different vendors. In order to use a device from National Instruments, we need to set nidaq as the adapter name. DevX is the default name created by the system, se MAX (Measurement and Automation Explorer) for details about your device. Adding Channels: Next we need to specify which channel(s) we want to use. We can use the addchannel() function. Example:
ai0 = addchannel(ai, 0);
17 2 - Read/Write:
If we want to write a single value to the DAQ device, we can use the putsample() function. Example:
ao_value = 3.5; putsample(ao, ao_value)
If we want to read a single value from the DAQ device, we can use the getsample() function. Example:
ai_value = getsample(ai)
3 - Clean Up: When we are finished with the Data Acquisition we need to close or delete the connection. We can use the delete() function. Example:
delete(ai)
4.2.2
Source Code
In this simple example we will create a m-file that write one single value to the DAQ device and then read one single value from the DAQ device. We start by connecting the Analog In and Analog Out wires together on the DAQ device (a so called Loopback connection). If we write, e.g., 3.5V to the DAQ device on a AO channel, we will then read the same value on the AI channel. Source Code for a Simple DAQ Example in MATLAB:
% Write and Read to a NI USB-6008 DAQ device clear clc % Initialization----------------------% Analog Input: ai = analoginput('nidaq', 'Dev1'); % Analog Output: ao = analogoutput('nidaq', 'Dev1'); % Adding Channels----------------------% Analog Input - Channel 0 ai0 = addchannel(ai, 0); % Analog Output - Channel 0 ao0 = addchannel(ao, 0); % Write Data--------------------------ao_value = 3.5; putsample(ao, ao_value)
18
Using Session-based Interface you create a data acquisition session object with daq.createSession. You can then add channels to the session and operate all channels within the session together. Syntax:
myDaq = daq.createSession(VENDORID)
Example:
>> myDaq = daq.createSession('ni') myDaq = Data acquisition session using National Instruments hardware: Will run for 1 second (1000 scans) at 1000 scans/second. No channels have been added.
Then you have different Methods, Properties and Events available you can use. The most used methods will be addAnalogInputChannel() and addAnalogOutChannel(). Syntax:
addAnalogInputChannel(DEVICEID,CHANNELID,MEASUREMENTTYPE)
and:
addAnalogOutputChannel(DEVICEID,CHANNELID,MEASUREMENTTYPE)
The device can be found using MAX (Measurement and Automation Explorer).
19 Example:
>> mydaq.addAnalogInputChannel('dev1', 'ai0', 'Voltage') ans = Data acquisition session using National Instruments hardware: Will run for 1 second (1000 scans) at 1000 scans/second. Number of channels: 1 index Type Device Channel MeasurementType Range Name ----- ---- ------ ------- --------------- ---------------- ---1 ai Dev1 ai0 Voltage (Diff) -20 to +20 Volts
Then we can, e.g., use inputSingleScan in order to read data from the Analog Input Channel(s). Example:
>> myvalue = mydaq.inputSingleScan myvalue = 0.8244
4.3.1
daq.getVendors
Summing up
Next, we check if the DAQ device (In this tutorial is the NI USB-6008 used) plugged in and working:
daq.getDevices
20
1 channel 'EdgeCount' measurement type
Next we can create simple script that write a single value to an analog out channel and then read the same value from the analog input channel. We use a so called Loopback connection, i.e. we start by connecting the Analog In and Analog Out wires together on the DAQ device. If we write, e.g., to the DAQ device on an AO channel, we will then read the same value on the AI channel. The code is as follows:
% Initialization mydaq = daq.createSession('ni') mydaq.addAnalogOutputChannel('dev1', 'ao0', 'Voltage') mydaq.addAnalogInputChannel('dev1', 'ai0', 'Voltage') % Analog Output ao_value = 3.5; mydaq.outputSingleScan(ao_value) % Analog Input ai_value = mydaq.inputSingleScan
The results from the script is: ai_value = 3.5059 Knowing these basic functions we can now implement more advanced applications, using for/while loops, etc.
5 DAQ in Simulink
Simulink has built-in blocks for Data Acquisition, but depending on the version of MATLAB/Simulink you are using they might not work properly with the USB-6008 DAQ device. In that case you can call MATLAB functions from Simulink. We will create a simple Simulink application where you write and read values from the USB-6008 DAQ device. In this chapter MATLAB/Simulink R2007a is used. The Data Acquisition Toolbox has been updated since this release. Below we see the built-in blocks in Simulink/Data Acquisition Toolbox (R2007a):
5.1 Analog In
We create a simple application in Simulink in order to demonstrate how to read from the DAQ device:
21
22
DAQ in Simulink
23
DAQ in Simulink
24
DAQ in Simulink
This is due to that the Simulink blocks only support hardware that has internal clocking, which the NI USB-6008 does not on analog output. Youll need to call into a MATLAB function to do PUTSAMPLE. To solve this problem, we can use the Embedded MATLAB function block in Simulink where we implement MATLAB code for the write operation:
25
DAQ in Simulink
6 Control Application
6.1 Introduction
In this example we will use Measurement Studio to create a simple control application. We will control the level in a water tank using manual control. The process is as follows:
We want to control the level in the water tank using a pump on the inflow. We will read the level using our USB-6008 DAQ device (Analog In) and write the control signal (Analog Out) to the DAQ device. The Analog Out (control signal) will be a signal between signal that we need to scale to . and the Analog In (Level) will be a
The next improvements to our application would be to implement a Low-pass Filter in order to remove the noise from the signal when reading the level. Another improvement would be to replace the manual control with a PI controller that do the job for us. Finally it would be nice to have a mathematical model of our water tank so we can simulate and test the behavior of the real system without connect to it. So we need to create discrete versions of the low-pass filter, the PI controller and the process model. We can, e.g., use the Euler Forward discretization method: or the Euler Backward discretization method: 26
Control Application
Discrete version: It can be shown that a discrete version can be stated as: ( Where )
Where
6.3 PI Controller
A PI controller may be written: ( ) Where is the controller output and ( )
PI Controller as a Transfer function: Laplace: ( ) This gives the following transfer function: ( ) ( )
28 ( ) i.e, ( ) ( ) ( ) ( ) ( )
Control Application
Where
Discrete version: Using Euler: Where This gives: is the Sampling Time.
Finally:
29
Control Application
We can use the Euler Forward discretization method in order to create a discrete model: Then we get: [ Finally: [ ] ]
Telemark University College Faculty of Technology Kjlnes Ring 56 N-3918 Porsgrunn, Norway www.hit.no
Hans-Petter Halvorsen, M.Sc. Telemark University College Faculty of Technology Department of Electrical Engineering, Information Technology and Cybernetics