-1
   public double chillLatest(){
            return Math.round((13.12 + (0.6215 * latestCelcius()) - (11.37 *(Math.pow(windSpeedLatest(), 0.16))) + ((0.3965 * latestCelcius()) * (Math.pow(windSpeedLatest(), 0.16)))));
    }

            
    public double celciusToFarenheit() {
            return (readings.get(readings.size()-1).temperature * (9 / 5) + 32);
    }

Wind chill = 13.12 + 0.6215 T – 11.37 (V^0.16) + 0.3965 T (V^0.16)

T(°F) = T(°C) × 9/5 + 32
I keep getting the wrong result with my data and I can't work out where I am going wrong. Bracket placement seems to the obvious answer but not sure where.

Stefan Zobel
  • 2,799
  • 7
  • 23
  • 33
Dale Healy
  • 19
  • 6

0 Answers0