real project Example

keyvan

Member
Join Date
Jul 2022
Location
uk
Posts
1
I am looking for example of real projects to improve and learn more skills of programming PLC ? I am not sure if ou know where I can see examples of real projects?/
Thank you
 
Welcome!

At the top of this site, there is a downloads section. In there you can find multiple examples in different brands of real-life projects.
 
Keyvan, what PLC's are you thinking of specialising on, although knowledge of as many as possible is a good thing I suggest you certainly concentrate at first on a couple, also consider if ladder, FBD or ST is the ones you want to start with.
Ladder is still used extensively but FBD & ST are making ladder increasingly obsolete.
To learn (if at your cost) then consider some of the freebies out there although rarely used in real situations as the most used systems do cost. Many now have simulators so you do not need a real PLC, although the functionality may be limited i.e. no real I/O especially analogues or special function cards.
Real projects are fine but the things you really need to get your head around are the Boolean logic, how a PLC program is scanned (you often can utilise the way a program works to make your logic work well i.e. a program ( in most cases scans from left to right, top to bottom) so for example creating a one shot (on for one scan) is simple.
Think about simple projects i.e. a set of traffic lights, batching process (filling a tank with different ingredients & mixing, perhaps heating & discharge).
In many respects a PLC program will be a set of sequences so step sequences are a thing to learn, how to create this is up to you but the main two ways are using Boolean bits to step on or even better a sequence word where you put a number into a variable, compare then when that bit of sequence has completed, move another value into it i.e. step on so the "ENGINE" of the sequence uses values to determine what logic is next processed.
 
Send me a Private message with your email & I will try & dig out some old projects & print them to PDF, they will be too large to post here.
 
Another good way to learn is to use one of the emulators and first program a simulation of your field equipment. Then write a program to control them.



For example, a valve that fills a tank when open files 1% every 10 seconds. So first write code for that. When a valve output is on, start a 10 second timer and when timer is done add 1 to the level%. But be sure to limit check the level so it doesn't go over 100%. Same with when a valve is opened to drain or pump out product. But again limit check so you don't go lower than 0%.

Etc for all other equipment.


By the time you get the simulation of the equipment done you will have a greater understanding of how to program the control of the equipment.
But start simple.
 

Similar Topics

Good Morning Everyone, I am entry level PLC programmer and this is going to be my first PLC project at my company. I would like to thank you for...
Replies
13
Views
4,253
Hi All, After completing courses over the past year which obviously had projects included, I would now like to get more practice on real life...
Replies
0
Views
2,633
I have a print out that was down loaded from a NANO plc that I need to convert to run on a EZ unit. The line I am not sure about has 2 start...
Replies
3
Views
2,978
I have recently taken a new job and my first project is a fairly simple one. I am going to turn on a pump and chiller an hour before production...
Replies
26
Views
17,219
Hi, how do I convert 2x Integer registers to a Real? The two integers are from Modbus registers that contain a floating point value, I need to...
Replies
2
Views
126
Back
Top Bottom