def ualm(a, v0, x0, t):
    ts = t*60
    x = x0 + v0*ts + (1/2)*a*ts**2
    return x
