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

Size: px
Start display at page:

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

Transcription

1 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 five sections: Introduction This section explains what calibration is, why you should calibrate your devices, and how often you should calibrate. Equipment and Other Test Requirements This section contains information on test equipment, documentation, software, and test conditions required for calibration. Calibration Procedures This section contains step-by-step instructions for verifying and adjusting the FP-RTD-122 module. This section also includes the C/C++ functions you use to verify and adjust the FP-RTD-122 module, and instructions on how to use them. Additional Module Information: FP-RTD-122 This section contains flowcharts that outline the verification and adjustment procedures, and information on additional utility functions for the FP-RTD-122 module. Calibration-Specific Errors in FieldPoint This section contains a list of common calibration error codes for the FP-RTD-122 modules. You should use this calibration procedure in conjunction with the calibration software library that is included with the documentation. The software library contains specific functions required for calibrating the module. FieldPoint, National Instruments,NI, and ni.com are trademarks of National Instruments Corporation. Product and company names mentioned herein are trademarks or trade names of their respective companies A-01 Copyright 2001 National Instruments Corp. All rights reserved. July 2001

2 What Is Calibration? Why Should You Calibrate? How Often Should You Calibrate? Calibration consists of verifying the measurement accuracy of a device and adjusting for any measurement error. Verification is measuring the performance of the device comparing these measurements to the factory specifications. During calibration, you supply and read voltage levels using external standards, then you adjust the module calibration constants. The new calibration constants are stored in the EEPROM. These calibration constants are loaded from memory as needed to adjust for the error in the measurements taken by the device. The accuracy of electronic components drifts with time and temperature, which can affect measurement accuracy as the device ages. Calibration restores these components to their specified accuracy and ensures that the device still meets National Instruments (NI) standards. The measurement requirements of your application determine how often the FP-RTD-122 module needs to be calibrated to maintain accuracy. NI recommends that you perform a complete calibration at least once every year. You can shorten this interval to 90 days or six months based on the demands of your application. Equipment and Other Test Requirements This section describes the equipment, test conditions, documentation, and software you need to calibrate the FP-RTD-122 module. Test Equipment Calibrating an FP-RTD-122 module requires using a high-precision voltage source that is accurate to at least 20 ppm (0.002%). NI recommends that you use the following instruments for calibration: Calibrator Fluke 5700A DMM Hewlett Packard 3458A FieldPoint FP-1000 network module FieldPoint calibration base model FP-TB-CAL, part number , that allows you to write new calibration constants to the module EEPROM V power supply NI PS-2 power supply RS-232 serial cable FP-RTD-122 Calibration Procedure 2 ni.com

3 If a Fluke 5700A is not available, use the 100 ppm accuracy specification to choose a substitute calibration standard. Test Conditions Documentation Follow these guidelines to optimize connections and test conditions during calibration: Keep connections to the module short. Long cables and wires act as antennae, picking up extra noise that can affect measurements. Use shielded copper wire for all cable connections to the device. Use twisted-pair wire to eliminate noise and thermal offsets. Maintain a temperature between 18 and 28 C. To operate the module at a specific temperature outside this range, calibrate the module at that temperature. Keep relative humidity below 80%. Allow a warm-up time of at least 15 minutes to ensure that the measurement circuitry is at a stable operating temperature. This section describes the documentation you need to calibrate the FP-RTD-122 module. In addition to this calibration procedure, you may need to refer to the following documentation: FP-1000/1001 Programmer Reference Manual FP-RTD-122 Operating Instructions FP-1000/1001 User Manual FP-1000/1001 Quick Start Guide You can download these documents from ni.com/manuals. Software Calibrating the FP-RTD-122 module requires using the calibration software library, which you downloaded or received with this documentation. The library contains function calls that perform specific tasks during the calibration procedure. If you do not have the software library files, you can download them from ni.com/calibration. National Instruments Corporation 3 FP-RTD-122 Calibration Procedure

4 Writing Your Calibration Procedure The Calibration Procedures section later in this document provides step-by-step instructions for calling the appropriate calibration functions. The calibration software library consists of the following files: fpcalibration.dll fpcalibration.h Refer to the Flowcharts for Creating Verification and Adjustment Code section for illustrations of the code used at each step of the calibration procedure. Throughout this procedure, you send commands to the FieldPoint bank. These commands consist of strings of ASCII characters that cause the module to perform various functions during verification and adjustment. The FP-1000/1001 Programmer Reference Manual contains details on the format of these commands. You construct and send commands that set the attributes of the module, read 12-bit data (input modules), and write 16-bit data (output modules). To communicate with the module, you need to configure the module address and baud rate using the switches on the interface module. Understanding the Calibration Functions The file fpcalibration.dll contains four main functions that the user program calls to start a calibration session, perform verification, make adjustments, and end the calibration session. The following paragraphs describe each of the calibration functions and explain how they are used. int fp_calstart int fp_calstart(int portnum, int device, unsigned long baudrate, char* password, int passwordsize, char reserved, sessionhandle* m_session); This function starts the calibration session. Use this function every time you need to either verify or adjust a module. The parameters for this function are described in detail in detail in the Calibration Procedures section later in this document. int fp_calverify int fp_calverify(sessionhandle m_session, int measurementmode, int range, int channel, double* data, int datasize); This function takes data for one channel and verifies that it is within the acceptable operating ranges. The function returns a 0 if the data is within specifications. The data parameter is a pointer to an array of data in the FP-RTD-122 Calibration Procedure 4 ni.com

5 format shown in Figure 1. The other parameters for this function are described in detail in the Calibration Procedures section of this document. Low-Resistance Reading from FP-RTD-122 Mid-Resistance Reading from FP-RTD-122 High-Resistance Reading from FP-RTD-122 int fp_caladjust Figure 1. ArrayofDataUsedbyfp_CalVerify int fp_caladjust(sessionhandle m_session, int measurementmode, int range, int channel, double* data, int datasize); This function uses the data for one channel to calculate new calibration constants. The function returns a 0 if the new constants for the channel you are calibrating were calculated successfully. The data parameter is a pointer to an array of data in the format shown in Figure 2. The other parameters for this function are described in detail in the Calibration Procedures section of this document. Low-Resistance Actual Value from Calibrator Low-Resistance Reading from FP-RTD-122 High-Resistance Actual Value from Calibrator High-Resistance Reading from FP-RTD-122 Figure 2. ArrayofDataUsedbyfp_CalAdjust National Instruments Corporation 5 FP-RTD-122 Calibration Procedure

6 int fp_calend int fp_calend(sessionhandle m_session, int action); This function terminates the calibration or verification session. A 0 is returned if the function is used to terminate a session and write new constants to the EEPROM. The parameters for this function are described in detail in the Calibration Procedures section of this document. Understanding FieldPoint Commands In addition to the four calibration functions, you also use three FieldPoint commands to calibrate the FP-RTD-122 module. Power Up Clear, Set Attributes, and Read 16-bit Data are explained in the next three sections. Note Read the FieldPoint Commands Overview section of the FP-1000/1001 Programmer Reference Manual before you write the commands to make sure you understand the syntax for each command. Power Up Clear Command Syntax A Example >01A??[cr] All FieldPoint commands have similar syntax and contain the following five fields: [start][address][command][checksum][end] The Power Up Clear command is the first command you send after applying power to the module. This command prevents the FP-RTD-122 module from returning a power-up clear expected error message (E_PONCLR_EXP). This command functions only if it is the first command you send after power-up. where > = the [start] character of any FieldPoint command 01 = the module address A = the actual command?? = the checksum [cr] = carriage return FP-RTD-122 Calibration Procedure 6 ni.com

