SFC andST problem

Nolly

Member
Join Date
Jan 2024
Location
Birmingham
Posts
2
Hi all, Happy new Year.
I'm a ladder man forced to use SFC's and ST using Eurotherm's T2750/Eycon PAC s/w (Lin Tools).
I'm constructing a sequence and have fallen at the first hurdle! I have a simple vertical conveyor driven by a motor that needs Forward/reverse operation. The motor starts but if I trigger the sensor the motor continues.My S/text is :
(*Step2 ConvDown*)
If
ConAtBtm.OP = 1 Then (*bottom sensor*)
ConvRev.OP := 0 ; (*Motor*)
Else
ConvRev.OP :=1 ;
End_if;
_________________________________
Step 2 settings : Action: ConvDown. Type: Text. Qualifier: N normal ( I've tried using P initial.)

The transition to the next step: ConAtBtm.In = 1.
I have 16 steps in the sequence and the other steps are working ok. I've spent hours tring to sort it. Hope someone can help.
 
Thanks Ken - That solved my problem. So simple. I removed the ST from the first step and just left the variable :=1 and in the second step Variable:= 0
Why didn't I think of that. Every day's a school Day! Works a treat. Have a good year.
Nolly
 
bear in mind though that this is effectively using a latch/unlatch ladder logic in ST form.

The equivalent to what you'd do would in Ladder is:



ConvRev.OP := NOT ConAtBtm.OP ; (*Motor*)
 

Similar Topics

Hey. If you haven't already read me, first time I'm building a full project on Rockwell PLC. I started building the sequences last week and I...
Replies
3
Views
131
Hi all. I'm building my first Grafcet using Logix, but I started from another project. From what we usually do with other PLC's, I was expecting...
Replies
3
Views
161
I have a fanuc servo motor and drive that I salvaged from a lathe barfeeder that was headed for the dumps which I'm trying to see if I can get...
Replies
2
Views
157
Hiya, I'm a student who's very new to programming on Studio5000 (Logix Designer - Rockwell Software) and maybe getting some insight or help on a...
Replies
0
Views
94
HI! HOW COULD I OBTAIN THE NAMES OF THE STEPS OF A ROUTINE IN SFC LANGUAGE IN STUDIO5000? Or is there a system variable that gives me those...
Replies
0
Views
341
Back
Top Bottom