Standard function blocks291Operation The output (O) is the product of input IN and input MUL divided by input DIV.Output = (I × MUL) / DIVO = whole value. REM = remainder value.Example: I = 2, MUL = 16 and DIV = 10:(2 × 16) / 10 = 3.2, i.e. O = 3 and REM = 2The output value is limited to the maximum and minimum values defined by the datatype range.Inputs Input (I): DINTMultiplier input (MUL): DINTDivider input (DIV): DINTOutputs Output (O): DINTRemainder output (REM): DINTSQRT(10008)IllustrationExecution time 2.09 μsOperation Output (OUT) is the square root of the input (IN).OUT = sqrt(IN)Output is 0 if the input value is negative.Inputs The input data type is selected by the user.Input (IN): REAL, REAL24Outputs Output (OUT): REAL, REAL24SUB -(10009)IllustrationExecution time 2.33 μsOperation Output (OUT) is the difference between the input signals (IN):OUT = IN1 - IN2The output value is limited to the maximum and minimum values defined by the selecteddata type range.Inputs The input data type is selected by the user.Input (IN1, IN2): INT, DINT, REAL, REAL24Outputs Output (OUT): INT, DINT, REAL, REAL24SQRT(REAL) 54TLA1 1 msec (1)INOUT OUT(54)SUB(DINT) 55TLA1 1 msec (1)IN1IN2OUT OUT(55)