! ! Definitions of grid parameters for pre-processor. ! See params.F. ! !------------------------------------ ! 5.0 degree horizontal: ! ! Latitude dimension: #define NLAT (36) #define GLAT1 (-87.5) #define DLAT (5.) ! ! Longitude dimension: #define NLON (72) #define GLON1 (-180.) #define DLON (5.) ! !------------------------------------ ! 2.5 degree horizontal: ! ! Latitude dimension: !#define NLAT (72) !#define GLAT1 (-88.75) !#define DLAT (2.5) ! ! Longitude dimension: !#define NLON (144) !#define GLON1 (-180.) !#define DLON (2.5) ! !------------------------------------ ! Vertical column dimension at midpoints and interfaces: ! There are 2 supported vertical resolutions: dz=0.5 and dz=0.25 ! ! Interface levels: ! ZIBOT ZITOP DZ NLEV ! -17 5 0.5 44 "normal resolution" 2 grid points per scale height ! -17 5 0.25 88 "double resolution" 4 grid points per scale height ! ! Midpoint levels: ! ZMBOT ZMTOP DZ NLEV ! -16.75 5.25 0.5 44 "normal resolution" 2 grid points per scale height ! -16.75 5.25 0.25 88 "double resolution" 4 grid points per scale height ! ! Vertical column -17 to +5 by 0.50 ("normal" vertical resolution) #define NLEV (44) #define ZITOP ( 5.) #define ZIBOT (-17.) #define ZMTOP ( 5.25) #define ZMBOT (-16.75)