7 Note Sending?? instead of the actual checksum is valid, but FieldPoint will not do error checking. Refer to Chapter 1, FieldPoint Commands Overview, ofthefp-1000/1001 Programmer Reference Manual for more detailed information on the command fields. Set Attributes Command The Set Attributes command sets the specified attributes and range for each specified channel of the module you are addressing. Syntax!D[positions]{[attrMask][rangeMask][settings]}[cr] Example Assume you are changing the range of channel 3 to ±50 mv. The command would be: >01!D A??[cr] where > = the [start] character of any FieldPoint command 01 = the module address!d = the actual command 0008 = four ASCII-hex characters representing [positions], or the channel you are targeting with this command (channel 3 in this example) 0000 = four ASCII-hex characters representing [attrmask] for channel 0 1 = one ASCII-hex character representing [rangemask]; a zero in this field indicates that the range is not affected 0A = two ASCII-hex characters representing the [settings] entry; 0A corresponds with the ±50 mv range?? = the checksum [cr] = carriage return If you need more information on the parameter values to use in the Set Attributes command, refer to the tables in Chapter 5, Extended FieldPoint Command Descriptions, inthefp-1000/1001 Programmer Reference Manual. Table 1 lists the ASCII-hex conversions to use in the positions parameter. National Instruments Corporation 7 FP-RTD-122 Calibration Procedure

8 Table 1. Values for the positions Parameter for FP-RTD-122 Channel ASCII Characters Read 16-Bit Data Command The Read 16-bit Data command reads data from targeted input and output channels of the module you are addressing. Each data value is a 16-bit value. Syntax!F[positions] Example Assume you are reading from channel 3. The command would be: >01!F0008??[cr] where > = the [start] character of any FieldPoint command 01 = the module address!f = the actual command 0008 = four ASCII-hex characters representing [positions], or the channel you are targeting with this command (channel 3 in this example)?? = the checksum [cr] = carriage return The ASCII-hex values to use in the [positions] parameterareshownintable1. FP-RTD-122 Calibration Procedure 8 ni.com

9 Calibration Procedures Configuring the FP-RTD-122 Module Calibration consists of four main steps: 1. Configuring the module for calibration. This step is described in the Configuring the FP-RTD-122 Module section. 2. Verifying the existing performance of the module. This step, which is described in the Verifying the Performance of the FP-RTD-122 Module section, determines whether the module is operating within its specified range prior to making adjustments. 3. Adjusting the calibration constants of the module using a high-precision voltage source. This step is described in the Adjusting the FP-RTD-122 Module section. 4. Verifying again to ensure that the module is operating within its specifications after adjusting. These steps are described in detail in the following sections. To verify the operation of the test fixture, build a FieldPoint bank with a network module, calibration terminal base, power supply, and the module you are calibrating. Then, complete the following steps: 1. Place the FP-RTD-122 module in the calibration terminal base. 2. Connect the bank to the host computer using an RS-232 serial cable. 3. Launch FieldPoint Explorer and add a communication resource to the server by right-clicking FieldPoint and selecting Add a Comm Resource to this Server. 4. Make sure the correct communication port and baud rate appear in the dialog box, then click Find Devices. 5. Expand the view to show the devices found. You should see the module you want to calibrate. If you do not, the network module is not communicating correctly with either the host or the FP-RTD-122 module. 6. Close FieldPoint Explorer before you go on to the next section. Caution You must close FieldPoint Explorer after configuring the FP-RTD-122 module. FieldPoint Explorer must remain closed when you call calibration functions to prevent a system crash. You have finished configuring the FP-RTD-122 module and verifying communication between the module and the calibration system. If you need additional information on configuring the FP-RTD-122 module, refer to the module operating instructions or the FP-1000/1001 Quick Start Guide. National Instruments Corporation 9 FP-RTD-122 Calibration Procedure

10 Verifying the Performance of the FP-RTD-122 Module This procedure determines how well the FP-RTD-122 module is meeting its specifications. To complete this procedure, you need a calibrator to verify values and the FP-1000/1001 Programmer Reference Manual. Make sure that you have read the Equipment and Other Test Requirements section earlier in this document before beginning this procedure. Complete the following steps to verify the performance of the FP-RTD-122 module: 1. Configure and open a connection to the interface module through your program. Opening a connection allows you to send FieldPoint commands to the module you want to calibrate. For detailed information on using FieldPoint software, refer to Chapter 4, Installing and Using FieldPoint Software in the FP-1000/1001 User Manual. 2. Connect one wire from one pair of the calibrator output to the EXCITE terminal for channel 0. Refer to Table 2 to determine the correct terminal number. Channel Table 2. FP-RTD-122 Terminal Assignments Terminal Numbers EXCITE SENSE COM Connect one wire of the second pair of the calibrator output to the SENSE terminal for channel Connect the other wire of the second pair of the calibrator output to the COM terminal for channel Ensure that all other terminals on the calibration base are open. 6. Set the calibrator to apply the first value listed in the Test Point column in Table 3. Note Use the first value in the Test Point column for the first test. When you repeat this step for other values, use the successive values listed in the Test Point column. FP-RTD-122 Calibration Procedure 10 ni.com

11 Range Range ID Table 3. FP-RTD-122 Module Specifications Location Test Point Value (ohms) Lower Limit (ohms) Upper Limit (ohms) Ω 30 +FS ZS FS Ω 31 +FS ZS FS The next two steps use the FieldPoint commands Set Attributes and Read Analog Inputs. Refer to the section Understanding FieldPoint Commands for the description and syntax of each command. 7. Use the Set Attributes command to configure the channels for the appropriate range using the Range ID (settings) in Table 3 from the same row you used in step 6. Set the following parameters: positions 0001 attrmask 0000 rangemask 1 settings The Range ID value from Table 3 8. Use the Read 16-bit Data command to acquire one point of binary data and store the result. Set positions to Record the reading from step 8 in a variable. 10. Repeat steps six through nine to obtain data for each Test Point value listed in Table 3, including both 400 Ω and 4000 Ω ranges. Note You only need to verify the readings for each range on one channel. 11. Start a calibration session by calling fp_calstart with the following parameters: port The serial port used to connect to the FP-1000 network module: 1 for COM1, 2 for COM2, and so on device The address of the I/O module to verify or calibrate. If the module is the first module to the right of a network module with a base address of 0, its address is 1 baudrate The baud rate used to communicate with the network module National Instruments Corporation 11 FP-RTD-122 Calibration Procedure

12 password A four-character string containing the module password; the default password is NATI caller 0 m_session A pointer that is returned when you call this function, contains the handle to reference to the current communications session; use this handle with the rest of the calibration functions to reference the same calibration session 12. Call fp_calverify two times, once for each range. Use the data from channel 0 to verify that the FP-RTD-122 module readings for both ranges are within specifications. The parameters for fp_calverify are as follows: m_session The session handle you obtained with the fp_calstart function measurementmode 1 range The Range ID value from Table 3, depending on the range you are verifying channel 0 datasize 3 data A pointer to the array of data in the format shown in Figure 1 If the fp_calverify function returns a 0, the module is within specification. If the function returns a 1, the module is out of specification and requires adjustment. 13. Call fp_calend to end the calibration session. Set the action parameter to 1 so the values are not written to the EEPROM. 14. Disconnect the calibrator from the module. You have finished verifying the performance of the FP-RTD-122 module. If all ranges are within the module specifications, you are finished calibrating the FP-RTD-122 module. If any ranges are outside the module specifications, you must adjust the calibration constants as described in the Adjusting the FP-RTD-122 Module section of this document. FP-RTD-122 Calibration Procedure 12 ni.com

