! ! 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 7 0.5 48 "normal resolution" 2 grid points per scale height ! -17 7 0.25 96 "double resolution" 4 grid points per scale height ! ! Midpoint levels: ! ZMBOT ZMTOP DZ NLEV ! -16.750 7.250 0.5 48 "normal resolution" 2 grid points per scale height ! -16.875 7.125 0.25 96 "double resolution" 4 grid points per scale height ! ! Vertical column -17 to +7 by 0.50 ("normal" vertical resolution) #define NLEV (48) #define ZITOP ( 7.) #define ZIBOT (-17.) #define ZMTOP ( 7.25) #define ZMBOT (-16.75) ! ! Vertical column -17 to +7 by 0.25 ("double" vertical resolution) !#define NLEV (96) !#define ZITOP ( 7.) !#define ZIBOT (-17.) !#define ZMTOP ( 7.125) !#define ZMBOT (-16.875)