24use platform_mod,
only: r4_kind, r8_kind, fms_path_len, fms_file_len
26use constants_mod,
only: deg_to_rad
28use mpp_mod,
only : input_nml_file
36 set_override_region, &
38 no_region, inside_region, outside_region, &
40use fms_mod,
only: write_version_number, lowercase, check_nml_error
45use time_manager_mod,
only:
time_type,
OPERATOR(>),
OPERATOR(<)
48 get_mosaic_tile_file, file_exists, get_instance_filename
50use fms_string_utils_mod,
only:
string
56#include<file_version.h>
61 character(len=3) :: gridname
62 character(len=128) :: fieldname_code
63 character(len=128) :: fieldname_file
64 character(len=FMS_PATH_LEN) :: file_name
65 character(len=128) :: interpol_method
66 logical :: ext_weights
67 character(len=128) :: ext_weights_file_name
68 character(len=128) :: ext_weights_source
69 real(FMS_DATA_OVERRIDE_KIND_) :: factor
70 real(FMS_DATA_OVERRIDE_KIND_) :: lon_start, lon_end, lat_start, lat_end
71 integer :: region_type
72 logical :: multifile = .false.
73 character(len=FMS_PATH_LEN) :: prev_file_name
74 character(len=FMS_PATH_LEN) :: next_file_name
75 type(time_type),
dimension(:),
allocatable :: time_records
76 type(time_type),
dimension(:),
allocatable :: time_prev_records
77 type(time_type),
dimension(:),
allocatable :: time_next_records
83 character(len=3) :: gridname
84 character(len=128) :: fieldname
88 type(horiz_interp_type),
allocatable :: horz_interp(:)
90 integer :: comp_domain(4)
92 real(FMS_DATA_OVERRIDE_KIND_),
allocatable :: lon_in(:)
93 real(FMS_DATA_OVERRIDE_KIND_),
allocatable :: lat_in(:)
94 logical,
allocatable :: need_compute(:)
96 integer :: window_size(2)
97 integer :: is_src, ie_src, js_src, je_src
104type fmsexternalweights_type
105 character(len=:),
allocatable :: weight_filename
106 type(horiz_interp_type) :: horiz_interp
107end type fmsexternalweights_type
109integer,
parameter :: lkind = fms_data_override_kind_
110integer,
parameter :: max_table=100, max_array=100
113integer :: nweight_files
114type(fmsExternalWeights_type),
allocatable,
target :: external_weights(:)
115logical :: module_is_initialized = .false.
117type(domain2D) :: ocn_domain,atm_domain,lnd_domain, ice_domain
118type(domainUG) :: lnd_domainUG
120real(FMS_DATA_OVERRIDE_KIND_),
dimension(:,:),
target,
allocatable :: lon_local_ocn, lat_local_ocn
121real(FMS_DATA_OVERRIDE_KIND_),
dimension(:,:),
target,
allocatable :: lon_local_atm, lat_local_atm
122real(FMS_DATA_OVERRIDE_KIND_),
dimension(:,:),
target,
allocatable :: lon_local_ice, lat_local_ice
123real(FMS_DATA_OVERRIDE_KIND_),
dimension(:,:),
target,
allocatable :: lon_local_lnd, lat_local_lnd
124real(FMS_DATA_OVERRIDE_KIND_) :: min_glo_lon_ocn, max_glo_lon_ocn
125real(FMS_DATA_OVERRIDE_KIND_) :: min_glo_lon_atm, max_glo_lon_atm
126real(FMS_DATA_OVERRIDE_KIND_) :: min_glo_lon_lnd, max_glo_lon_lnd
127real(FMS_DATA_OVERRIDE_KIND_) :: min_glo_lon_ice, max_glo_lon_ice
128integer :: num_fields = 0
130type(data_type),
dimension(:),
allocatable :: data_table
132type(data_type) :: default_table
133type(override_type),
dimension(max_array) :: override_array
134type(override_type) :: default_array
135logical :: debug_data_override
136logical :: grid_center_bug = .false.
137logical :: reproduce_null_char_bug = .false.
141logical :: use_center_grid_points=.false.
146logical :: use_data_table_yaml = .false.
148namelist /data_override_nml/ debug_data_override, grid_center_bug, reproduce_null_char_bug, use_data_table_yaml, &
149 use_center_grid_points
151public :: data_override_init_impl_, data_override_unset_atm_, data_override_unset_ocn_, &
152 & data_override_unset_lnd_, data_override_unset_ice_, data_override_0d_, &
153 & data_override_2d_, data_override_3d_, data_override_ug_1d_, &
154 & data_override_ug_2d_
168subroutine data_override_init_impl_(Atm_domain_in, Ocean_domain_in, Ice_domain_in, Land_domain_in, Land_domainUG_in)
169 type (domain2d),
intent(in),
optional :: Atm_domain_in
170 type (domain2d),
intent(in),
optional :: Ocean_domain_in
171 type (domain2d),
intent(in),
optional :: Ice_domain_in
172 type (domain2d),
intent(in),
optional :: Land_domain_in
173 type(domainUG) ,
intent(in),
optional :: Land_domainUG_in
175 character(len=18),
parameter :: grid_file =
'INPUT/grid_spec.nc'
176 integer :: is,ie,js,je,use_get_grid_version
177 integer :: i, iunit, io_status, ierr
178 logical :: atm_on, ocn_on, lnd_on, ice_on, lndUG_on
180 type(FmsNetcdfFile_t) :: fileobj
182 debug_data_override = .false.
184 read (input_nml_file, data_override_nml, iostat=io_status)
185 ierr = check_nml_error(io_status,
'data_override_nml')
187 write(iunit, data_override_nml)
190if (grid_center_bug)
then
191 call mpp_error(fatal,
"data_override_init: You have overridden the default value of " // &
192 "grid_center_bug and set it to .true. in data_override_nml. This was a temporary workaround " // &
193 "that is no longer supported. Please remove this namelist variable.")
196if (use_data_table_yaml)
then
197 call mpp_error(note,
"You are using YAML.")
199 call mpp_error(note,
"You are using the legacy table.")
202 atm_on =
PRESENT(atm_domain_in)
203 ocn_on =
PRESENT(ocean_domain_in)
204 lnd_on =
PRESENT(land_domain_in)
205 ice_on =
PRESENT(ice_domain_in)
206 lndug_on =
PRESENT(land_domainug_in)
207 if(.not. module_is_initialized)
then
208 atm_domain = null_domain2d
209 ocn_domain = null_domain2d
210 lnd_domain = null_domain2d
211 ice_domain = null_domain2d
212 lnd_domainug = null_domainug
214 if (atm_on) atm_domain = atm_domain_in
215 if (ocn_on) ocn_domain = ocean_domain_in
216 if (lnd_on) lnd_domain = land_domain_in
217 if (ice_on) ice_domain = ice_domain_in
218 if (lndug_on) lnd_domainug = land_domainug_in
220 if(.not. module_is_initialized)
then
222 call write_version_number(
"DATA_OVERRIDE_MOD", version)
225 default_table%gridname =
'non'
226 default_table%fieldname_code =
'none'
227 default_table%fieldname_file =
'none'
228 default_table%file_name =
'none'
229 default_table%factor = 1._lkind
230 default_table%interpol_method =
'bilinear'
231 default_table%multifile = .false.
232 default_table%prev_file_name =
''
233 default_table%next_file_name =
''
236 if (use_data_table_yaml)
then
237 if (file_exists(
"data_table")) &
238 call mpp_error(fatal,
"You cannot have the legacy data_table if use_data_table_yaml=.true.")
239 call read_table_yaml(data_table)
240 allocate(external_weights(table_size))
243 if (file_exists(
"data_table.yaml"))&
244 call mpp_error(fatal,
"You cannot have the yaml data_table if use_data_table_yaml=.false.")
245 allocate(data_table(max_table))
247 data_table(i) = default_table
249 call read_table(data_table)
252 if (file_exists(
"data_table.yaml"))&
253 call mpp_error(fatal,
"You cannot have the yaml data_table if use_data_table_yaml=.false.")
255 if (use_data_table_yaml)
then
256 call mpp_error(fatal,
"You cannot have use_data_table_yaml=.true. without compiling with -Duse_yaml")
259 allocate(data_table(max_table))
261 data_table(i) = default_table
263 call read_table(data_table)
268 default_array%gridname =
'NONE'
269 default_array%fieldname =
'NONE'
270 default_array%t_index = -1
271 default_array%dims = -1
272 default_array%comp_domain = -1
274 override_array(i) = default_array
279 module_is_initialized = .true.
281 if ( .NOT. (atm_on .or. ocn_on .or. lnd_on .or. ice_on .or. lndug_on))
return
282 if (table_size .eq. 0)
then
283 call mpp_error(note,
"data_table is empty, not doing any data_overrides")
289 inquire (file=trim(grid_file), opened=file_open)
290 if(file_open)
call mpp_error(fatal, trim(grid_file)//
' already opened')
292 if(.not.
open_file(fileobj, grid_file,
'read' ))
then
293 call mpp_error(fatal,
'data_override_mod: Error in opening file '//trim(grid_file))
296 if(variable_exists(fileobj,
"x_T" ) .OR. variable_exists(fileobj,
"geolon_t" ) )
then
297 use_get_grid_version = 1
299 else if(variable_exists(fileobj,
"ocn_mosaic_file" ) .OR. variable_exists(fileobj,
"gridfiles" ) )
then
300 use_get_grid_version = 2
301 if(variable_exists(fileobj,
"gridfiles" ) )
then
302 if(count_ne_1((ocn_on .OR. ice_on), lnd_on, atm_on))
call mpp_error(fatal,
'data_override_mod: the grid file ' //&
303 'is a solo mosaic, one and only one of atm_on, lnd_on or ice_on/ocn_on should be true')
306 call mpp_error(fatal,
'data_override_mod: none of x_T, geolon_t, ocn_mosaic_file or gridfiles exist in '// &
310 if(use_get_grid_version .EQ. 1)
then
311 if (atm_on .and. .not.
allocated(lon_local_atm) )
then
313 allocate(lon_local_atm(is:ie,js:je), lat_local_atm(is:ie,js:je))
314 call get_grid_version_1(grid_file,
'atm', atm_domain, is, ie, js, je, lon_local_atm, lat_local_atm, &
315 min_glo_lon_atm, max_glo_lon_atm )
317 if (ocn_on .and. .not.
allocated(lon_local_ocn) )
then
319 allocate(lon_local_ocn(is:ie,js:je), lat_local_ocn(is:ie,js:je))
320 call get_grid_version_1(grid_file,
'ocn', ocn_domain, is, ie, js, je, lon_local_ocn, lat_local_ocn, &
321 min_glo_lon_ocn, max_glo_lon_ocn )
324 if (lnd_on .and. .not.
allocated(lon_local_lnd) )
then
326 allocate(lon_local_lnd(is:ie,js:je), lat_local_lnd(is:ie,js:je))
327 call get_grid_version_1(grid_file,
'lnd', lnd_domain, is, ie, js, je, lon_local_lnd, lat_local_lnd, &
328 min_glo_lon_lnd, max_glo_lon_lnd )
331 if (ice_on .and. .not.
allocated(lon_local_ice) )
then
333 allocate(lon_local_ice(is:ie,js:je), lat_local_ice(is:ie,js:je))
334 call get_grid_version_1(grid_file,
'ice', ice_domain, is, ie, js, je, lon_local_ice, lat_local_ice, &
335 min_glo_lon_ice, max_glo_lon_ice )
338 if (atm_on .and. .not.
allocated(lon_local_atm) )
then
340 allocate(lon_local_atm(is:ie,js:je), lat_local_atm(is:ie,js:je))
341 call get_grid_version_2(fileobj,
'atm', atm_domain, is, ie, js, je, lon_local_atm, lat_local_atm, &
342 min_glo_lon_atm, max_glo_lon_atm )
345 if (ocn_on .and. .not.
allocated(lon_local_ocn) )
then
347 allocate(lon_local_ocn(is:ie,js:je), lat_local_ocn(is:ie,js:je))
348 call get_grid_version_2(fileobj,
'ocn', ocn_domain, is, ie, js, je, lon_local_ocn, lat_local_ocn, &
349 min_glo_lon_ocn, max_glo_lon_ocn, use_center_grid_points)
352 if (lnd_on .and. .not.
allocated(lon_local_lnd) )
then
354 allocate(lon_local_lnd(is:ie,js:je), lat_local_lnd(is:ie,js:je))
355 call get_grid_version_2(fileobj,
'lnd', lnd_domain, is, ie, js, je, lon_local_lnd, lat_local_lnd, &
356 min_glo_lon_lnd, max_glo_lon_lnd )
359 if (ice_on .and. .not.
allocated(lon_local_ice) )
then
361 allocate(lon_local_ice(is:ie,js:je), lat_local_ice(is:ie,js:je))
362 call get_grid_version_2(fileobj,
'ocn', ice_domain, is, ie, js, je, lon_local_ice, lat_local_ice, &
363 min_glo_lon_ice, max_glo_lon_ice, use_center_grid_points )
366 if(use_get_grid_version .EQ. 2)
then
369end subroutine data_override_init_impl_
383function count_ne_1(in_1, in_2, in_3)
384 logical,
intent(in) :: in_1
385 logical,
intent(in) :: in_2
386 logical,
intent(in) :: in_3
387 logical :: count_ne_1
389 count_ne_1 = .not.(in_1.NEQV.in_2.NEQV.in_3) .OR. (in_1.AND.in_2.AND.in_3)
390end function count_ne_1
392subroutine read_table(data_table)
393 type(data_type),
dimension(max_table),
intent(inout) :: data_table
396 integer :: ntable_lima
397 integer :: ntable_new
401 integer :: index_1col, index_2col
402 character(len=256) :: record
403 type(data_type) :: data_entry
406 logical :: table_exists
407 character(len=128) :: region, region_type
412 inquire(file=
'data_table', exist=table_exists)
413 if (.not. table_exists)
then
414 call mpp_error(note,
'data_override_mod: File data_table does not exist.')
419 open(newunit=iunit, file=
'data_table', action=
'READ', iostat=io_status)
420 if(io_status/=0)
call mpp_error(fatal,
'data_override_mod: Error in opening file data_table.')
426 do while (ntable <= max_table)
427 read(iunit,
'(a)',
end=100) record
428 if (record(1:1) ==
'#') cycle
429 if (record(1:10) ==
' ') cycle
431 if(index(lowercase(record),
"inside_region") .ne. 0 .or. index(lowercase(record),
"outside_region") .ne. 0)
then
432 if(index(lowercase(record),
".false.") .ne. 0 .or. index(lowercase(record),
".true.") .ne. 0 )
then
433 ntable_lima = ntable_lima + 1
434 read(record,*,err=99) data_entry%gridname, data_entry%fieldname_code, data_entry%fieldname_file, &
435 data_entry%file_name, ongrid, data_entry%factor, region, region_type
437 data_entry%interpol_method =
'none'
439 data_entry%interpol_method =
'bilinear'
442 ntable_new=ntable_new+1
443 read(record,*,err=99) data_entry%gridname, data_entry%fieldname_code, data_entry%fieldname_file, &
444 data_entry%file_name, data_entry%interpol_method, data_entry%factor, region, &
447 if (index(data_entry%file_name,
":") .ne. 0)
then
448 data_entry%multifile = .true.
449 index_1col = index(data_entry%file_name,
":")
450 index_2col = index(data_entry%file_name(index_1col+1:),
":")
451 if (index_2col .eq. 0)
call mpp_error(fatal,
"data_override: when bridging over forcing files, " &
452 //
"central forcing files must be preceded AND followed by the column (:) separator")
453 data_entry%prev_file_name = data_entry%file_name(1:index_1col-1)
454 data_entry%next_file_name = data_entry%file_name(index_1col+index_2col+1:)
456 data_entry%file_name = data_entry%file_name(index_1col+1:index_1col+index_2col-1)
458 data_entry%multifile = .false.
459 data_entry%prev_file_name =
""
460 data_entry%next_file_name =
""
462 if (data_entry%interpol_method ==
'default')
then
463 data_entry%interpol_method = default_table%interpol_method
465 if (.not.(data_entry%interpol_method ==
'default' .or. &
466 data_entry%interpol_method ==
'bicubic' .or. &
467 data_entry%interpol_method ==
'bilinear' .or. &
468 data_entry%interpol_method ==
'none'))
then
470 write(sunit,*)
" gridname is ", trim(data_entry%gridname)
471 write(sunit,*)
" fieldname_code is ", trim(data_entry%fieldname_code)
472 write(sunit,*)
" fieldname_file is ", trim(data_entry%fieldname_file)
473 write(sunit,*)
" file_name is ", trim(data_entry%file_name)
474 write(sunit,*)
" factor is ", data_entry%factor
475 write(sunit,*)
" interpol_method is ", trim(data_entry%interpol_method)
476 call mpp_error(fatal,
'data_override_mod: invalid last entry in data_override_table, ' &
477 //
'its value should be "default", "bicubic", "bilinear" or "none" ')
480 if( trim(region_type) ==
"inside_region" )
then
481 data_entry%region_type = inside_region
482 else if( trim(region_type) ==
"outside_region" )
then
483 data_entry%region_type = outside_region
485 call mpp_error(fatal,
'data_override_mod: region type should be inside_region or outside_region')
487 if (data_entry%file_name ==
"")
call mpp_error(fatal, &
488 "data_override: filename not given in data_table when region_type is not NO_REGION")
489 if(data_entry%fieldname_file ==
"")
call mpp_error(fatal, &
490 "data_override: fieldname_file must be specified in data_table when region_type is not NO_REGION")
491 if( trim(data_entry%interpol_method) ==
'none')
call mpp_error(fatal, &
492 "data_override(data_override_init): ongrid must be false when region_type is not NO_REGION")
493 read(region,*) data_entry%lon_start, data_entry%lon_end, data_entry%lat_start, data_entry%lat_end
495 if(data_entry%lon_end .LE. data_entry%lon_start)
call mpp_error(fatal, &
496 "data_override: lon_end should be greater than lon_start")
497 if(data_entry%lat_end .LE. data_entry%lat_start)
call mpp_error(fatal, &
498 "data_override: lat_end should be greater than lat_start")
500 else if (index(lowercase(record),
".false.") .ne. 0 .or. index(lowercase(record),
".true.") .ne. 0 )
then
501 ntable_lima = ntable_lima + 1
502 read(record,*,err=99) data_entry%gridname, data_entry%fieldname_code, data_entry%fieldname_file, &
503 data_entry%file_name, ongrid, data_entry%factor
504 if (index(data_entry%file_name,
":") .ne. 0)
then
505 data_entry%multifile = .true.
506 index_1col = index(data_entry%file_name,
":")
507 index_2col = index(data_entry%file_name(index_1col+1:),
":")
508 if (index_2col .eq. 0)
call mpp_error(fatal,
"data_override: when bridging over forcing files, " &
509 //
"central forcing files must be preceded AND followed by the column (:) separator")
510 data_entry%prev_file_name = data_entry%file_name(1:index_1col-1)
511 data_entry%next_file_name = data_entry%file_name(index_1col+index_2col+1:)
513 data_entry%file_name = data_entry%file_name(index_1col+1:index_1col+index_2col-1)
515 data_entry%multifile = .false.
516 data_entry%prev_file_name =
""
517 data_entry%next_file_name =
""
520 data_entry%interpol_method =
'none'
522 data_entry%interpol_method =
'bilinear'
524 data_entry%lon_start = 0.0_lkind
525 data_entry%lon_end = -1.0_lkind
526 data_entry%lat_start = 0.0_lkind
527 data_entry%lat_end = -1.0_lkind
528 data_entry%region_type = no_region
530 ntable_new=ntable_new+1
531 read(record,*,err=99) data_entry%gridname, data_entry%fieldname_code, data_entry%fieldname_file, &
532 data_entry%file_name, data_entry%interpol_method, data_entry%factor
533 if (index(data_entry%file_name,
":") .ne. 0)
then
534 index_1col = index(data_entry%file_name,
":")
535 index_2col = index(data_entry%file_name(index_1col+1:),
":")
536 data_entry%multifile = .true.
537 if (index_2col .eq. 0)
call mpp_error(fatal,
"data_override: when bridging over forcing files, " &
538 //
"central forcing files must be preceded AND followed by the column (:) separator")
539 data_entry%prev_file_name = data_entry%file_name(1:index_1col-1)
540 data_entry%next_file_name = data_entry%file_name(index_1col+index_2col+1:)
542 data_entry%file_name = data_entry%file_name(index_1col+1:index_1col+index_2col-1)
544 data_entry%multifile = .false.
545 data_entry%prev_file_name =
""
546 data_entry%next_file_name =
""
548 if (data_entry%interpol_method ==
'default')
then
549 data_entry%interpol_method = default_table%interpol_method
551 if (.not.(data_entry%interpol_method ==
'default' .or. &
552 data_entry%interpol_method ==
'bicubic' .or. &
553 data_entry%interpol_method ==
'bilinear' .or. &
554 data_entry%interpol_method ==
'none'))
then
556 write(sunit,*)
" gridname is ", trim(data_entry%gridname)
557 write(sunit,*)
" fieldname_code is ", trim(data_entry%fieldname_code)
558 write(sunit,*)
" fieldname_file is ", trim(data_entry%fieldname_file)
559 write(sunit,*)
" file_name is ", trim(data_entry%file_name)
560 write(sunit,*)
" factor is ", data_entry%factor
561 write(sunit,*)
" interpol_method is ", trim(data_entry%interpol_method)
562 call mpp_error(fatal,
'data_override_mod: invalid last entry in data_override_table, ' &
563 //
'its value should be "default", "bicubic", "bilinear" or "none" ')
565 data_entry%lon_start = 0.0_lkind
566 data_entry%lon_end = -1.0_lkind
567 data_entry%lat_start = 0.0_lkind
568 data_entry%lat_end = -1.0_lkind
569 data_entry%region_type = no_region
571 data_entry%ext_weights = .false.
572 data_table(ntable) = data_entry
574 call mpp_error(fatal,
'too many enries in data_table')
57599
call mpp_error(fatal,
'error in data_table format')
578 if(ntable_new*ntable_lima /= 0)
call mpp_error(fatal, &
579 'data_override_mod: New and old formats together in same data_table not supported')
580 close(iunit, iostat=io_status)
581 if(io_status/=0)
call mpp_error(fatal,
'data_override_mod: Error in closing file data_table')
582end subroutine read_table
586subroutine read_table_yaml(data_table)
587 type(data_type),
dimension(:),
allocatable,
intent(out) :: data_table
589 integer,
allocatable :: entry_id(:)
590 integer :: sub_block_id(1), sub2_block_id(1)
591 integer :: nentries, mentries
593 character(len=50) :: buffer
594 character(len=FMS_FILE_LEN) :: filename
598 call get_instance_filename(
"data_table.yaml", filename)
599 if (index(trim(filename),
"ens_") .ne. 0)
then
600 if (file_exists(filename) .and. file_exists(
"data_table.yaml")) &
601 call mpp_error(fatal,
"Both data_table.yaml and "//trim(filename)//
" exists, pick one!")
605 if (.not. file_exists(filename)) filename =
"data_table.yaml"
610 if (file_id==999)
then
614 allocate(data_table(nentries))
615 allocate(entry_id(nentries))
621 call check_for_valid_gridname(data_table(i)%gridname)
622 call get_value_from_key(file_id, entry_id(i),
"fieldname_in_model", data_table(i)%fieldname_code)
624 mentries =
get_num_blocks(file_id,
"override_file", parent_block_id=entry_id(i))
625 data_table(i)%file_name =
""
626 data_table(i)%fieldname_file =
""
627 data_table(i)%interpol_method =
"none"
628 data_table(i)%multifile = .false.
629 data_table(i)%ext_weights = .false.
630 data_table(i)%region_type = no_region
631 data_table(i)%prev_file_name =
""
632 data_table(i)%next_file_name =
""
633 data_table(i)%ext_weights_file_name =
""
634 data_table(i)%ext_weights_source =
""
637 if (mentries .eq. 0) cycle
639 if(mentries.gt.1)
call mpp_error(fatal,
"Too many override_file blocks in data table. "//&
640 "Check your data_table.yaml entry for field:"//trim(data_table(i)%gridname)//
":"//&
641 trim(data_table(i)%fieldname_code))
642 call get_block_ids(file_id,
"override_file", sub_block_id, parent_block_id=entry_id(i))
644 call get_value_from_key(file_id, sub_block_id(1),
"file_name", data_table(i)%file_name)
645 call get_value_from_key(file_id, sub_block_id(1),
"fieldname_in_file", data_table(i)%fieldname_file)
646 call get_value_from_key(file_id, sub_block_id(1),
"interp_method", data_table(i)%interpol_method)
647 call check_interpol_method(data_table(i)%interpol_method, data_table(i)%file_name, &
648 & data_table(i)%fieldname_file)
650 mentries =
get_num_blocks(file_id,
"multi_file", parent_block_id=sub_block_id(1))
651 if(mentries.gt.1)
call mpp_error(fatal,
"Too many multi_file blocks in tata table. "//&
652 "Check your data_table.yaml entry for field:"//trim(data_table(i)%gridname)//
":"//&
653 trim(data_table(i)%fieldname_code))
655 if(mentries.gt.0) data_table(i)%multifile = .true.
657 if (data_table(i)%multifile)
then
658 call get_block_ids(file_id,
"multi_file", sub2_block_id, parent_block_id=sub_block_id(1))
659 call get_value_from_key(file_id, sub2_block_id(1),
"prev_file_name", data_table(i)%prev_file_name)
660 call get_value_from_key(file_id, sub2_block_id(1),
"next_file_name", data_table(i)%next_file_name)
661 if (trim(data_table(i)%prev_file_name) .eq.
"" .and. trim(data_table(i)%next_file_name) .eq.
"") &
662 call mpp_error(fatal,
"The prev_file_name and next_file_name must be present if is_multi_file. "//&
663 "Check your data_table.yaml entry for field:"//trim(data_table(i)%gridname)//
":"//&
664 trim(data_table(i)%fieldname_code))
667 mentries =
get_num_blocks(file_id,
"external_weights", parent_block_id=sub_block_id(1))
668 if(mentries.gt.1)
call mpp_error(fatal,
"Too many external_weight blocks in data table. "//&
669 "Check your data_table.yaml entry for field:"//trim(data_table(i)%gridname)//
":"//&
670 trim(data_table(i)%fieldname_code))
672 if(mentries.gt.0) data_table(i)%ext_weights = .true.
674 if (data_table(i)%ext_weights)
then
675 call get_block_ids(file_id,
"external_weights", sub2_block_id, parent_block_id=sub_block_id(1))
676 call get_value_from_key(file_id, sub2_block_id(1),
"file_name", data_table(i)%ext_weights_file_name)
677 call get_value_from_key(file_id, sub2_block_id(1),
"source", data_table(i)%ext_weights_source)
678 if (trim(data_table(i)%ext_weights_file_name) .eq.
"" .and. trim(data_table(i)%ext_weights_source) .eq.
"") &
679 call mpp_error(fatal,
"The file_name and source must be present when using external weights"//&
680 "Check your data_table.yaml entry for field:"//trim(data_table(i)%gridname)//
":"//&
681 trim(data_table(i)%fieldname_code))
684 mentries =
get_num_blocks(file_id,
"subregion", parent_block_id=entry_id(i))
685 if(mentries.gt.1)
call mpp_error(fatal,
"Too many subregion blocks in data table. "//&
686 "Check your data_table.yaml entry for field:"//trim(data_table(i)%gridname)//
":"//&
687 trim(data_table(i)%fieldname_code))
690 if(mentries.gt.0)
then
691 call get_block_ids(file_id,
"subregion", sub_block_id, parent_block_id=entry_id(i))
695 call check_and_set_region_type(buffer, data_table(i)%region_type)
696 if (data_table(i)%region_type .ne. no_region)
then
697 call get_value_from_key(file_id, sub_block_id(1),
"lon_start", data_table(i)%lon_start)
699 call get_value_from_key(file_id, sub_block_id(1),
"lat_start", data_table(i)%lat_start)
701 call check_valid_lat_lon(data_table(i)%lon_start, data_table(i)%lon_end, &
702 data_table(i)%lat_start, data_table(i)%lat_end)
707 table_size = nentries
708end subroutine read_table_yaml
711subroutine check_for_valid_gridname(gridname)
712 character(len=*),
intent(in) :: gridname
714 select case(trim(gridname))
715 case (
"OCN",
"ATM",
"LND",
"ICE")
717 call mpp_error(fatal, trim(gridname)//
" is not a valid gridname. "//&
718 "The acceptable values are OCN ATM LND and ICE. Check your data_table.yaml")
720end subroutine check_for_valid_gridname
723subroutine check_interpol_method(interp_method, filename, fieldname)
724 character(len=*),
intent(in) :: interp_method
725 character(len=*),
intent(in) :: filename
726 character(len=*),
intent(in) :: fieldname
728 select case(trim(interp_method))
729 case (
"bicubic",
"bilinear")
730 if (trim(filename) .eq.
"" .or. trim(fieldname) .eq.
"")
call mpp_error(fatal, &
731 "The file_name and the fieldname_file must be set if using the bicubic or bilinear interpolation method."//&
732 " Check your data_table.yaml")
734 if (trim(filename) .ne.
"" )
then
735 if (trim(fieldname) .eq.
"")
call mpp_error(fatal, &
736 "If the interpol_method is none and file_name is specified (ongrid case), "//&
737 "you must also specify the fieldname_file")
740 call mpp_error(fatal, trim(interp_method)//
" is not a valid interp method. "//&
741 "The acceptable values are bilinear and bicubic")
743end subroutine check_interpol_method
747subroutine check_and_set_region_type(region_type_str, region_type_int)
748 character(len=*),
intent(in) :: region_type_str
749 integer,
intent(out) :: region_type_int
751 select case(trim(region_type_str))
752 case (
"inside_region")
753 region_type_int = inside_region
754 case (
"outside_region")
755 region_type_int = outside_region
757 region_type_int = no_region
759 call mpp_error(fatal, trim(region_type_str)//
" is not a valid region type. "//&
760 "The acceptable values are inside_region and outside_regioon. Check your data_table.yaml")
762end subroutine check_and_set_region_type
766subroutine check_valid_lat_lon(lon_start, lon_end, lat_start, lat_end)
767 real(FMS_DATA_OVERRIDE_KIND_),
intent(in) :: lon_start
768 real(FMS_DATA_OVERRIDE_KIND_),
intent(in) :: lon_end
769 real(FMS_DATA_OVERRIDE_KIND_),
intent(in) :: lat_start
770 real(FMS_DATA_OVERRIDE_KIND_),
intent(in) :: lat_end
772 if (lon_start > lon_end)
call mpp_error(fatal, &
773 "lon_start:"//
string(lon_start)//
" is greater than lon_end"//
string(lon_end)//&
774 ". Check your data_table.yaml.")
776 if (lat_start > lat_end)
call mpp_error(fatal, &
777 "lat_start:"//
string(lat_start)//
" is greater than lat_end:"//
string(lat_end)//&
778 ". Check your data_table.yaml.")
779end subroutine check_valid_lat_lon
782subroutine data_override_unset_atm_
783 atm_domain = null_domain2d
784 if (
allocated(lon_local_atm))
deallocate(lon_local_atm)
785 if (
allocated(lat_local_atm))
deallocate(lat_local_atm)
788subroutine data_override_unset_ocn_
789 ocn_domain = null_domain2d
790 if (
allocated(lon_local_ocn))
deallocate(lon_local_ocn)
791 if (
allocated(lat_local_ocn))
deallocate(lat_local_ocn)
794subroutine data_override_unset_lnd_
795 lnd_domain = null_domain2d
796 if (
allocated(lon_local_lnd))
deallocate(lon_local_lnd)
797 if (
allocated(lat_local_lnd))
deallocate(lat_local_lnd)
800subroutine data_override_unset_ice_
801 ice_domain = null_domain2d
802 if (
allocated(lon_local_ice))
deallocate(lon_local_ice)
803 if (
allocated(lat_local_ice))
deallocate(lat_local_ice)
807subroutine get_domain(gridname, domain, comp_domain)
808 character(len=3),
intent(in) :: gridname
809 type(domain2D),
intent(inout) :: domain
810 integer,
intent(out),
optional :: comp_domain(4)
812 domain = null_domain2d
813 select case (gridname)
823 call mpp_error(fatal,
'error in data_override get_domain')
825 if(domain .EQ. null_domain2d)
call mpp_error(fatal,
'data_override: failure in get_domain')
826 if(
present(comp_domain)) &
828end subroutine get_domain
831subroutine get_domainug(gridname, UGdomain, comp_domain)
832 character(len=3),
intent(in) :: gridname
833 type(domainUG),
intent(inout) :: UGdomain
834 integer,
intent(out),
optional :: comp_domain(4)
835 type(domain2D),
pointer :: SGdomain => null()
837 ugdomain = null_domainug
838 select case (gridname)
840 ugdomain = lnd_domainug
842 call mpp_error(fatal,
'error in data_override get_domain')
845 if(
present(comp_domain)) &
846 call mpp_get_ug_sg_domain(ugdomain,sgdomain)
848end subroutine get_domainug
852subroutine data_override_0d_(gridname,fieldname_code,data_out,time,override,data_index)
853 character(len=3),
intent(in) :: gridname
854 character(len=*),
intent(in) :: fieldname_code
856 logical,
intent(out),
optional :: override
857 type(time_type),
intent(in) :: time
858 real(FMS_DATA_OVERRIDE_KIND_),
intent(out) :: data_out
859 integer,
intent(in),
optional :: data_index
861 type(time_type) :: first_record
862 type(time_type) :: last_record
863 character(len=FMS_PATH_LEN) :: filename
864 character(len=FMS_PATH_LEN) :: prevfilename
865 character(len=FMS_PATH_LEN) :: nextfilename
866 character(len=128) :: fieldname
869 integer :: prev_dims(4)
870 integer :: next_dims(4)
872 integer :: id_time_prev=-1
873 integer :: id_time_next=-1
874 integer :: curr_position
876 real(FMS_DATA_OVERRIDE_KIND_) :: factor
879 if(.not.module_is_initialized) &
880 call mpp_error(fatal,
'Error: need to call data_override_init first')
883 if(
PRESENT(override)) override = .false.
884 if (
present(data_index))
then
889 if( trim(gridname) /= trim(data_table(i)%gridname)) cycle
890 if( trim(fieldname_code) /= trim(data_table(i)%fieldname_code)) cycle
894 if(index1 .eq. -1)
then
895 if(debug_data_override) &
896 call mpp_error(warning,
'this field is NOT found in data_table: '//trim(fieldname_code))
901 fieldname = data_table(index1)%fieldname_file
902 factor = data_table(index1)%factor
903 multifile = data_table(index1)%multifile
905 if(fieldname ==
"")
then
907 if(
PRESENT(override)) override = .true.
910 filename = data_table(index1)%file_name
911 if (filename ==
"")
call mpp_error(fatal,
'data_override: filename not given in data_table')
912 if (multifile) prevfilename = data_table(index1)%prev_file_name
913 if (multifile) nextfilename = data_table(index1)%next_file_name
919 if(num_fields > 0 )
then
921 if(trim(override_array(i)%gridname) /= trim(gridname)) cycle
922 if(trim(override_array(i)%fieldname) /= trim(fieldname_code)) cycle
928 if(curr_position < 0)
then
929 num_fields = num_fields + 1
930 curr_position = num_fields
932 override_array(curr_position)%fieldname = fieldname_code
933 override_array(curr_position)%gridname = gridname
935 if(id_time<0)
call mpp_error(fatal,
'data_override:field not found in init_external_field 1')
936 override_array(curr_position)%t_index = id_time
939 id_time = override_array(curr_position)%t_index
945 if_multi1:
if (multifile)
then
947 if_prev1:
if (trim(prevfilename) /=
'')
then
952 if ((prev_dims(1) .ne. dims(1)) .or. (prev_dims(2) .ne. dims(2)) .or. &
953 (prev_dims(3) .ne. dims(3)))
then
954 call mpp_error(fatal,
'data_override: dimensions mismatch between consecutive forcing files')
956 allocate(data_table(index1)%time_prev_records(prev_dims(4)))
957 call get_time_axis(id_time_prev,data_table(index1)%time_prev_records)
960 if_next1:
if (trim(nextfilename) /=
'')
then
965 if ((next_dims(1) .ne. dims(1)) .or. (next_dims(2) .ne. dims(2)) .or. &
966 (next_dims(3) .ne. dims(3)))
then
967 call mpp_error(fatal,
'data_override: dimensions mismatch between consecutive forcing files')
969 allocate(data_table(index1)%time_next_records(next_dims(4)))
970 call get_time_axis(id_time_next,data_table(index1)%time_next_records)
980 if_multi2:
if (multifile)
then
982 if (.not.
allocated(data_table(index1)%time_records))
allocate(data_table(index1)%time_records(dims(4)))
985 first_record = data_table(index1)%time_records(1)
986 last_record = data_table(index1)%time_records(dims(4))
988 if_time2:
if (time<first_record)
then
989 if (id_time_prev<0)
call mpp_error(fatal,
'data_override:previous file needed with multifile')
991 if (time<data_table(index1)%time_prev_records(prev_dims(4)))
call mpp_error(fatal, &
992 'data_override: time_interp_external_bridge should only be called to bridge with previous file')
994 elseif (time>last_record)
then
995 if (id_time_next<0)
call mpp_error(fatal,
'data_override:next file needed with multifile')
996 if (time>data_table(index1)%time_next_records(1))
call mpp_error(fatal, &
997 'data_override: time_interp_external_bridge should only be called to bridge with next file')
1007 data_out = data_out*factor
1010 if(
PRESENT(override)) override = .true.
1012end subroutine data_override_0d_
1015subroutine data_override_2d_(gridname,fieldname,data_2D,time,override, is_in, ie_in, js_in, je_in)
1016 character(len=3),
intent(in) :: gridname
1017 character(len=*),
intent(in) :: fieldname
1018 logical,
intent(out),
optional :: override
1019 type(time_type),
intent(in) :: time
1020 real(FMS_DATA_OVERRIDE_KIND_),
dimension(:,:),
intent(inout) :: data_2D
1021 integer,
optional,
intent(in) :: is_in, ie_in, js_in, je_in
1022 real(FMS_DATA_OVERRIDE_KIND_),
dimension(:,:,:),
allocatable :: data_3D
1027 if(
PRESENT(override)) override = .false.
1029 do i = 1, table_size
1030 if( trim(gridname) /= trim(data_table(i)%gridname)) cycle
1031 if( trim(fieldname) /= trim(data_table(i)%fieldname_code)) cycle
1035 if(index1 .eq. -1)
return
1037 allocate(data_3d(
size(data_2d,1),
size(data_2d,2),1))
1038 data_3d(:,:,1) = data_2d
1039 call data_override_3d_(gridname,fieldname,data_3d,time,override,data_index=index1,&
1040 is_in=is_in,ie_in=ie_in,js_in=js_in,je_in=je_in)
1042 data_2d(:,:) = data_3d(:,:,1)
1044end subroutine data_override_2d_
1047subroutine data_override_3d_(gridname,fieldname_code,return_data,time,override,data_index, is_in, ie_in, js_in, je_in)
1048 character(len=3),
intent(in) :: gridname
1049 character(len=*),
intent(in) :: fieldname_code
1050 logical,
optional,
intent(out) :: override
1051 type(time_type),
intent(in) :: time
1052 integer,
optional,
intent(in) :: data_index
1053 real(FMS_DATA_OVERRIDE_KIND_),
dimension(:,:,:),
intent(inout) :: return_data
1054 integer,
optional,
intent(in) :: is_in, ie_in, js_in, je_in
1055 logical,
dimension(:,:,:),
allocatable :: mask_out
1057 character(len=FMS_PATH_LEN) :: filename
1058 character(len=FMS_PATH_LEN) :: filename2
1059 character(len=FMS_PATH_LEN) :: prevfilename
1060 character(len=FMS_PATH_LEN) :: prevfilename2
1061 character(len=FMS_PATH_LEN) :: nextfilename
1062 character(len=FMS_PATH_LEN) :: nextfilename2
1063 character(len=128) :: fieldname
1066 integer :: prev_dims(4)
1067 integer :: next_dims(4)
1070 integer :: id_time_prev=-1
1071 integer :: id_time_next=-1
1072 integer :: axis_sizes(4)
1073 character(len=32) :: axis_names(4)
1074 real(FMS_DATA_OVERRIDE_KIND_),
dimension(:,:),
pointer :: lon_local =>null()
1075 real(FMS_DATA_OVERRIDE_KIND_),
dimension(:,:),
pointer :: lat_local =>null()
1076 real(FMS_DATA_OVERRIDE_KIND_),
dimension(:),
allocatable :: lon_tmp, lat_tmp
1078 logical :: data_file_is_2D = .false.
1079 logical :: ongrid, use_comp_domain
1080 type(domain2D) :: domain
1081 type(time_type) :: first_record
1082 type(time_type) :: last_record
1083 integer :: curr_position
1084 real(FMS_DATA_OVERRIDE_KIND_) :: factor
1085 integer,
dimension(4) :: comp_domain = 0
1086 integer :: nxd, nyd, nxc, nyc, nwindows
1087 integer :: nwindows_x, ipos, jpos, window_size(2)
1088 integer :: istart, iend, jstart, jend
1089 integer :: isw, iew, jsw, jew
1090 integer :: omp_get_num_threads, window_id
1091 logical :: need_compute
1092 real(FMS_DATA_OVERRIDE_KIND_) :: lat_min, lat_max
1093 integer :: is_src, ie_src, js_src, je_src
1095 logical :: multifile
1096 type(FmsNetcdfFile_t) :: fileobj
1097 integer :: startingi
1099 integer :: startingj
1103 logical :: found_weight_file
1107 use_comp_domain = .false.
1108 if(.not.module_is_initialized) &
1109 call mpp_error(fatal,
'Error: need to call data_override_init first')
1112 if(
PRESENT(override)) override = .false.
1113 if (
present(data_index))
then
1117 do i = 1, table_size
1118 if( trim(gridname) /= trim(data_table(i)%gridname)) cycle
1119 if( trim(fieldname_code) /= trim(data_table(i)%fieldname_code)) cycle
1123 if(index1 .eq. -1)
then
1124 if(debug_data_override) &
1125 call mpp_error(warning,
'this field is NOT found in data_table: '//trim(fieldname_code))
1130 fieldname = data_table(index1)%fieldname_file
1131 factor = data_table(index1)%factor
1132 multifile = data_table(index1)%multifile
1134 if(fieldname ==
"")
then
1135 return_data = factor
1136 if(
PRESENT(override)) override = .true.
1139 filename = data_table(index1)%file_name
1140 if (filename ==
"")
call mpp_error(fatal,
'data_override: filename not given in data_table')
1141 if (multifile) prevfilename = data_table(index1)%prev_file_name
1142 if (multifile) nextfilename = data_table(index1)%next_file_name
1145 ongrid = (data_table(index1)%interpol_method ==
'none')
1150 if(num_fields > 0 )
then
1151 do i = 1, num_fields
1152 if(trim(override_array(i)%gridname) /= trim(gridname)) cycle
1153 if(trim(override_array(i)%fieldname) /= trim(fieldname_code)) cycle
1159 if(curr_position < 0)
then
1160 num_fields = num_fields + 1
1161 curr_position = num_fields
1164 call get_domain(gridname,domain,comp_domain)
1166 nxc = comp_domain(2)-comp_domain(1) + 1
1167 nyc = comp_domain(4)-comp_domain(3) + 1
1170 override_array(curr_position)%fieldname = fieldname_code
1171 override_array(curr_position)%gridname = gridname
1172 override_array(curr_position)%comp_domain = comp_domain
1174 override_array(curr_position)%numthreads = 1
1176 override_array(curr_position)%numthreads = omp_get_num_threads()
1187 if( nxd ==
size(return_data,1) .AND. nyd ==
size(return_data,2) )
then
1188 use_comp_domain = .false.
1189 else if ( mod(nxc,
size(return_data,1)) ==0 .AND. mod(nyc,
size(return_data,2)) ==0 )
then
1190 use_comp_domain = .true.
1191 nwindows = (nxc/
size(return_data,1))*(nyc/
size(return_data,2))
1194 &
"data_override: data is not on data domain and compute domain is not divisible by size(data)")
1196 override_array(curr_position)%window_size(1) =
size(return_data,1)
1197 override_array(curr_position)%window_size(2) =
size(return_data,2)
1199 window_size = override_array(curr_position)%window_size
1200 override_array(curr_position)%numwindows = nwindows
1201 if( mod(nwindows, override_array(curr_position)%numthreads) .NE. 0 )
then
1202 call mpp_error(fatal,
"data_override: nwindow is not divisible by nthreads")
1204 allocate(override_array(curr_position)%need_compute(nwindows))
1205 override_array(curr_position)%need_compute = .true.
1209 if( data_table(index1)%region_type .NE. no_region )
then
1210 call mpp_error(fatal,.NE.
'data_override: ongrid must be false when region_type NO_REGION')
1214 inquire(file=trim(filename),exist=exists)
1215 if (.not. exists)
then
1216 call get_mosaic_tile_file(filename,filename2,.false.,domain)
1217 filename = filename2
1221 if_multi3:
if (multifile)
then
1222 if_prev3:
if (trim(prevfilename) /=
'')
then
1223 inquire(file=trim(prevfilename),exist=exists)
1224 if (.not. exists)
then
1225 call get_mosaic_tile_file(prevfilename,prevfilename2,.false.,domain)
1226 prevfilename = prevfilename2
1229 if_next3:
if (trim(nextfilename) /=
'')
then
1230 inquire(file=trim(nextfilename),exist=exists)
1231 if (.not. exists)
then
1232 call get_mosaic_tile_file(nextfilename,nextfilename2,.false.,domain)
1233 nextfilename = nextfilename2
1239 id_time =
init_external_field(filename,fieldname,domain=domain,verbose=debug_data_override, &
1240 use_comp_domain=use_comp_domain, nwindows=nwindows, ongrid=ongrid)
1244 if_multi4:
if (multifile)
then
1246 if_prev4:
if (trim(prevfilename) /=
'')
then
1248 verbose=debug_data_override,use_comp_domain=use_comp_domain, &
1249 nwindows = nwindows, ongrid=ongrid)
1253 if ((prev_dims(1) .ne. dims(1)) .or. (prev_dims(2) .ne. dims(2)) .or. &
1254 (prev_dims(3) .ne. dims(3)))
then
1255 call mpp_error(fatal,
'data_override: dimensions mismatch between consecutive forcing files')
1257 allocate(data_table(index1)%time_prev_records(prev_dims(4)))
1258 call get_time_axis(id_time_prev,data_table(index1)%time_prev_records)
1261 if_next4:
if (trim(nextfilename) /=
'')
then
1263 verbose=debug_data_override,use_comp_domain=use_comp_domain, &
1264 nwindows = nwindows, ongrid=ongrid)
1268 if ((next_dims(1) .ne. dims(1)) .or. (next_dims(2) .ne. dims(2)) .or. &
1269 (next_dims(3) .ne. dims(3)))
then
1270 call mpp_error(fatal,
'data_override: dimensions mismatch between consecutive forcing files')
1272 allocate(data_table(index1)%time_next_records(next_dims(4)))
1273 call get_time_axis(id_time_next,data_table(index1)%time_next_records)
1278 override_array(curr_position)%dims = dims
1279 if(id_time<0)
call mpp_error(fatal,
'data_override:field not found in init_external_field 1')
1280 override_array(curr_position)%t_index = id_time
1281 override_array(curr_position)%pt_index = id_time_prev
1282 override_array(curr_position)%nt_index = id_time_next
1285 axis_sizes=axis_sizes, verbose=debug_data_override,override=.true.,use_comp_domain=use_comp_domain, &
1286 nwindows = nwindows)
1290 if_multi5:
if (multifile)
then
1292 if_prev5:
if (trim(prevfilename) /=
'')
then
1293 id_time_prev =
init_external_field(prevfilename,fieldname,domain=domain, axis_names=axis_names,&
1294 axis_sizes=axis_sizes, verbose=debug_data_override,override=.true.,use_comp_domain=use_comp_domain, &
1295 nwindows = nwindows)
1297 allocate(data_table(index1)%time_prev_records(prev_dims(4)))
1298 call get_time_axis(id_time_prev,data_table(index1)%time_prev_records)
1301 if_next5:
if (trim(nextfilename) /=
'')
then
1302 id_time_next =
init_external_field(nextfilename,fieldname,domain=domain, axis_names=axis_names,&
1303 axis_sizes=axis_sizes, verbose=debug_data_override,override=.true.,use_comp_domain=use_comp_domain, &
1304 nwindows = nwindows)
1306 allocate(data_table(index1)%time_next_records(next_dims(4)))
1307 call get_time_axis(id_time_next,data_table(index1)%time_next_records)
1312 override_array(curr_position)%dims = dims
1313 if(id_time<0)
call mpp_error(fatal,
'data_override:field not found in init_external_field 2')
1314 override_array(curr_position)%t_index = id_time
1315 override_array(curr_position)%pt_index = id_time_prev
1316 override_array(curr_position)%nt_index = id_time_next
1321 allocate(override_array(curr_position)%horz_interp(nwindows))
1322 allocate(override_array(curr_position)%lon_in(axis_sizes(1)+1))
1323 allocate(override_array(curr_position)%lat_in(axis_sizes(2)+1))
1324 if(get_external_fileobj(filename, fileobj))
then
1325 call axis_edges(fileobj, axis_names(1), override_array(curr_position)%lon_in, &
1326 reproduce_null_char_bug_flag=reproduce_null_char_bug)
1327 call axis_edges(fileobj, axis_names(2), override_array(curr_position)%lat_in, &
1328 reproduce_null_char_bug_flag=reproduce_null_char_bug)
1330 call mpp_error(fatal,
'data_override: file '//trim(filename)//
' is not opened in time_interp_external')
1333 override_array(curr_position)%lon_in = override_array(curr_position)%lon_in * real(deg_to_rad, lkind)
1334 override_array(curr_position)%lat_in = override_array(curr_position)%lat_in * real(deg_to_rad, lkind)
1340 select case(gridname)
1342 lon_local => lon_local_ocn; lat_local => lat_local_ocn
1344 lon_local => lon_local_ice; lat_local => lat_local_ice
1346 lon_local => lon_local_atm; lat_local => lat_local_atm
1348 lon_local => lon_local_lnd; lat_local => lat_local_lnd
1350 call mpp_error(fatal,
'error: gridname not recognized in data_override')
1353 lat_min = minval(lat_local)
1354 lat_max = maxval(lat_local)
1356 ie_src = axis_sizes(1)
1358 je_src = axis_sizes(2)
1371 select case (data_table(index1)%interpol_method)
1373 js_src = max(1, js_src-1)
1374 je_src = min(axis_sizes(2), je_src+1)
1376 js_src = max(1, js_src-2)
1377 je_src = min(axis_sizes(2), je_src+2)
1379 override_array(curr_position)%is_src = is_src
1380 override_array(curr_position)%ie_src = ie_src
1381 override_array(curr_position)%js_src = js_src
1382 override_array(curr_position)%je_src = je_src
1385 if (trim(prevfilename) /=
'')
then
1388 if (trim(nextfilename) /=
'')
then
1394 if( data_table(index1)%region_type .NE. no_region )
then
1395 allocate( lon_tmp(axis_sizes(1)), lat_tmp(axis_sizes(2)) )
1396 call read_data(fileobj, axis_names(1), lon_tmp)
1397 call read_data(fileobj, axis_names(2), lat_tmp)
1400 if(data_table(index1)%lon_start < lon_tmp(1) .OR. data_table(index1)%lon_start .GT. lon_tmp(axis_sizes(1)))&
1401 call mpp_error(fatal,
"data_override: lon_start is outside lon_T")
1402 if( data_table(index1)%lon_end < lon_tmp(1) .OR. data_table(index1)%lon_end .GT. lon_tmp(axis_sizes(1))) &
1403 call mpp_error(fatal,
"data_override: lon_end is outside lon_T")
1404 if(data_table(index1)%lat_start < lat_tmp(1) .OR. data_table(index1)%lat_start .GT. lat_tmp(axis_sizes(2)))&
1405 call mpp_error(fatal,
"data_override: lat_start is outside lat_T")
1406 if( data_table(index1)%lat_end < lat_tmp(1) .OR. data_table(index1)%lat_end .GT. lat_tmp(axis_sizes(2))) &
1407 call mpp_error(fatal,
"data_override: lat_end is outside lat_T")
1408 istart =
nearest_index(data_table(index1)%lon_start, lon_tmp)
1410 jstart =
nearest_index(data_table(index1)%lat_start, lat_tmp)
1413 istart = istart - is_src + 1
1414 iend = iend - is_src + 1
1415 jstart = jstart - js_src + 1
1416 jend = jend - js_src + 1
1417 call set_override_region(id_time, data_table(index1)%region_type, istart, iend, jstart, jend)
1419 if (trim(prevfilename) /=
'')
then
1420 call set_override_region(id_time_prev, data_table(index1)%region_type, istart, iend, jstart, jend)
1422 if (trim(nextfilename) /=
'')
then
1423 call set_override_region(id_time_next, data_table(index1)%region_type, istart, iend, jstart, jend)
1426 deallocate(lon_tmp, lat_tmp)
1431 dims = override_array(curr_position)%dims
1432 comp_domain = override_array(curr_position)%comp_domain
1433 nxc = comp_domain(2)-comp_domain(1) + 1
1434 nyc = comp_domain(4)-comp_domain(3) + 1
1435 is_src = override_array(curr_position)%is_src
1436 ie_src = override_array(curr_position)%ie_src
1437 js_src = override_array(curr_position)%js_src
1438 je_src = override_array(curr_position)%je_src
1439 window_size = override_array(curr_position)%window_size
1441 if( window_size(1) .NE.
size(return_data,1) .OR. window_size(2) .NE.
size(return_data,2) )
then
1442 call mpp_error(fatal,
"data_override: window_size does not match size(data)")
1445 id_time = override_array(curr_position)%t_index
1446 id_time_prev = override_array(curr_position)%pt_index
1447 id_time_next = override_array(curr_position)%nt_index
1451 if( override_array(curr_position)%numwindows > 1 )
then
1452 if( .NOT.
PRESENT(is_in) .OR. .NOT.
PRESENT(is_in) .OR. .NOT.
PRESENT(is_in) .OR. .NOT.
PRESENT(is_in) )
then
1453 call mpp_error(fatal,
"data_override: is_in, ie_in, js_in, je_in must be present when nwindows > 1")
1457 isw = comp_domain(1)
1458 iew = comp_domain(2)
1459 jsw = comp_domain(3)
1460 jew = comp_domain(4)
1462 if( override_array(curr_position)%numwindows > 1 )
then
1463 nxc = comp_domain(2) - comp_domain(1) + 1
1464 nwindows_x = nxc/window_size(1)
1465 ipos = (is_in-1)/window_size(1) + 1
1466 jpos = (js_in-1)/window_size(2)
1468 window_id = jpos*nwindows_x + ipos
1469 isw = isw + is_in - 1
1470 iew = isw + ie_in - is_in
1471 jsw = jsw + js_in - 1
1472 jew = jsw + je_in - js_in
1476 need_compute = .false.
1479 need_compute=override_array(curr_position)%need_compute(window_id)
1484 if( need_compute )
then
1485 select case(gridname)
1487 lon_local => lon_local_ocn; lat_local => lat_local_ocn
1489 lon_local => lon_local_ice; lat_local => lat_local_ice
1491 lon_local => lon_local_atm; lat_local => lat_local_atm
1493 lon_local => lon_local_lnd; lat_local => lat_local_lnd
1495 call mpp_error(fatal,
'error: gridname not recognized in data_override')
1498 if (data_table(index1)%ext_weights)
then
1499 found_weight_file = .false.
1500 do i = 1, nweight_files
1501 if (external_weights(i)%weight_filename .eq. trim(data_table(index1)%ext_weights_file_name))
then
1502 override_array(curr_position)%horz_interp(window_id) = external_weights(i)%horiz_interp
1503 found_weight_file = .true.
1508 if (.not. found_weight_file)
then
1509 nweight_files = nweight_files + 1
1510 external_weights(nweight_files)%weight_filename = trim(data_table(index1)%ext_weights_file_name)
1514 external_weights(nweight_files)%weight_filename, &
1515 lon_local(isw:iew,jsw:jew), lat_local(isw:iew,jsw:jew), &
1516 override_array(curr_position)%lon_in(is_src:ie_src+1), &
1517 override_array(curr_position)%lat_in(js_src:je_src+1), &
1518 data_table(index1)%ext_weights_source, &
1519 data_table(index1)%interpol_method, isw, iew, jsw, jew, nglon, nglat)
1521 override_array(curr_position)%horz_interp(window_id) = external_weights(nweight_files)%horiz_interp
1524 select case (data_table(index1)%interpol_method)
1526 call horiz_interp_new (override_array(curr_position)%horz_interp(window_id), &
1527 override_array(curr_position)%lon_in(is_src:ie_src+1), &
1528 override_array(curr_position)%lat_in(js_src:je_src+1), &
1529 lon_local(isw:iew,jsw:jew), lat_local(isw:iew,jsw:jew), interp_method=
"bilinear")
1531 call horiz_interp_new (override_array(curr_position)%horz_interp(window_id), &
1532 override_array(curr_position)%lon_in(is_src:ie_src+1), &
1533 override_array(curr_position)%lat_in(js_src:je_src+1), &
1534 lon_local(isw:iew,jsw:jew), lat_local(isw:iew,jsw:jew), interp_method=
"bicubic")
1537 override_array(curr_position)%need_compute(window_id) = .false.
1541 data_file_is_2d = .false.
1542 if((dims(3) == 1) .and. (
size(return_data,3)>1)) data_file_is_2d = .true.
1544 if(dims(3) .NE. 1 .and. (
size(return_data,3) .NE. dims(3))) &
1545 call mpp_error(fatal, .NE..NE.
"data_override: dims(3) 1 and size(return_data,3) dims(3)")
1549 if (.not.
allocated(data_table(index1)%time_records))
allocate(data_table(index1)%time_records(dims(4)))
1552 first_record = data_table(index1)%time_records(1)
1553 last_record = data_table(index1)%time_records(dims(4))
1556 if (.not. use_comp_domain)
then
1558 nhalox = (
size(return_data,1) - nxc)/2
1559 nhaloy = (
size(return_data,2) - nyc)/2
1560 startingi = lbound(return_data,1) + nhalox
1561 startingj = lbound(return_data,2) + nhaloy
1562 endingi = ubound(return_data,1) - nhalox
1563 endingj = ubound(return_data,2) - nhaloy
1567 if(data_file_is_2d)
then
1568 if (use_comp_domain)
then
1573 if_multi6:
if (multifile)
then
1574 if_time6:
if (time<first_record)
then
1577 if (id_time_prev<0)
call mpp_error(fatal,
'data_override:previous file needed with multifile')
1579 if (time<data_table(index1)%time_prev_records(prev_dims(4)))
call mpp_error(fatal, &
1580 'data_override: time_interp_external_bridge should only be called to bridge with previous file')
1583 is_in=is_in,ie_in=ie_in,js_in=js_in,je_in=je_in,window_id=window_id)
1584 elseif (time>last_record)
then
1587 if (id_time_next<0)
call mpp_error(fatal,
'data_override:next file needed with multifile')
1588 if (time>data_table(index1)%time_next_records(1))
call mpp_error(fatal, &
1589 'data_override: time_interp_external_bridge should only be called to bridge with next file')
1592 is_in=is_in,ie_in=ie_in,js_in=js_in,je_in=je_in,window_id=window_id)
1595 is_in=is_in,ie_in=ie_in,js_in=js_in,je_in=je_in,window_id=window_id)
1599 is_in=is_in,ie_in=ie_in,js_in=js_in,je_in=je_in,window_id=window_id)
1609 if_multi7:
if (multifile)
then
1610 if_time7:
if (time<first_record)
then
1613 if (id_time_prev<0)
call mpp_error(fatal,
'data_override:previous file needed with multifile')
1615 if (time<data_table(index1)%time_prev_records(prev_dims(4)))
call mpp_error(fatal, &
1616 'data_override: time_interp_external_bridge should only be called to bridge with previous file')
1619 return_data(startingi:endingi,startingj:endingj,1), &
1620 verbose=debug_data_override,is_in=is_in,ie_in=ie_in, &
1621 js_in=js_in,je_in=je_in,window_id=window_id)
1622 elseif (time>last_record)
then
1625 if (id_time_next<0)
call mpp_error(fatal,
'data_override:next file needed with multifile')
1626 if (time>data_table(index1)%time_next_records(1))
call mpp_error(fatal, &
1627 'data_override: time_interp_external_bridge should only be called to bridge with next file')
1630 return_data(startingi:endingi,startingj:endingj,1), &
1631 verbose=debug_data_override,is_in=is_in,ie_in=ie_in, &
1632 js_in=js_in,je_in=je_in,window_id=window_id)
1635 verbose=debug_data_override,is_in=is_in,ie_in=ie_in, &
1636 js_in=js_in,je_in=je_in,window_id=window_id)
1640 verbose=debug_data_override,is_in=is_in,ie_in=ie_in, &
1641 js_in=js_in,je_in=je_in,window_id=window_id)
1645 return_data(:,:,1) = return_data(:,:,1)*factor
1646 do i = 2,
size(return_data,3)
1647 return_data(:,:,i) = return_data(:,:,1)
1650 if (use_comp_domain)
then
1655 if_multi8:
if (multifile)
then
1656 if_time8:
if (time<first_record)
then
1657 if (id_time_prev<0)
call mpp_error(fatal,
'data_override:previous file needed with multifile')
1659 if (time<data_table(index1)%time_prev_records(prev_dims(4)))
call mpp_error(fatal, &
1660 'data_override: time_interp_external_bridge should only be called to bridge with previous file')
1662 is_in=is_in,ie_in=ie_in,js_in=js_in,je_in=je_in,window_id=window_id)
1663 elseif (time>last_record)
then
1664 if (id_time_next<0)
call mpp_error(fatal,
'data_override:next file needed with multifile')
1665 if (time>data_table(index1)%time_next_records(1))
call mpp_error(fatal, &
1666 'data_override: time_interp_external_bridge should only be called to bridge with next file')
1668 is_in=is_in,ie_in=ie_in,js_in=js_in,je_in=je_in,window_id=window_id)
1671 is_in=is_in,ie_in=ie_in,js_in=js_in,je_in=je_in,window_id=window_id)
1675 is_in=is_in,ie_in=ie_in,js_in=js_in,je_in=je_in,window_id=window_id)
1685 if_multi9:
if (multifile)
then
1686 if_time9:
if (time<first_record)
then
1687 if (id_time_prev<0)
call mpp_error(fatal,
'data_override:previous file needed with multifile')
1689 if (time<data_table(index1)%time_prev_records(prev_dims(4)))
call mpp_error(fatal, &
1690 'data_override: time_interp_external_bridge should only be called to bridge with previous file')
1692 return_data(startingi:endingi,startingj:endingj,:), &
1693 verbose=debug_data_override,is_in=is_in,ie_in=ie_in, &
1694 js_in=js_in,je_in=je_in,window_id=window_id)
1695 elseif (time>last_record)
then
1696 if (id_time_next<0)
call mpp_error(fatal,
'data_override:next file needed with multifile')
1697 if (time>data_table(index1)%time_next_records(1))
call mpp_error(fatal, &
1698 'data_override: time_interp_external_bridge should only be called to bridge with next file')
1700 return_data(startingi:endingi,startingj:endingj,:), &
1701 verbose=debug_data_override,is_in=is_in,ie_in=ie_in, &
1702 js_in=js_in,je_in=je_in,window_id=window_id)
1705 verbose=debug_data_override,is_in=is_in,ie_in=ie_in, &
1706 js_in=js_in,je_in=je_in,window_id=window_id)
1710 verbose=debug_data_override,is_in=is_in,ie_in=ie_in, &
1711 js_in=js_in,je_in=je_in,window_id=window_id)
1715 return_data = return_data*factor
1719 if(data_file_is_2d)
then
1720 if( data_table(index1)%region_type == no_region )
then
1725 if_multi10:
if (multifile)
then
1726 if_time10:
if (time<first_record)
then
1727 if (id_time_prev<0)
call mpp_error(fatal,
'data_override:previous file needed with multifile')
1729 if (time<data_table(index1)%time_prev_records(prev_dims(4)))
call mpp_error(fatal, &
1730 'data_override: time_interp_external_bridge should only be called to bridge with previous file')
1732 verbose=debug_data_override, &
1733 horz_interp=override_array(curr_position)%horz_interp(window_id), &
1734 is_in=is_in,ie_in=ie_in,js_in=js_in,je_in=je_in,window_id=window_id)
1735 elseif (time>last_record)
then
1736 if (id_time_next<0)
call mpp_error(fatal,
'data_override:next file needed with multifile')
1737 if (time>data_table(index1)%time_next_records(1))
call mpp_error(fatal, &
1738 'data_override: time_interp_external_bridge should only be called to bridge with next file')
1740 verbose=debug_data_override, &
1741 horz_interp=override_array(curr_position)%horz_interp(window_id), &
1742 is_in=is_in,ie_in=ie_in,js_in=js_in,je_in=je_in,window_id=window_id)
1745 horz_interp=override_array(curr_position)%horz_interp(window_id), &
1746 is_in=is_in,ie_in=ie_in,js_in=js_in,je_in=je_in,window_id=window_id)
1750 horz_interp=override_array(curr_position)%horz_interp(window_id), &
1751 is_in=is_in,ie_in=ie_in,js_in=js_in,je_in=je_in,window_id=window_id)
1754 return_data(:,:,1) = return_data(:,:,1)*factor
1755 do i = 2,
size(return_data,3)
1756 return_data(:,:,i) = return_data(:,:,1)
1759 allocate(mask_out(
size(return_data,1),
size(return_data,2),1))
1765 if_multi11:
if (multifile)
then
1766 if_time11:
if (time<first_record)
then
1767 if (id_time_prev<0)
call mpp_error(fatal,
'data_override:previous file needed with multifile')
1769 if (time<data_table(index1)%time_prev_records(prev_dims(4)))
call mpp_error(fatal, &
1770 'data_override: time_interp_external_bridge should only be called to bridge with previous file')
1772 verbose=debug_data_override, &
1773 horz_interp=override_array(curr_position)%horz_interp(window_id), &
1774 mask_out =mask_out(:,:,1), &
1775 is_in=is_in,ie_in=ie_in,js_in=js_in,je_in=je_in,window_id=window_id)
1776 elseif (time>last_record)
then
1777 if (id_time_next<0)
call mpp_error(fatal,
'data_override:next file needed with multifile')
1778 if (time>data_table(index1)%time_next_records(1))
call mpp_error(fatal, &
1779 'data_override: time_interp_external_bridge should only be called to bridge with next file')
1781 verbose=debug_data_override, &
1782 horz_interp=override_array(curr_position)%horz_interp(window_id), &
1783 mask_out =mask_out(:,:,1), &
1784 is_in=is_in,ie_in=ie_in,js_in=js_in,je_in=je_in,window_id=window_id)
1787 horz_interp=override_array(curr_position)%horz_interp(window_id), &
1788 mask_out =mask_out(:,:,1), &
1789 is_in=is_in,ie_in=ie_in,js_in=js_in,je_in=je_in,window_id=window_id)
1793 horz_interp=override_array(curr_position)%horz_interp(window_id), &
1794 mask_out =mask_out(:,:,1), &
1795 is_in=is_in,ie_in=ie_in,js_in=js_in,je_in=je_in,window_id=window_id)
1798 where(mask_out(:,:,1))
1799 return_data(:,:,1) = return_data(:,:,1)*factor
1801 do i = 2,
size(return_data,3)
1802 where(mask_out(:,:,1))
1803 return_data(:,:,i) = return_data(:,:,1)
1806 deallocate(mask_out)
1809 if( data_table(index1)%region_type == no_region )
then
1814 if_multi12:
if (multifile)
then
1815 if_time12:
if (time<first_record)
then
1816 if (id_time_prev<0)
call mpp_error(fatal,
'data_override:previous file needed with multifile')
1818 if (time<data_table(index1)%time_prev_records(prev_dims(4)))
call mpp_error(fatal, &
1819 'data_override: time_interp_external_bridge should only be called to bridge with previous file')
1821 horz_interp=override_array(curr_position)%horz_interp(window_id), &
1822 is_in=is_in,ie_in=ie_in,js_in=js_in,je_in=je_in,window_id=window_id)
1823 elseif (time>last_record)
then
1824 if (id_time_next<0)
call mpp_error(fatal,
'data_override:next file needed with multifile')
1825 if (time>data_table(index1)%time_next_records(1))
call mpp_error(fatal, &
1826 'data_override: time_interp_external_bridge should only be called to bridge with next file')
1828 horz_interp=override_array(curr_position)%horz_interp(window_id), &
1829 is_in=is_in,ie_in=ie_in,js_in=js_in,je_in=je_in,window_id=window_id)
1832 horz_interp=override_array(curr_position)%horz_interp(window_id), &
1833 is_in=is_in,ie_in=ie_in,js_in=js_in,je_in=je_in,window_id=window_id)
1837 horz_interp=override_array(curr_position)%horz_interp(window_id), &
1838 is_in=is_in,ie_in=ie_in,js_in=js_in,je_in=je_in,window_id=window_id)
1841 return_data = return_data*factor
1843 allocate(mask_out(
size(return_data,1),
size(return_data,2),
size(return_data,3)) )
1849 if_multi13:
if (multifile)
then
1850 if_time13:
if (time<first_record)
then
1851 if (id_time_prev<0)
call mpp_error(fatal,
'data_override:previous file needed with multifile')
1853 if (time<data_table(index1)%time_prev_records(prev_dims(4)))
call mpp_error(fatal, &
1854 'data_override: time_interp_external_bridge should only be called to bridge with previous file')
1856 horz_interp=override_array(curr_position)%horz_interp(window_id), &
1857 mask_out =mask_out, &
1858 is_in=is_in,ie_in=ie_in,js_in=js_in,je_in=je_in,window_id=window_id)
1859 elseif (time>last_record)
then
1860 if (id_time_next<0)
call mpp_error(fatal,
'data_override:next file needed with multifile')
1861 if (time>data_table(index1)%time_next_records(1))
call mpp_error(fatal, &
1862 'data_override: time_interp_external_bridge should only be called to bridge with next file')
1864 horz_interp=override_array(curr_position)%horz_interp(window_id), &
1865 mask_out =mask_out, &
1866 is_in=is_in,ie_in=ie_in,js_in=js_in,je_in=je_in,window_id=window_id)
1869 horz_interp=override_array(curr_position)%horz_interp(window_id), &
1870 mask_out =mask_out, &
1871 is_in=is_in,ie_in=ie_in,js_in=js_in,je_in=je_in,window_id=window_id)
1875 horz_interp=override_array(curr_position)%horz_interp(window_id), &
1876 mask_out =mask_out, &
1877 is_in=is_in,ie_in=ie_in,js_in=js_in,je_in=je_in,window_id=window_id)
1881 return_data = return_data*factor
1883 deallocate(mask_out)
1889 if(
PRESENT(override)) override = .true.
1890end subroutine data_override_3d_
1893subroutine data_override_ug_1d_(gridname,fieldname,return_data,time,override)
1894 character(len=3),
intent(in) :: gridname
1895 character(len=*),
intent(in) :: fieldname
1896 real(FMS_DATA_OVERRIDE_KIND_),
dimension(:),
intent(inout) :: return_data
1897 type(time_type),
intent(in) :: time
1898 logical,
intent(out),
optional :: override
1900 real(FMS_DATA_OVERRIDE_KIND_),
dimension(:,:),
allocatable :: data_SG
1901 type(domainUG) :: UG_domain
1904 integer,
dimension(4) :: comp_domain = 0
1907 if(
PRESENT(override)) override = .false.
1909 do i = 1, table_size
1910 if( trim(gridname) /= trim(data_table(i)%gridname)) cycle
1911 if( trim(fieldname) /= trim(data_table(i)%fieldname_code)) cycle
1915 if(index1 .eq. -1)
return
1917 call get_domainug(gridname,ug_domain,comp_domain)
1918 allocate(data_sg(comp_domain(1):comp_domain(2),comp_domain(3):comp_domain(4)))
1920 call data_override_2d_(gridname,fieldname,data_sg,time,override)
1925end subroutine data_override_ug_1d_
1928subroutine data_override_ug_2d_(gridname,fieldname,return_data,time,override)
1929 character(len=3),
intent(in) :: gridname
1930 character(len=*),
intent(in) :: fieldname
1931 real(FMS_DATA_OVERRIDE_KIND_),
dimension(:,:),
intent(inout) :: return_data
1932 type(time_type),
intent(in) :: time
1933 logical,
intent(out),
optional :: override
1935 real(FMS_DATA_OVERRIDE_KIND_),
dimension(:,:,:),
allocatable :: data_SG
1936 real(FMS_DATA_OVERRIDE_KIND_),
dimension(:,:),
allocatable :: data_UG
1937 type(domainUG) :: UG_domain
1939 integer :: i, nlevel, nlevel_max
1940 integer,
dimension(4) :: comp_domain = 0
1943 if(
PRESENT(override)) override = .false.
1945 do i = 1, table_size
1946 if( trim(gridname) /= trim(data_table(i)%gridname)) cycle
1947 if( trim(fieldname) /= trim(data_table(i)%fieldname_code)) cycle
1951 if(index1 .eq. -1)
return
1953 nlevel =
size(return_data,2)
1957 call get_domainug(gridname,ug_domain,comp_domain)
1958 allocate(data_sg(comp_domain(1):comp_domain(2),comp_domain(3):comp_domain(4),nlevel_max))
1959 allocate(data_ug(
size(return_data,1), nlevel_max))
1961 call data_override_3d_(gridname,fieldname,data_sg,time,override)
1964 return_data(:,1:nlevel) = data_ug(:,1:nlevel)
1966 deallocate(data_sg, data_ug)
1967end subroutine data_override_ug_2d_
Perform 1D interpolation between grids.
subroutine, public fms2_io_init()
Reads the fms2_io_nml.
Close a netcdf or domain file opened with open_file or open_virtual_file.
Opens a given netcdf or domain file.
Read data from a defined field in a file.
character(:) function, allocatable, public string(v, fmt)
Converts a number or a Boolean value to a string.
subroutine, public horiz_interp_init
Initialize module and writes version number to logfile.out.
These routines retrieve the axis specifications associated with the compute domains....
These routines retrieve the axis specifications associated with the data domains. The domain is a der...
These routines retrieve the axis specifications associated with the global domains....
Passes data from a structured grid to an unstructured grid Example usage:
The domain2D type contains all the necessary information to define the global, compute and data domai...
Domain information for managing data on unstructured grids.
Reduction operations. Find the max of scalar a from the PEs in pelist result is also automatically br...
subroutine, public time_interp_external_init()
Initialize the time_interp_external_mod module.
subroutine, public get_time_axis(index, time)
integer function, public init_external_field(file, fieldname, domain, desired_units, verbose, axis_names, axis_sizes, override, correct_leap_year_inconsistency, permit_calendar_conversion, use_comp_domain, ierr, nwindows, ignore_axis_atts, ongrid)
Initialize an external field. Buffer "num_io_buffers" (default=2) in memory to reduce memory allocati...
integer function, dimension(4), public get_external_field_size(index)
Returns size of field after call to init_external_field. Ordering is X/Y/Z/T. This call only makes se...
subroutine, public reset_src_data_region(index, is, ie, js, je)
Reallocates src_data for field from module level loaded_fields array.
Provide data from external file interpolated to current model time. Data may be local to current proc...
Type to represent amounts of time. Implemented as seconds and days to allow for larger intervals.
integer function, public get_num_blocks(file_id, block_name, parent_block_id)
Determines the number of blocks with block_name in the yaml file If parent_block_id is present,...
integer function, public open_and_parse_file(filename)
Opens and parses a yaml file.
subroutine, public get_block_ids(file_id, block_name, block_ids, parent_block_id)
Gets the the ids of the blocks with block_name in the yaml file If parent_block_id is present,...
Dermine the value of a key from a keyname.
Allocates space and initializes a derived-type variable that contains pre-computed interpolation indi...
Subroutines for reading in weight files and using that to fill in the horiz_interp type instead calcu...