kinetic energy of the wind (u and v vectors)
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Pablo Estuardo
il 18 Feb 2020
Risposto: Star Strider
il 18 Feb 2020
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 Commenti
Risposta accettata
Star Strider
il 18 Feb 2020
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);
0 Commenti
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
