8 use fckit_log_module,
only: fckit_log
9 use fckit_mpi_module,
only: fckit_mpi_comm, &
14 use unstructured_interpolation_mod,
only: unstrc_interp
35 type(unstrc_interp),
intent(in) :: unsinterp
36 real(kind=kind_real),
intent(in) :: field_in(:)
37 real(kind=kind_real),
intent(inout) :: field_out(:)
39 integer :: maxtypel, mintypel, maxtype, mintype, ngrid_out
40 integer :: i, j, k, n, index
41 real(kind=kind_real),
allocatable :: interp_w(:,:)
42 real(kind=kind_real),
allocatable :: field_out_tmp(:)
43 real(kind=kind_real),
allocatable :: field_neighbors(:,:)
44 real(kind=kind_real),
allocatable :: field_types(:)
49 ngrid_out =
size(field_out)
52 allocate(field_neighbors(unsinterp%nn,ngrid_out))
53 allocate(field_out_tmp(ngrid_out))
54 call unsinterp%apply(field_in, field_out_tmp, field_neighbors)
57 maxtypel = int(maxval(field_in))
58 mintypel = int(minval(field_in))
59 call unsinterp%comm%allreduce(maxtypel,maxtype,fckit_mpi_max())
60 call unsinterp%comm%allreduce(mintypel,mintype,fckit_mpi_min())
63 allocate(field_types(mintype:maxtype))
65 field_out = 0.0_kind_real
68 do n = 1, unsinterp%nn
69 index = int(field_neighbors(n,i))
70 field_types(index) = field_types(index) + unsinterp%interp_w(n,i)
72 field_out(i) = real(maxloc(field_types,1)+(mintype-1),kind_real)
85 type(unstrc_interp),
intent(in) :: unsinterp
86 real(kind=kind_real),
intent(in) :: field_in(:)
87 real(kind=kind_real),
intent(inout) :: field_out(:)
89 integer :: n, ngrid_out
90 real(kind=kind_real),
allocatable :: field_out_tmp(:)
91 real(kind=kind_real),
allocatable :: field_neighbors(:,:)
96 ngrid_out =
size(field_out)
99 allocate(field_neighbors(unsinterp%nn,ngrid_out))
100 allocate(field_out_tmp(ngrid_out))
101 call unsinterp%apply(field_in, field_out_tmp, field_neighbors)
105 field_out(n) = field_neighbors(maxloc(unsinterp%interp_w(:,n),1),n)
subroutine, public unsinterp_integer_apply(unsinterp, field_in, field_out)
subroutine, public unsinterp_nearest_apply(unsinterp, field_in, field_out)