필터 지우기
필터 지우기

True heading and Wind direction

조회 수: 23 (최근 30일)
yashvin
yashvin 2015년 7월 20일
댓글: yashvin 2015년 9월 15일
Hello,
Given I have wind value, wind direction and true direction
May i know if in matlab, we have a function which resolves the wind into components parallel and perpendicular to my true direction?
In the end, I want to know if we have headwind or tailwind component?
Thanks

채택된 답변

Star Strider
Star Strider 2015년 7월 20일
There isn’t one specifically, but you can create one easily enough:
windhx = @(C,W,S) S*[sind(abs(C-W)); cosd(abs(C-W))]; % [Crosswind; Headwind] = windhx(Course, WindDirection, WindSpeed)
This takes aircraft course ‘C’ (the direction of intended flight), wind direction ‘W’, both in degrees, and windspeed ‘S’, in whatever units you want (usually knots). It produces a (2x1) vector of crosswind component in the first row, and headwind component in the second row. Negative values indicate a Left crosswind and a Tailwind, respectively.
See the Wikipedia article on Tailwind for more information.
  댓글 수: 41
Star Strider
Star Strider 2015년 8월 31일
Be sure to put MATLAB-Yashvin as the first words in the ‘Subject’ line so I won’t miss it.
yashvin
yashvin 2015년 9월 15일
Hi Yea,
I mailed you.Please confirm.
thanks
yashvin

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Aerospace Applications에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by