Thursday, December 07, 2006

Heat Index and Wind Chill Formulas

I'm writing this because nobody seems to have an easy to copy and paste formula out there for coders or even for spread sheets.

It's all fine-and-dandy that somebody understands all the ins-and-outs of weather and the math behind it, but sometimes we just want to display the Wind Chill or Heat Index, and that's it. I don't need to know all about the weather … some of us have deadlines to meet. These formulas are for those of you who are of a similar mind set.

Here are the formulas to calculate the Heat Index and the Wind Chill in Spreadsheet formulas and for PHP scripts (programs).

Heat Index

The Heat Index should only be calculated when air temperatures are greater than 80°F (27°C), dew point temperatures are greater than 60°F (16°C), and relative humidities are higher than 40%.

Spreadsheet:

  

Where A1 holds the TEMPERATURE, and B1 holds the HUMIDITY.

PHP:

 

Where $temp_f is the temperature in degrees Fahrenheit, and $humidity holds the humidity.

Wind Chill

The Wind Chill should only be calculated when temperatures are at or below 50°F and wind speeds are above 3 MPH. Bright sunshine may increase the wind chill temperature by 10°F to 18°F.

Spreadsheet:

 

Where A1 holds the TEMPERATURE, and B1 holds the WIND VELOCITY (SPEED).

PHP:

 

Where $temp_f is the temperature in degrees Fahrenheit, and $wind_speed holds the wind speed in Miles Per Hour (MPH).

I hope this helps to keep someone from spending an hour debugging their code when it was a simple typo that may have messed them up.

Friday, July 07, 2006

My Web Site
I have had a Web Site since 1996, it currently resides at LAZARIDES.us.

Unfortunately, since the birth of my children, I have not had time to keep up the computer tips on that site the way I used to. It has become a repository for links more than a site for getting current tips.

I see so many people now using their blogs to post tips and tricks, but it is just something that I have not tried yet.

I may start to transfer some of my old tips to my blog, then start adding new tips also. I will probably do it on both sites for a while to see which way I like it better. The only thing is that I have precious little time to do it.