13 Adjusting the FP-RTD-122 Module The procedure for adjusting the calibration constants in the FP-RTD-122 is divided into three main sections: Measuring 400 Ohm Range Values This section describes how to measure values for the 400 Ω range of the FP-RTD-122 module. Measuring 4000 Ohm Values This section describes how to measure values for the 4000 Ω range of the FP-RTD-122 module. Writing New Calibration Constants to the EEPROM This section describes how to use measurements from the two previous sections to write new calibration constants to the EEPROM of the FP-RTD-122 module. Measuring 400 Ohm Range Values To measure values for the 400 Ω range of the FP-RTD-122 module, complete the following steps: 1. Connect one wire from one pair of the calibrator output to the EXCITE terminal for channel 0 (terminal 1). 2. Connect one wire of the second pair of the calibrator output to the SENSE terminal for channel 0 (terminal 2). 3. Connect the other wire of the second pair of the calibrator output to the COM terminal for channel 0 (terminal 18). 4. Use the Set Attributes command to configure the FP-RTD-122 module for the 400 Ω range using the corresponding Range ID (settings) from Table 3. Set the following parameters: positions 0001 attrmask 0000 rangemask 1 settings Set the calibrator to apply 100 Ω to the module input. Store this value as low_ohm_actual for the 400 Ω range. 6. Use the Read 16-bit Data command to acquire and average 16 binary data points. Store this value as low_ohm_value for the 400 Ω range. 7. Set the calibrator to apply 190 Ω to the module input. Store this value as hi_ohm_actual for the 400 Ω range. 8. Use the Read 16-bit Data command to acquire and average 16 binary data points. Store this value as hi_ohm_value for the 400 Ω range. 9. Leave all wires connected and continue to the Measuring 4000 Ohm Values section. National Instruments Corporation 13 FP-RTD-122 Calibration Procedure

14 Measuring 4000 Ohm Values To measure values for the 4000 Ω range of the FP-RTD-122 module, complete the following steps: 1. Use the Set Attributes command to configure the FP-RTD-122 module for the 4000 Ω range using the corresponding Range ID (settings) from Table 3. Set the following parameters: positions 0001 attrmask 0000 rangemask 1 settings Set the calibrator to apply 1000 Ω to the module input. Store this value as low_ohm_actual for the 4000 Ω range. 3. Use the Read 16-bit Data command to acquire and average 16 binary data points. Store this value as low_ohm_value for the 4000 Ω range. 4. Set the calibrator to apply 1900 Ω to the module input. Store this value as hi_ohm_actual. 5. Use the Read 16-bit Data command to acquire and average 16 binary data points. Store this value as hi_ohm_value for the 4000 Ω range. You now have the measurements you need for calculating the new calibration constants. Use these measurements to write the calibration constants to the EEPROM of the module. Writing New Calibration Constants to the EEPROM To write the new calibration constants to the EEPROM, you need to call the calibration functions from the calibration DLL. Complete the following steps: 1. Close any open connections to the FP-RTD-122 module. 2. Call fp_calstart to open a connection to the module and to obtain a session handle. 3. In a loop, call fp_caladjust two times, once for each range. Use the data you collected in the sections Measuring 400 Ohm Range Values and Measuring 4000 Ohm Values. Set the following parameters: m_session The session handle you obtained from fp_calstart measurementmode 4 rangeid 400 or 4000, depending on the range channel The channel you are adjusting, in this case 0 FP-RTD-122 Calibration Procedure 14 ni.com

15 Verifying After Adjustments datasize 6 data A pointer to an array with the format shown in Figure 1 If the adjustment is successful, the function returns a Call fp_calend with the action parameter set to 0 to write the new value to the EEPROM. If you want to end the session without saving the new calibration constants, set the action parameter to 1. You have completed adjusting the calibration constants for the FP-RTD-122 module. After you have completed adjusting the calibration constants, verify the performance of the FP-RTD-122 module again to ensure that you are using the new calibration constants. 1. Remove the FP-RTD-122 module from the base and reinsert it. You do not need to disconnect the power before removing the module. 2. Repeat the procedure described in the Verifying the Performance of the FP-RTD-122 Module section of this document. You have completed the calibration procedure for the FP-RTD-122 module. Additional Module Information: FP-RTD-122 This section includes flowcharts of the verification and adjustment processes, and detailed information on other supported functions that are part of the calibration software. Flowcharts for Creating Verification and Adjustment Code The following flowcharts show the appropriate commands for verifying and calibrating the FP-RTD-122 module. Refer to the Calibration Procedures section of this document for additional information on the software structure and for function explanations. National Instruments Corporation 15 FP-RTD-122 Calibration Procedure

16 FP-RTD-122 Analog Input Verification Flowchart Figure 3 shows the flowchart of the process for analog input verification of the FP-RTD-122 module. Use this flowchart to design and write your verification program. From your application, determine the input range to verify. Configure the FP-RTD-122 module using the Set Attributes command. Read the required data using the Read 16-bit Data command. Store data in a variable. All ranges done? No Go to next range. Yes Call fp_calstart. Call fp_calverify. Call fp_calend with the action parameter set to 1. Figure 3. FP-RTD-122 Analog Input Verification Flowchart FP-RTD-122 Calibration Procedure 16 ni.com

17 FP-RTD-122 Adjustment Flowchart Figure 4 shows the flowchart of the process for adjusting the FP-RTD-122 module. Use this flowchart to design and write your adjustment program. From your application, determine the input range to adjust. Configure the FP-RTD-122 module using the Set Attributes command. Read the required data using the Read 16-bit Data command. Store data in a variable. All ranges done? No Go to next range. Yes Call fp_calstart. Call fp_caladjust. Call fp_calend with the action parameter set to 0. Figure 4. FP-RTD-122 Adjustment Flowchart National Instruments Corporation 17 FP-RTD-122 Calibration Procedure

18 Additional FP-RTD-122 Module Functions fp_calchangepassword In addition to the functions listed previously, several other utility functions exist within the supplied DLL that you can call for more detailed information. These functions are explained in the following paragraphs: fp_calchangepassword(sessionhandle m_session, char* oldpass, char* newpass) fp_calfetchcount This function changes the current password on the module. The parameters are as follows: m_session The session handle obtained with the fp_calstart function oldpass A pointer to the four-character old password newpass The new four-character password that you program into the module fp_calfetchcount(sessionhandle m_session, int* count) fp_calfetchdate This function returns the number of times the module has been calibrated in the count variable. The parameters are as follows: m_session The session handle obtained with the fp_calstart function count An 8-bit variable that rolls over to 0 after the module has been calibrated 255 times fp_calfetchdate(sessionhandle m_session, int* year, int* month, int* day) This function returns the year, month, and day the unit was last calibrated. The parameters are as follows: m_session The session handle obtained with the fp_calstart function year A pointer to a variable that contains the year the module was last calibrated month A pointer to a variable that contains the month the module was last calibrated day A pointer to a variable that contains the day the module was last calibrated FP-RTD-122 Calibration Procedure 18 ni.com

