LogixPro PLC Simulator - Can Anyone help, please?

JerryRecords

Member
Join Date
Dec 2006
Location
Chicago, IL.
Posts
11
hello, all! I'm tryin to design this ladder diagram for a project me and my friend are doing that have to do with a rail road crossing at a road.

I'm using "LogixPro PLC Simulator V.1.60"

now, my circuit is pretty basic. I've tried doing the following just to see if it worked, but it didn't.

My circuit consists of 'SENSOR A' AND 'SENSOR B'. Each of those sensors being triggered, turn on their own PILOT LIGHT: 'PL

A' AND 'PL B', RESPECTIVELY.

Now, having a train come "for example" and trigger 'sensor' 'A' or 'B' depending on which direction is coming, would ENERGIZE

'GATE A' to close gate for both directions on that road, and prevent cars, "for example" to cross.



The circuit i thought about goes as following.

'GATE A' IS PARALLEL TO 'PL A', BOTH ON THE FIRST RUNG, AND 'GATE A' IS PARALLEL TO 'PL B' ON THE SECOND RUNG.

LadderDiagram.JPG


when i tried turning 'on' sensor 'A' it would only ENERGIZE 'PL A' and NOT 'Gate A' on the first rung.

In the other hand, when i tried turning 'on' sensor 'B', it would then ENERGIZE 'PL B' AND 'GATE A', all together on the second rung.

Why would it only do it for the second rung and not both? I've implementing this on two pc's, maybe thought it had to do with the way it was scanning it. Any thoughts? I would appreciate the help!
 
Rule No. 1. You cannot use an output twice. I:1/0 won't energize your output O:2/0 because it is false on the next rung in scan order. It works on the next rung because of the scan order. You cannot use O:2/0 twice. You should also get rid of rungs 2 & 3.
 
oh ight, makes sense. would there b another way of tryin to come up with this logic? mine seems right but it just doesnt work. and yea, the 2nd and 3rd were there because i was tryin to make the program bigger.
 
Jerry,
Kyle is right but he should have said you shouldn't use the output O:2/0
twice. Its called "double coiling". Even the real SLC500 processros will let you but it is bad practice. The last rung always wins.
So now that you have seen that you shouldn't what option do you have.Hint: "internal logic bits". Give it some thought and see what you come up with.

Edit:
bradal types faster then I and did your homework for you.
 
Last edited:
Remember elementary digital logic, parrallel contacts are "OR's" while series contacts are "AND's". Last rung means sensor A OR sensor B will turn on the coil.

As already stated, you should NEVER use more than one coil of one address, output or internal bits!
 
thanx for those that assisted me with this. I re-wrote the whole program, and came up with the following:

LadderXINGFINAL.JPG


later on, i went ahead and worked on the following lab, it's a 4 way intersection, but i'm trying to add a 10 sec. left turn signal, while theres a red light delay for all directions. I would want to keep the O:2/3 & O:2/7 outputs as the do not walk signals. i tried adding more counters but i somehow can't seem to add anymore with all the logic, i keep messing up. by the way, i started this ladder diagram with some examples from the book, then i added the do not walk signs, and finally the 2 sec. delay on the red lights.

TrafficLights.JPG


i got:

Red light (N/S) 0:2/0
Amber light (N/S) O:2/1
Green light (N/S) O:2/2
red light (E/W) O:2/4
Amber light (E/W) O:2/5
Green light (E/W) O:2/6
TON T4:0
TON T4:1
TON T4:2
TON T4:3

these two add the 2 sec. period when both directions are red.

TON T4:4
TON T4:5

would anyone please help me? i'd appreciate it, again, thanx!
 
Last edited:
Jerry,

Don't have time to fully reply but your first example makes no sense. The GATE 2 rung, has the two contacts before it that are in parallel. This is pointless, when one closes, the other opens, essentially always passing power.

What are you trying to accomplish with the first picture, describe the inputs. Maybe we can point you in the right direction.
 

Similar Topics

Hi, I am taking a PLCs class toward an assoc. degree in MET. I am working on Exercise 7-18B in the Programmable Logic Controllers (third...
Replies
3
Views
3,856
please? I'd appreciate it. It's for a final project due for my control systems class.
Replies
5
Views
4,928
SELECTED NEW FILE SELECTED PROCESSOR TYPE SELECTED I/O CONFIGURATIONS IM UNABLE TO CONFIGURE MY I/O’S. I HAVE A PAPER COPY OF A PROGRAM AND I...
Replies
0
Views
85
Good morning, I am currently working on the LogixPro Advanced Batch #2 Multiple Mode of Operation and got stuck very close to completion. Link...
Replies
3
Views
2,243
Hi folks, i'm pretty much new on this topic and i need some help with the dual compressor part 3 and 4, currently working on part 3 i cant make...
Replies
20
Views
5,159
Back
Top Bottom