Jump to content

CFM to MPH????


concept07

Recommended Posts

Ok

 

this is a bit of a strange question but this is my last place to turn.

 

Ok High output fans or any fan really is measured by CFM (Cubic feet ,Minute)

 

Ok now what i am interested in is how to convert a fans CFM to actual WINDSPEED MPH

 

I am sure some variables would include the following.

 

Size of Area, Resistance, CFM, and possibly other things.

 

But is there a way to calculate this or is that something that is just impossible. and i would just have to build a wind tunnel and run a fan with X CFM coming out of it in a specific area and then measure windspeed.

 

i would hope not, i would like to think that is a way to mathmatically figure it out

 

thanks for anyone here who can help with this,

 

And what the basis of this question is for is wind tunnel testing.

 

THanks for your time and reading this post and hopefully and informative answer.

 

X

Link to comment
Share on other sites

velocity = volumetric flow rate/area

 

i assume you can do basic unit conversion. change cubic feet per minute into cubic miles per hour and area into square miles and plug them into the equation. numbers are going to be horrible. but thats the imperial system for you.

Link to comment
Share on other sites

Divide the volume out by dividing the quantity of cubic feet by the total area to find how many feet per minute one cubic foot travels. Convert this to miles per hour.

 

Say you have a box fan 4 foot square that puts out 21120 CFM. 21120/4 means that in each square foot there are 5280 CFM or that each individual cubic foot travels 5280 feet per minute. 5280 * 60 is 316,800 feet per hour which is 60 MPH...

 

HTH

Link to comment
Share on other sites

i made a really fast (2 minute) php script so that you can review my work to determine if i am on the right track or if i am way off in my numbers

<?php
$cfm = 1900;
$length = 30;
$width = 10;
$height = 10;
$minute_seconds = 60;
$hour = 60;
$mile = 5280;

$squarefoot = $length * $width * $height;
echo "<br> total cfm = $cfm <br>";
echo " <br> square foot $squarefoot<br>";
$minute_air_speed = $squarefoot / $cfm; // per minute air speed
echo " <br> minute aire speed: $minute_air_speed <br>";

$feet_per_second = $minute_seconds / $minute_air_speed;
$mph = ($mile / ($minute_air_speed * $hour));


echo " <br> feet per second: $feet_per_second <br>";
echo " <br> MPH= $mph ";
?>

 

the above script will produce this following output

 

 

 

 

total cfm = 1900

 

square foot 3000

 

minute aire speed: 1.5789473684211

 

feet per second: 38

 

MPH= 55.733333333333

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.