1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
subroutine vtransform(vint,dydt)
***********************************************************************
* *
* TRAJECTORY MODEL SUBROUTINE VTRANSFORM *
* *
***********************************************************************
* *
* AUTHOR: G. WOTAWA *
* DATE: 1994-02-14 *
* LAST UPDATE: 1996-03-21 *
* Runtime optimization *
* *
***********************************************************************
* *
* DESCRIPTION: This subroutine transforms the interpolated meridional *
* wind <vint> [m/s] to <dydt> [grid units/time unit] *
* ythelp help variable computed in readgrid *
* *
***********************************************************************
* *
* INPUT: *
* *
* vint interpolated meridional wind component [m/s] *
* *
***********************************************************************
* *
* OUTPUT: *
* *
* dydt total differential in y direction [grid units/time unit] *
* *
***********************************************************************
*
include 'includepar'
include 'includecom'
real vint,dydt
dydt=vint*ythelp
return
end
|