4-20ma to deg F

DCCCOLE

Member
Join Date
Aug 2011
Location
MICHIGAN
Posts
2
I have a type j thermocouple going into a 4-20mA transmitter. That is connected to and Allen Bradley 1762-IF8. The transmitter has a span of 0-300 deg F. How do I covert the 4-20mA signal into a deg F. in RS Logix 5000.
 
I have a type j thermocouple going into a 4-20mA transmitter. That is connected to and Allen Bradley 1762-IF8. The transmitter has a span of 0-300 deg F. How do I covert the 4-20mA signal into a deg F. in RS Logix 5000.

I would use a CPT instruction. Take your input signal 4-20mA and divide that by the 20mA signal (32640) and then multiply that value by 300 (your high temp). This should give your reading.

Here's an example:

CPT

Compute
Dest Temp_Tag (Tag containing your temp)

Expression (Local...whatever point your device is)/(32640)*300

So...lets assume your local input point is giving us a reading of (16000). Take this reading and divide it by (32640 which equals 20mA which equals 300F). This gives you (0.49) or 49%. We take this 0.49 and multiply this by 300 which gives us 147F. The 147 vallue will show up in whatever tag you create in the Destination which I named "Temp_Tag".

I hope I explained this clearly.

This is how I scale my analog signals.

Good luck!
 
You need to determine how your AI card is configured. Sometimes the live zero (4 mA) is maintained by the data register, so that instead of 0-32000 as 0-300 F at 4-20 mA, for example, you may have a data range of 6400 to 32000 In that case, the 4 mA signal at 0 F will show up as 6400 in your AI register instead of 0 in the data register.
 
You need to determine how your AI card is configured. Sometimes the live zero (4 mA) is maintained by the data register, so that instead of 0-32000 as 0-300 F at 4-20 mA, for example, you may have a data range of 6400 to 32000 In that case, the 4 mA signal at 0 F will show up as 6400 in your AI register instead of 0 in the data register.

Good point

I was refering to 1769 analog cards. Just check out the PDF file for your particular module.
 
Hey DCCCOLE

Is the module a 1762 or 1769? I do not see a 1762-IF8 module on the rockwell site. I do see 1762-IF4 though. Just curious. The 1762 is a micrologix platform.
 

Similar Topics

Hi all, I'm connecting several 4-20mA sensors together in parallel (only one shown below) The enclosure is ABS plastic with metal backplate DAQ...
Replies
5
Views
273
Problem: Our PLC can only output 4-20mA, but the actuators it needs to control, modulate based on a 0-135Ohm signal. Buying 4 or 8 individual...
Replies
7
Views
275
What's your go to 4-20ma isolator. I've got some 4 wire 4-20ma from several flow meters and scales that I would like to isolate before it gets to...
Replies
10
Views
1,692
Hi, I need to read three 4-20mA signals from a DCS(ABB) in a remote 6 channel analog input module with RS485 modbus port. When I connected...
Replies
2
Views
486
Hello this is my first post. Looking forward to being more involved in this community to learn and hopefully help others. Any help or guidance...
Replies
7
Views
790
Back
Top Bottom