#
#  ISC License
#
#  Copyright (c) 2016, Autonomous Vehicle Systems Lab, University of Colorado at Boulder
#
#  Permission to use, copy, modify, and/or distribute this software for any
#  purpose with or without fee is hereby granted, provided that the above
#  copyright notice and this permission notice appear in all copies.
#
#  THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
#  WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
#  MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
#  ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
#  WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
#  ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
#  OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#
#
#   script with various macros
#
import math
#   function to convert seconds to an integer nanoseconds value
[docs]def sec2nano(time):
    """convert seconds to nano-seconds"""
    return int(time*1E9+0.5) 
#   function to convert minutes to an integer nanoseconds value
[docs]def min2nano(time):
    "convert minutes to nano-seconds"
    return int(time*1E9*60 + 0.5) 
#   function to convert hours to an integer nanoseconds value
[docs]def hour2nano(time):
    """convert hours to nano-seconds"""
    return int(time*1E9*60*60 + 0.5) 
#   function to convert days to an integer nanoseconds value
[docs]def day2nano(time):
    """convert days to nano-seconds"""
    return int(time*1E9*60*60*24 + 0.5) 
#   variable to convert nano-seconds to seconds
NANO2SEC = 1E-9
NANO2MIN = (1./60.*1E-9)
NANO2HOUR = (1./60./60.*1E-9)
#   variable to convert degrees to radians
D2R = (math.pi/180.)
#   variable to convert radians to degrees
R2D = (180./math.pi)
#   variable to convert RPM to radians per second
RPM = (2.*math.pi/60.)
#   variable to convert RPM to radians per second
rpm2radsec = 2.0 * math.pi/60.