From 149765427e09018ba4c8cbdc69140855d5a07e01 Mon Sep 17 00:00:00 2001 From: BevapDin Date: Sat, 28 Dec 2019 13:05:23 +0100 Subject: [PATCH] apply astyle --- src/weather.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/weather.cpp b/src/weather.cpp index 74e8751d42d85..2cdbac5932c84 100644 --- a/src/weather.cpp +++ b/src/weather.cpp @@ -721,7 +721,7 @@ int get_local_windchill( double temperature, double humidity, double windpower ) // model being designed for reasonable ambient temperature values, // rather than extremely high ones. windchill = 0.33 * std::min( 150.00, humidity / 100.00 * 6.105 * - exp( 17.27 * tmptemp / ( 237.70 + tmptemp ) ) ) - 0.70 * + exp( 17.27 * tmptemp / ( 237.70 + tmptemp ) ) ) - 0.70 * tmpwind - 4.00; // Convert to Fahrenheit, but omit the '+ 32' because we are only dealing with a piece of the felt air temperature equation. windchill = windchill * 9 / 5;