1 subroutine da_transform_xtospeed(Speed,U,V)
3 !----------------------------------------------------------------------------
4 ! Purpose: Convert (U-V in m/s) components into wind speed (Speed in m/s)
5 !----------------------------------------------------------------------------
9 real, intent (out) :: Speed
10 real, intent (in) :: U, V
12 if (trace_use) call da_trace_entry("da_transform_xtospeed")
14 Speed = sqrt(U*U + V*V)
16 if (trace_use) call da_trace_exit("da_transform_xtospeed")
18 end subroutine da_transform_xtospeed