kinetic energy of the wind (u and v vectors)
3 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
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);