blockRealToInteger

Convert Real to Integer signal

Information

Block that outputs y as the nearest integer value of the input u.

The block outputs

    y = integer( floor( u + 0.5 ) )  if u > 0,
    y = integer( ceil ( u - 0.5 ) )  otherwise.

Connectors

TypeNameDefaultDescription
Buildings.Controls.OBC.CDL.Interfaces.RealInputuReal signal to be converted to an Integer signal
Buildings.Controls.OBC.CDL.Interfaces.IntegerOutputyConverted input signal as an Integer

Revisions

  • January 3, 2017, by Michael Wetter:
    First implementation, based on the implementation of the Modelica Standard Library.