71 integer,
intent(in) :: localpet, npets
73 character(len=500) :: the_file
75 integer :: error, id_dim, id_tiles, ncid
76 integer :: id_grid_tiles, ierr
77 integer :: extra, rc, tile
78 integer,
allocatable :: decomptile(:,:)
80 integer(esmf_kind_i4),
allocatable :: mask_mdl_one_tile(:,:)
81 integer(esmf_kind_i4),
pointer :: mask_field_mdl_ptr(:,:)
82 integer(esmf_kind_i4),
pointer :: mask_mdl_ptr(:,:)
84 real(esmf_kind_r4),
allocatable :: latitude_one_tile(:,:)
85 real(esmf_kind_r4),
allocatable :: longitude_one_tile(:,:)
86 real(esmf_kind_r4),
allocatable :: land_frac_one_tile(:,:)
94 call netcdf_err(error,
"OPENING MODEL GRID MOSAIC FILE")
96 print*,
"- READ NUMBER OF TILES" 97 error=nf90_inq_dimid(ncid,
'ntiles', id_tiles)
99 error=nf90_inquire_dimension(ncid,id_tiles,len=
num_tiles)
101 error=nf90_inq_varid(ncid,
'gridtiles', id_grid_tiles)
102 call netcdf_err(error,
"READING GRIDTILES ID")
105 print*,
"- READ TILE NAMES" 106 error=nf90_get_var(ncid, id_grid_tiles,
grid_tiles)
109 error = nf90_close(ncid)
111 print*,
'- NUMBER OF TILES, MODEL GRID IS ',
num_tiles 114 print*,
'- FATAL ERROR: MUST RUN THIS PROGRAM WITH A TASK COUNT THAT' 115 print*,
'- IS A MULTIPLE OF THE NUMBER OF TILES.' 116 call mpi_abort(mpi_comm_world, 44, ierr)
126 print*,
'- OPEN FIRST MODEL GRID OROGRAPHY FILE: ',trim(the_file)
127 error=nf90_open(trim(the_file),nf90_nowrite,ncid)
128 call netcdf_err(error,
"OPENING MODEL GRID OROGRAPHY FILE")
129 print*,
"- READ GRID DIMENSIONS" 130 error=nf90_inq_dimid(ncid,
'lon', id_dim)
131 call netcdf_err(error,
"READING MODEL LON ID")
132 error=nf90_inquire_dimension(ncid,id_dim,len=
i_mdl)
134 error=nf90_inq_dimid(ncid,
'lat', id_dim)
135 call netcdf_err(error,
"READING MODEL LAT ID")
136 error=nf90_inquire_dimension(ncid,id_dim,len=
j_mdl)
138 error = nf90_close(ncid)
140 print*,
"- I/J DIMENSIONS OF THE MODEL GRID TILES ",
i_mdl,
j_mdl 153 decomptile(:,tile)=(/1,extra/)
156 print*,
"- CALL GridCreateMosaic FOR MODEL GRID" 158 regdecompptile=decomptile, &
159 staggerloclist=(/esmf_staggerloc_center, &
160 esmf_staggerloc_corner/), &
161 indexflag=esmf_index_global, &
164 if(esmf_logfounderror(rctocheck=rc,msg=esmf_logerr_passthru,line=__line__,file=__file__)) &
167 print*,
"- CALL FieldCreate FOR DATA INTERPOLATED TO MODEL GRID." 169 typekind=esmf_typekind_r4, &
170 staggerloc=esmf_staggerloc_center, &
171 name=
"data on model grid", &
173 if(esmf_logfounderror(rctocheck=rc,msg=esmf_logerr_passthru,line=__line__,file=__file__)) &
177 print*,
"- CALL FieldCreate FOR VEGETATION TYPE INTERPOLATED TO MODEL GRID." 179 typekind=esmf_typekind_r4, &
180 staggerloc=esmf_staggerloc_center, &
181 name=
"veg type on model grid", &
183 if(esmf_logfounderror(rctocheck=rc,msg=esmf_logerr_passthru,line=__line__,file=__file__)) &
187 print*,
"- CALL FieldCreate FOR MODEL GRID LATITUDE." 189 typekind=esmf_typekind_r4, &
190 staggerloc=esmf_staggerloc_center, &
191 name=
"latitude on model grid", &
193 if(esmf_logfounderror(rctocheck=rc,msg=esmf_logerr_passthru,line=__line__,file=__file__)) &
196 print*,
"- CALL FieldCreate FOR MODEL GRID LONGITUDE." 198 typekind=esmf_typekind_r4, &
199 staggerloc=esmf_staggerloc_center, &
200 name=
"longitude on model grid", &
202 if(esmf_logfounderror(rctocheck=rc,msg=esmf_logerr_passthru,line=__line__,file=__file__)) &
209 print*,
"- CALL FieldCreate FOR MODEL GRID LANDMASK." 211 typekind=esmf_typekind_i4, &
212 staggerloc=esmf_staggerloc_center, &
213 name=
"model grid land mask", &
215 if(esmf_logfounderror(rctocheck=rc,msg=esmf_logerr_passthru,line=__line__,file=__file__)) &
218 print*,
"- CALL FieldGet FOR MODEL GRID LANDMASK." 219 nullify(mask_field_mdl_ptr)
221 farrayptr=mask_field_mdl_ptr, &
223 if(esmf_logfounderror(rctocheck=rc,msg=esmf_logerr_passthru,line=__line__,file=__file__)) &
226 print*,
"- CALL FieldCreate FOR MODEL GRID LAND FRACTION." 228 typekind=esmf_typekind_r4, &
229 staggerloc=esmf_staggerloc_center, &
230 name=
"model grid land fraction", &
232 if(esmf_logfounderror(rctocheck=rc,msg=esmf_logerr_passthru,line=__line__,file=__file__)) &
235 if (localpet == 0)
then 241 allocate(mask_mdl_one_tile(0,0))
242 allocate(land_frac_one_tile(0,0))
243 allocate(latitude_one_tile(0,0))
244 allocate(longitude_one_tile(0,0))
248 if (localpet == 0)
then 250 call get_model_info(trim(the_file), mask_mdl_one_tile, land_frac_one_tile, &
251 latitude_one_tile, longitude_one_tile,
i_mdl,
j_mdl)
254 print*,
"- CALL FieldScatter FOR MODEL GRID MASK. TILE IS: ", tile
255 call esmf_fieldscatter(
mask_field_mdl, mask_mdl_one_tile, rootpet=0, tile=tile, rc=rc)
256 if(esmf_logfounderror(rctocheck=rc,msg=esmf_logerr_passthru,line=__line__,file=__file__)) &
259 print*,
"- CALL FieldScatter FOR MODEL GRID LAND FRACTION. TILE IS: ", tile
260 call esmf_fieldscatter(
land_frac_field_mdl, land_frac_one_tile, rootpet=0, tile=tile, rc=rc)
261 if(esmf_logfounderror(rctocheck=rc,msg=esmf_logerr_passthru,line=__line__,file=__file__)) &
264 print*,
"- CALL FieldScatter FOR MODEL LATITUDE. TILE IS: ", tile
265 call esmf_fieldscatter(
latitude_field_mdl, latitude_one_tile, rootpet=0, tile=tile, rc=rc)
266 if(esmf_logfounderror(rctocheck=rc,msg=esmf_logerr_passthru,line=__line__,file=__file__)) &
269 print*,
"- CALL FieldScatter FOR MODEL LONGITUDE. TILE IS: ", tile
270 call esmf_fieldscatter(
longitude_field_mdl, longitude_one_tile, rootpet=0, tile=tile, rc=rc)
271 if(esmf_logfounderror(rctocheck=rc,msg=esmf_logerr_passthru,line=__line__,file=__file__)) &
276 deallocate(mask_mdl_one_tile, latitude_one_tile, longitude_one_tile, land_frac_one_tile)
278 print*,
"- CALL GridAddItem FOR MODEL GRID." 280 itemflag=esmf_griditem_mask, &
281 staggerloc=esmf_staggerloc_center, &
283 if(esmf_logfounderror(rctocheck=rc,msg=esmf_logerr_passthru,line=__line__,file=__file__)) &
286 print*,
"- CALL GridGetItem FOR MODEL GRID." 287 nullify(mask_mdl_ptr)
289 itemflag=esmf_griditem_mask, &
290 farrayptr=mask_mdl_ptr, &
292 if(esmf_logfounderror(rctocheck=rc,msg=esmf_logerr_passthru,line=__line__,file=__file__)) &
295 mask_mdl_ptr = mask_field_mdl_ptr
311 subroutine get_model_info(orog_file, mask, land_frac, lat2d, lon2d, idim, jdim)
319 character(len=*),
intent(in) :: orog_file
321 integer,
intent(in) :: idim, jdim
322 integer(esmf_kind_i4),
intent(out) :: mask(idim,jdim)
324 real(esmf_kind_r4),
intent(out) :: lat2d(idim,jdim)
325 real(esmf_kind_r4),
intent(out) :: lon2d(idim,jdim)
326 real(esmf_kind_r4),
intent(out) :: land_frac(idim,jdim)
328 integer :: error, lat, lon, i, j
329 integer :: ncid, id_dim, id_var
331 real(kind=4),
allocatable :: dummy(:,:)
333 print*,
"- READ MODEL OROGRAPHY FILE" 335 print*,
'- OPEN FILE: ', orog_file
336 error=nf90_open(orog_file,nf90_nowrite,ncid)
337 call netcdf_err(error,
"OPENING MODEL OROGRAPHY FILE")
339 print*,
"- READ I-DIMENSION" 340 error=nf90_inq_dimid(ncid,
'lon', id_dim)
342 error=nf90_inquire_dimension(ncid,id_dim,len=lon)
345 print*,
"- READ J-DIMENSION" 346 error=nf90_inq_dimid(ncid,
'lat', id_dim)
348 error=nf90_inquire_dimension(ncid,id_dim,len=lat)
351 print*,
"- I/J DIMENSIONS: ", lon, lat
353 if ((lon /= idim) .or. (lat /= jdim))
then 357 allocate(dummy(idim,jdim))
383 print*,
"- READ LAND FRACTION" 384 error=nf90_inq_varid(ncid,
'land_frac', id_var)
385 call netcdf_err(error,
"READING LAND_FRAC ID")
386 error=nf90_get_var(ncid, id_var, land_frac)
391 if (land_frac(i,j) > 0.0)
then 398 print*,
"- READ LATITUDE" 399 error=nf90_inq_varid(ncid,
'geolat', id_var)
401 error=nf90_get_var(ncid, id_var, dummy)
405 print*,
"- READ LONGITUDE" 406 error=nf90_inq_varid(ncid,
'geolon', id_var)
408 error=nf90_get_var(ncid, id_var, dummy)
412 error = nf90_close(ncid)
429 print*,
"- CALL GridDestroy FOR MODEL GRID." 430 call esmf_griddestroy(
grid_mdl,rc=rc)
432 print*,
"- CALL FieldDestroy FOR MODEL GRID LAND MASK." 435 print*,
"- CALL FieldDestroy FOR MODEL GRID LAND FRACTION." 438 print*,
"- CALL FieldDestroy FOR MODEL GRID DATA FIELD." 442 print*,
"- CALL FieldDestroy FOR MODEL GRID VEGETATION TYPE." 446 print*,
"- CALL FieldDestroy FOR MODEL GRID LATITUDE." 449 print*,
"- CALL FieldDestroy FOR MODEL GRID LONGITUDE." Set up program execution.
type(esmf_field), public vegt_field_mdl
ESMF field object that holds the vegetation type on the model grid.
subroutine, public model_grid_cleanup
Model grid cleanup.
character(len=500), dimension(6), public orog_files_mdl
Model grid orography filenames.
character(len=5), dimension(:), allocatable, public grid_tiles
Array of model grid tile names.
subroutine, public define_model_grid(localpet, npets)
Define model grid.
real(kind=4), public missing
Value assigned to undefined points (i.e., ocean points for a land field).
type(esmf_field), public longitude_field_mdl
ESMF field object that holds the model grid longitude.
logical, public fract_vegsoil_type
When true, output the percentage of each soil and vegetation type category, and the dominant category...
This module defines the model grid.
integer, public j_mdl
j dimension of model tile.
subroutine get_model_info(orog_file, mask, land_frac, lat2d, lon2d, idim, jdim)
Get model information.
type(esmf_field), public latitude_field_mdl
ESMF field object that holds the model grid latitude.
integer, public i_mdl
i dimension of model tile.
type(esmf_field), public mask_field_mdl
ESMF field object that holds the model land mask.
type(esmf_field), public data_field_mdl
ESMF field object that holds the data interpolated to model grid.
integer, public num_tiles
Total number of model grid tiles.
type(esmf_grid), public grid_mdl
ESMF grid object for the model grid.
subroutine, public error_handler(string, rc)
Handle errors.
integer, public ij_mdl
Total number of points on a model tile.
subroutine, public netcdf_err(err, string)
Handle netCDF error codes.
character(len=500), public orog_dir_mdl
Directory containing the model grid orography files.
character(len=500), public mosaic_file_mdl
Model grid mosaic file.
type(esmf_field), public land_frac_field_mdl
ESMF field object that holds the model land fraction.