merge standard release WRF/WPS V3.0.1.1 into wrffire
[wrffire.git] / WPS / ungrib / src / module_datarray.F
blob6bb17aea7226696278ac3f9f25ed571b234f2ef8
1 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
2 ! MODULE DATARRAY
4 ! Purpose: To make allocatable arrays available to subroutines.
6 ! Why? -- We do this so that an array can be allocated within a subroutine,
7 !         and the caller can make use of the array afterward. 
8 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
9 module datarray
11    real, allocatable, dimension(:) :: rdatarray
13 end module datarray