Public class gravitational_force_equation{
	/*Meant to calculate gravitational force between two objects*/
        public static double final g = .0000000000667;
        /*@param m1 corresponds to the mass of the first object in kgs
         *@param m2 corresponds to the mass of the second object in kgs
         *@param r corresponds to the distance between both masses in meters*/
        public static double calculateGForce(double m1, double m2, double r){
       		double gforce = (g*m1*m2)/(r*r);
               	return gforce;
	}	
}
