TDAC(LJTick-DAC)

은 두개(한쌍의) 14-bit,  +/- 10 볼트의  AO(analog outputs) 를 제공합니다.   (1.22mV 분해능)
디지털 I/O 에 최대 10개까지 꽂으면, 최대 20개의 AO (analog outputs) 를 사용할 수 있습니다.
UD 계열 장치(U3/U6/UE9)에 모두 사용가능합니다. 

관련 자료::
http://ezdaq.com/board/view?id=board3&page=20&seq=945  <<  [TEST] LJU3 와 TDAC를 사용한 AO(DAC) 추가 및 AI(ADC)를 이용한 확인 방법


TDAC(LJTick-DAC)

Provides a pair of 14-bit analog outputs with a range of +/- 10 volts.
Plugs into any digital I/O block, and thus up to 10 of these can be used per LabJack to add 20 analog outputs.
Works with any UD family device (U3/UE9), except for U3 hardware revision 1.20 (U3A).


Product Datasheet 

LJTick-DAC Datasheet

Datasheet Revision 1.02, October 22, 2008

The LJTick-DAC works with any UD family device (U3/U6/UE9), except for U3 hardware revision 1.20 (U3A), as that U3 did not support I2C.
It does work with U3 hardware revision 1.21 and 1.30 (-LV or -HV). It does not work with the U12 (which is not a UD family device).


Figure 1: LJTick-DAC

Figure 2: LJTick-DAC With U3

The LJTick-DAC (LJTDAC) is an analog output expansion module. It provides a pair of 14-bit analog outputs with a range of ±10 volts. The 4-pin design plugs into any of the standard DIO/DIO/GND/VS screw terminal blocks on the LabJack, and thus up to 10 of these can be used per device to add 20 analog outputs.

The update rate of the LJTDAC is limited by the communication time between the host and the device. See Section 3.1 of the U3/U6/UE9 User’s Guide for detailed information, but it generally takes about 1 ms to do an update via USB “high-high” or Ethernet, while it takes about 4 ms via other USB connections. Only 1 DAC channel can be updated per low-level communication. That means, for instance, that if updates are done at the 1 ms rate to build a 100 Hz sine wave, there will only be about 5 updates per half-cycle of the waveform and it will appear to be a smooth sine. With a 10 Hz sine wave, however, there will be about 50 updates per half-cycle and the waveform will appear much smoother.

The pins shown on the right side of the LJTDAC (Figure 1) connect to the LabJack. The VS/GND pins power the LJTDAC, while the DIOA/DIOB pins are used for digital communication (I2C) between the LJTDAC and LabJack. DIOA is the serial clock (SCL) and DIOB is the serial data (SDA). Following are descriptions of the screw-terminal connections:

GND: Connected directly to LabJack ground (GND).

VS: This is the same 5 volt output as the VS terminals on the LabJack itself. This is an output terminal, not an input. It can be used to provide 5 volt (nominal) power as needed.

DACA/DACB: Output of each 14-bit digital-to-analog converter.

Low-Level Communication

The LJTDAC has a non-volatile 128-byte EEPROM (Microchip 24C01C) on the I2C bus with a 7-bit address of 0x50 (d80), and thus an 8-bit address byte of 0xA0 (d160). Bytes 0-63 are available to the user, while bytes 64-127 are reserved.

EEPROM AddressDescriptionNominal Value
0-63User Area
64-71DACA Slope3.1586E+03 bits/volt
72-79DACA Offset3.2624E+04 bits
80-87DACB Slope3.1586E+03 bits/volt
88-95DACB Offset3.2624E+04 bits
96-99Serial Number
100-127Reserved

The slopes and offsets are stored in 64-bit fixed point format (signed 32.32, little endian, 2’s complement). The serial number is simply an unsigned 32-bit value where byte 96 is the LSB and byte 99 is the MSB.

