ARIES. ARIES C&DH Software Data Content & Format

Size: px
Start display at page:

Download "ARIES. ARIES C&DH Software Data Content & Format"

Transcription

1 585 Charest Blvd. East, Suite 300 Québec, Québec G1K 9H4, Canada Phone (418) Fax (418) or (418) Airborne Research Interferometer Evaluation System C&DH Software Data Content & Format Document Number: BOM Issue Date: 24 August 2008 Issue: 1 Revision: Function Name Signature Date Checked by Software Developer Hugo Savard Updated & System/Project Scientist Robert Poulin Approved by PROPRIETARY The information contained herein is proprietary to and should be considered a trade secret of ABB Bomem Inc. It shall not be reproduced in whole or in part without the written authorization of ABB Bomem Inc. FO , rev 0603 Document Ingénierie

2 C&DH Software Data Content & Format Document No: BOM Date: 24 August 2008 i TABLE OF CONTENTS 1. INTRODUCTION Purpose of Document Reference Documents Acronyms Definitions BINARY FORMAT AND CONTENT OF C&DH BFS FILES Type definitions Data Format Outline Data Format Description Reading primary header and offsets table Reading secondary header Reading data records FORMAT AND CONTENT OF HOUSEKEEPING DATA FILES Detailed Housekeeping Data Format and Content... 8

3 C&DH Software Data Content & Format Document No: BOM Date: 24 August 2008 ii LIST OF TABLES Table 2 1 Definition of data types used in data files... 2 Table 2 2 Primary header and offsets table data fields Table 2 3 Secondary header data fields Table 2 4 Data records (measurements) data fields Table 2 5 Interferogram data size as function of resolution settings Table 3 6 Housekeeping data file sample Table 3 7 Housekeeping data fields description.... 8

4 C&DH Software Data Content & Format Document No: BOM Date: 24 August 2008 iii DOCUMENT CHANGE RECORD Issue/Rev Date (yy-mm-dd) Change Description Version updated to comply with final format and information transmitted to MetOffice. Internal information annotation added to Table 2-2. Unused data fields "Field of view channel A", "Field of view channel B", "Target area" and "Range to target" removed from Table 2-3. Unused "Acquisition Time" removed from Table 2-4 and replaced by a specification of the number of data bytes to skip at beginning of the data record data block. Cold blackbody PRT#8 and #9 data fields added for data files having file version "1.01". Those data fields are not present for files having version "1.00". Table 2-5 modified to remove unused material. A section has been added to document the format and content of housekeeping data files. Updated by Robert Poulin. Approved by Robert Poulin. (Draft)A First draft of document transmitted to MetOffice. Document structure improved to ease understanding of the file format and content and how to access the data. Updated by Robert Poulin. Approved by Robert Poulin. (Draft) First draft of document submitted for internal revision. Some data fields are not relevant for the instrument and will be removed in a future revision of the document. Some other data fields (to be defined) will be added. Prepared by Jean-Francois Leroux. Approved by Robert Poulin.

5 C&DH Software Data Content & Format Document No: BOM Date: 24 August INTRODUCTION 1.1 PURPOSE OF DOCUMENT The purpose of this document is to describe the content and format of the data files generated by the C&DH software when used in data acquisition mode. The data can then be converted as described in Ref REFERENCE DOCUMENTS Ref. 1 AA C&DH Software User's Guide, August Ref. 2 AR-BOM-061/94 Software Description, March ACRONYMS BFS C&DH Bomem File System Command and Data Handling 1.4 DEFINITIONS Data Record Part of a data file that contains annotated measurement data corresponding to a specific acquisition time, e.g. one interferometer sweep.

6 C&DH Software Data Content & Format Document No: BOM Date: 24 August BINARY FORMAT AND CONTENT OF C&DH BFS FILES The C&DH software saves data files using the Bomem File System (BFS) format. This section describes how to access the data fields contained in both the headers and data records parts of the data files. 2.1 TYPE DEFINITIONS Table 2 1 lists the data types that are contained in a data file. Array of data types are also used to specify some data fields, e.g. <long(12)> means an array of 12 longs. It is important to note that byte-ordering is little-endian (i.e. Intel/PC like). Table 2 1 Definition of data types used in data files. Data Type byte Description 8-bits signed integer. char Unicode character made of two <bytes>, e.g. 'A' = 0x0041. short integer long double string 16-bits signed integer. 32-bits signed integer. 64-bits signed integer. 32-bits IEEE ing point number. 64-bits IEEE ing point number. A string made of an <integer> containing N followed by N <char> where N is the size of the string, i.e. <integer> followed by <char(n)> for a total of 4 + N*2 bytes. 2.2 DATA FORMAT OUTLINE Each data file generated in the BFS format is made of the following sections: Primary header this small section has a fixed size binary format and contains information such as the BFS format ID and version, the number of data records contained in the file and various byte offsets to provide direct access to other data file sections. Data records this section is made of successive data records which contain the actual measurements data and their corresponding auxiliary data fields. Offset and time tables this section contains byte offset and time tables that allow direct/random access to any data record. Secondary header this section contains auxiliary data fields that do not depends on measurements, i.e. that are the same for all data records (e.g. resolution setting).

7 C&DH Software Data Content & Format Document No: BOM Date: 24 August The BFS file format is optimized for data acquisition. As a result, information such as the number of data records and table of byte offsets to data records are generated and written to the file after the data records. CAUTION: Specific data content depends on the data file version. A special data field used to identify the data file version is found in the secondary header (see Table 2 3). That data field must be taken into account to know how to read properly a specific data file version. 2.3 DATA FORMAT DESCRIPTION Reading primary header and offsets table Table 2 2 below lists the data fields that can be accessed sequentially or randomly according the byte offset. The first column defines variables used to compute byte offsets necessary to browse the data randomly. Table 2 2 Primary header and offsets table data fields. Byte Offset Type Description 0 char(17) BFS file ID and format version (last <char> is 0x001a). 34 char(33) Data Origin (last <char> is 0x001a). 100 char(33) Application (last <char> is 0x001a) Internal information. 421 char(128) Description (last <char> is 0x001a). 422 byte = 0 Byte ordering (0 = little-endian, 1 = big-endian) Internal information. N 428 integer Number of data records (measurements). 432 long Data file creation date (in milliseconds since January 1 st 1970 GMT) Internal information. O1 456 long Byte offset of the secondary header data fields. O2 464 long Byte offset of the first data record data. O3 472 long Byte offset of the table containing the offsets of each data record Internal information and data records. O4(N) O3 long(n) Byte offset table containing the N offsets of each data record Reading secondary header The secondary header is located at the byte offset <O1> with respect to the beginning of the file. The data fields of the secondary header can be read sequentially as defined by Table 2 3 below.

