Sign in to follow this  
Followers 0
nbn2015

Need to help to understand flow of ladder logic

2 posts in this topic

Hello Everyone, I am new to ladder logic, and trying to understand flow of below attached ladder logic- How does the program flow ? Does PT4601_I in rung 3 waits for rung 2 to complete inorder to consider updated value of PT4601_I or it consider PT4601_I default value and runs simultaneously with rung 2 ? Thank you in advacne

Share this post


Link to post
Share on other sites
Each rung is executed sequentially. When a variable's value is updated as a result of an instruction on rung 2, the updated value is immediately available at rung 3. What is the full name of the variable at the IN1 node of the ADD_REAL instruction on rung 3? If it is PT4601_INT and that variable is defined as INT, then you may have a problem mixing an INT variable with a REAL instruction. If PT4601_INT is actually a REAL variable then you have a problem with the REAL_TO_INT instruction on rung 2.

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!


Register a new account

Sign in

Already have an account? Sign in here.


Sign In Now
Sign in to follow this  
Followers 0