19 fp_calfetchmiscinfo fp_calfetchmiscinfo(sessionhandle m_session, char* miscinfo, int buffersize) fp_calreset This function returns the data stored in the miscellaneous information area of EEPROM within the module. The parameters are as follows: m_session The session handle obtained with the fp_calstart function miscinfo The pointer to the data stored in the miscellaneous area of the EEPROM buffersize The size of the miscinfo data, which is 12 bytes for the FP-RTD-122 fp_calreset (sessionhandle m_session) This function resets the calibration constants to their default values and writes them to the EEPROM. This function has only one parameter: m_session The session handle obtained with the fp_calstart function Note Because fp_calreset resets the calibration constants, you must collect new data after calling the function for calibration to be valid. fp_calstoremiscinfo fp_calstoremiscinfo(sessionhandle m_session, char* miscinfo int miscbufsize) This function takes the data in the miscinfo array and stores it to the miscellaneous info area of the EEPROM. The parameters are as follows: m_session The session handle obtained with the fp_calstart function miscinfo A pointer to the data that is stored in the miscellaneous information area of the EEPROM miscbufsize ThesizeofthemiscInfo array,whichisequaltoor less than 12 bytes National Instruments Corporation 19 FP-RTD-122 Calibration Procedure

20 Calibration-Specific Errors in FieldPoint Table 4 contains a list of common calibration errors for FieldPoint. If a function returns an error that is not listed in Table 4, it is either an optomux error or a FieldPoint error. If you need more information on these errors, refer to the FP-1000/1001 Programmer Reference Manual. Error Table 4. Calibration-Specific Errors in FieldPoint Description 0 Success module calibrated without problems 1 Invalid handle 2 Invalid session handle 3 Communications error 4 Null buffer parameter 5 Improper module 6 Unexpected internal error 7 Handle is already in use 8 Calibration Incomplete 9 Calibration data is corrupted 10 Buffer parameter is too long 11 Invalid channel 12 Invalid range 13 Invalid mode 14 Invalid baudrate 15 Data size error 16 Memory allocation failure 17 Data not initialized 18 Password mismatch 19 Old calibration constants are out of range; you must reset to nominal values using fp_calreset FP-RTD-122 Calibration Procedure 20 ni.com

Calibrating FieldPoint Analog Input Modules with Calibration Executive

Calibrating FieldPoint Analog Input Modules with Calibration Executive USER GUIDE Calibrating FieldPoint Analog Input Modules with Calibration Executive Contents This document contains step-by-step instructions for loading and running National Instruments Calibration Executive

More information

NI 6703/6704 Calibration Procedure for Traditional NI-DAQ

NI 6703/6704 Calibration Procedure for Traditional NI-DAQ NI 6703/6704 Calibration Procedure for Traditional NI-DAQ Introduction This document contains instructions for calibrating the NI 6703/6704 for PCI/PXI/CompactPCI using Traditional NI-DAQ. Use this calibration

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

SCXI Contents CALIBRATION PROCEDURE

SCXI Contents CALIBRATION PROCEDURE CALIBRATION PROCEDURE SCXI -1122 Contents This document contains information and step-by-step instructions for calibrating the National Instruments SCXI-1122 module. Introduction... 2 What Is Calibration?...

More information

Contents. Software Requirements. CALIBRATION PROCEDURE NI PXIe-4357

Contents. Software Requirements. CALIBRATION PROCEDURE NI PXIe-4357 CALIBRATION PROCEDURE NI PXIe-4357 Français Deutsch ni.com/manuals This document contains information about calibrating National Instruments PXIe-4357 SC Express modules using NI-DAQmx. For more information

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

CALIBRATION PROCEDURE NI channel, ±2- ma/±10 V, 24-bit Analog Input Module. ni.com/manuals

CALIBRATION PROCEDURE NI channel, ±2- ma/±10 V, 24-bit Analog Input Module. ni.com/manuals CALIBRATION PROCEDURE NI 9207 16-channel, ±2- ma/±10 V, 24-bit Analog Input Module Français Deutsch ni.com/manuals This document contains the verification and adjustment procedures for the National Instruments

More information

SCXI Introduction CALIBRATION PROCEDURE. What Is Calibration? Why Should You Calibrate? How Often Should You Calibrate?

SCXI Introduction CALIBRATION PROCEDURE. What Is Calibration? Why Should You Calibrate? How Often Should You Calibrate? CALIBRATION PROCEDURE SCXI -1125 Introduction What Is Calibration? Why Should You Calibrate? How Often Should You Calibrate? This document contains information and step-by-step instructions for verifying

More information

CALIBRATION PROCEDURE NI PXIe Channel, Isolated Voltage/Current Analog Output Module

CALIBRATION PROCEDURE NI PXIe Channel, Isolated Voltage/Current Analog Output Module CALIBRATION PROCEDURE NI PXIe-4322 8-Channel, Isolated Voltage/Current Analog Output Module This document contains the verification and adjustment procedures for the National Instruments PXIe-4322 module.

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

NI 6703/6704 Calibration Procedure for NI-DAQ mx

NI 6703/6704 Calibration Procedure for NI-DAQ mx NI 6703/6704 Calibration Procedure for NI-DAQ mx Contents This document contains instructions for calibrating the NI 6703/6704 for PCI/PXI/CompactPCI using NI-DAQmx. This document does not discuss programming

More information

Contents. Software. CALIBRATION PROCEDURE NI Channel, ±5 V, 24-Bit Software-Selectable IEPE and AC/DC Analog Input Module

Contents. Software. CALIBRATION PROCEDURE NI Channel, ±5 V, 24-Bit Software-Selectable IEPE and AC/DC Analog Input Module CALIBRATION PROCEDURE NI 9234 4-Channel, ±5 V, 24-Bit Software-Selectable IEPE and AC/DC Analog Input Module This document contains the verification and adjustment procedures for the National Instruments

More information

Contents. Software. CALIBRATION PROCEDURE NI Channel, 300 Vrms, 24-Bit, Simultaneous, Channel-to-Channel Isolated Analog Input Module

Contents. Software. CALIBRATION PROCEDURE NI Channel, 300 Vrms, 24-Bit, Simultaneous, Channel-to-Channel Isolated Analog Input Module CALIBRATION PROCEDURE NI 9225 3-Channel, 300 Vrms, 24-Bit, Simultaneous, Channel-to-Channel Isolated Analog Input Module Français Deutsch ni.com/manuals This document contains the verification and adjustment

More information

NI 9213 Calibration Procedure

NI 9213 Calibration Procedure NI 9213 Calibration Procedure Français Deutsch ni.com/manuals This document contains information about calibrating National Instruments 9213 modules using NI-DAQmx. This calibration procedure is intended

More information

CALIBRATION PROCEDURE CAL Contents. Software

CALIBRATION PROCEDURE CAL Contents. Software CALIBRATION PROCEDURE CAL-4353 Français Deutsch ni.com/manuals Contents Software This document contains information about verifying and adjusting National Instruments NI PXIe-4353 modules using NI-DAQmx

More information

NI PCIe-784xR, NI PXI-784xR, NI PXIe-784xR, NI USB-784xR, NI PCIe-785xR, NI PXI-785xR, NI PXIe-785xR, NI USB-785xR, and NI PXIe-786xR

