AnnexF/hysteresis_st.txt
author Mario de Sousa <msousa@fe.up.pt>
Tue, 07 Feb 2012 12:17:00 +0000
changeset 432 9c5ad4be30fd
parent 0 fb772792efd1
permissions -rwxr-xr-x
Correctly return the initial value of a string datatype, with limited length (STRING[33] := 'hello')
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