1762-of4 no voltage at output

lbric

Member
Join Date
Jul 2013
Location
Bell Gardens CA
Posts
27
Hello,

i have a 1762-of4 connected to a ml1100. i setup an scp instruction with
n7:0
min 0
max 32760
scaled min 0
scaled max 10
output O:1.0

i know the analog card produces a 0 to 10v signal and want to use this to control the speed on a vfd.

when i run the program the output changes 0 to 10 but when i use my meter to check the output at vout0 and the common i dont get any voltage. the configuration for channel 0 is set to 0-10v raw/proportional. i took a look at the data table and i am only seeing the first 3 bits of O:1.0 change and according to the manual the output data should be on bits 3-14 but all these remain 0.

can someone provide some assistance, i wonder if my scp instruction is incorrect.

thanks,
Ricardo
 
Can you post your program? Its .RSS file , zip it first.


when i run the program the output changes 0 to 10 but when i use my meter to check the output at vout0 and the common i dont get any voltage.

???? how do you know the output changes 0-10v?
 
From your description it sounds like you are sending the number 0 - 10 to the output. The module is expecting the numbers 0 - 32767. Since it is 12 bit you won't see anything at all until you get to 8 since the first three bits are ignored. So start outputting these higher numbers (e.g. 16384 should give you about 5 volts, you should see 10 volts at about 32760) and see what you get. In other words just MOV the value in N7:0 directly to O:1.0

If you are using the numbers 0 - 10 in N7:0 then your SCP instruction should be

n7:0
min 0
max 10
scaled min 0
scaled max 32760
output O:1.0
 
Last edited:
I know the analog card produces a 0 to 10v signal and want to use this to control the speed on a vfd.
As Bernie pointed out, it is the analog output module that does the conversion from Digital Number to Analog Voltage. The Output in your PLC program therefore must be a digital number scaled to the range of numbers that the analog output module will accept.

You had the right numbers, but put them in the wrong places in your scaling equation!
 
If you are using the numbers 0 - 10 in N7:0 then your SCP instruction should be

n7:0
min 0
max 10
scaled min 0
scaled max 32760
output O:1.0

Gosh, I completely missed that.

Another thing to consider is if using 0-10 to 0-32760, that will give you 10% incremental changes in your output. You may want to use 0-100 ( 1% changes) or 0-1000 ( .1% changes).

Or use a floating point data type as your input to the SCP instruction.

Your system will dictate.
 
Last edited:

Similar Topics

Hey guys I 'm having problems getting a valve to move that has a DVC6200 actuator connected to it via a MicroLogix 1762-OF4 PLC card. I can move...
Replies
18
Views
5,495
Hi, I have a 1762-OF4 A/O Module connected to my ML 1400. The module is configured through RSLogix 500 and wired properly per the UM. The problem...
Replies
17
Views
4,111
I have and OF4 configured for 4-20mA. How can I test the current output from a 1762-OF4 on the lab bench. i.e. the OF4 does not have a load...
Replies
15
Views
4,636
The Allen Bradley Analog Output module 1762-OF4 with a ML1200 processor, when using old version of RSLogix 500 (5.5) no window comes up to...
Replies
6
Views
6,518
I have been reading past thread for this problem, but i can't find a solution to this problem. I have a MicroLogix 1400 with a 1762-OF4 AO card...
Replies
8
Views
6,096
Back
Top Bottom