NI PCIe-784xR, NI PXI-784xR, NI PXIe-784xR, NI USB-784xR, NI PCIe-785xR, NI PXI-785xR, NI PXIe-785xR, NI USB-785xR, and NI PXIe-786xR CALIBRATION PROCEDURE NI R Series NI PCIe-784xR, NI PXI-784xR, NI PXIe-784xR, NI USB-784xR, NI PCIe-785xR, NI PXI-785xR, NI PXIe-785xR, NI USB-785xR, and NI PXIe-786xR This document contains the verification

More information

NI R Series. Contents. Software CALIBRATION PROCEDURE

NI R Series. Contents. Software CALIBRATION PROCEDURE CALIBRATION PROCEDURE NI R Series NI PCIe-784xR, NI PXI-784xR, NI PXIe-784xR, NI USB-784xR, NI PCIe-785xR, NI PXI-785xR, NI PXIe-785xR, and NI USB-785xR This document contains the verification and adjustment

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

±10 V, 20 MS/s/ch, 14-Bit, 4-Channel C Series Digitizer Module

±10 V, 20 MS/s/ch, 14-Bit, 4-Channel C Series Digitizer Module CALIBRATION PROCEDURE NI 9775 ±10 V, 20 MS/s/ch, 14-Bit, 4-Channel C Series Digitizer Module This document contains the verification and adjustment procedures for the NI 9775. For more information on calibration,

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

NI PXI Contents CALIBRATION PROCEDURE

NI PXI Contents CALIBRATION PROCEDURE CALIBRATION PROCEDURE NI PXI-5422 Contents This document contains step-by-step instructions for writing a calibration procedure for the NI PXI-5422 arbitrary waveform generator. Conventions... 1 Introduction...

More information

NI Introduction CALIBRATION PROCEDURE. What Is Calibration? External Calibration

NI Introduction CALIBRATION PROCEDURE. What Is Calibration? External Calibration CALIBRATION PROCEDURE NI 5911 Introduction What Is Calibration? This document contains information and step-by-step instructions for calibrating the NI 5911 digitizer. This calibration procedure is intended

More information

SCXI -1104/C. Contents CALIBRATION PROCEDURE. For NI-DAQmx

SCXI -1104/C. Contents CALIBRATION PROCEDURE. For NI-DAQmx CALIBRATION PROCEDURE SCXI -1104/C For NI-DAQmx Contents This document contains information and instructions for calibrating the National Instruments SCXI-1104/C signal conditioning module. Conventions...

More information

SCXI -1102/B/C. Contents CALIBRATION PROCEDURE. For NI-DAQmx

SCXI -1102/B/C. Contents CALIBRATION PROCEDURE. For NI-DAQmx CALIBRATION PROCEDURE SCXI -1102/B/C For NI-DAQmx Contents This document contains information and instructions for calibrating the National Instruments SCXI-1102/B/C signal conditioning module. Conventions...

More information

SCXI Equipment and Other Test Requirements CALIBRATION PROCEDURE. Test Equipment. Software and Documentation

SCXI Equipment and Other Test Requirements CALIBRATION PROCEDURE. Test Equipment. Software and Documentation CALIBRATION PROCEDURE SCXI -1520 This document contains information and step-by-step instructions for calibrating the National Instruments SCXI-1520 module. Equipment and Other Test Requirements This section

More information

To calibrate the NI 5105, install the following versions of NI-SCOPE. NI-SCOPE Version

To calibrate the NI 5105, install the following versions of NI-SCOPE. NI-SCOPE Version CALIBRATION PROCEDURE NI 5105 This document contains instructions for writing an external calibration procedure for the NI PXI/PXIe/PCI-5105. For more information about calibration, visit ni.com/calibration.

More information

Contents. Software Requirements CALIBRATION PROCEDURE NI TB-4353

Contents. Software Requirements CALIBRATION PROCEDURE NI TB-4353 CALIBRATION PROCEDURE NI TB-4353 Français Deutsch ni.com/manuals This document contains information about verifying National Instruments PXIe-4353 modules using NI-DAQmx 9.3 and later. It also contains

More information

RTD Temperature acquisition converter WJ25

RTD Temperature acquisition converter WJ25 8-CH Thermocouple Signal to RS485/232 Acquisition Converter (WJ27 series 24Bits A/D Converter, data acquisition) Features: >> Eight channels thermocouple signal acquisition, isolated converter RS-485/232

More information

Signal Isolators & Conditioners

Signal Isolators & Conditioners Analog Signal to RS485/232 Converter Signal Isolators & Conditioners (WJ21 series A/D Converter) Features: >> Analog signal acquisition, isolated RS-485/232 output >> 12-bit AD converter, testing accuracy>0.1%

More information

Contents. Software CALIBRATION PROCEDURE NI TC-4353

Contents. Software CALIBRATION PROCEDURE NI TC-4353 CALIBRATION PROCEDURE NI TC-4353 This document contains the verification procedure for the National Instruments TC-4353. For more information about calibration solutions, visit ni.com/calibration. Contents

More information

Signal Isolators & Conditioners

Signal Isolators & Conditioners WJ21 series Analog Signal to RS485/232 Converter (A/D Converter) Features: >> Analog signal acquisition, isolated RS-485/232 output >> 12-bit AD converter, testing accuracy>0.1% >> Can Program and calibrate

More information

JSD81 series products are based on SCM's intelligent monitoring and control system, users set the calibration value,

JSD81 series products are based on SCM's intelligent monitoring and control system, users set the calibration value, 8-Channel Analog Signals to RS485/232 Converter(A/D Converter JSD81 series) Features: 8-CH analog signal acquisition/isolation,rs-485/232 output 24-bit AD converter, testing accuracy>0.05% Can Program

More information

Analog signal to RS485 or RS232 Converter, A/D Converter

Analog signal to RS485 or RS232 Converter, A/D Converter Analog signal to RS485 or RS232 Converter, A/D Converter Features: Analog signal acquisition, isolated RS-485/232 output 12-bit AD converter, testing accuracy>0.1% Can be remotely reconfigured for modules

More information

Signal Isolators & Conditioners

Signal Isolators & Conditioners RS485/232 to Analog Signal Converter Signal Isolators & Conditioners (D/A Converter,WJ31 series) Features: >> RS-485/232 interface, isolation convert standard analog signal output >> Analog signal output

More information

PRECISION DIGITAL CORPORATION

PRECISION DIGITAL CORPORATION PRECISION DIGITAL CORPORATION Serial Communication Protocol This document describes how to communicate with the Trident Model PD765, Javelin T Model PD740, and Javelin D Model PD644 meters using the Precision

More information

TTDM-128 Modbus Register Map. Version 3.1 Series Current to Document Date

TTDM-128 Modbus Register Map. Version 3.1 Series Current to Document Date TTDM-128 Modbus Register Map Version 3.1 Series Current to Document Date This document defines the as of the date of publication. Each TTDM must have a unique network ID set through the front panel menu.

More information

NI PXI Contents CALIBRATION PROCEDURE

NI PXI Contents CALIBRATION PROCEDURE CALIBRATION PROCEDURE NI PXI-5114 Contents This document contains instructions for writing an external calibration procedure for NI PXI-5114 digitizers. This calibration procedure is intended for metrology

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

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

D1000M SERIES FOR MODBUS SENSOR TO COMPUTER INTERFACE MODULES

D1000M SERIES FOR MODBUS SENSOR TO COMPUTER INTERFACE MODULES D1000M SERIES FOR MODBUS SENSOR TO COMPUTER INTERFACE MODULES D1000 FEATURES Complete sensor to RS-232/RS-485 interface. 500V rms analog input isolation. 15 bit measurement resolution. Continuous self-calibration;

