Signed up for your courses. I am chemical engineer and have experience in designing and operating experimental, pilot and industrial equipment. But I have experience in desining equipment based only on relay logic. Now I design much more complicated experimental equipment and I definitely need PLC programming skills. Thank you, RealPars!
@realpars2 жыл бұрын
Glad to hear that our courses are helpful to you! It's our pleasure, if you have any questions then please feel free to reach out to us at any time. Keep up the learning curve!
@Fgcbear15 Жыл бұрын
Another benefit is version control. Version control via git is easier to manage with text than gxworks project files. You can see the exact program changes each time. I have bkms to overcome this but it is a real issue for a lot of people. The exact changes are not often document between revisions and it sucks
@Dulalmahato20113 жыл бұрын
Wish I had teachers like you guys .
@realpars3 жыл бұрын
Thank you, Dulal!
@PurushNahiMahaPurush2 жыл бұрын
Best of both worlds is that can make abstractions with FB and FUNC using ST and then use those inside Ladder Logic. This way the code can be understandable by the operator without having to know what is happening behind those FB.
@MrWaalkman3 жыл бұрын
Structured Text, for those who can't let Pascal die... :) Still, it's another useful tool in the toolbox.
@alex_nevskiy_8883 жыл бұрын
Also, we can omit the second condition and write simple ELSE cause it is a complete negation of the first condition (IF Valve_Closed = false AND Valve_Opened = true).
@JADJuanan3 жыл бұрын
Bad practice still. For boolean condition with no latching purposes people overcomplicate things. JUST WRITE : #pump_start := NOT #controlValve1_closed AND #controlValve1_open;
@alex_nevskiy_8883 жыл бұрын
@@JADJuanan IMO variant with IF ELSE is more clear, while every time I'm looking at your variant I need to decode it to the IF ELSE chain in my mind anyway.
@tomasgavagnin59202 жыл бұрын
The example was for learning purposes and to be easy to understand for beginners, not for to be the best and optimized code.
@propheteyebert70636 ай бұрын
I come from a microcontroller background. Can someone explain why a valve that is not closed, is not opened? I assume it's a solenoid valve.
@jonomcfall21 күн бұрын
@@propheteyebert7063 This is because with larger valves they usually have two inputs, one for open one for closed, and there is a transition space between open and closed. It varies on the size and construction of the valves, but when actuated, the valve will be in between states for a short period of time. It is better to confirm both states or you risk starting the pump on a partially open valve.
@vatsalthaker21223 жыл бұрын
Thank you for great teaching...please include pointer and area register in the series
@realpars3 жыл бұрын
You're very welcome! Thanks for your feedback and suggestion, I will happily pass this on to our course developers.
@abbddos2 жыл бұрын
I don't know much about PLC programming, but I saw some ladder logic and function block logic made programs, and I thought they were really primitive in what they can do compared to C++. Now with structured texts available, I think that PLCs will be able to do way more than just reading sensors' data and activate actuators, or apply some sort of predefined controls. With this, maybe we can apply some machine learning algorithms, as now we can declare variables and do arithmetics, conditions and loops. What would be wonderful later on if PLC companies release compilers that work independently from the entire programming software, something like gcc that can run and compile C\C++ programs without having to install the big fat useless Microsoft Visual Studio.
@realpars2 жыл бұрын
Abdul, yes, the ladder logic and function block programming used by PLC's may seem primitive compared to higher level languages, but there are some marked advantages that ladder and function block (and structured text) offer. First, these languages in a PLC environment are typically interpreted languages, which allows for online modifications without having to stop the PLC or shutdown the process. Python, C++, Java, etc., are compiled, with requires the PLC processing to be halted when a change is made, since the entire program image must be re-downloaded. While you may think C++ can allow you do more as far as logic, I can honestly say in my 40 years of programming nearly every PLC model made, there has never been something I wanted to do that I could not do with ladder, function blocks, or structured text. One of the features of a PLC is its speed in processing I/O and executing the logic program. If the CPU has to compute complex equations, sort or store large amounts of data into or out of a database, etc., then its advantage of speed is lost. Doing a calculation in C++ and having it execute in 0.3 sec is an eternity to many PLC program requirements. With communication standards such as OPC, it is better to have an edge controller or CPU designed to execute more complex logic with higher level languages, and communicate the results to/from the PLC as required. One last item: you always need to consider who in the plant is going to support the programs. In most cases, it is I&C technicians who understand ladder and FB programming, but do not have skills in C++ or Java. As engineers, that doesn't seem like a big deal, but companies are not willing to pay engineer salaries for technician-level tasks. That may seem a little harsh, but it is reality. That is why supervisory processors, such as edge controllers will become more popular. They will allow more complex programs to be executed using C++ and Python without requiring a change in how machine control is executed and supported. Robots are an exception to what I just stated: they require complex controllers with their own language and advanced skillsets to program and support.
@GuyFromJupiter2 жыл бұрын
Some pretty complex functions can be accomplished in ladder and function blocks, though it is true that they can't do everything a normal high level language like C++ could. That said, I don't believe structured text really adds any functionality. Everything that can be done with structured text could probably already be done with ladder diagrams or function blocks, just in a format more suited to people without a programming background than those with one. The reason PLCs are programmed the way they are is because it suits their purposes very well, otherwise they would probably be much more similar to traditional programming.
@jakeMTSU Жыл бұрын
Lets see you trouble shoot ST ... its a pain.
@bitebonumbere14263 жыл бұрын
Thanks RealPars for another fantastic video yet again.
@realpars3 жыл бұрын
Glad you enjoyed it!
@FirstnameLastname-fn6ik2 жыл бұрын
Nice video! Btw at 4:45 I think you should have said "if the control valve is *NOT* closed" since you had the closed status equal to false :)
@realpars2 жыл бұрын
I think you are correct. If the control valve is closed, ControlValve1_Closed should be true.
@pekka19003 жыл бұрын
There are quite a few of issues here. I don't know, if it is different in the States, but variables should be written in a specific manner. If a variable is a boolean then it should be 'bControlValve1_Closed' and not '#ControlValve1_Closed'. Writing ' = true' is unnecessary in most cases and often just makes the code less readable. It is also a good rule, if you have an 'OR' condition to do parenthesis, e.g.' ( bControlValve1_Closed OR NOT bControlValve1_open ) '. Helps to spot where it begins and ends. End_if does not need semicolon ( ; ). The comment should be simple and straight forward, and not ramble on about what, where and how, keep it simple. (* Start pump if control valve is open *) is sufficient. You don't need to explain every detail, if the code is very cut and dry. You will see it faster than you read and understand a "complex" sentence. But the major issue here is that an if statement should ALWAYS have the 'ELSE' specified. I would write this code as: (* Start pump if control valve is open *) IF ( bControlValve1_Open AND NOT bControlValve1_Closed ) THEN bStartPump := TRUE; ELSE bStartPump := FALSE; END_IF Keep it simple and clear.
@realpars3 жыл бұрын
Pekka, you are correct in your presentation of the SCL code structure for some controller manufacturers. SCL programming language in the Siemens S7 controllers follow the syntax as indicated in the video. Just like ladder diagram programming differences between vendors, SCL has variations between vendors as well. Unfortunately, for each of the IEC 61131-3 programming languages, there is no universal language syntax, but all versions have similar structures and syntax.
@mashudumawela6992 Жыл бұрын
Does realpars have a STL course, from basic to advanced?
@joshuajavier5158 Жыл бұрын
Thank you for your videos. I just want to ask if what computer should I need to learn to master this STRUCTURED Text programming. I want to learn this because my Next work is not using Ladder programming anymore. They use FBD and STRUCTURED Text in SIEMENS and FUJI PLC. I want to learn it more before I start working there since my current company only used LADDER PROGRAMMING which is easy for me.
@arslaniqbal733011 ай бұрын
Very Helpful and easily Understood
@realpars11 ай бұрын
Glad to hear that, Arslan! Happy learning
@mrponnambalam51213 жыл бұрын
Sir, could you please upload more videos about structured text programing... I want to learn structured text programing. Your explanation is very good to understanding..
@realpars3 жыл бұрын
Thanks for your topic suggestion! I will happily go ahead and pass this on to our course developers.
@sachinchaurasiya90073 жыл бұрын
Great explanation sir ...👍
@realpars3 жыл бұрын
Thank you, Sachin!
@IngDzib Жыл бұрын
Thank you again for that interesting information
@realpars Жыл бұрын
You're very welcome!
@ejazasif97563 жыл бұрын
Thanks for a video which I always thought of tough one.. Thanks again guys.
@realpars3 жыл бұрын
Happy to help!
@johnudure4782 Жыл бұрын
please can you make explicit videos for a full course on structure text. thanks so much for the explanation.
@realpars Жыл бұрын
Thanks for your feedback and suggestion, John! I will be happy to forward that to our course developers.
@gokulraj30603 жыл бұрын
Thank you for your good explanation
@realpars3 жыл бұрын
Glad it was helpful!
@kocengineering7693 жыл бұрын
Yes sir Thanks a lot A very important a very much needed topic is given in this video But how can we learn from realpars sir Plz 🙏🙏🙏🙏 reply me back urgently required pls
@realpars3 жыл бұрын
Hi Fathama, Thanks for your kind comment! Great to hear that you are interested in joining our course library! You obtain full access to our complete course library (500+ video courses) by subscribing to either our monthly package for €24.99 a month or our yearly package for €179.99 You can subscribe through the following link learn.realpars.com/collections
@dennisrubio23752 жыл бұрын
Thank you for your help
@realpars2 жыл бұрын
Happy to help!
@cck14963 жыл бұрын
Excellent video. Why ST language is not so popular? Thanks.
@pekka19003 жыл бұрын
According to whom it's not popular? I come across mostly ST or FBD in the industry.
@johnbrown61892 жыл бұрын
@@pekka1900 I've been programming PLCs for 40 years across most of the major brands and in most types of industry. The only time l use structure text is for large formulas. It saves time in putting the math in and that's about it. There are no significant memory savings and when trouble shooting problems ST is just no good. ST is great to have for some stuff but it will never replace ladder or function block.
@indubhargav17433 жыл бұрын
Sir great video.... I don't understand ladderlogic. Please post tank level control analog structured text program video
@realpars3 жыл бұрын
Thanks for your suggestion! I will happily pass this on to our course developers.
@laithjawad92083 жыл бұрын
Thanks for you support, Pls could you give instructions for Honeywell DCS system
@realpars3 жыл бұрын
Hi Laith! Thanks for your comment and your suggestion. I will pass this on to our course developers! Thanks for sharing and happy learning!
@tonynony22563 жыл бұрын
Do you have a course on Structured Programming? Also what about robotics and PLC course?
@realpars3 жыл бұрын
Yes, we have just begun to release the first videos in our Introduction to SCL Programming course at Realpars.com. SCL is Siemens structured text programming language I hope you will enroll! We also have many entire course series on PLC programming, including our popular PLC Programming Made Easy Level 1 through Level 4. We do not yet have courses on robotics, but we are always working to plan additional quality training on automation topics that are relevant and current.
@oguzsahinn3 жыл бұрын
Thank u very much...
@realpars3 жыл бұрын
You are most welcome!
@pridechigamba16643 жыл бұрын
You are the best
@realpars3 жыл бұрын
Thank you!
@ictechpro91923 жыл бұрын
What college degree can I get in order to work with PLCs and programming?
@animechannelhd24753 жыл бұрын
You can study Automation Engineering
@ictechpro91923 жыл бұрын
@@animechannelhd2475 Thank you! :)
@mikevez66393 жыл бұрын
you can study electric engineering, computer science etc, or anything that gets you familiar with sensors, transmitters, code etc. The majority or skills you'll usually learn on the job once you start.
@bhyllw2 жыл бұрын
Mechatronics Engineering
@deniskalugin79842 жыл бұрын
Hi RealPars! Thank you for another great video. I found them very useful and informative.
@realpars2 жыл бұрын
Glad you like them! Thanks for your support, Denis!
@mohammadpathan46683 жыл бұрын
Nice !
@johnbrown61892 жыл бұрын
I enjoy and like most of videos you produce but this one missed the mark. I've been programming PLC's for 40 years starting with Gould Modicon to the most recent AB Micro800. ST has it's place but trouble shooting a PLC programmed in ST is a nightmare. In my experience ST is great for putting in large formulas but not much more. And my clients in most cases will ask for ladder or function block. A picture is worth a thousand words.
@realpars2 жыл бұрын
John, I have a similar background, being "forced" to learn Modicon 384 programming in a week in 1981. And like you, I have programmed innumerable PLC models since then. So, I think you and I think quite a lot alike. We essentially came from the generation of ladder programmers who also knew computer programming (many chemical plant programs were written in Assembly Language) but preferred the straightforward way ladder could re-represent the logic that was in our heads. Later, I saw the benefits of function blocks as a shorthand for operations like analog scaling or temperature conversions, and with ISA-88, sequential function blocks were a life-saver. These three modes of programming have served the industry well and were embedded into the IEC 61131-3 sets of languages. Notice I have left two languages within IEC 61131-3 out: structured text and instruction list. I know both of those languages well (Realpars.com has a whole course on ST), but I have always found translating logic into the other 3 languages to be faster and definitely easier to troubleshoot. The current generation of control engineers wants a more programming-like language available, as many were trained on mechatronics systems using Python, C++, and Java. And that is why the IEC had the smarts to include ST and IL in the 61131-3 standard. And in practice, except in protected, compiled code embedded in vendor equipment, ST and IL are beneficial (in my opinion) for repetitive mathematical operations and those functions that are easier to visualize with CASE statements. Apart from that, we as control engineers need to realize that we can program a masterpiece in C++, but need to construct the code in a way plant technicians can support and troubleshoot using that code. Thank you for your comment, as it highlights that not every tool is right for every job.
@mokoepa Жыл бұрын
@@realparsBeautiful response. I love it.
@hafisvbgchannel66023 жыл бұрын
Make more contain this STL example program
@realpars3 жыл бұрын
Thanks for your comment and feedback!
@abulfazibrahimov19903 жыл бұрын
👍
@trofen43483 жыл бұрын
Good explanation but AWFUL practice. 1. #pump_start := #controlValve1_open AND NOT #controlValve1_close; This example is much more clear, faster and smaller. 2. It’s better practice to use // (C like) instead of (* *) (PASCAL like) comments when your goal is single line comment.
@aminokamad16813 жыл бұрын
🔥🔥🔥
@sulimanalwageh7447Ай бұрын
is it free
@realparsАй бұрын
Thank you for your question. If you are asking about the IEC standards, you can download this topic online. Here is a link for your learning: www.iec.ch/publications/international-standards. Happy learning from RealPars!