필터 지우기
필터 지우기

kinetic energy of the wind (u and v vectors)

조회 수: 7 (최근 30일)
Pablo Estuardo
Pablo Estuardo 2020년 2월 18일
답변: Star Strider 2020년 2월 18일
Dear all, can someone knows how to calculate the kinetic energy of the wind (u and v component)
Thanks for your time and help.
  댓글 수: 3
Pablo Estuardo
Pablo Estuardo 2020년 2월 18일
Hello darova, thanks for your reply... I just found this equation for the kinetic energy of the surface current of the ocean. I wasn't sure if i can use the same equation with the wind,
I also found this equation (bit I dont have the wind temperature for density calculatios, and mass)=
  • Kinetic Energy of wind is: 1/2 * mass * velocity * velocity
Thanks
I'm thinking in maybe daily averae of the wind and download temperature from datellite data or reanalysis
darova
darova 2020년 2월 18일
What data do you have?

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

채택된 답변

Star Strider
Star Strider 2020년 2월 18일
Apparently, ‘h’, ‘u’, and ‘v’ are vectors of the same dimensions.
One approach is to code the function as an anonymous function:
Emdk = @(h,u,v,rho,g) h(:).*rho.*g.*hypot(u(:),v(:))/2;
then call it as:
KEwind = Emdk(h,u,v,rho,g);
The hypot function makes this easier.
See the documentation on Anonymous Functions for details.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Weather and Atmospheric Science에 대해 자세히 알아보기

태그

제품


릴리스

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by