plc inputs

mir

Member
Join Date
Apr 2014
Location
perth
Posts
2
How will the control program of a PLC respond if two input devices are connected in parallel to the same input terminal?
thanks guys appreciate the help
 
if they are in parallel, which ever one is ON the input is going to be ON, no different then having 2 light switches in Parallel. If in series both would need to be on for the input to go on/high/1
 
im doing my plc online & answered that which ever1 is triggered first would trigger the input but was incorrect
the response i was given was if there are 2 incoming signals,what would happen?the inputs would...the process would result in??
 
without knowing the program or process we have no idea what might happen, but if the the inputs are digital and for what ever reason you had 2 inputs in parralell and 1 or 2 where turned on, the input would stay ON untill both were turned OFF. There must be something in the program that they are asking about?
 
Hi Mir, here is a great simulater. Has the ability to write programs and then put them into the same screen to watch how things work. I copied this from a previous thread.
LogixPro is a good PLC simulator for Allen Bradley RSLogix 500 software on a SLC 5/02 or similar. You can find information (and also the program) at thelearningpit.com. This program does show the "physical setup" side-by-side with the ladder program. There are also many good student problems with scenarios built in to the simulator program.

http://www.thelearningpit.com/
Last edited by Lancie1; January 14th, 2014 at 01:52 AM.
 
Code:
Input  Switch 1  Switch 2
  0       0         0
  1       1         0
  1       0         1
  1       1         1

The input would be TRUE as long as either switches/input devices are TRUE.
The input would be FALSE only if both switches/input devices are FALSE.
 
Hi Mir, keep in mind that there are a few versions of what is termed ON=high/true/ON/1. OFF= Low/false/OFF/0. As Jeebs has shown on the above truth table it is no different then having 2 light switches in parallel, turning 1 or 2 ON turns the input ON.
UNLESS they have XOF (examine OFF or N/C contact) as the contacts for the input PROGRAM then of course it would all be back to front and you would be turning the program/process OFF. That's why you need to tell the whole story of what is asked or required.
 
Could the question be relating to an analog signal?

What happens when you wire two analog signals in parallel to an input?
 
I was marked incorrect with an answer of "The input would be true as long as either inputs are true, however the input would be false only if both of the inputs are false."

Any help on this?
 
Ask the questioner - if possible - "why do you consider this answer wrong? What would you consider a more correct answer?"

Maybe post back here the answer you receive - if any.
 
Nesa09, was that the answer you gave or a response indicating what the correct answer should be?

If it was the answer you provided, I would be very interested what the questioner would consider more correct...
 
"The input would be true as long as either inputs are true,
however the input would be false only if both of the inputs are false."
The above is correct (except you should have said "either input device (or switch)" instead of "either inputs" and "both of the input devices or switches" intead of "both of the inputs". The "input" would refer to a terminal and the electronic input parts of the PLC, and the things that cause the input to react are external devices such as switches and sensors. That might be why it was marked wrong - you did not seem to understand the difference between external devices and the parts of the PLC and program.
 

Similar Topics

Hello I need to message read the entire 16 channel raw analog inputs from a 1769-L33ER Compact Logic controller to another 1769-L33ER Compact...
Replies
8
Views
242
Good morning guys; Im new at AB plc, and i just need help about a table or a list called something like "exchange data table" in French it is...
Replies
4
Views
777
What he have is a HMI2GO unit ( KTP900F) and we use a safety relay to trigger our e-stops. What the tech wants to do is guard against e-Stop on...
Replies
2
Views
1,860
Most PLCs are 24v for digital logic, will a Digital input card detect a 12v (automotive) signal as a 1 Looking to do some work on a...
Replies
11
Views
4,295
Hello PLCs.net! I have a kinetix 5500 drive connected to a gantry, I was wondering if there is a way to do active homing using a PLC tag? At this...
Replies
6
Views
3,054
Back
Top Bottom