Forcing Analog Values in LogicMaster 90-70

JElder

Member
Join Date
Apr 2011
Location
Aberdeen
Posts
23
Good afternoon,

I am conducting some tests on GE 90-70 PLC following some code modifications with LM90-70.

In the reference tables I can force digital inputs no bother, however I want to force an analog value but can't seem to. I read the manual and apparently you just enter the value you want and hit "ENTER" but that doesn't seem to work.

Any ideas welcome and have a good weekend :)
 
You can't force analog values in the 90 series the way you can discretes. The reason you can't just type in a new value into a %AI memory is that the analog input module overwrites with the data from the sensor every scan. You could add a rung like this at the beginning of your program:

Force ______
--] [------| |
| MOVE |
| INT |
Value -|IN Q|-%AIxxx
|______|


"Force" is any available discrete memory address. "Value" is any available %R address. When you turn it on the MOVE function will copy the data in "Value" to the analog input signal. Since the module is updated before the program scan, the data from "Value" will overwrite the data form the analog input module.

Turn off "Force" to revert to the module data.
 

Similar Topics

Hi, How to force analog I/O values in Proworx 32 Software (Modicon). Thanks.
Replies
2
Views
1,630
Hi All, I am working on RSLogix 5000 and trying to force a load cell value to test the PLC program but I can't. I am in need of advice to force...
Replies
3
Views
2,736
I want to force an analog input value in a Modicon M340 PLC. I work with Unity Pro XL. The problem is that the Unity Pro doesn't let me set a...
Replies
4
Views
4,056
Hi, im familiar only with Siemens PLC, and now im doing commissioning in unity pro project. So question is that how do I force an analog output...
Replies
7
Views
4,343
I am familiar with RSLogix, Concept, and Telepace, but have not used Unity Pro S until the past few weeks and have a few issues I have not been...
Replies
2
Views
9,732
Back
Top Bottom