8 C&DH Software Data Content & Format Document No: BOM Date: 24 August Table 2 3 Secondary header data fields. Type Description string Data file identification (always ' C&DH Data File') string Data file version ('1.00' or '1.01') string Data file description (e.g. 'Raw data for NEdT') string Software version (e.g. '1.0.9') byte Scan mode (0:half-scan, 1:coadded scans) integer Number of measurements (count) integer Number of coadded scans (count) byte Trigger mode (not used, always 0) byte Resolution setting (0, 1, 2, 3 or 4) byte Autogain flag (always 0) byte Target type (0:science, 1:calibration) byte Data type (0:interferogram) string Detector type channel A (always 'MCT') string Detector type channel B (always 'InSb') byte Phase corrected flag (not used, always 0) byte Apodization type (not used, always 0) double Sampling frequency channel A (samples/cm) double Sampling frequency channel B (samples/cm) Spectral correction channel A (ppm, not used, always 0) Spectral correction channel B (ppm, not used, always 0) Blackbody temperature (ºC) Blackbody emissivity (no unit, >0, <=1) byte Aperture setting channel A (not used, always 0) byte Aperture setting channel B (not used, always 0) byte Error code (0:ok, 1: an error occured) Reading data records The first data record is located at the byte offset <O2> with respect to the beginning of the file. The data fields of the first data record can be read sequentially as defined by Table 2 4 below. The remaining data records (up to <N>) can be read successively in the same manner. Alternatively, one can directly read the ith data record which is located at the byte offset <O4(i)> with respect to the beginning of the file.

9 C&DH Software Data Content & Format Document No: BOM Date: 24 August Table 2 4 Data records (measurements) data fields. Type Description byte(12) Internal data (to skip) double UTC measurement time (milliseconds since Jan 1st, 1970) integer Measurement count integer Interferometer sweep count byte Interferometer sweep direction (0:forward, 1:reverse) byte Gain setting channel A (0, 1, 2, 3 or 4) byte Gain setting channel B (0, 1, 2, 3 or 4) Gain channel A (1, 2, 4, 8 or 16) Gain channel B (1, 2, 4, 8 or 16) ZPD value channel A (mv) ZPD value channel B (mv) byte Detector saturated channel A (0:no, 1:yes) byte Detector saturated channel B (0:no, 1:yes) byte ADC overflown channel A (0:no, 1:yes) byte ADC overflown channel B (0:no, 1:yes) Maximum proportion of ADC filled for channel A (%) Maximum proportion of ADC filled for channel B (%) Scan speed/frequency (scans/min, one scan is 1 forward + 1 reverse interferometer sweep) Scan mirror angle (degree) byte Pressure status (0:bad, 1:good) Sterling cooler voltage (mv) Beam splitter temperature (ºC) Reference plate temperature (ºC, not used) Auxiliary input temperature (ºC, not used) Temperature near the detectors (ºC) Interferometer input window temperature (ºC) Hot blackbody center temperature (ºC) Hot blackbody edge#1 temperature (ºC) Hot blackbody edge#2 temperature (ºC) Hot blackbody edge#3 temperature (ºC) Hot blackbody edge#4 temperature (ºC) Hot blackbody shroud temperature (ºC)

10 C&DH Software Data Content & Format Document No: BOM Date: 24 August Type Description Cold blackbody center temperature (ºC) Cold blackbody edge#1 temperature (ºC) Cold blackbody edge#2 temperature (ºC) Cold blackbody edge#3 temperature (ºC) Cold blackbody edge#4 temperature (ºC) Cold blackbody shroud temperature (ºC) Scan mirror temperature (ºC) Second input port blackbody PRT temperature reading (ºC) Second input port blackbody thermistor temperature reading (ºC) integer Scan mirror angle (10-bit count) integer Hot blackbody PRT1 (12-bit count) integer Hot blackbody PRT2 (12-bit count) integer Hot blackbody PRT3 (12-bit count) integer Hot blackbody PRT4 (12-bit count) integer Hot blackbody PRT5 (12-bit count) integer Hot blackbody PRT6 (12-bit count) integer Hot blackbody Ref1 (12-bit count) integer Hot blackbody Ref2 (12-bit count) integer Hot blackbody Ref3 (12-bit count) integer Cold blackbody PRT1 (12-bit count) integer Cold blackbody PRT2 (12-bit count) integer Cold blackbody PRT3 (12-bit count) integer Cold blackbody PRT4 (12-bit count) integer Cold blackbody PRT5 (12-bit count) integer Cold blackbody PRT6 (12-bit count) integer Cold blackbody PRT7 (12-bit count) integer Cold blackbody PRT8 (12-bit count) <Present only if data file version is "1.01"> integer Cold blackbody PRT9 (12-bit count) <Present only if data file version is "1.01"> integer Cold blackbody Ref1 (12-bit count) integer Cold blackbody Ref2 (12-bit count) integer Cold blackbody Ref3 (12-bit count) (DataSize) Interferogram data channel A (V). Data size depends on resolution setting (see Table 2 5). (DataSize) Interferogram data channel B (V). Data size depends on resolution setting (see Table 2 5).

11 C&DH Software Data Content & Format Document No: BOM Date: 24 August Table 2 5 below lists the size of the interferogram data which depends on the resolution setting, as read from the secondary header (cf. Table 2 3). Table 2 5 Interferogram data size as function of resolution settings. Resolution Setting Resolution (cm-1) Data Size

