Welcome Guest. Sign in or Signup

1 Answers

Calculating Wind Speed and Direction

Asked by: 21173 views , ,
Flight Instructor

I'm trying to figure out how to calculate wind speed and wind direction given a Course, True Airspeed, Ground Speed, and Heading.

I'm sure Vector subtraction is used to figure this out, anyone know exactly what the math is behind this?

Thanks

Ace Any FAA Written Test!
Actual FAA Questions / Free Lifetime Updates
The best explanations in the business
Fast, efficient study.
Pass Your Checkride With Confidence!
FAA Practical Test prep that reflects actual checkrides.
Any checkride: Airplane, Helicopter, Glider, etc.
Written and maintained by actual pilot examiners and master CFIs.
The World's Most Trusted eLogbook
Be Organized, Current, Professional, and Safe.
Highly customizable - for student pilots through pros.
Free Transition Service for users of other eLogs.
Our sincere thanks to pilots such as yourself who support AskACFI while helping themselves by using the awesome PC, Mac, iPhone/iPad, and Android aviation apps of our sponsors.

1 Answers

  1. Best Answer


    Wesley Beard on Nov 30, 2010

    The math behind the equation requires the use of vectors and triangle geometry.  You are required to break each vector down into its vertical and horizontal component.  Subtract the GS vector from the TAS vector for each vertical and horizontal value and the wind speed is calculated using pythagoream theorem A^2 + B^2 = C^2 where C is the wind speed.  The wind direction is calculated using the arctan function and checking if the wind is a headwind of a tailwind
     
    WS = Wind Speed
    WD = Wind Direction
    TC = True Course
    TH = True Heading
    TAS = True Airspeed
    GS = Groundspeed
     
    Here is the formula for the wind speed (you can use this in Excel provided you use Named Ranges)
    WS =ROUND(SQRT(((SIN(RADIANS(MOD(TH, 360)))*TAS)-(SIN(RADIANS(MOD(TC, 360)))*GS))^2 +((COS(RADIANS(MOD(TH, 360)))*TAS)-(COS(RADIANS(MOD(TC, 360)))*GS))^2), 0)
    Breaking down the formula, we are using pythagoream theorem WS = square root([Horizontal Value Difference]^2 + [Vertical Value Difference]^2) and rouding the number to the nearest whole number
     
    Here is the formula for the wind direction
    WD =ROUND(MOD(DEGREES(ATAN(((SIN(RADIANS(MOD(TH, 360)))*TAS)-(SIN(RADIANS(MOD(TC, 360)))*GS))/((COS(RADIANS(MOD(TH, 360)))*TAS)-(COS(RADIANS(MOD(TC, 360)))*GS))))+IF(((COS(RADIANS(MOD(TH, 360)))*TAS)-(COS(RADIANS(MOD(TC, 360)))*GS))<0, 180, 0), 360), 0)
    Breaking down this formula, we are getting the arctangent([Horizontal Value Difference] / [Vertical Value Difference]) and then checking the sign of the [Vertical Value Difference] and adding 180 if it is negative.
     
    To simplify the calculations into manageable chunks, open up excel and copy these into a cell.  When you copy the formula change the name of the cell to what it equals or change to the appropriate cell (A1)
     
    GSH = SIN(RADIANS(MOD(TC, 360)))*GS ‘Horizontal Portion of GS Vector
    GSV = COS(RADIANS(MOD(TC, 360)))*GS ‘Vertical Portion of GS Vector
    TASH = SIN(RADIANS(MOD(TH, 360)))*TAS ‘Horizontal Portion of TAS Vector
    TASV = COS(RADIANS(MOD(TH, 360)))*TAS ‘Vertical Portion of TAS Vector
    DeltaH = TASH-GSH  ‘Horizontal Vector Difference
    DeltaV = TASV-GSV ‘Vertical Vector Difference
    WS = ROUND(SQRT(DeltaH^2 +DeltaV^2), 0) ‘Pythagoream Theorem rounded
    WD = ROUND(MOD(DEGREES(ATAN(DeltaH/DeltaV))+IF(DeltaV<0, 180, 0), 360), 0) ‘arc tangent plus check for Vertical Vector Difference sign

    +8 Votes Thumb up 8 Votes Thumb down 0 Votes


The following terms have been auto-detected the question above and any answers or discussion provided. Click on a term to see its definition from the Dauntless Aviation JargonBuster Glossary.

Answer Question

Our sincere thanks to all who contribute constructively to this forum in answering flight training questions. If you are a flight instructor or represent a flight school / FBO offering flight instruction, you are welcome to include links to your site and related contact information as it pertains to offering local flight instruction in a specific geographic area. Additionally, direct links to FAA and related official government sources of information are welcome. However we thank you for your understanding that links to other sites or text that may be construed as explicit or implicit advertising of other business, sites, or goods/services are not permitted even if such links nominally are relevant to the question asked.