Sign in to follow this  
Followers 0
tingxing

Omron PLC integral calculation

2 posts in this topic

Could anyone tell me how to do integral calculation in Omron PLC? I get power (in fact, current) data, and I want to calculate power vs time integration. Thanks in advance. Xing Edited by tingxing

Share this post


Link to post
Share on other sites
On every cycle execute something like this; ErrorValue = CurrentValue - SetPoint IntegralSum = IntegralSum + ErrorValue * CycleTimeValue (A264 for CJ1) Then use IntegralSum as a scalar as it will get pretty big

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