More information

EX9017H-M is a analog input module with 8 input channels. Eight channels are differential type and individual channel configuration support.

EX9017H-M is a analog input module with 8 input channels. Eight channels are differential type and individual channel configuration support. 1.1 Introduction EX9017H-M is a analog input module with 8 input channels. Eight channels are differential type and individual channel configuration support. Specifications: Interface: RS-485, 2 wires

More information

Analog Devices Driver Kepware, Inc.

Analog Devices Driver Kepware, Inc. 2016 Kepware, Inc. 2 Table of Contents Table of Contents 2 Analog Devices Driver 3 Overview 3 Driver Setup 4 Device Setup 5 Data Format 6 Modem Setup 6 Data Types Description 7 Address Descriptions 8 6B11

More information

Contents. CALIBRATION PROCEDURE NI PXIe-5624R 2 GS/s, 12-Bit IF Digitizer

Contents. CALIBRATION PROCEDURE NI PXIe-5624R 2 GS/s, 12-Bit IF Digitizer CALIBRATION PROCEDURE NI PXIe-5624R 2 GS/s, 12-Bit IF Digitizer This document contains the verification and adjustment procedures for the NI PXIe-5624R (NI 5624R) IF digitizer. Refer to ni.com/calibration

More information

RTD-500 Precision RTD Simulator. Operations Manual.

RTD-500 Precision RTD Simulator. Operations Manual. RTD-500 Precision RTD Simulator Operations Manual. Page 1 of 16 Table of Content. Table of Content....1 1 Scope...3 2 Package Content....3 3 Technical Data....3 4 Preparation for use....4 4.1 Switching

More information

Masibus Automation And Instrumentation Pvt. Ltd.

Masibus Automation And Instrumentation Pvt. Ltd. Operator s Manual DIGITAL CONTROLLER 5006H Masibus Automation And Instrumentation Pvt. Ltd. B/30, GIDC Electronics Estate, Sector-25, Gandhinagar-382044, Gujarat, India Ph: 91 79 23287275-79 Fax: 91 79

More information

SCC-AO10 Isolated Analog Output Module

SCC-AO10 Isolated Analog Output Module USER GUIDE SCC-AO10 Isolated Analog Output Module Conventions The SCC-AO10 is an isolated voltage output module with an output range of ±10 V. The output voltage level is controlled by the DAC output of

More information

1. Installation. 2. Configuration - Operation. 3. Specifications. Safety

1. Installation. 2. Configuration - Operation. 3. Specifications. Safety Safety 1. Installation 1.1 OP_ext: Services 1.2 Driver Card Installation 1.3 Sensor Types 1.4 Sensor Wiring 1.5 Controller Wiring 2. Configuration - Operation 2.1 Replaces ph Sensor 2.2 AS -Flex Series

More information

TRANSDUCER T4311, T4411

TRANSDUCER T4311, T4411 TRANSDUCER T4311, T4411 Programmable temperature transducer for RTD Pt1000 sensor with serial output RS232 and RS485 Instruction manual Instruction Manual for use of transducer: T4311 (RS232), T4411 (RS485)

More information

SCXI OFFSET-NULL AND SHUNT-CALIBRATION HIGH-VOLTAGE TERMINAL BLOCK INSTALLATION GUIDE

SCXI OFFSET-NULL AND SHUNT-CALIBRATION HIGH-VOLTAGE TERMINAL BLOCK INSTALLATION GUIDE SCXI -1321 OFFSET-NULL AND SHUNT-CALIBRATION HIGH-VOLTAGE TERMINAL BLOCK INSTALLATION GUIDE Conventions This guide describes how to install and use the SCXI-1321 offset-null and shunt-calibration terminal

More information

This Datasheet is for the IC693ALG390. Memory Backup and Backup Battery.

This Datasheet is for the IC693ALG390. Memory Backup and Backup Battery. This Datasheet is for the IC693ALG390 Memory Backup and Backup Battery http://www.cimtecautomation.com/parts/p-14574-ic693alg390.aspx Provides the wiring diagrams and installation guidelines for this GE

More information

User Manual VX4234 Digital Multimeter Module

User Manual VX4234 Digital Multimeter Module User Manual VX4234 Digital Multimeter Module 070-9139-02 This document applies for firmware version 1.00 and above. General Safety Summary Review the following safety precautions to avoid injury and

More information

North American Service Manual

North American Service Manual North American Service Manual MODEL PC SERIES Version 2 March 25, 1997 Revision B1.1 April 4, 2000 Prepared by TRANSCELL TECHNOLOGY, INC. TABLE OF CONTENTS Page Chapter 1: Introduction... 1-1 Chapter 2:

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

OMR-6011/D OMR-6014D OMR-6012/D OMR-6017 OMR-6013 OMR Analog Input Modules

OMR-6011/D OMR-6014D OMR-6012/D OMR-6017 OMR-6013 OMR Analog Input Modules OMR-6011/D OMR-6014D OMR-6012/D OMR-6017 OMR-6013 OMR-6018 Analog Input Modules Contents 1 Introduction... 1-1 1. 1. ABOUT THE OMR ANALOG INPUT MODULES...1-1 1. 2. OVERVIEW OF OMR-6011/D...1-1 1. 3. OVERVIEW

More information

Adjustment Manual Advanced Signal Calibrators JOFRA ASC301 & ASC321

Adjustment Manual Advanced Signal Calibrators JOFRA ASC301 & ASC321 Adjustment Manual Advanced Signal Calibrators JOFRA ASC301 & ASC321 Overview The ASC301 and ASC321 Multifunction Process Calibrators have an electronic calibration. It is adjusted case closed with no

More information

SCXI -1313A Terminal Block

SCXI -1313A Terminal Block INSTALLATION GUIDE SCXI -1313A Terminal Block Conventions This guide describes how to install and use the SCXI-1313A terminal block with an SCXI-1125 module. The SCXI-1313A terminal block is shielded and

More information

Model 2440 Service Manual Rev. B / December 2004

Model 2440 Service Manual Rev. B / December 2004 www.keithley.com Model 2440 Service Manual 2440-902-01 Rev. B / December 2004 A G R E A T E R M E A S U R E O F C O N F I D E N C E WARRANTY Keithley Instruments, Inc. warrants this product to be free

More information

C-DIAS-Temperature Recording module CAI x Temp. inputs 50 C to +150 C

C-DIAS-Temperature Recording module CAI x Temp. inputs 50 C to +150 C C-DIAS-Temperature Recording module CAI 088 8 x Temp. inputs 50 C to +150 C This analog input module is used to record temperatures from 50 C to +150 C with a PT 100 temperature sensor. Technical Data

More information

NI 446X Calibration Procedure

NI 446X Calibration Procedure NI 446X Calibration Procedure Contents This document contains information about calibrating National Instruments PCI/PXI-4461 and PCI/PXI-4462 (NI 446X) devices. This document does not discuss programming

More information

Isolated Process Current Input 7B32 FEATURES APPLICATIONS PRODUCT OVERVIEW FUNCTIONAL BLOCK DIAGRAM

Isolated Process Current Input 7B32 FEATURES APPLICATIONS PRODUCT OVERVIEW FUNCTIONAL BLOCK DIAGRAM Isolated Process Current Input 7B32 FEATURES Interfaces, amplifies and filters a process-current input. Module provides a precision output of either +1 V to +5 V or 0 V to +10 V, linear with temperature.

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

