ES Relay Emulation

andreidragosh

Member
Join Date
May 2009
Location
Valcea
Posts
10
I have to implement an emergency stop relay with this behavoir: 3 conditions for activate emergency stop (S1, S2 and PB ES),the output of the relay is 1 if the ES is active, the restart is ok if:
- the conditions of ES are back ok (that means a negative edge detection at the input);
-the feedback from the actuator is 0 (deactivated);
-a PB for Start is pressed ( postive edge detection).
ON "S1"
ON "S2"
ON "PB ES"
= "Output Relay ES" //conditions for ES
R M 10.2
R M 10.5
A "Output Relay ES"
FN M 10.0
= M 10.1 //=1 for 1 cycle
A M 10.1
S M 10.2 //neg. edge detection for ES input
A M 10.2
A "PB Start"
FP M 10.3
= M 10.4
A M 10.4
S M 10.5 //pos. edge detection
A M 10.2
A M 10.5
AN "Feedback motor"
R "Output Relay ES"
it is correct?
 
Another program that works:
ON "S1"
ON "S2"
ON "PB ES"
S M 8.3 //intermediate flag for ES Relay
= M 8.7
A M 8.7
FN M 8.0
S M 8.1 //flag for negative edge of ES
A M 8.7
FP M 8.2
R M 8.1 //flag for positive edge of ES
A M 8.1
AN M 8.7
A "Start"
AN "Feedback motor"
R M 8.3
A M 8.3
= "ES Relay"
AN "ES Relay"
= "Motor"
 

Similar Topics

Hi, I'm using E300 as E3 Plus in emulation mode. E300 is Rockwell Automation's overload relay. But I get hardware fault when I enable Ground...
Replies
0
Views
478
Hi, I am using AB 5069-L306ERS2 CPU. My system should achieve SIL-2. I have safety door switches connected to AB 5069-IB8S module, and I want to...
Replies
1
Views
118
Hello, I need assistance in making a Relay operation that follows the given parameters: -if S1 is switched and S2 is at off, the Lamp 1 will be...
Replies
3
Views
117
Question to anyone with ideas about my thoughts on upgrading a very vintage timer, which is being used to switch between 2 5hp domestic water...
Replies
14
Views
445
Back
Top Bottom