12 C&DH Software Data Content & Format Document No: BOM Date: 24 August FORMAT AND CONTENT OF HOUSEKEEPING DATA FILES The C&DH software records housekeeping data using a simple comma separated value ASCII text file format. This section describes how to access the data fields contained in such files. See Ref. 2 to know how to convert the data. 3.1 DETAILED HOUSEKEEPING DATA FORMAT AND CONTENT A housekeeping data set is collected and then written into the housekeeping data file as one line terminated by a carriage return. This process is repeated for each data set collected. CAUTION: The newline characters sequence must be converted when data are moved from Unix/Linuxlike to Windows-like platforms. FTP transfer tools usually perform such conversion tasks when moving text files from different kinds of platforms. The data fields are sequentially recorded to the text file, separated by a comma "," and the last data field is followed by a newline, such that successive data sets takes the form of successive lines into the text file. The content of a typical housekeeping data file is shown on Table 3 6. Some data fields are not displayed for the sake of the compactness of the illustration. Table 3 6 Housekeeping data file sample. 03/01/08,00:06:13:61,2476,0,3390,3404,...,3237, ,14.60,14.58,1,0,2,2,0,1,120.97,1,15.67,1 03/01/08,00:06:14:87,2476,0,3390,3404,...,3241, ,14.60,14.59,1,0,2,2,0,1,120.97,1,15.69, /01/08,00:08:11:13,2476,0,3390,3401,...,3243, ,15.23,15.20,1,0,2,2,0,1,120.97,1,16.65,1 03/01/08,00:08:12:37,2476,0,3390,3401,...,3243, ,15.23,15.20,1,0,2,2,0,1,120.97,1,16.66,1 Table 3 7 below lists housekeeping data fields that are written to a housekeeping data file. For example, from the sample file presented in Table 3 6, the data field P1 (scan mirror angle 10-bit counts) has recorded values of 2476 for each data set whereas the data field P35 (interferometer's input window temperature) has recorded values of 15.67, 15.69,..., and at GMT time stamps of 00:06:13:61, 00:06:14:87, 00:08:11:13, 00:08:12:37 respectively. All those data have been recorded on GMT March 1st, Table 3 7 Housekeeping data fields description. Field Format Description Date MM/DD/YY GMT date at the beginning of the housekeeping data collection where MM:month (1-12), DD:day (1-31), YY:year (00-99). Time HH:MM:SS.CC GMT time at the beginning of the housekeeping data collection where HH:hour (0-23), MM:minutes (0-59), SS:seconds (0-59), CC:1/100 seconds (0-99). P1 Decimal Scan mirror angle (10-bit count). P2 Decimal Unused. Always 0.

13 C&DH Software Data Content & Format Document No: BOM Date: 24 August Field Format Description P3 Decimal Hot BB PRT1 (center) (12-bit count). P4 Decimal Hot BB PRT2 (edge #1) (12-bit count). P5 Decimal Hot BB PRT3 (edge #2) (12-bit count). P6 Decimal Hot BB PRT4 (edge #3) (12-bit count). P7 Decimal Hot BB PRT5 (edge #4) (12-bit count). P8 Decimal Hot BB PRT6 (shroud) (12-bit count). P9 Decimal Hot BB Ref1 (reference resistor) (12-bit count). P10 Decimal Hot BB Ref2 (reference resistor) (12-bit count). P11 Decimal Hot BB Ref3 (reference resistor) (12-bit count). P12 Decimal Cold BB PRT1 (center) (12-bit count). P13 Decimal Cold BB PRT2 (edge #1) (12-bit count). P14 Decimal Cold BB PRT3 (edge #2) (12-bit count). P15 Decimal Cold BB PRT4 (edge #3) (12-bit count). P16 Decimal Cold BB PRT5 (edge #4) (12-bit count). P17 Decimal Cold BB PRT6 (shroud) (12-bit count). P18 Decimal Cold BB PRT7 (12-bit count). P19 Decimal Cold BB PRT8 (12-bit count). P20 Decimal Cold BB PRT9 (12-bit count). P21 Decimal Cold BB Ref1 (reference resistor) (12-bit count). P22 Decimal Cold BB Ref2 (reference resistor) (12-bit count). P23 Decimal Cold BB Ref3 (reference resistor) (12-bit count). P24 Float(x.xx) Sterling cooler voltage (millivolts). Can be converted to give the temperature near the detectors ships (InSb/MCT) in Kelvin with the formula: T = K K/V * P24 * 1e-3 V/mV. P25 Float(x.xx) 2nd input port BB PRT (ºC). P26 Float(x.xx) 2nd input port BB Thermistor (ºC). P27 Decimal Unused. Always 1. P28 Decimal Unused. Always 0. P29 Decimal MCT channel gain (1, 2, 4, 8 or 16). P30 Decimal InSb channel gain (1, 2, 4, 8 or 16). P31 Decimal Unused. Always 0. P32 Decimal Unused. Always 1. P33 Decimal Scan frequency (# of scans/minute, where one scan is two (2) interferometer's sweeps, forward/reverse).

14 C&DH Software Data Content & Format Document No: BOM Date: 24 August Field Format Description P34 Decimal Resolution (1, 2, 4, 8 or 16 cm-1). P35 Float(x.xx) Interferometer's input window temperature (ºC). P36 Decimal Pressure status (0:bad, 1:good). End of document

Document Number: SC2/FTS/SOF/020

Document Number: SC2/FTS/SOF/020 SCUBA-2 FTS Project Office University of Lethbridge Physics Department 4401 University Drive Lethbridge, Alberta CANADA T1K 3M4 Tel: 1-403-329-2771 Fax: 1-403-329-2057 Email: brad.gom@uleth.ca WWW: http://research.uleth.ca/scuba2/

More information

ASPRS LiDAR SPRS Data Exchan LiDAR Data Exchange Format Standard LAS ge Format Standard LAS IIT Kanp IIT Kan ur

ASPRS LiDAR SPRS Data Exchan LiDAR Data Exchange Format Standard LAS ge Format Standard LAS IIT Kanp IIT Kan ur ASPRS LiDAR Data Exchange Format Standard LAS IIT Kanpur 1 Definition: Files conforming to the ASPRS LIDAR data exchange format standard are named with a LAS extension. The LAS file is intended to contain

More information

SF10 SF10. Features: The SF10 laser altimeter is ideal for automated landings and precision hovering.

SF10 SF10. Features: The SF10 laser altimeter is ideal for automated landings and precision hovering. The is a compact, lightweight laser altimeter for above-groundlevel altitude measurement from small fixed wing or multi-rotor craft. The laser altimeter is ideal for automated landings and precision hovering.

More information

DELTA CONTROLS CORPORATION

DELTA CONTROLS CORPORATION HART Field Device Specification: DELTA CONTROLS CORPORATION MODEL 173 REV 3.0 Document 00-17335, rev. A Initial release: 2 January 2019 Current release: 2 January 2019 Author: Ted Keys Delta Controls Corporation

More information

On-orbit Calibration of the Geostationary Imaging Fourier Transform Spectrometer (GIFTS)

On-orbit Calibration of the Geostationary Imaging Fourier Transform Spectrometer (GIFTS) On-orbit Calibration of the Geostationary Imaging Fourier Transform Spectrometer (GIFTS) H. E. Revercomb a, F. A. Best a, D. C. Tobin a, R. O. Knuteson a, R. K. Garcia a, D. D. LaPorte a, G. E. Bingham

More information

Technical Documentation 0630

Technical Documentation 0630 0630 Digital Pressure Transmitter Protocol 1-6-30-628-058 SUCO Robert Scheuffele GmbH & Co. KG, Keplerstraße 12-14, 74321 Bietigheim-Bissingen, Tel.:+49-7142-597-0, Fax: +49-7142-597-19 Web: www.suco.de,

More information

The SF02/F is an. easily configurable. laser rangefinder. module that provides. fast and accurate. distance. measurements, ideal

The SF02/F is an. easily configurable. laser rangefinder. module that provides. fast and accurate. distance. measurements, ideal The SF02/F is an easily configurable laser rangefinder module that provides fast and accurate distance measurements, ideal for UAV s, radiocontrolled aircraft and robots. Features: A laser-based rangefinder

More information

GL200 GBD File Specification Sheet

GL200 GBD File Specification Sheet GL200 GBD File Specification Sheet GRAPHTEC CORPORATION 1. Applicable Range Product name: Firmware: File format Compatible data GL200 Version 1.00 to Measurement data files with the.gbd file extension

More information

Flammable Gas Smart Sensing Module

Flammable Gas Smart Sensing Module Flammable Gas Smart Sensing Module SMOD711 Datasheet Description IDT s SMOD711 is a complete smart sensing solution for flammable gases in atmospheres. The module, consisting of the SMOD smart sensing

More information

Calibration algorithm for Fourier transform spectrometer with thermal instabilities

Calibration algorithm for Fourier transform spectrometer with thermal instabilities Calibration algorithm for Fourier transform spectrometer with thermal instabilities Simon Turbide* and Tracy Smithson Defence Research and Development Canada, 2459 Pie-XI Nord, Val-Belair, Quebec, Canada

More information

Hydrogen Gas Smart Sensing Module. Features

Hydrogen Gas Smart Sensing Module. Features Resistance (ohms) Sensor Resistance Ratio (R s /R 50 ) Hydrogen Gas Smart Sensing Module SMOD701 Datasheet Description IDT s SMOD701 is a complete smart sensing solution for measuring hydrogen (H 2 ) gas

More information

REV6 Multi Sector MIFARE Reader/Writer Data Sheet

REV6 Multi Sector MIFARE Reader/Writer Data Sheet 716-52 REV6 Multi Sector MIFARE Reader/Writer Data Sheet Overview The 716-52 REV6 multi sector MIFARE Reader/Writer is an intelligent 13.56MHz contactless reader writer designed to operate with the Mifare

More information

SMARTOffline v3.5. User s Guide. Offline Data Retrieval and Conversion Tool. Copyright Geotech Instruments, LLC Dallas, Texas

SMARTOffline v3.5. User s Guide. Offline Data Retrieval and Conversion Tool. Copyright Geotech Instruments, LLC Dallas, Texas SMARTOffline v3.5 Offline Data Retrieval and Conversion Tool User s Guide Copyright 2003-2011 Geotech Instruments, LLC Dallas, Texas DOCUMENT HISTORY Date ECN Rev Initials Description unkwn 1.0 MR Initial

More information

MISB EG October Predator UAV Basic Universal Metadata Set. 1 Scope. 2 References. 3 Introduction

MISB EG October Predator UAV Basic Universal Metadata Set. 1 Scope. 2 References. 3 Introduction Motion Imagery Standards Board Engineering Guideline: Predator UAV Basic Universal Metadata Set MISB EG 0104.1 11 October 2001 1 Scope This Engineering Guideline (EG) documents the basic Predator UAV (Unmanned

More information

Enhanced capabilities for Automation and the creation of imposition plans for half-web Perfect Bound bookwork. General. New Import Sheet Menu

Enhanced capabilities for Automation and the creation of imposition plans for half-web Perfect Bound bookwork. General. New Import Sheet Menu Enhanced capabilities for Automation and the creation of imposition plans for half-web Perfect Bound bookwork. NOTE: THOSE 3 CHOICES ARE ONLY AVAILABLE IN CREEP ONLY. THOSE 3 CHOICES WILL BE GREYED OUT

More information

Rev Carbon Dioxide (CO2) Gas Sensor. TG100 User Manual

Rev Carbon Dioxide (CO2) Gas Sensor. TG100 User Manual Rev. 2.93 TG100 User Manual The TG100 measuring carbon dioxide (chemical formula CO2) is a NDIR (Non-Dispersive Infrared) gas sensor. As it is contactless, it has high accuracy and longer life than sensors

More information

1 Features. 2 Applications. 3 Description. Barometric Pressure USB Data Logger Model B1100-1

1 Features. 2 Applications. 3 Description. Barometric Pressure USB Data Logger Model B1100-1 Barometric Pressure USB Data Logger Model B1100-1 1 Features 30000 110,000 Pa barometric pressure range Absolute accuracy of ±250 Pa, max. User defined sample period of 10Hz to once per day Programmable

More information

KMIP 64-bit Binary Alignment Proposal

KMIP 64-bit Binary Alignment Proposal KMIP 64-bit Binary Alignment Proposal To: OASIS KMIP Technical Committee From: Matt Ball, Sun Microsystems, Inc. Date: May 6, 2009 Version: 2 Purpose: To propose a change to the binary encoding such that

More information

Technical Note: Integrating a C-sense pco 2 Sensor to a Sea-Bird Electronics SBE 19 CTD

Technical Note: Integrating a C-sense pco 2 Sensor to a Sea-Bird Electronics SBE 19 CTD Sea-Bird Electronics CTDs are capable of accepting a 0-5 volt analog signal through an auxiliary port on the instrument enabling it to record data from a Turner Designs C-Sense pco2 sensor. Fundamental

More information

HQ AFWA. DMSP Satellite Raw Sensor Data Record (RSDR) File Format Specification

HQ AFWA. DMSP Satellite Raw Sensor Data Record (RSDR) File Format Specification HQ AFWA DMSP Satellite Raw Sensor Data Record (RSDR) File Format Specification (Version 1.0 updated, Final, 19 Jan 01) (Replaces version 1.0 Final, 2 Nov 00) Produced by Capt. David M. Paal HQ AFWA/Space

More information

Analog Input, 16-Bit Thermocouple Module

Analog Input, 16-Bit Thermocouple Module Analog Input, 16-Bit Module Product Description The Analog Input Module is an intelligent module that accepts seven independent thermocouple or millivolt inputs. The module receives power from the backplane

More information

Honeywell HC-900 with Acromag 967EN Modbus/TCP Module as Remote I/O

Honeywell HC-900 with Acromag 967EN Modbus/TCP Module as Remote I/O Acromag, Incorporated 30765 S Wixom Rd, PO Box 437, Wixom, MI 48393-7037 USA Tel: 248-295-0880 Fax: 248-624-9234 www.acromag.com Honeywell HC-900 with Acromag 967EN Modbus/TCP Module as Remote I/O Contents:

More information

Version 3.1 Format Specification MDF Format 1. Format Specification MDF Format Version 3.1

Version 3.1 Format Specification MDF Format 1. Format Specification MDF Format Version 3.1 Version 3.1 Format Specification MDF Format 1 Format Specification MDF Format Version 3.1 Version 3.1 Format Specification MDF Format 2 Document Management of Specification Revision History Document Version

More information

9146-R Smart Connector Connectors for the TE 9146-R

9146-R Smart Connector Connectors for the TE 9146-R Instruments 9146-R Smart Connector Connectors for the TE 9146-R Enables plug-and-play type operation of the 9146-R with a variety of input types. All transducer s information is contained within the plug

More information

Microsoft Compound Document File Format

Microsoft Compound Document File Format OpenOffice.org's Documentation of the Microsoft Compound Document File Format Author License Contributors Other sources Mailing list Download Project started Last change Revision 1.3 Daniel Rentz mailto:dr@openoffice.org

More information

VeriColor. Solo Identification System. Command Users Manual Document ver Rev. 7/20/05

VeriColor. Solo Identification System. Command Users Manual Document ver Rev. 7/20/05 VeriColor Solo Identification System Command Users Manual Document ver. 1.13 Rev. 7/20/05 i ii PROPRIETARY NOTICE The information contained in this manual is derived from patent and proprietary data from

More information

Using the Signature Editor

Using the Signature Editor CHAPTER 12 Revised: December 14, 2011, Introduction This module describes the Signature Editor tool and how to use it to create and modify Dynamic Signature Script (DSS) files. The Signature Editor tool

More information

C30xx Digital communication

C30xx Digital communication C30xx Digital communication Table of contents 1 Introduction...3 2 Digital ports...3 3 Command protocol to send...3 4 Command protocol to receive...4 5 Command table...5 6 Command specifications + examples...6

More information

HART USER GUIDE FOR GASSONIC OBSERVER-H ULTRASONIC GAS LEAK DETECTOR

HART USER GUIDE FOR GASSONIC OBSERVER-H ULTRASONIC GAS LEAK DETECTOR HART USER GUIDE FOR GASSONIC OBSERVER-H ULTRASONIC GAS LEAK DETECTOR This page intentionally left blank. HART USER GUIDE FOR GASSONIC OBSERVER-H ULTRASONIC GAS LEAK DETECTOR HART User Guide for Gassonic

More information

A-PM-90A / UF Series. Map Data File Manual

A-PM-90A / UF Series. Map Data File Manual FT0000-R08-E7 January 5, 2004 A-PM-90A / UF Series Map Data File Manual Tokyo Seimitsu Co., Ltd. Prober System Group PREFACE Description of this manual is limited to the range of map data file specifications

More information

R5 RIC. Saab TransponderTech AB. Appendices. Project designation. Document title. Distribution. R5 RIC STTv2 Video Protocol Specification.

R5 RIC. Saab TransponderTech AB. Appendices. Project designation. Document title. Distribution. R5 RIC STTv2 Video Protocol Specification. Appendices 1 (15) Project designation R5 RIC Document title Distribution DOCUMENT VALIDATION 2 (15) Prepared Name Dept. Code/ Function Date/ Signature Marcus Malm 2016-12-06 Reviewed Approved Authorized

More information

Text Record Type Definition. Technical Specification NFC Forum TM RTD-Text 1.0 NFCForum-TS-RTD_Text_

Text Record Type Definition. Technical Specification NFC Forum TM RTD-Text 1.0 NFCForum-TS-RTD_Text_ Text Record Type Definition Technical Specification NFC Forum TM RTD-Text 1.0 NFCForum-TS-RTD_Text_1.0 2006-07-24 RESTRICTIONS ON USE This specification is copyright 2005-2006 by the NFC Forum, and was

More information

HART Applications SEC-5000 Gas Detector

HART Applications SEC-5000 Gas Detector HART Applications SEC-5000 Gas Detector Stephen D. Anderson June, 2018 Part Number 1581202 Revision B Page 1 06/20/18 SEC Table of Contents 1 Introduction...3 2 HART Equipment and Connections...3 3 HART

More information

CIS-331 Fall 2013 Exam 1 Name: Total of 120 Points Version 1

CIS-331 Fall 2013 Exam 1 Name: Total of 120 Points Version 1 Version 1 1. (24 Points) Show the routing tables for routers A, B, C, and D. Make sure you account for traffic to the Internet. NOTE: Router E should only be used for Internet traffic. Router A Router

More information

Application Note IC-2-RS485

Application Note IC-2-RS485 Application Note IC-2-RS485 Revision 1.0 July 2010 Serial Control of Iconyx RHAON Series Arrays Abstract: The Iconyx RHAON models have an RS485 connection for serial control via third-party controllers

More information

Isolated, Field Configurable Analog Input 6B11 / 6B11HV FEATURES APPLICATIONS PRODUCT OVERVIEW

Isolated, Field Configurable Analog Input 6B11 / 6B11HV FEATURES APPLICATIONS PRODUCT OVERVIEW Isolated, Field Configurable Analog Input 6B11 / 6B11HV FEATURES Single-channel isolated signal-conditioning modules. Accepts outputs from Thermocouple, millivolt, volt and current signals. Complete microcomputer-based

More information

CM868LRxx & CMUS915LRxx Magnetic contact Programming manual

CM868LRxx & CMUS915LRxx Magnetic contact Programming manual CM868LRxx & CMUS915LRxx Magnetic contact Programming manual Revision 1.5 June 2016 Page 1 of 23 www.ascoel.it 0.1 Table of Contents 0.1 Table of Contents... 2 1 Document history... 3 2 Introduction...

More information

HIGH-PERFORMANCE IMAGING SYSTEMS

HIGH-PERFORMANCE IMAGING SYSTEMS HIGH-PERFORMANCE IMAGING SYSTEMS HYPER-VISION SYSTEMS Hyperspectral, multispectral & high-speed infrared imaging HYPER-CAM HYPERSPECTRAL CAMERAS The Hyper-Cam is an advanced passive infrared hyperspectral

More information

DATA PRODUCT SPECIFICATION FOR WATER TEMPERATURE

DATA PRODUCT SPECIFICATION FOR WATER TEMPERATURE DATA PRODUCT SPECIFICATION FOR WATER TEMPERATURE Version 1-04 Document Control Number 1341-00010 2013-04-25 Consortium for Ocean Leadership 1201 New York Ave NW, 4 th Floor, Washington DC 20005 www.oceanleadership.org

More information

ISO INTERNATIONAL STANDARD. Hard-copy output of engineering drawings Specification for the structure of control files

ISO INTERNATIONAL STANDARD. Hard-copy output of engineering drawings Specification for the structure of control files INTERNATIONAL STANDARD ISO 14985 First edition 1999-07-01 Hard-copy output of engineering drawings Specification for the structure of control files Sortie papier de dessins d'engineering Spécifications

More information

Classical Scattering Aerosol Spectrometer

Classical Scattering Aerosol Spectrometer Page 1 of 8 SOP DRAFT - MEASUREMENT OF THE AMBIENT AIR PARTICLE SIZE DISTRIBUTION USING THE PMS CSAS-100-HV Identification code: CSAS-100-HV SOP Working SOP pages APPROVALS Issue Date: /. Local PI: / /

More information

UNIT 3 THE 8051-REAL WORLD INTERFACING

UNIT 3 THE 8051-REAL WORLD INTERFACING UNIT 3 THE 8051-REAL WORLD INTERFACING 8031/51 INTERFACING TO EXTERNAL MEMORY The number of bits that a semiconductor memory chip can store is called chip capacity It can be in units of Kbits (kilobits),

More information

IP-THERMISTOR. 6 CHANNELS TEMPERATURE 8-CHANNEL VOLTAGE Industry Pack module HARDWARE REFERENCE MANUAL. Revision 1.0 JANUARY, 2008

IP-THERMISTOR. 6 CHANNELS TEMPERATURE 8-CHANNEL VOLTAGE Industry Pack module HARDWARE REFERENCE MANUAL. Revision 1.0 JANUARY, 2008 IP-THERMISTOR 6 CHANNELS TEMPERATURE 8-CHANNEL VOLTAGE Industry Pack module HARDWARE REFERENCE MANUAL Revision 1.0 JANUARY, 2008 This Document shall not be duplicated, nor its contents used for any purpose,

More information

IFC 100 Supplementary instructions

IFC 100 Supplementary instructions IFC 100 Supplementary instructions Signal converter for electromagnetic flowmeters Description of Modbus interface Electronic Revision: ER 3.0.xx Modbus version: 1.0.xx KROHNE CONTENTS IFC 100 1 Important

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

Modbus Protocol For FTS/FTM 3x&8x

Modbus Protocol For FTS/FTM 3x&8x [ 公司地址 ] Modbus Protocol For FTS/FTM 3x&8x V3.0 Introduction This document describes the protocol detail of Modbus for FTSXX Hardware interface - The interface on the sensor is RS-485. - Hardware named

More information

ArcaTrade Specification for Bonds

ArcaTrade Specification for Bonds Specification for Bonds For the New York Stock Exchange April 24, 2007 Version 1.07 Copyright 2006 Archipelago Holdings, Inc. All Rights Reserved. Copyright 2006 Archipelago Holdings, Inc. All rights reserved.

More information

REV3 USB MIFARE Reader Writer Module Data sheet

REV3 USB MIFARE Reader Writer Module Data sheet 727-52 REV3 USB MIFARE Reader Writer Module Data sheet Overview The 727-52 multi sector MIFARE Reader/Writer is an intelligent 13.56MHz contactless reader writer designed to operate with Mifare Std 1k/4k,

More information

RS 232 PINOUTS. 1. We use RJ12 for all of our RS232 interfaces (Link-2-Modbus & Link-2-PC- Serial/RS232). The diagram below shows our pin out.

RS 232 PINOUTS. 1. We use RJ12 for all of our RS232 interfaces (Link-2-Modbus & Link-2-PC- Serial/RS232). The diagram below shows our pin out. RS 232 PINOUTS 1. We use RJ12 for all of our RS232 interfaces (Link-2-Modbus & Link-2-PC- Serial/RS232). The diagram below shows our pin out. 2. A DB9 Female to RJ12 Female Serial/Terminal Modular Adaptor

More information

CD-ROM COMPATIBLE TAPE FORMAT FOR INSTALLABLE FILE SYSTEM

CD-ROM COMPATIBLE TAPE FORMAT FOR INSTALLABLE FILE SYSTEM QIC-174 Revision A 21 Mar 96 CD-ROM COMPATIBLE TAPE FORMAT FOR INSTALLABLE FILE SYSTEM (See important notices on the following page) Important Notices This document is a development standard adopted by

More information

Computer Data Logging Formats

Computer Data Logging Formats Computer Data Logging Formats Recording Formats - General Information After many years the first SARA data recording format was agreed upon at the 1991 conference. This article is intended to record the

More information

Model IR4000M. HART Field Device Specification Multi-Point Monitor. Instruction Manual 07-08

Model IR4000M. HART Field Device Specification Multi-Point Monitor. Instruction Manual 07-08 Model IR4000M HART Field Device Specification Multi-Point Monitor The information and technical data disclosed in this document may be used and disseminated only for the purposes and to the extent specifically

More information

FP-RTD-122. Introduction CALIBRATION PROCEDURE. Version 2.0

FP-RTD-122. Introduction CALIBRATION PROCEDURE. Version 2.0 CALIBRATION PROCEDURE FP-RTD-122 Version 2.0 Introduction This document contains step-by-step instructions for calibrating the National Instruments FP-RTD-122 module. The procedure contains the following

More information

CIS-331 Spring 2016 Exam 1 Name: Total of 109 Points Version 1

CIS-331 Spring 2016 Exam 1 Name: Total of 109 Points Version 1 Version 1 Instructions Write your name on the exam paper. Write your name and version number on the top of the yellow paper. Answer Question 1 on the exam paper. Answer Questions 2-4 on the yellow paper.

More information

Model Ultima OPIR-5. Infrared Open Path Gas Detector HART Field Device Specification. Instruction Manual

Model Ultima OPIR-5. Infrared Open Path Gas Detector HART Field Device Specification. Instruction Manual Model Ultima OPIR-5 Infrared Open Path Gas Detector HART Field Device Specification The information and technical data disclosed in this document may be used and disseminated only for the purposes and

More information

Binary file structure for PAMGUARD detector output. Version 4.0

Binary file structure for PAMGUARD detector output. Version 4.0 Binary file structure for PAMGUARD detector output. D. Gillespie & M. Oswald, February 2017 1 Introduction 4.0 This document describes the binary file storage structures used by PAMGuard. Prior to 2010

More information

Application Notes for ThermaCAM RTools. FLIR Systems, Inc.

Application Notes for ThermaCAM RTools. FLIR Systems, Inc. Application Notes for ThermaCAM RTools FLIR Systems, Inc. Document Number: 419-001-0 Revision Number: 100 Date: January 5, 005 IR Imager Setup and Radiometric Calibration Procedure IR Imager Configuration

More information

AISG Extension: Remote Azimuth Steering

AISG Extension: Remote Azimuth Steering 31 st of January, 13 AISG Extension: Extension to the Control Interface for Antenna Line Devices Supplementary to AISG Standard No. AISG version 2.0 Revision History DATE ISSUE NOTES 10 Dec 07 2.1.0 Approved,

More information

TURBO FT PORTABLE FT-IR SPECTROMETER INSTRUCTION MANUAL

TURBO FT PORTABLE FT-IR SPECTROMETER INSTRUCTION MANUAL TURBO FT PORTABLE FT-IR SPECTROMETER INSTRUCTION MANUAL Table of Contents System Description...3 Optical Subsystem...3 Electronic Subsystem...4 Optional Temperature Control...4 Temperature Alarms... 5

More information

Rev Carbon Dioxide (CO2) Gas Sensor. TG100 User Manual

Rev Carbon Dioxide (CO2) Gas Sensor. TG100 User Manual Rev. 2.5 TG100 User Manual The TG100 measuring carbon dioxide (chemical formula CO2) is a NDIR (Non-Dispersive Infrared) gas sensor. As it is contactless, it has high accuracy and longer life than sensors

More information

Evaluation of Different Calibration Approaches for JPSS CrIS

Evaluation of Different Calibration Approaches for JPSS CrIS Evaluation of Different Calibration Approaches for JPSS CrIS Yong Chen 1, and Yong Han Acknowledgement: CrIS SDR science team for the development and improvement of J1 CrIS SDR algorithm 1 CICS-MD, ESSIC,

More information

LINAX Series Videographic Recorders

LINAX Series Videographic Recorders User Guide 154534_8 LINAX Series Videographic Recorders DataManager Software Electrical Safety This instrument complies with the requirements of CEI/IEC 61010-1:2001-2 'Safety Requirements for Electrical

More information

AEGIS_Modbus. Ethernet TCP. 2. Address Contents 2.1 Current Values of Sensors, Meters, Contact Sets

AEGIS_Modbus. Ethernet TCP. 2. Address Contents 2.1 Current Values of Sensors, Meters, Contact Sets AEGIS_Modbus Ethernet TCP CONTENTS 1. Overview 2. Address Contents 2.1 Current Values of Sensors, Meters, Contact Sets 2.2 Current Values of ON/OFF Relays and Frequency Control Outputs 2.3 Current State

More information

MassaSonic PulStar and FlatPack Series Ultrasonic Level Sensors. Serial Communications Guide

MassaSonic PulStar and FlatPack Series Ultrasonic Level Sensors. Serial Communications Guide Guide to MassaSonic PulStar & FlatPack Sensor Serial Communications Page 1 of 26 MassaSonic PulStar and FlatPack Series Ultrasonic Level Sensors Serial Communications Guide March 23, 2016 Tel: 781-749-4800

More information

GE Fanuc IC695ALG708. Rx3i PacSystem

GE Fanuc IC695ALG708. Rx3i PacSystem GE Fanuc IC695ALG708 http://www.pdfsupply.com/automation/ge-fanuc/rx3i-pacsystem/ic695alg708 Rx3i PacSystem Analog Output Module, 8 channels,that is configurable IC695A IC695AL IC695ALG 919-535-3180 sales@pdfsupply.com

More information

Recorded Data / Current Readings (XML Format) Specifications. Ver 1.25

Recorded Data / Current Readings (XML Format) Specifications. Ver 1.25 Recorded Data / Current Readings (XML Format) Specifications Ver 1.25 Revision History Revision History By Date Version Contents 2010/3/16 1.00 First Release 2010/8/10 1.10 2011/6/30 1.20 Made compatible

More information

DTSX3000 Communications(Modbus) Guide

DTSX3000 Communications(Modbus) Guide User s Manual DTSX3000 Communications(Modbus) Guide First Edition Blank Page < Introduction > i Introduction About this Manual Thank you for purchasing the DTSX3000 Distributed Temperature Sensor. This

More information

Micro-Radian Instruments, 485 W. Horton Road, Bellingham, WA USA.

Micro-Radian Instruments, 485 W. Horton Road, Bellingham, WA USA. TL40 Digital Autocollimator Data Sheet (22 April 2013) 1.0 Introduction The TL40 Optical Head is designed for use with the E3 Digital Controller. Together they form a stand alone high performance dual

More information

DELTA CONTROLS CORPORATION

DELTA CONTROLS CORPORATION HART Field Device Specification: DELTA CONTROLS CORPORATION MODEL HIR REV 3.0 Document 00-HIR35, rev. A Initial release: 1 October 2018 Current release: 1 October 2018 Author: Ted Keys Delta Controls Corporation

More information

Ocean Sensor Systems, Inc. Wave Logger III, OSSI A Self Logging, Self Powered Wave Staff With a Self Grounding Coaxial Staff

Ocean Sensor Systems, Inc. Wave Logger III, OSSI A Self Logging, Self Powered Wave Staff With a Self Grounding Coaxial Staff Ocean Sensor Systems, Inc. Wave Logger III, OSSI-010-010 A Self Logging, Self Powered Wave Staff With a Self Grounding Coaxial Staff General Description The OSSI-010-010 Wave Logger III combines the high

More information

Atmospheric Emitted Radiance Interferometer. Part II: Instrument Performance

Atmospheric Emitted Radiance Interferometer. Part II: Instrument Performance 1777 Atmospheric Emitted Radiance Interferometer. Part II: Instrument Performance R. O. KNUTESON, H.E.REVERCOMB, F.A.BEST, N.C.CIGANOVICH, R.G.DEDECKER, T.P.DIRKX, S. C. ELLINGTON, W.F.FELTZ, R.K.GARCIA,

More information

Serial Communication Interface PCP-3016

Serial Communication Interface PCP-3016 Serial Communication Interface PCP-3016 Document revision history Revision Date Description Change by 05.01 25.01.05 First release PBH1.21-3.016 compatible DaAn 09/01 15.09.09 PHB1.21-v.3.016-Trace compatibility

More information

PCI-FPGA-1B User Guide

PCI-FPGA-1B User Guide PCI-FPGA-1B User Guide Rev 1.0 (Nov. 2012) Port City Instruments, LLC 8209 Market Street, Suite A271 Wilmington, NC 28411 (Tel) 866-456-2488 (Web) www.portcityinstruments.com Copyright 2012 Port City Instruments,

More information

DAWN Mini ADAQ TC20 Details

DAWN Mini ADAQ TC20 Details DAWN Mini ADAQ TC20 Details Technical Specifications Inputs Power Supply Input Supply Current Thermocouple Types Thermocouple Inputs Scan Rate Common Mode Readings Thermal Drift Isolation 12V or 24VDC

More information

MODEL IR5500 Infrared Open Path Gas Detector HART Field Device Specification

MODEL IR5500 Infrared Open Path Gas Detector HART Field Device Specification MODEL IR5500 Infrared Open Path Gas Detector HART Field Device Specification The information and technical data disclosed in this document may be used and disseminated only for the purposes and to the

More information

GUIDELINES FOR DEFINING APPLICATION SPECIFIC MESSAGES

GUIDELINES FOR DEFINING APPLICATION SPECIFIC MESSAGES GUIDELINES FOR DEFINING APPLICATION SPECIFIC MESSAGES Edition 1.0 Version: 09-05-2017 Author: Vessel Tracking and Tracing Expert Group Table of Content 1 Scope... 3 2 References... 3 2.1 Provisions...

More information

CIS-331 Final Exam Spring 2015 Total of 115 Points. Version 1

CIS-331 Final Exam Spring 2015 Total of 115 Points. Version 1 Version 1 1. (25 Points) Given that a frame is formatted as follows: And given that a datagram is formatted as follows: And given that a TCP segment is formatted as follows: Assuming no options are present

More information

Modbus Manual Version Modbus Manual for Clean Room Panel CRP5

Modbus Manual Version Modbus Manual for Clean Room Panel CRP5 Page 1 of 42 Modbus Manual Version 1.03 Modbus Manual for Clean Room Panel CRP5 This manual is for persons who will use the Clean Room Panel Modbus protocol. It describes how messages are constructed and

More information

Page 1 MRK-D-0011, V2.0 Aeroqual SM50 User Guide

Page 1 MRK-D-0011, V2.0 Aeroqual SM50 User Guide Page 1 Table of Contents User Guide Revision History... 3 Description... 4 1. Operating Instructions... 4 1.1. Power... 4 1.2. Warm Up... 4 1.3. Standard Inputs and Outputs... 4 1.4. Using the Relay Output...

More information

VersaMax* Analog Input, 16-Bit Thermocouple Module

VersaMax* Analog Input, 16-Bit Thermocouple Module VersaMax* Analog Input, 16-Bit Module Product Description The Analog Input Module is an intelligent module that accepts seven independent thermocouple or millivolt inputs. The module receives power from

More information

Reduced Cross Spectra File Format

Reduced Cross Spectra File Format Reduced Cross Spectra File Format Reduced Cross Spectra File Format 131.01.1611.FF Nov 15, 2016 Reduced Cross Spectra are a compressed data version of cross spectra. This is done with a slightly lossy

More information

6/6/2013. LifeBand Communications Protocol and Commands v5.0

6/6/2013. LifeBand Communications Protocol and Commands v5.0 LifeBand Communications Protocol and Commands v5.0 TABLE OF CONTENTS I. INTRODUCTION... 4 II. AVAILABLE OPTIONS FOR DOWNLOADING AND VIEWING DATA FROM SENSOR BANDS... 4 A. USING THE SENSOR BAND WITH A MOBILE

More information

Modbus TCP/IP Option Instruction Manual

Modbus TCP/IP Option Instruction Manual W A L C H E M An Iwaki America Company WebMaster Modbus TCP/IP Option Modbus TCP/IP Option Instruction Manual s800v005, s801v004 and higher Five Boynton Road Hopping Brook Park Holliston, MA 01746 USA

More information

LAS Specification Version 1.2 April 29, 2008

LAS Specification Version 1.2 April 29, 2008 LAS Specification Version 1.2 April 29, 2008 LAS FORMAT VERSION 1.2: This document reflects the second revision of the LAS format specification since its initial version 1.0 release. Version 1.2 retains

More information

FAST-IR FAMILY. HIGH-SPEED INFRARED CAMERAS. KEY BENEFITS EXAMPLES OF TYPICAL USES ULTRAHIGH FRAME RATE HIGH SENSITIVITY ADVANCED CALIBRATION

FAST-IR FAMILY. HIGH-SPEED INFRARED CAMERAS. KEY BENEFITS EXAMPLES OF TYPICAL USES ULTRAHIGH FRAME RATE HIGH SENSITIVITY ADVANCED CALIBRATION Cooled High-End Scientific Cameras. FAST-IR FAMILY. HIGH-SPEED INFRARED CAMERAS. The IP-67 certified enclosure. The FAST-IR series includes the fastest infrared cameras available on the market. To analyze

More information

DATA PRODUCT SPECIFICATION FOR VENT FLUID OXIDATION- REDUCTION POTENTIAL (ORP)

DATA PRODUCT SPECIFICATION FOR VENT FLUID OXIDATION- REDUCTION POTENTIAL (ORP) DATA PRODUCT SPECIFICATION FOR VENT FLUID OXIDATION- REDUCTION POTENTIAL (ORP) Version 1-03 Document Control Number 1341-00170 2013-03-18 Consortium for Ocean Leadership 1201 New York Ave NW, 4 th Floor,

More information

Data Storage and Query Answering. Data Storage and Disk Structure (4)

Data Storage and Query Answering. Data Storage and Disk Structure (4) Data Storage and Query Answering Data Storage and Disk Structure (4) Introduction We have introduced secondary storage devices, in particular disks. Disks use blocks as basic units of transfer and storage.

More information

PAS 9737/AI-SMT ENGINEERING SPECIFICATION

PAS 9737/AI-SMT ENGINEERING SPECIFICATION Document PAS54 Spec Revision C (7/3/8) PAS 9737/AI-SMT ENGINEERING SPECIFICATION 64 CHANNEL, 6 BIT VME ANALOG INPUT CARD PCB Revision D (7/3/8) Additional copies of this manual or other Precision Analog

More information

Deere-Hitachi CSV File Upload process

Deere-Hitachi CSV File Upload process Deere-Hitachi CSV File Upload process This process should be followed when sending large, multi-line Invoices and Advanced Ship Notices (ASN) in a CSV formatted file to Deere-Hitachi. It is recommended

More information

LAXPC_DATA_FORMAT_V DOC LAXPC DATA FORMAT

LAXPC_DATA_FORMAT_V DOC LAXPC DATA FORMAT LAXPC DATA FORMAT The LAXPC payload consists of three independent instruments with identical operational modes. There are four different modes of operation and each instrument can be operated simultaneously

More information

T7 Modbus Communication User Guide

T7 Modbus Communication User Guide Communication via RS232/RS485 Version 1.3 1/3/2012 1 of 17 Contents Version 1.0... 1 Terms and Conditions of License for use of gratuitous software... 3 1 General... 5 2 T7-1-MODx Registers... 6 3 T7 Modbus

More information

SURVEILLANCE DATA EXCHANGE. Category 240. Radar Video Transmission

SURVEILLANCE DATA EXCHANGE. Category 240. Radar Video Transmission EUROPEAN ORGANISATION FOR THE SAFETY OF AIR NAVIGATION EUROCONTROL EUROCONTROL STANDARD DOCUMENT FOR SURVEILLANCE DATA EXCHANGE Category 240 Radar Video Transmission Edition : 1.2 Edition Date : August

More information

ASC X12N INSURANCE SUBCOMMITTEE X061A1 820 GROUP PREMIUM PAYMENT FOR INSURANCE PRODUCTS

ASC X12N INSURANCE SUBCOMMITTEE X061A1 820 GROUP PREMIUM PAYMENT FOR INSURANCE PRODUCTS ASC X12N INSURANCE SUBCOMMITTEE 004010X061A1 820 National Electronic Data Interchange Transaction Set Implementation Guide A D D E N D Payroll Deducted and Other Group Premium Payment For Insurance Products

More information

Electromagnetic Flowmeter ProcessMaster, HygienicMaster FEX300, FEX500

Electromagnetic Flowmeter ProcessMaster, HygienicMaster FEX300, FEX500 Pos: 1 /Titelblätter / Copyright/BA-IA/Durchfluss/Process- HygienicMaster (HART-Schnittstellenbeschreibung) @ 23\mod_1226477816078_3101.doc @ 224423 @ Pos: 2 /Titelblätter / Copyright/Kommunikationsbeschreibungen/Copyright-Seite

More information

EZChrom Elite Compact. What s New in EZChrom Elite Compact Service Pack 2

EZChrom Elite Compact. What s New in EZChrom Elite Compact Service Pack 2 EZChrom Elite Compact What s New in EZChrom Elite Compact 3.3.2 Service Pack 2 Notices Agilent Technologies, Inc. 2010 No part of this manual may be reproduced in any form or by any means (including electronic

More information

FM300 Network Server

FM300 Network Server FM300 Network Server User s Manual March 2005 MEDA, Inc Macintyre Electronic Design Associates, Inc 43676 Trade Center Place, Suite 145 Dulles, VA 20166 Disclaimer of Warranty FM300 Network Server NO WARRANTIES

More information

2G Actuator Communications Protocol Document Rotary & Linear Actuators

2G Actuator Communications Protocol Document Rotary & Linear Actuators 2752 Capitol Drive Suite #103 Sun Prairie, WI 53590 2150080 2G Actuator Packets - Rotary & Linear Revision AI Date 4/25/2018 2G Actuator Communications Protocol Document Rotary & Linear Actuators DOCUMENT

More information

System StrainSmart Data Acquisition System. Micro-Measurements FEATURES DESCRIPTION MODEL 5100B SCANNER SPECIFICATIONS

System StrainSmart Data Acquisition System. Micro-Measurements FEATURES DESCRIPTION MODEL 5100B SCANNER SPECIFICATIONS FEATURES From 5 to 1200 input channels can be configured as needed at any time Inputs accepted from strain gages and strain-gagebased transducers (Model 5110A), thermocouples (Model 5120A), sensors with

More information

Automationdirect.com. D i r e c t L o g i c M a g n e t i c P u l s e I n p u t C o p r o c e s s o r F 4-8 M P I

Automationdirect.com. D i r e c t L o g i c M a g n e t i c P u l s e I n p u t C o p r o c e s s o r F 4-8 M P I Automationdirect.com D i r e c t L o g i c 0 5 M a g n e t i c P u l s e I n p u t C o p r o c e s s o r F - 8 M P I Manual Order Number: F-8MPI-M TRADEMARKS AutomationDirect.com is a Trademark of Automationdirect.com

More information

OPUS Science Data Processing

OPUS Science Data Processing Science Data Processing www.stsci.edu/software/opus/ www.dpt.stsci.edu/ 1 of 13 OPUS Science Data Processing PMDB ASSIST PDB pod file Data Partitioning Support Schedule Data Validation EDT binary dataset

More information