TBX-1316 High-Voltage Attenuator Terminal Block

TBX-1316 High-Voltage Attenuator Terminal Block INSTALLATION GUIDE TBX-1316 High-Voltage Attenuator Terminal Block This guide describes how to install and use the TBX-1316 high-voltage attenuator terminal block with the following modules: SCXI-1125

More information

The I-7530A RS-232/485/422 to CAN Converter

The I-7530A RS-232/485/422 to CAN Converter The I-7530A RS-232/485/422 to CAN Converter User s Manual Warranty All products manufactured by ICP DAS are under warranty regarding defective materials for a period of one year from the date of delivery

More information

Amazing Electronic (HK) Limited Serial RS232/RS485 to analog signal converter

Amazing Electronic (HK) Limited Serial RS232/RS485 to analog signal converter DAM-DA D/A converter Datasheet Overview: DAM module is a new generation data acquisition and control system based on modular embedded systems. Adopting standard DIN35 rail mounting package is simple, flexible

More information

Safety. 2. Configuration - Operation 2.1 RTD Selection 2.2 Driver Test Header. 3. Diagnostics 3.1 ph Input 3.2 Temperature Input

Safety. 2. Configuration - Operation 2.1 RTD Selection 2.2 Driver Test Header. 3. Diagnostics 3.1 ph Input 3.2 Temperature Input Safety 1. Installation 1.1 PT:Services 1.2 erature Compensation of 1.3 Controller Services 1.4 Driver Card Installation 1.5 Sensor Part Numbers 1.6 Sensor Wiring 2. Configuration - Operation 2.1 Selection

More information

Upchurch Scientific Nano Flow Sensor User s Guide

Upchurch Scientific Nano Flow Sensor User s Guide Upchurch Scientific Nano Flow Sensor User s Guide Oak Harbor, WA 98277 Tel: 800.426.0191 360.679.2528 Fax: 800.359.3460 360.679.3830 Email: customerservice.upchurch@idexcorp.com Internet: www.upchurch.com

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

First Automated and Self Calibrating Voltage Divider

First Automated and Self Calibrating Voltage Divider 7520 PRECISION AUTOMATED VOLTAGE DIVIDER First Automated and Self Calibrating Voltage Divider GUILDLINE INSTRUMENTS 7520 PRECISION AUTOMATED VOLTAGE DIVIDER is the latest innovation in DC Voltage Dividers.

More information

Isolated Process Current Input with Loop Power 7B35

Isolated Process Current Input with Loop Power 7B35 Isolated Process Current Input with Loop Power 7B35 FEATURES Single-channel signal conditioning current input module that interfaces with two-wire transmitters. Module provides a precision output of either

More information

ZB-2024 Series User Manual

ZB-2024 Series User Manual ZB-2024 Series User Manual Warranty All products manufactured by ICP DAS are under warranty regarding defective materials for a period of one year from the date of delivery to the original purchaser. Warning

More information

AFRecorder 4800R Serial Port Programming Interface Description For Software Version 9.5 (Last Revision )

AFRecorder 4800R Serial Port Programming Interface Description For Software Version 9.5 (Last Revision ) AFRecorder 4800R Serial Port Programming Interface Description For Software Version 9.5 (Last Revision 8-27-08) Changes from Version 9.2 1. The communication baud rate is raised to 9600. 2. Testing with

More information

ORP Arc Sensors. Modbus RTU Programmer s Manual. Firmware version: ERXUM031. ORP Arc Sensors Modbus RTU Programmer s Manual (ERXUM031)

ORP Arc Sensors. Modbus RTU Programmer s Manual. Firmware version: ERXUM031. ORP Arc Sensors Modbus RTU Programmer s Manual (ERXUM031) ORP Arc Sensors RTU Programmer s Manual Firmware version: ERXUM031 624465/01 page 1 / 70 Important Notice All rights reserved. No part of this document may be reproduced, stored in a retrieval system,

More information

Isolated Voltage Input 7B31 FEATURES APPLICATIONS PRODUCT OVERVIEW FUNCTIONAL BLOCK DIAGRAM

Isolated Voltage Input 7B31 FEATURES APPLICATIONS PRODUCT OVERVIEW FUNCTIONAL BLOCK DIAGRAM Isolated Voltage Input 7B31 FEATURES Interfaces, amplifies, and filters unipolar and bipolar voltage inputs. Module provides a precision output of either +1 V to +5 V or 0 V to +10 V, linear with temperature.

More information

Series 370 Stabil-Ion Gauge Controller with RS-485 Interface Option

Series 370 Stabil-Ion Gauge Controller with RS-485 Interface Option Series 370 Stabil-Ion Gauge Controller with RS-485 Interface Option Introduction The RS-485 communications option (See Figure 1) for the Series 370 Stabil-Ion Gauge Controller permits data output to, and

More information

Trident and Trident X2 Digital Process and Temperature Panel Meter

Trident and Trident X2 Digital Process and Temperature Panel Meter Sign In New User ISO 9001:2008 Certified Quality System Home Products Online Tools Videos Downloads About Us Store Contact Policies Trident and Trident X2 Digital Process and Temperature Panel Meter Products

More information

Operation Instruction For Temperature Simulator

Operation Instruction For Temperature Simulator Operation Instruction For Temperature Simulator INDEX 1. Safety Information..1 2. Instrument Panel Layout and Function 3 3. Replacing the Battery...4 4. Power-on/off of Simulator 5 5. Output from Simulator...5

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

9823 Multifunction Calibrator Calibration Adjustment Procedure

9823 Multifunction Calibrator Calibration Adjustment Procedure 9823 Multifunction Calibrator Calibration Adjustment Procedure Time Electronics Ltd BOTANY INDUSTRIAL ESTATE TONBRIDGE, KENT, TN9 1RH, UK Tel: 01732 355993 Fax: 01732 770312 Email: mail@timeelectronics.co.uk

More information

1. Introduction. 2. Installation MODBUS INTERFACE

1. Introduction. 2. Installation MODBUS INTERFACE 5551.C 8473.C MODBUS INTERFACE PIM-MB-1 Modbus Interface 1. Introduction AuCom soft starters can be controlled and monitored across an RS485 serial communication network using the Modbus RTU and AP ASCII

More information

DSTCAL Software User Manual 09/16/09 WD1037 Rev E Revised 09/09/14

DSTCAL Software User Manual 09/16/09 WD1037 Rev E Revised 09/09/14 DSTCAL Software User Manual 09/16/09 WD1037 Rev E Revised 09/09/14 Wahl Instruments, Inc. 234 Old Weaverville Road Asheville, NC 28804 Toll Free 800-421-2853 Phone 828-658-3131 Fax 828-658-0728 www.palmerwahl.com

More information

4511 MODBUS RTU. Configuration Manual. Universal transmitter. No. 4114MCM100(1402)

4511 MODBUS RTU. Configuration Manual. Universal transmitter. No. 4114MCM100(1402) 4511 MODBUS RTU Configuration Manual 4114 Universal transmitter 4114MCM100(1402) 4114 CONTENTS Introduction... 3 Modbus basics... 3 Modbus RTU... 3 Supported Function Codes... 3 Modbus Parameters and factory

More information

ADW15 Mantraweigh Weighing Indicator / Controller

