This function calculates y = atan2(u1, u2). If y < 0, this function returns y = y+2pi. Otherwise, it returns y.
Copyright © 2018
ATA ENGINEERING, INC.
ALL RIGHTS RESERVED
function atan2_positive import SI = Modelica.SIunits; input Real u1; input Real u2; output SI.Angle y; end atan2_positive;