LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

VI to monitor temperature from a circuit

I need a VI  that can save data from a circuit with a thermocouple K and a AD595  (or) AD594 wich is connected to a bar to a step in open loop.

This VI will read temperature and this temperature will be used to find parameters.

 

I attach the VI that I have. Please let me know ho to add the temperature blocks needed for this case. If any formula is required.

 

Necesto un VI que tenga los bloques y/o formulas necesarias para medir la temperatura obtenida utilizando un circuito que posee un termopar k y un AD 595 o AD594. Esta temperatura sera utilizadapara determinar parametros. Y este circuito estara conectado a una barra con un escalón en lazo abierto.

 

 

Download All
0 Kudos
Message 1 of 11
(2,563 Views)

Hi MARM,

 

this AD595 already amplifies and converts the thermocouple output to a "10mV/°C" signal.

So why do you think you can create a DAQmx task with a "TC K" channel?

 

Solution: read this simple voltage signal and do some (also simple) math to convert mV to °C!

Best regards,
GerdW


using LV2016/2019/2021 on Win10/11+cRIO, TestStand2016/2019
0 Kudos
Message 2 of 11
(2,535 Views)

I have a circuit with a thermocouple K and AD595.

How to convert the voltage obtained in DAQ from a AD595 to temperature in LabVIEW?

Which formula and blocks do I need to add?

Suppose that the Simulate signal is DAQ Assistant.

 

Download All
0 Kudos
Message 3 of 11
(2,553 Views)

Convert Thermocouple K to Temperature using LabVIEW?

0 Kudos
Message 4 of 11
(2,581 Views)

Not quite sure where your problem is. The device you use outputs a linearizedvoltage of 10mV per deg C. How are you getting this voltage into LabVIEW? Which DAQ board are you going to use? Once that is solved you just need to multiply the read value with 100 to get deg C.

Rolf Kalbermatter
My Blog
0 Kudos
Message 5 of 11
(2,528 Views)

So I just need to the block with the value received in DAQ x 100 and after that a symbol of temperature?

 

0 Kudos
Message 6 of 11
(2,522 Views)

Yes you can.

 

What device are you using to measure that thermocouple?

0 Kudos
Message 7 of 11
(2,550 Views)

Am using a DAQ with a thermocouple K and a AD595.

0 Kudos
Message 8 of 11
(2,547 Views)

Well, then you read the voltage off the AD595 using the DAQ device.  You didn't say which DAQ device you have, so I'll assume it is an NI device.  You would use DAQmx functions to read the analog input channel.  You can look in the Example Finder to find an simple example of how to do that.

 

Then you look up the data sheets on the thermocouple and AD595 to determine what are the calibration constants so that you can multiply the voltage reading by them to get the temperature.

0 Kudos
Message 9 of 11
(2,511 Views)

You might also want to learn about Cold Junction Compensation if measurement accuracy is of any concern to you. 

========================
=== Engineer Ambiguously ===
========================
0 Kudos
Message 10 of 11
(2,494 Views)