<?xml version="1.0" encoding="utf-8" standalone="no"?>
<!DOCTYPE document PUBLIC "-//CNX//DTD CNXML 0.5 plus MathML//EN" "http://cnx.rice.edu/cnxml/0.5/DTD/cnxml_mathml.dtd">
<document xmlns="http://cnx.rice.edu/cnxml" xmlns:md="http://cnx.rice.edu/mdml/0.4" xmlns:m="http://www.w3.org/1998/Math/MathML" xmlns:bib="http://bibtexml.sf.net/" id="None">
  <name>Data Logging</name>
  <metadata>
  <md:version>**new**</md:version>
  <md:created>2004/06/18 09:17:04.019 GMT-5</md:created>
  <md:revised>2004/06/18 09:18:03.502 GMT-5</md:revised>
  <md:authorlist>
      <md:author id="NationalInstruments">
      <md:firstname>National</md:firstname>
      
      <md:surname>Instruments</md:surname>
      <md:email>certification@ni.com</md:email>
    </md:author>
  </md:authorlist>

  <md:maintainerlist>
    <md:maintainer id="mshiralkar05">
      <md:firstname>Malan</md:firstname>
      
      <md:surname>Shiralkar</md:surname>
      <md:email>mshiralkar05@hotmail.com</md:email>
    </md:maintainer>
    <md:maintainer id="harika">
      <md:firstname>Harika</md:firstname>
      
      <md:surname>Basana</md:surname>
      <md:email>ilsai@rice.edu</md:email>
    </md:maintainer>
    <md:maintainer id="lizzardg">
      <md:firstname>Elizabeth</md:firstname>
      
      <md:surname>Gregory</md:surname>
      <md:email>lizzardg@rice.edu</md:email>
    </md:maintainer>
    <md:maintainer id="NationalInstruments">
      <md:firstname>National</md:firstname>
      
      <md:surname>Instruments</md:surname>
      <md:email>certification@ni.com</md:email>
    </md:maintainer>
  </md:maintainerlist>
  
  <md:keywordlist>
    <md:keyword>National Instruments</md:keyword>
    <md:keyword>LabVIEW</md:keyword>
    <md:keyword>data</md:keyword>
  </md:keywordlist>

  <md:abstract>In this lesson, you will learn how to store acquired data and average and log the acquired data to disk.</md:abstract>
</metadata>

  <content>
    <para id="p1">
      It is often necessary to permanently store data acquired from
      the DAQ device. Remember the following important considerations
      when planning to store data to a file.
      <list id="p1l1">
	<item>
	  Not all data logging applications use LabVIEW to process and
	  analyze the stored data. Consider which applications will
	  need to read the data.
	</item>
	<item>
	  The data storage format defines which applications can read
	  the file. Since LabVIEW contains standard file operation
	  functions that exist in other languages, the programmer has
	  complete control over the data logging process.
	</item>
      </list>
    </para>
    <para id="p2">
      LabVIEW includes the ability to create a LabVIEW measurement
      file, an ASCII text file that can be read by a spreadsheet, or a
      text editor. The LabVIEW measurement file is easy to create in
      LabVIEW, and easy to read in LabVIEW or other applications.
    </para>
    <para id="p3">
      The <code>Write LabVIEW Measurement File</code> Express VI
      located on the <code>Functions&gt;&gt;Output</code> palette writes
      signals to a LabVIEW measurement file. When you place this
      Express VI on the block diagram, a configuration dialog box
      appears where you can specify how to store the file.
    </para>
    <para id="p4">
      The <code>Read LabVIEW Measurement File</code> Express VI
      located on the <code>Functions&gt;&gt;Input</code> palette reads
      signals in a LabVIEW measurement file. This Express VI reads
      data one point at a time, so it is necessary to place this
      Express VI in a loop.
    </para>
  </content>
  
</document>
