OOPS
qg_gom_interface.F90
Go to the documentation of this file.
1 ! (C) Copyright 2009-2016 ECMWF.
2 !
3 ! This software is licensed under the terms of the Apache Licence Version 2.0
4 ! which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
5 ! In applying this licence, ECMWF does not waive the privileges and immunities
6 ! granted to it by virtue of its status as an intergovernmental organisation nor
7 ! does it submit to any jurisdiction.
8 
10 
11 use atlas_module, only: atlas_field
12 use fckit_configuration_module, only: fckit_configuration
13 use iso_c_binding
14 use qg_geom_mod
15 use qg_gom_mod
16 use qg_locs_mod
18 
19 implicit none
20 
21 private
22 ! ------------------------------------------------------------------------------
23 contains
24 ! ------------------------------------------------------------------------------
25 !> Setup GOM
26 subroutine qg_gom_setup_c(c_key_self,c_locs,c_vars) bind(c,name='qg_gom_setup_f90')
27 
28 implicit none
29 
30 ! Passed variables
31 integer(c_int),intent(inout) :: c_key_self !< GOM
32 type(c_ptr),value,intent(in) :: c_locs !< Locations
33 type(c_ptr),value,intent(in) :: c_vars !< Variables
34 
35 ! Local variables
36 type(qg_gom),pointer :: self
37 type(qg_locs) :: locs
38 
39 ! Interface
40 call qg_gom_registry%init()
41 call qg_gom_registry%add(c_key_self)
42 call qg_gom_registry%get(c_key_self,self)
43 locs = qg_locs(c_locs)
44 self%vars = oops_variables(c_vars)
45 
46 ! Call Fortran
47 call qg_gom_setup(self,locs%nlocs())
48 
49 end subroutine qg_gom_setup_c
50 ! ------------------------------------------------------------------------------
51 !> Create GOM and do nothing
52 subroutine qg_gom_create_c(c_key_self,c_vars) bind(c,name='qg_gom_create_f90')
53 
54 implicit none
55 
56 ! Passed variables
57 integer(c_int),intent(inout) :: c_key_self !< GOM
58 type(c_ptr),value,intent(in) :: c_vars !< Variables
59 
60 ! Local variables
61 type(qg_gom),pointer :: self
62 
63 ! Interface
64 call qg_gom_registry%init()
65 call qg_gom_registry%add(c_key_self)
66 call qg_gom_registry%get(c_key_self,self)
67 self%vars = oops_variables(c_vars)
68 
69 end subroutine qg_gom_create_c
70 ! ------------------------------------------------------------------------------
71 !> Delete GOM
72 subroutine qg_gom_delete_c(c_key_self) bind(c,name='qg_gom_delete_f90')
73 
74 implicit none
75 
76 ! Passed variables
77 integer(c_int),intent(inout) :: c_key_self !< GOM
78 
79 ! Local variables
80 type(qg_gom),pointer :: self
81 
82 ! Interface
83 call qg_gom_registry%get(c_key_self,self)
84 
85 ! Call Fortran
86 call qg_gom_delete(self)
87 
88 ! Clear interface
89 call qg_gom_registry%remove(c_key_self)
90 
91 end subroutine qg_gom_delete_c
92 ! ------------------------------------------------------------------------------
93 !> Copy GOM
94 subroutine qg_gom_copy_c(c_key_self,c_key_other) bind(c,name='qg_gom_copy_f90')
95 
96 implicit none
97 
98 ! Passed variables
99 integer(c_int),intent(inout) :: c_key_self !< GOM
100 integer(c_int),intent(in) :: c_key_other !< Other GOM
101 
102 ! Local variables
103 type(qg_gom),pointer :: self
104 type(qg_gom),pointer :: other
105 
106 ! Interface
107 call qg_gom_registry%get(c_key_self,self)
108 call qg_gom_registry%get(c_key_other,other)
109 
110 ! Call Fortran
111 call qg_gom_copy(self,other)
112 
113 end subroutine qg_gom_copy_c
114 ! ------------------------------------------------------------------------------
115 !> Set GOM to zero
116 subroutine qg_gom_zero_c(c_key_self) bind(c,name='qg_gom_zero_f90')
117 
118 implicit none
119 
120 ! Passed variables
121 integer(c_int),intent(in) :: c_key_self !< GOM
122 
123 ! Local variables
124 type(qg_gom),pointer :: self
125 
126 ! Interface
127 call qg_gom_registry%get(c_key_self,self)
128 
129 ! Call Fortran
130 call qg_gom_zero(self)
131 
132 end subroutine qg_gom_zero_c
133 ! ------------------------------------------------------------------------------
134 !> Get GOM absolute value
135 subroutine qg_gom_abs_c(c_key_self) bind(c,name='qg_gom_abs_f90')
136 
137 implicit none
138 
139 ! Passed variables
140 integer(c_int),intent(in) :: c_key_self !< GOM
141 
142 ! Local variables
143 type(qg_gom),pointer :: self
144 
145 ! Interface
146 call qg_gom_registry%get(c_key_self,self)
147 
148 ! Call Fortran
149 call qg_gom_abs(self)
150 
151 end subroutine qg_gom_abs_c
152 ! ------------------------------------------------------------------------------
153 !> Generate random GOM
154 subroutine qg_gom_random_c(c_key_self) bind(c,name='qg_gom_random_f90')
155 
156 implicit none
157 
158 ! Passed variables
159 integer(c_int),intent(in) :: c_key_self !< GOM
160 
161 ! Local variables
162 type(qg_gom),pointer :: self
163 
164 ! Interface
165 call qg_gom_registry%get(c_key_self,self)
166 
167 ! Call Fortran
168 call qg_gom_random(self)
169 
170 end subroutine qg_gom_random_c
171 ! ------------------------------------------------------------------------------
172 !> Multiply GOM with a scalar
173 subroutine qg_gom_mult_c(c_key_self,c_zz) bind(c,name='qg_gom_mult_f90')
174 
175 implicit none
176 
177 ! Passed variables
178 integer(c_int),intent(in) :: c_key_self !< GOM
179 real(c_double),intent(in) :: c_zz !< Multiplier
180 
181 ! Local variables
182 type(qg_gom),pointer :: self
183 integer :: jo,jv
184 
185 ! Interface
186 call qg_gom_registry%get(c_key_self,self)
187 
188 ! Call Fortran
189 call qg_gom_mult(self,c_zz)
190 
191 end subroutine qg_gom_mult_c
192 ! ------------------------------------------------------------------------------
193 !> Add GOM
194 subroutine qg_gom_add_c(c_key_self,c_key_other) bind(c,name='qg_gom_add_f90')
195 
196 implicit none
197 
198 ! Passed variables
199 integer(c_int),intent(in) :: c_key_self !< GOM
200 integer(c_int),intent(in) :: c_key_other !< Other GOM
201 
202 ! Local variables
203 type(qg_gom),pointer :: self
204 type(qg_gom),pointer :: other
205 
206 ! Interface
207 call qg_gom_registry%get(c_key_self,self)
208 call qg_gom_registry%get(c_key_other,other)
209 
210 ! Call Fortran
211 call qg_gom_add(self,other)
212 
213 end subroutine qg_gom_add_c
214 ! ------------------------------------------------------------------------------
215 !> Subtract GOM
216 subroutine qg_gom_diff_c(c_key_self,c_key_other) bind(c,name='qg_gom_diff_f90')
217 
218 implicit none
219 
220 ! Passed variables
221 integer(c_int),intent(in) :: c_key_self !< GOM
222 integer(c_int),intent(in) :: c_key_other !< Other GOM
223 
224 ! Local variables
225 type(qg_gom),pointer :: self
226 type(qg_gom),pointer :: other
227 
228 ! Interface
229 call qg_gom_registry%get(c_key_self,self)
230 call qg_gom_registry%get(c_key_other,other)
231 
232 ! Call Fortran
233 call qg_gom_diff(self,other)
234 
235 end subroutine qg_gom_diff_c
236 ! ------------------------------------------------------------------------------
237 !> Schur product for GOM
238 subroutine qg_gom_schurmult_c(c_key_self,c_key_other) bind(c,name='qg_gom_schurmult_f90')
239 
240 implicit none
241 
242 ! Passed variables
243 integer(c_int),intent(in) :: c_key_self !< GOM
244 integer(c_int),intent(in) :: c_key_other !< Other GOM
245 
246 ! Local variables
247 type(qg_gom),pointer :: self
248 type(qg_gom),pointer :: other
249 
250 ! Interface
251 call qg_gom_registry%get(c_key_self,self)
252 call qg_gom_registry%get(c_key_other,other)
253 
254 ! Call Fortran
255 call qg_gom_schurmult(self,other)
256 
257 end subroutine qg_gom_schurmult_c
258 ! ------------------------------------------------------------------------------
259 !> Schur division for GOM
260 subroutine qg_gom_divide_c(c_key_self,c_key_other) bind(c,name='qg_gom_divide_f90')
261 
262 implicit none
263 
264 ! Passed variables
265 integer(c_int),intent(in) :: c_key_self !< GOM
266 integer(c_int),intent(in) :: c_key_other !< Other GOM
267 
268 ! Local variables
269 type(qg_gom),pointer :: self
270 type(qg_gom),pointer :: other
271 
272 ! Interface
273 call qg_gom_registry%get(c_key_self,self)
274 call qg_gom_registry%get(c_key_other,other)
275 
276 ! Call Fortran
277 call qg_gom_divide(self,other)
278 
279 end subroutine qg_gom_divide_c
280 ! ------------------------------------------------------------------------------
281 !> Compute GOM RMS
282 subroutine qg_gom_rms_c(c_key_self,c_rms) bind(c,name='qg_gom_rms_f90')
283 
284 implicit none
285 
286 ! Passed variables
287 integer(c_int),intent(in) :: c_key_self !< GOM
288 real(c_double),intent(inout) :: c_rms !< RMS
289 
290 ! Local variables
291 type(qg_gom),pointer :: self
292 
293 ! Interface
294 call qg_gom_registry%get(c_key_self,self)
295 
296 ! Call Fortran
297 call qg_gom_rms(self,c_rms)
298 
299 end subroutine qg_gom_rms_c
300 ! ------------------------------------------------------------------------------
301 !> GOM dot product
302 subroutine qg_gom_dotprod_c(c_key_gom1,c_key_gom2,c_prod) bind(c,name='qg_gom_dotprod_f90')
303 
304 implicit none
305 
306 ! Passed variables
307 integer(c_int),intent(in) :: c_key_gom1 !< GOM 1
308 integer(c_int),intent(in) :: c_key_gom2 !< GOM 2
309 real(c_double),intent(inout) :: c_prod !< Dot product
310 
311 ! Local variables
312 type(qg_gom),pointer :: gom1,gom2
313 
314 ! Interface
315 call qg_gom_registry%get(c_key_gom1,gom1)
316 call qg_gom_registry%get(c_key_gom2,gom2)
317 
318 ! Call Fortran
319 call qg_gom_dotprod(gom1,gom2,c_prod)
320 
321 end subroutine qg_gom_dotprod_c
322 ! ------------------------------------------------------------------------------
323 !> Compute GOM statistics
324 subroutine qg_gom_stats_c(c_key_self,c_kobs,c_pmin,c_pmax,c_prms) bind(c,name='qg_gom_stats_f90')
325 
326 implicit none
327 
328 ! Passed variables
329 integer(c_int),intent(in) :: c_key_self !< GOM
330 integer(c_int),intent(inout) :: c_kobs !< Number of observations
331 real(c_double),intent(inout) :: c_pmin !< Minimum value
332 real(c_double),intent(inout) :: c_pmax !< Maximum value
333 real(c_double),intent(inout) :: c_prms !< RMS
334 
335 ! Local variables
336 type(qg_gom),pointer :: self
337 
338 ! Interface
339 call qg_gom_registry%get(c_key_self,self)
340 
341 ! Call Fortran
342 call qg_gom_stats(self,c_kobs,c_pmin,c_pmax,c_prms)
343 
344 end subroutine qg_gom_stats_c
345 ! ------------------------------------------------------------------------------
346 !> Find and locate GOM max. value
347 subroutine qg_gom_maxloc_c(c_key_self,c_mxval,c_mxloc,c_mxvar) bind(c,name='qg_gom_maxloc_f90')
348 
349 implicit none
350 
351 ! Passed variables
352 integer(c_int),intent(in) :: c_key_self !< GOM
353 real(c_double),intent(inout) :: c_mxval !< Maximum value
354 integer(c_int),intent(inout) :: c_mxloc !< Location of maximum value
355 type(c_ptr),value,intent(in) :: c_mxvar !< Variable of maximum value
356 
357 ! Local variables
358 type(qg_gom),pointer :: self
359 type(oops_variables) :: mxvar
360 
361 ! Interface
362 call qg_gom_registry%get(c_key_self,self)
363 mxvar = oops_variables(c_mxvar)
364 
365 ! Call Fortran
366 call qg_gom_maxloc(self,c_mxval,c_mxloc,mxvar)
367 
368 end subroutine qg_gom_maxloc_c
369 ! ------------------------------------------------------------------------------
370 !> Read GOM from file
371 subroutine qg_gom_read_file_c(c_key_self,c_conf) bind(c,name='qg_gom_read_file_f90')
372 
373 implicit none
374 
375 ! Passed variables
376 integer(c_int),intent(inout) :: c_key_self !< GOM
377 type(c_ptr),value,intent(in) :: c_conf !< Configuration
378 
379 ! Local variables
380 type(fckit_configuration) :: f_conf
381 type(qg_gom),pointer :: self
382 
383 ! Interface
384 call qg_gom_registry%get(c_key_self,self)
385 f_conf = fckit_configuration(c_conf)
386 
387 ! Call Fortran
388 call qg_gom_read_file(self,f_conf)
389 
390 end subroutine qg_gom_read_file_c
391 ! ------------------------------------------------------------------------------
392 !> Write GOM to file
393 subroutine qg_gom_write_file_c(c_key_self,c_conf) bind(c,name='qg_gom_write_file_f90')
394 
395 implicit none
396 
397 ! Passed variables
398 integer(c_int),intent(in) :: c_key_self !< GOM
399 type(c_ptr),value,intent(in) :: c_conf !< Configuration
400 
401 ! Local variables
402 type(fckit_configuration) :: f_conf
403 type(qg_gom),pointer :: self
404 
405 ! Interface
406 f_conf = fckit_configuration(c_conf)
407 call qg_gom_registry%get(c_key_self,self)
408 
409 ! Call Fortran
410 call qg_gom_write_file(self,f_conf)
411 
412 end subroutine qg_gom_write_file_c
413 ! ------------------------------------------------------------------------------
414 !> GOM analytic initialization
415 subroutine qg_gom_analytic_init_c(c_key_self,c_locs,c_conf) bind(c,name='qg_gom_analytic_init_f90')
416 
417 implicit none
418 
419 ! Passed variables
420 integer(c_int),intent(in) :: c_key_self !< GOM
421 type(c_ptr),value,intent(in) :: c_locs !< Locations
422 type(c_ptr),value,intent(in) :: c_conf !< Configuration
423 
424 ! Local variables
425 type(fckit_configuration) :: f_conf
426 type(qg_gom),pointer :: self
427 type(qg_locs) :: locs
428 
429 ! Interface
430 f_conf = fckit_configuration(c_conf)
431 call qg_gom_registry%get(c_key_self,self)
432 locs = qg_locs(c_locs)
433 
434 ! Call Fortran
435 call qg_gom_analytic_init(self,locs,f_conf)
436 
437 end subroutine qg_gom_analytic_init_c
438 ! ------------------------------------------------------------------------------
439 end module qg_gom_interface
Fortran interface to Variables.
subroutine qg_gom_maxloc_c(c_key_self, c_mxval, c_mxloc, c_mxvar)
Find and locate GOM max. value.
subroutine qg_gom_abs_c(c_key_self)
Get GOM absolute value.
subroutine qg_gom_create_c(c_key_self, c_vars)
Create GOM and do nothing.
subroutine qg_gom_copy_c(c_key_self, c_key_other)
Copy GOM.
subroutine qg_gom_analytic_init_c(c_key_self, c_locs, c_conf)
GOM analytic initialization.
subroutine qg_gom_read_file_c(c_key_self, c_conf)
Read GOM from file.
subroutine qg_gom_zero_c(c_key_self)
Set GOM to zero.
subroutine qg_gom_delete_c(c_key_self)
Delete GOM.
subroutine qg_gom_stats_c(c_key_self, c_kobs, c_pmin, c_pmax, c_prms)
Compute GOM statistics.
subroutine qg_gom_random_c(c_key_self)
Generate random GOM.
subroutine qg_gom_write_file_c(c_key_self, c_conf)
Write GOM to file.
subroutine qg_gom_rms_c(c_key_self, c_rms)
Compute GOM RMS.
subroutine qg_gom_setup_c(c_key_self, c_locs, c_vars)
Setup GOM.
subroutine qg_gom_divide_c(c_key_self, c_key_other)
Schur division for GOM.
subroutine qg_gom_schurmult_c(c_key_self, c_key_other)
Schur product for GOM.
subroutine qg_gom_diff_c(c_key_self, c_key_other)
Subtract GOM.
subroutine qg_gom_add_c(c_key_self, c_key_other)
Add GOM.
subroutine qg_gom_mult_c(c_key_self, c_zz)
Multiply GOM with a scalar.
subroutine qg_gom_dotprod_c(c_key_gom1, c_key_gom2, c_prod)
GOM dot product.
subroutine, public qg_gom_rms(self, rms)
Compute GOM RMS.
Definition: qg_gom_mod.F90:321
subroutine, public qg_gom_write_file(self, f_conf)
Write GOM to file.
Definition: qg_gom_mod.F90:550
subroutine, public qg_gom_add(self, other)
Add GOM.
Definition: qg_gom_mod.F90:220
type(registry_t), public qg_gom_registry
Linked list interface - defines registry_t type.
Definition: qg_gom_mod.F90:49
subroutine, public qg_gom_schurmult(self, other)
Schur product for GOM.
Definition: qg_gom_mod.F90:254
subroutine, public qg_gom_dotprod(gom1, gom2, prod)
GOM dot product.
Definition: qg_gom_mod.F90:360
subroutine, public qg_gom_random(self)
Generate random GOM values.
Definition: qg_gom_mod.F90:159
subroutine, public qg_gom_setup(self, nobs)
Linked list implementation.
Definition: qg_gom_mod.F90:60
subroutine, public qg_gom_maxloc(self, mxval, mxloc, mxvar)
Find and locate GOM max. value.
Definition: qg_gom_mod.F90:442
subroutine, public qg_gom_diff(self, other)
Subtract GOM.
Definition: qg_gom_mod.F90:237
subroutine, public qg_gom_abs(self)
Get GOM absolute value.
Definition: qg_gom_mod.F90:143
subroutine, public qg_gom_mult(self, zz)
Multiply GOM with a scalar.
Definition: qg_gom_mod.F90:203
subroutine, public qg_gom_read_file(self, f_conf)
Read GOM from file.
Definition: qg_gom_mod.F90:502
subroutine, public qg_gom_delete(self)
Delete GOM.
Definition: qg_gom_mod.F90:81
subroutine, public qg_gom_analytic_init(self, locs, f_conf)
GOM analytic initialization.
Definition: qg_gom_mod.F90:598
subroutine, public qg_gom_divide(self, other)
Schur division for GOM.
Definition: qg_gom_mod.F90:271
subroutine, public qg_gom_copy(self, other)
Copy GOM.
Definition: qg_gom_mod.F90:98
subroutine, public qg_gom_zero(self)
Set GOM to zero.
Definition: qg_gom_mod.F90:127
subroutine, public qg_gom_stats(self, kobs, pmin, pmax, prms)
Compute GOM stats.
Definition: qg_gom_mod.F90:387