Here you can find the source of travelTimeAt100kphInMinutes(double ODDist)
public static double travelTimeAt100kphInMinutes(double ODDist)
//package com.java2s; //License from project: Open Source License public class Main { public static double travelTimeAt100kphInMinutes(double ODDist) { return (ODDist * 60.0) / 100.0; }/*from ww w .j a v a2 s . c o m*/ }