AnnexF/hysteresis_st.txt
author mjsousa
Sun, 20 Jul 2014 21:57:10 +0100
changeset 915 ec3759689efe
parent 0 fb772792efd1
permissions -rwxr-xr-x
With -Op option --> Place implicitly defined datatypes in the .h file corresponding to the POU where they are used.
FUNCTION_BLOCK HYSTERESIS
    (* Boolean hysteresis on difference *)
    (* of REAL inputs, XIN1 - XIN2      *)
  VAR_INPUT XIN1, XIN2, EPS : REAL; END_VAR
  VAR_OUTPUT Q : BOOL := 0; END_VAR
  IF Q THEN IF XIN1 < (XIN2 - EPS) THEN Q := 0; END_IF ;
  ELSIF XIN1 > (XIN2 + EPS) THEN Q := 1 ;
  END_IF ;
END_FUNCTION_BLOCK