calculate wind speed in m/s according to
subroutine update_wind() !! calculate wind speed in m/s according to !! $$w = w_{UVic}/100$$ ! the wind speed in m/s - iws, iaws integer i,j ! local loop counters if (model%variable_needs_values(id_windspeed)) then do j=2,jmt-1 do i=2,imt-1 if (kmt(i,j) > 0) windspeed(i,j) = & sbc(i,j,iws)/100._rke end do end do end if end subroutine update_wind