Design a plc program control prosim-ii door.

AI Thread Summary
The discussion focuses on designing a PLC program to control the ProSim-II Door using relay logic instructions. The program must utilize Open and Close pushbuttons to manage the door's movement, which stops when the buttons are released or when limit switches are triggered. It specifies that the motor should not operate if the door is already fully open or closed, and both motor windings must never be energized simultaneously. Additionally, indicator lamps should illuminate based on the door's position—Open Lamp for fully open and Shut Lamp for fully closed. Participants are encouraged to provide flowcharts, pseudocode, or ladder logic diagrams to facilitate further assistance.
plouffle
Messages
3
Reaction score
0

Homework Statement



In this exercise we want you to apply your knowledge of Relay Logic Instructions to
design a program which will control the ProSim-II Door. The Door System includes a
Reversible Motor, a pair of Limit Switches and a Control Panel, all connected to your
PLC. The program you create will monitor and control this equipment while adhering to
the following criteria:

In this exercise the Open and Close pushbuttons will be used to control the
movement of the door. Movement will not be maintained when either switch is
released, and therefore the Stop switch is neither required nor used in this
exercise. However, all other available Inputs and Outputs are employed in this
exercise.

Pressing the Open Switch will cause the door to move upwards (open) if not
already fully open. The opening operation will continue as long as the switch is
held down. If the switch is released, or if limit switch LS1 opens, the door
movement will halt immediately.

Pressing the Close Switch will cause the door to move down (close) if not already
fully closed. The closing operation will continue as long as the switch is held
down. If the switch is released, or if limit switch LS2 closes, the door movement
will halt immediately.

If the Door is already fully opened, Pressing the Open Switch will Not energize the
motor.

If the Door is already fully closed, Pressing the Close Switch will Not energize the
motor.

Under no circumstance will both motor windings be energized at the same time.

The Open Lamp will be illuminated if the door is in the Fully Open position.

The Shut Lamp will be illuminated if the door is in the Fully Closed position.


Homework Equations





The Attempt at a Solution

 
Last edited:
Physics news on Phys.org
Not sure what you are expecting. You need to attach a flowchart or pseudocode or a state diagram or your PLC code or some other attempt at a solution to get help.
 
Last edited:
Identify the number of inputs and outputs for the PLC.
Allocate inputs and outputs to match PLC specification. (Normally inputs have numbers like 0.10 or Slot 0, channel 0 and other combinations for outputs, these vary between Makes and models)
Next your job is to convert the above mentioned conditions into 'logic' diagram or ladder logic. Most PLCs use ladder, though some of them may under stand Function block(like Flow chart) or structured text (similar to high level programming language like C)
Few hints: Open or close push buttons are normally open contacts - inputs. You will have to use momentary contact in the ladder.
The motor will operate when the corresponding contactor or relay picks up. (Up or down contactor) This means the PLC output operates the corresponding contactor.
Generally the limit switches are normally closed (to keep the circuit fail safe), there are limit switches available to make them work they way you want.
Good luck.
 
Back
Top