AnnexF/hysteresis_st.txt
author mjsousa
Tue, 24 Jan 2017 12:44:44 +0000
changeset 1028 7c8709ce6b8f
parent 0 fb772792efd1
permissions -rwxr-xr-x
Correcty determine the datatype (TIME) of the parameters of SFC actions with timed qualifiers
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