A doubt with auxiliary contact addressing in plc

svk

Member
Join Date
Aug 2013
Location
india
Posts
14
Hello members,
I have written a code for following program but my only doubt is about addressing of auxiliary contacts that are used for indication (whether i use binary addressing or real output addressing)

3 motors M1, M2, M3, have their own start and stop push button. only one motor has to run at any point of time, motor running indication shall be available. auxiliary contact are used for indication.

pls members help me out , thanx in advance.

3 motors.jpg
 
i don't know waht you want exactly.
do M1 and M2 use aux contact as running status and M3 as ready to run?
if that's the case then, if controlled from vfd you have output drive ready.
if not i guess you would have to look for all precondition (not overload tripped, not MCCB tripped, voltage on...
 
@ balash thanx for reply.
my doubt is about auxiliary indication addressing, pls check the above code, and tell me whether i use binary addresing (B3:0/0) or output addressing(0:2.0/0) as i have already written in example.
 
@ balash thanx for reply.
my doubt is about auxiliary indication addressing, pls check the above code, and tell me whether i use binary addresing (B3:0/0) or output addressing(0:2.0/0) as i have already written in example.

Neither.
You use the Auxiliary Contact from the (respective) starter.
Wire the aux contacts back to the PLC as inputs.

And for the record, your output file and your B3 file are both examples of 'binary addressing' as you call it.
 
Rdast is saying to separate your Indication output
use the Aux input I:0/? to OP O:2/1 as one rung

as far as using B3
normally I would do "control" via B3 (Bin) area
then separately send it to he Op/s
- not good for extremely large programs
- you can have an output section - good for fault finding
add up the Pro's and Con's
 
what they are trying to say to you is that you do not use motor running indication based on plc coil, rather you physically wire aux contact on motor starter to PLC B3 input and use that input as motor running status. except if you want to indicate that plc command to start is active...
 
it will work but it is the virtually the same as the program you have written
RDAST is referring to the hard wiring method.
the Output O:... goes to a contactor 'M1'
'M1' has contacts that 'Power' the motor
AND
an Axillary contact on the same 'M1'
this is usually a low current contact.

That contact can be wired to a PLC input I:......
you the use that input to run the indicator output O:....

the result
when the motor is told to start the contactor energizes
the Aux. contact then closes
the input I:.. turns ON
the Indicator Output then turns ON.

this is a confirmation circuit that all is OK
it is more common when you want to be sure the motor is actually being told to run.
 
there is nothing wrong with any of the code you have written.
the I/O list per motor is not what Rdrast was talking about.
Your layout per motor
- Ip = start
- Ip = Stop
- Op = Motor contactor
- Op = Motor indicator

We are suggesting one additional input
- Ip = Motor contactor contact

This is not needed but optional
 
svk
your code will work but it is not a good solution. besides you don't need additional Q set in parallel with motor cause you can read the respective motor coil status anyway.

but if someone disconnect power to motor starter coil, plc will set its output coil, your B3 will be on, but motor won't start. THAT is the difference

aux contacts are meant to show state of starter, i.e hardware, NOT your program logic.

set run indication in plc program rather than wire it in cabinet is just bad engineering
 
Hey balash.
Before plc,s or electronics it was the only way:D

Don't knock the old buggers like me. 🍻🍻🍻
 

Similar Topics

Hello Guys, Hope everyone is doing well. I have a general doubt about ladder programming. The outputs are not getting energized when I used the...
Replies
13
Views
1,874
Hi all, I'm working with FTVS and I'm trying to give a title to a dynamic popup that shows what device it is currently operating. I've seen that...
Replies
5
Views
1,939
Hi all, I'm quite new to the automation world. I've used a bit Tia Portal in the last month and now i have a new working in rslogix 5000. From...
Replies
10
Views
5,062
Hello everyone! I'm currently programming a safety logic on Studio 5000 Logix Designer V33.00.00 and I wanted to know if there's a way to test...
Replies
2
Views
1,589
hi all, I'm working on Studio5000, structured text language. I have several buildings and for one of each several BOOL alarms in an array...
Replies
7
Views
2,019
Back
Top Bottom