FP_ROUND_DOWN

Round down to the nearest integer

This FP instruction rounds down to the nearest integer.

Parameters

Input

s (ANY_REAL)

Input value

Output

d (ANY_REAL)

Result

Error flags

sys_bIsOperationErrorHold (turns to TRUE and remains TRUE)
  • if the area specified using the index modifier exceeds the limit.

  • if s is not a REAL number

sys_bIsOperationErrorNonHold (turns to TRUE for one scan)
  • if the area specified using the index modifier exceeds the limit.

  • if s is not a REAL number

Example

POU header

All input and output variables used for programming this function have been declared in the POU header. The same POU header is used for all programming languages.

	VAR
		bStart: BOOL:=FALSE;
			(*activates the function*)
		rInput_value: REAL:=32.71;
		rOutput_value: REAL:=0.0;
			(*result after a 0->1 leading
edge from start: 32*)
	END_VAR

POU body

When the variable bStart is set to TRUE, the function is carried out.

LD body

BODY
    WORKSPACE
        NETWORK_LIST_TYPE := NWTYPELD ;
        ACTIVE_NETWORK := 0 ;
    END_WORKSPACE
    NET_WORK
        NETWORK_TYPE := NWTYPELD ;
        NETWORK_LABEL :=  ;
        NETWORK_TITLE :=  ;
        NETWORK_HEIGHT := 5 ;
        NETWORK_BODY
B(B_CONTACT,,bStart,4,1,6,3,);
B(B_VARIN,,rInput_value,10,2,12,4,);
B(B_VAROUT,,rOutput_value,22,2,24,4,);
B(B_F,FP_ROUND_DOWN!,,12,0,22,4,,?DEN?D@'s'?AENO?Cd);
L(1,2,4,2);
L(6,2,12,2);
L(1,0,1,5);
        END_NETWORK_BODY
    END_NET_WORK
END_BODY

ST body

IF bStart THEN         
    FP_ROUND_DOWN(s := rInput_value, d => rOutput_value);
END_IF;

Modified on: 2022-08-23Feedback on this pagePanasonic hotline