9 use fckit_configuration_module,
only: fckit_configuration
10 use fckit_log_module,
only: fckit_log
11 use fckit_mpi_module,
only: fckit_mpi_comm
14 use missing_values_mod
24 c_lonlat2, c_config) bind(c, name='unstrc_create_f90')
28 integer(c_int),
intent(inout) :: c_key_unstrc
29 type(c_ptr),
value,
intent(in) :: c_comm
30 type(c_ptr),
intent(in),
value :: c_lonlat1
31 type(c_ptr),
intent(in),
value :: c_lonlat2
32 type(c_ptr),
value,
intent(in) :: c_config
36 type(fckit_mpi_comm) :: f_comm
37 type(fckit_configuration) :: f_config
38 type(atlas_field) :: lonlat_field1, lonlat_field2
39 real(kind_real),
pointer :: lonlat1(:,:), lonlat2(:,:)
40 real(kind_real),
allocatable :: lon1(:), lat1(:)
41 real(kind_real),
allocatable :: lon2(:), lat2(:)
42 integer :: ngrid1, ngrid2, nnearest
43 character(len=:),
allocatable :: us_interp_type, infile
44 logical :: read_from_file
46 f_comm = fckit_mpi_comm(c_comm)
47 f_config = fckit_configuration(c_config)
57 lonlat_field1 = atlas_field(c_lonlat1)
58 call lonlat_field1%data(lonlat1)
59 ngrid1 =
size(lonlat1(1,:))
61 lonlat_field2 = atlas_field(c_lonlat2)
62 call lonlat_field2%data(lonlat2)
63 ngrid2 =
size(lonlat2(1,:))
65 if (f_config%has(
"read_from_file"))
then
66 call f_config%get_or_die(
"read_from_file", read_from_file)
68 read_from_file = .false.
71 if (read_from_file)
then
72 call fckit_log%info(
"Reading interpolator from file")
73 call f_config%get_or_die(
"infile", infile)
74 call unstrc_int%create(f_comm, infile)
76 if ((unstrc_int%ngrid_in /= ngrid1) .or. (unstrc_int%ngrid_out /= ngrid2)) &
77 call abor1_ftn(
'unstructured interpolator input file is not consistent with input and output functionspaces')
81 if (f_config%has(
"us_interp_type"))
then
82 call f_config%get_or_die(
"interpolation_type", us_interp_type)
84 us_interp_type =
'barycent'
87 if (f_config%has(
"nnearest"))
then
88 call f_config%get_or_die(
"nnearest", nnearest)
95 allocate(lon1(ngrid1), lat1(ngrid1))
99 allocate(lon2(ngrid2), lat2(ngrid2))
103 call unstrc_int%create(f_comm, nnearest, us_interp_type, ngrid1, lat1, lon1, &
106 deallocate(lon1, lat1, lon2, lat2)
110 call lonlat_field1%final()
111 call lonlat_field2%final()
118 subroutine unstrc_write_c(c_key_unstrc, c_config) bind(c, name='unstrc_write_f90')
122 integer(c_int),
intent(inout) :: c_key_unstrc
123 type(c_ptr),
value,
intent(in) :: c_config
127 type(fckit_configuration) :: f_config
128 character(len=:),
allocatable :: outfile
130 f_config = fckit_configuration(c_config)
133 call f_config%get_or_die(
"outfile",outfile)
136 call unstrc_int%write(outfile)
143 subroutine unstrc_apply_c(c_key_unstrc, c_infield, c_outfield) bind(c, name='unstrc_apply_f90')
148 integer(c_int),
intent(in) :: c_key_unstrc
149 type(c_ptr),
intent(in),
value :: c_infield
150 type(c_ptr),
intent(in),
value :: c_outfield
154 type(atlas_field) :: infield, outfield
155 real(kind_real),
pointer :: fin(:,:), fout(:,:)
160 infield = atlas_field(c_infield)
161 outfield = atlas_field(c_outfield)
163 call infield%data(fin)
164 call outfield%data(fout)
166 do jlev = 1, infield%levels()
167 call unstrc_int%apply(fin(jlev,:), fout(jlev,:))
172 call outfield%final()
179 subroutine unstrc_apply_ad_c(c_key_unstrc, c_field2, c_field1) bind(c, name='unstrc_apply_ad_f90')
184 integer(c_int),
intent(in) :: c_key_unstrc
185 type(c_ptr),
intent(in),
value :: c_field2
186 type(c_ptr),
intent(in),
value :: c_field1
190 type(atlas_field) :: field_grid2, field_grid1
191 real(kind_real),
pointer :: f2(:,:), f1(:,:)
196 field_grid2 = atlas_field(c_field2)
197 field_grid1 = atlas_field(c_field1)
199 call field_grid2%data(f2)
200 call field_grid1%data(f1)
202 do jlev = 1, field_grid2%levels()
203 call unstrc_int%apply_ad(f1(jlev,:), f2(jlev,:))
207 call field_grid2%final()
208 call field_grid1%final()
219 integer(c_int),
intent(inout) :: c_key_unstrc
226 call unstrc_int%delete()
subroutine unstrc_apply_ad_c(c_key_unstrc, c_field2, c_field1)
Apply Unstructured Interpolator Adjoint.
subroutine unstrc_create_c(c_key_unstrc, c_comm, c_lonlat1, c_lonlat2, c_config)
Create Unstructured Interpolator from lonlat.
subroutine unstrc_delete_c(c_key_unstrc)
Delete unstructured_interpolator.
subroutine unstrc_apply_c(c_key_unstrc, c_infield, c_outfield)
Apply Unstructured Interpolator.
subroutine unstrc_write_c(c_key_unstrc, c_config)
Write Unstructured Interpolator to a file.
type(registry_t), public unstrc_interp_registry
Registry for unstrc_interpo objects.