Limit issue of 32768 in ControlLogix

sns

Member
Join Date
Dec 2009
Location
Pakistan
Posts
42
Hello there

I have a control logix 5555 system installed. I am having problems with the word limit of 32767 even though I've made the tag Real, float.

I did the same thing (making the int ---> float) with SLC500 and it does work till 99999.

How to do the same in control logix?
 
A real doesn't have a limit of 32767. Nor does the native data type in Control Logix, which is a DINT.

The only place you should see a limit of 32767 would be if you are using a plain INT value, or perhaps from an I/O module set to 16 bit integer, or if you have a limit test somewhere in the program.

If you only need whole numbers, then use the DINT datatype. That can easily accommodate 99,999.
 
I was using INT intially and have moved to float now but the results are the same. It is actually a controller tag, (an add instruction) serving as a totalizer.
 
Well, I don't see an example of a limit there.

Are you getting to a point where no matter what you add, the totalizing register never increases? Because if that is the case, then you are just running up against the dynamic range limit of approximate (floating point) values. No matter where the decimal point is, you only have 7 digits of significance in an IEEE 32 bit float.

Adding 0.001 to 10000 won't get you anywhere.
 
You could try normalizing everything to discrete units, and use a DINT for your totalizer register.

Thanks for the tip.

What I've done now is that I've divided the value to be added to the total by 1000 and multiplying it again by 1000 in RSview. Not the tech fix, but then it'll be reset before it ever reaches there.
 

Similar Topics

Hello, I have a motor that we are sending a RPM Speed Output from 0-100% to the VFD. However, the Motor HP needs to be limited to 6000 HP and the...
Replies
3
Views
83
Hello, I have a quick question. I have been using scripts to change the color of buttons. The reason, I am usually using multiple hmiruntime.tags...
Replies
1
Views
92
Good evening all! I hope you folks are doing alright today, as I've got a situation that I believe I've come up with a solution to but I wanted to...
Replies
1
Views
427
Dear Experts, I'm just started working with GEO SCADA and I need your valuable help. Currently, I'm trying to edit the alarm limits on MIMIC...
Replies
0
Views
203
Possible dumb question here, but how does running a motor through a gearbox effect a VFDs ability to limit the torque on the driven load? My gut...
Replies
2
Views
517
Back
Top Bottom