ADW15 Mantraweigh Weighing Indicator / Controller ADW15 Mantraweigh Weighing Indicator / Controller User Manual mantracourt.com The ADW15 Quick User Guide The Front Control Panel All user controls, displays and indicators are mounted on the front panel

More information

FieldPoint. FP-1000/1001 FieldPoint Quick Start Guide. Install the Network Module Mount the module on a DIN rail. What You Need to Get Set Up

FieldPoint. FP-1000/1001 FieldPoint Quick Start Guide. Install the Network Module Mount the module on a DIN rail. What You Need to Get Set Up TM FieldPoint FP-1000/1001 FieldPoint Quick Start Guide What You Need to Get Set Up Network module 35 mm DIN rail Two DIN rail locks (included) Terminal base(s) I/O module(s) 11 30 VDC power supply Accessories:

More information

NI REM Remote I/O Overview DATASHEET. Analog Output Module for Remote I/O

NI REM Remote I/O Overview DATASHEET. Analog Output Module for Remote I/O DATASHEET NI REM-11115 Analog Output Module for Remote I/O Four voltage output ranges to choose from (0 V to 10V, ±10V, 0 V to 5 V, and ±5V) Two current output ranges to choose from (0 ma to 20mA, 4 ma

More information

LAUREL ELECTRONICS, INC.

LAUREL ELECTRONICS, INC. LAUREL ELECTRONICS, INC. Laureate RTD Temperature Panel Meter / Controller Features Factory calibrated for 100Ω platinum, 10Ω copper & 120Ω nickel RTDs 2, 3 or 4-wire connection with lead resistance compensation

More information

Communication Protocol Manual JOFRA ATC Copyright 2007 AMETEK Denmark A/S

Communication Protocol Manual JOFRA ATC Copyright 2007 AMETEK Denmark A/S Communication Protocol Manual JOFRA ATC Copyright 2007 AMETEK Denmark A/S Contents 1 Introduction...6 2 Protocol...7 2.1 Variables...7 2.2 Telegram structure...8 2.3 Packing and unpacking of telegrams...9

More information

Transducers & Transmitters HART USERS MANUAL. GP:50 New York LTD Long Road Grand Island, NY USA

Transducers & Transmitters HART USERS MANUAL. GP:50 New York LTD Long Road Grand Island, NY USA Transducers & Transmitters Industrial & Aerospace Pressure Measurement WWW.GP50.COM HART USERS MANUAL GP:50 New York LTD. 2770 Long Road Grand Island, NY 14072 USA Tel. (716) 773-9300 Fax (716) 773-5019

More information

Model 2700 Multimeter/Data Acquisition System Service Manual

Model 2700 Multimeter/Data Acquisition System Service Manual Model 2700 Multimeter/Data Acquisition System Service Manual 2015, Keithley Instruments All rights reserved. Cleveland, Ohio, U.S.A. Third Printing, August 2015 Document Number: 2700-902-01 Rev. C Manual

More information

Isolated, Voltage or Current Input 7B30 FEATURES APPLICATIONS PRODUCT OVERVIEW FUNCTIONAL BLOCK DIAGRAM

Isolated, Voltage or Current Input 7B30 FEATURES APPLICATIONS PRODUCT OVERVIEW FUNCTIONAL BLOCK DIAGRAM Isolated, Voltage or Current Input 7B30 FEATURES Interfaces, amplifies and filters unipolar and bipolar millivolt and voltage inputs. Provides a protected precision output of either +1 V to +5 V or 0 V

More information

OMR-6021 Analog Output OMR Channel Analog Output

OMR-6021 Analog Output OMR Channel Analog Output OMR-6021 Analog Output OMR-6024 4-Channel Analog Output Contents 1. INTRODUCTION...1-1 1. 1. ABOUT THE OMR ANALOG OUTPUT MODULES 1-1 1. 2. OVERVIEW OF OMR-6021 1-1 1. 3. OVERVIEW OF OMR-6024 1-4 2. INITIALIZATION

More information

High-Precision Data Acquisition

High-Precision Data Acquisition NI PCI-435, NI PXI-435 Temperature and voltage loggers Accuracy 0.4 C for J-type thermocouples, 0.03 C for thermistors, 0. C for RTDs 6 voltage or thermocouple inputs; up to 60 readings/s 8 digital I/O

More information

SDI-12 Interface Cable. April 10, Built for:

SDI-12 Interface Cable. April 10, Built for: SDI-12 Interface Cable April 10, 2008 Built for: - Table of Contents 1 Introduction 3-4 1.1 Compatibility 3 1.2 SDI-12 Interface Cable 3 1.3 LED Status 4 2 Levelogger Independent Recording Option 5 2.1

More information

It is the installer's responsibility to follow all instructions in this manual and to follow correct electrical practice.

It is the installer's responsibility to follow all instructions in this manual and to follow correct electrical practice. MCD Modbus Module Instructions Important User Information INSTALLATION INSTRUCTIONS: MCD MODBUS MODULE Order Code: 175G9000 1. Important User Information Observe all necessary safety precautions when controlling

More information

12-36 VDC/12-24 VAC Power Option 4-Digit Display, 0.56 (14.2 mm) or 1.20 (30.5 mm)

12-36 VDC/12-24 VAC Power Option 4-Digit Display, 0.56 (14.2 mm) or 1.20 (30.5 mm) 4-20 ma & Relay Output Features 4-20 ma, ± 10 V, TC & RTD Inputs 12-36 VDC/12-24 VAC Power Option 4-Digit Display, 0.56 (14.2 mm) or 1.20 (30.5 mm) 24 VDC @ 200 ma Transmitter Power Supply Options Type

More information

OPERATING INSTRUCTIONS AND SPECIFICATIONS. NI 9208E 16-Channel, ±20 ma, 24-Bit Analog Input Module

OPERATING INSTRUCTIONS AND SPECIFICATIONS. NI 9208E 16-Channel, ±20 ma, 24-Bit Analog Input Module OPERATING INSTRUCTIONS AND SPECIFICATIONS NI 9208E 16-Channel, ±20 ma, 24-Bit Analog Input Module This document describes how to use the National Instruments 9208E and includes dimensions, pin assignments,

More information

Gateway 1400 Reference Manual

Gateway 1400 Reference Manual Profibus-DP Gateway 1400 Reference Manual Copyright All Rights Reserved. No part of this document may be copied, reproduced, republished, uploaded, posted, transmitted, distributed, stored in or introduced

More information

11 Serial Communications

11 Serial Communications 11.1 COMMUNICATIONS PACKAGES There are a number of communication packages that can be used with the Quantum III to facilitate setup, record parameter data, view internal activity on a soft-scope and permit

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

Operation Instruction For RTD Calibrator

Operation Instruction For RTD Calibrator Operation Instruction For RTD Calibrator INDEX 1. Safety Information. 1 2. Instrument Panel Layout and Function.2 3. Replacing the Battery...4 4. Power-on/off of Calibrator 4 5. Output from Calibrator...

More information

Isolated, Process Current Output 7B39 FEATURES APPLICATIONS PRODUCT OVERVIEW FUNCTIONAL BLOCK DIAGRAM

Isolated, Process Current Output 7B39 FEATURES APPLICATIONS PRODUCT OVERVIEW FUNCTIONAL BLOCK DIAGRAM Isolated, Process Current Output 7B39 FEATURES Interfaces, isolates and filters a 0 V to + 10 V or +1 V to +5 V input signal. Provides an isolated process current output of 0 ma to 20 ma or 4 ma to 20

More information