wind chill




JavaScript Source Code 3000: Calculators: Wind Chill Calculator








































Wind Chill Calculator







Wind Chill is a mysterious and often misunderstood phenomenon. This script describes what the wind chill factor really is and offers a form to calculate the wind chill factor when given the air temperature and wind speed.








Wind Chill:
  


A measure of the cooling effect of wind. Wind increases the rate at which a body loses heat, so the air on a windy day feels cooler than the temperature indicated by a thermometer. This heat loss can be calculated for various combinations of wind speed and air temperature and then converted to a wind chill equivalent temperature (or wind chill factor).


  









Wind Speed (MPH) =







Air Temperature (ºF) =










º F









JavaScript Source Code 3000: Calculators: Wind Chill Calculator
Simply click inside the window below, use your cursor to highlight the script, and copy (type Control-c or Apple-c) the script into a new file in your text editor (such as Note Pad or Simple Text) and save (Control-s or Apple-s). The script is yours!!!





    





<!-- TWO STEPS TO INSTALL WIND CHILL CALCULATOR:

1. Copy the coding into the HEAD of your HTML document
2. Add the last code into the BODY of your HTML document -->

<!-- STEP ONE: Paste this code into the HEAD of your HTML document -->

<HEAD>

<SCRIPT LANGUAGE="JavaScript">
<!-- Original: James P. Dildine (jpd@wlsmail.com) -->
<!-- Web Site: http://www.mste.uiuc.edu/dildine -->

<! >
<! >

<!-- Begin
function windChill(form) {
wind=eval(form.wind.value);
temp=eval(form.temp.value);
chill=(0.0817*(3.71*(Math.pow(wind, 0.5))+
5.81-0.25*wind)*(temp-91.4)+91.4);
form.windchill.value = chill;
}
// End -->
</script>
</HEAD>

<!-- STEP TWO: Copy this code into the BODY of your HTML document -->

<BODY>

<form action="" method=post name=windform>
<center>
<table border=1 cellpadding=3 cellspacing=0 width="250">
<tr>
<td align=center>
Wind Speed (MPH) =
</td>
<td align=center>
<input type=text name=wind value="" size=6>
</td>
</tr>
<tr>
<td align=center>
Air Temperature (ºF) =
</td>
<td align=center>
<input type=text name=temp value="" size=6>
</td>
</tr>
<tr>
<td colspan=2 align=center>
<br>
<input type=button value="Calculate Wind Chill" onclick="windChill(this.form)">
<p>
<input name=windchill type=text value="" size=10> º F
</td>
<tr>
</table>
</center>
</form>



<!-- Script Size: 1.46 KB -->










Wyszukiwarka

Podobne podstrony:
Chill
Grid Power Quality with Variable Speed Wind Turbines
Wind Turbine Generator Systems – Wind Turbine Power Performance Testing
Development of wind turbine control algorithms for industrial use
Blade sections for wind turbine and tidal current turbine applications—current status and future cha
[2006] Analysis of a Novel Transverse Flux Generator in direct driven wind turbine
1801?sign Analysis of Fixed Pitch Straight Bladed Vertical Axis Wind Turbines
Foresight analysis of wind power in Turkey
180 cm diam wind turbine blades and generator
Wind turbine Blade layout
Darrieus Wind Turbine Design, Construction And Testing
Blue Wind
WIND D 1
gone with the wind
Plans For Wind Generator Pt250 Blade Plan10A
[2003] Constant Voltage Permanent Magnet Wind Generator

więcej podobnych podstron