The DAC (digital-to-analog converter) chip on the LJTDAC is the LTC2617 (linear.com) with a 7-bit address of 0x12 (d18), and thus an 8-bit address byte of 0x24 (d36). The data is justified to 16 bits, so a binary value of 0 (actually 0-3) results in minimum output (~-10.3 volts) and a binary value of 65535 (actually 65532-65535) results in maximum output (~10.4 volts).

For more information about low-level communication with the LJTDAC, see the I2C example in the VC6_LJUD archive or see the Linux example.

UD Communication

The LJTick-DAC works with any UD family device (U3/U6/UE9), except for U3 hardware revision 1.20 (U3A), as that U3 did not support I2C. It also does not work with the U12 (which is not a UD family device).

The LabJack UD driver for Windows (V2.76+) has special support for the LJTDAC. First, the following special channel is used with the put config IOType to specify where the LJTDAC is connected to the LabJack:

LJ_chTDAC_SCL_PIN_NUM  //Used with LJ_ioPUT_CONFIG 

Then there is one IOType used for all further communication with the LJTDAC. The value of the Channel parameter used with this IOType is always one of the following 7 special channels:

LJ_ioTDAC_COMMUNICATION  //Main IOType.  LJ_chTDAC_SERIAL_NUMBER  //Read-only. LJ_chTDAC_READ_USER_MEM  //x1 is array of 64 bytes. LJ_chTDAC_WRITE_USER_MEM //x1 is array of 64 bytes. LJ_chTDAC_READ_CAL_CONSTANTS //x1 is array of 4 doubles. LJ_chTDAC_WRITE_CAL_CONSTANTS //x1 is array of 4 doubles. LJ_chTDAC_UPDATE_DACA  //Pass DAC voltage in Value parameter. LJ_chTDAC_UPDATE_DACB  //Pass DAC voltage in Value parameter. 

Typical operation consists of simply setting the pin number for SCL and then updating DAC channel A and/or B:

//Tell the driver that SCL is on FIO0.  The driver then assumes that SDA is on FIO1. //This is just setting a parameter in the driver, and not actually talking //to the hardware, and thus executes very fast. ePut(lngHandle, LJ_ioPUT_CONFIG, LJ_chTDAC_SCL_PIN_NUM,0,0);  //Set DACA to 1.2 volts.  If the driver has not previously talked to an LJTDAC //on FIO0/FIO1, it will first retrieve and store the cal constants.  The //low-level I2C command can only update 1 DAC channel at a time, so there //is no advantage to doing two updates within a single add-go-get block. ePut(lngHandle, LJ_ioTDAC_COMMUNICATION, LJ_chTDAC_UPDATE_DACA, 1.2, 0);  //Set DACB to 2.3 volts. ePut(lngHandle, LJ_ioTDAC_COMMUNICATION, LJ_chTDAC_UPDATE_DACB, 2.3, 0); 

For more information about UD communication with the LJTDAC, see the LJTDAC example in the VC6_LJUD archive.


(1) The update time is similar to the numbers found in Section 3.1 of the U3/UE9 Users Guide. The time is typically about 1 ms over Ethernet or USB high-high, and typically about 4 ms over USB other.

Dimensions:

src=http://labjack.com/sites/default/files/imagecache/support_page/2009/08/LJTDAC-dimentions.png

LJTickDAC Testing Utility

For your convenience, the LJTickDAC testing utility for UD family devices is available for download.

Declaration of Conformity

Manufacturers Name: LabJack Corporation
Manufacturers Address: 3232 S Vance St STE 100, Lakewood, CO 80227 USA
Declares that the product
Product Name: LabJack Tick DAC
Model Number: LJTick-DAC
conforms to the following Product Specifications:
EMC Directive: 89/336/EEC
EN 55011 Class A
EN 61326-1: General Requirements

 

2009년 9월 판매 시작

2013년 9월 30일 수정

이지댁 관리자

www.ezDAQ.com

이지댁 - 易誌宅 (쉬울이易, 기록할 지誌, 집댁宅)