11 use atlas_module,
only: atlas_field
12 use fckit_configuration_module,
only: fckit_configuration
26 subroutine qg_gom_setup_c(c_key_self,c_locs,c_vars) bind(c,name='qg_gom_setup_f90')
31 integer(c_int),
intent(inout) :: c_key_self
32 type(c_ptr),
value,
intent(in) :: c_locs
33 type(c_ptr),
value,
intent(in) :: c_vars
36 type(
qg_gom),
pointer :: self
57 integer(c_int),
intent(inout) :: c_key_self
58 type(c_ptr),
value,
intent(in) :: c_vars
61 type(
qg_gom),
pointer :: self
77 integer(c_int),
intent(inout) :: c_key_self
80 type(
qg_gom),
pointer :: self
94 subroutine qg_gom_copy_c(c_key_self,c_key_other) bind(c,name='qg_gom_copy_f90')
99 integer(c_int),
intent(inout) :: c_key_self
100 integer(c_int),
intent(in) :: c_key_other
103 type(
qg_gom),
pointer :: self
104 type(
qg_gom),
pointer :: other
121 integer(c_int),
intent(in) :: c_key_self
124 type(
qg_gom),
pointer :: self
140 integer(c_int),
intent(in) :: c_key_self
143 type(
qg_gom),
pointer :: self
159 integer(c_int),
intent(in) :: c_key_self
162 type(
qg_gom),
pointer :: self
178 integer(c_int),
intent(in) :: c_key_self
179 real(c_double),
intent(in) :: c_zz
182 type(
qg_gom),
pointer :: self
194 subroutine qg_gom_add_c(c_key_self,c_key_other) bind(c,name='qg_gom_add_f90')
199 integer(c_int),
intent(in) :: c_key_self
200 integer(c_int),
intent(in) :: c_key_other
203 type(
qg_gom),
pointer :: self
204 type(
qg_gom),
pointer :: other
216 subroutine qg_gom_diff_c(c_key_self,c_key_other) bind(c,name='qg_gom_diff_f90')
221 integer(c_int),
intent(in) :: c_key_self
222 integer(c_int),
intent(in) :: c_key_other
225 type(
qg_gom),
pointer :: self
226 type(
qg_gom),
pointer :: other
243 integer(c_int),
intent(in) :: c_key_self
244 integer(c_int),
intent(in) :: c_key_other
247 type(
qg_gom),
pointer :: self
248 type(
qg_gom),
pointer :: other
265 integer(c_int),
intent(in) :: c_key_self
266 integer(c_int),
intent(in) :: c_key_other
269 type(
qg_gom),
pointer :: self
270 type(
qg_gom),
pointer :: other
282 subroutine qg_gom_rms_c(c_key_self,c_rms) bind(c,name='qg_gom_rms_f90')
287 integer(c_int),
intent(in) :: c_key_self
288 real(c_double),
intent(inout) :: c_rms
291 type(
qg_gom),
pointer :: self
302 subroutine qg_gom_dotprod_c(c_key_gom1,c_key_gom2,c_prod) bind(c,name='qg_gom_dotprod_f90')
307 integer(c_int),
intent(in) :: c_key_gom1
308 integer(c_int),
intent(in) :: c_key_gom2
309 real(c_double),
intent(inout) :: c_prod
312 type(
qg_gom),
pointer :: gom1,gom2
324 subroutine qg_gom_stats_c(c_key_self,c_kobs,c_pmin,c_pmax,c_prms) bind(c,name='qg_gom_stats_f90')
329 integer(c_int),
intent(in) :: c_key_self
330 integer(c_int),
intent(inout) :: c_kobs
331 real(c_double),
intent(inout) :: c_pmin
332 real(c_double),
intent(inout) :: c_pmax
333 real(c_double),
intent(inout) :: c_prms
336 type(
qg_gom),
pointer :: self
347 subroutine qg_gom_maxloc_c(c_key_self,c_mxval,c_mxloc,c_mxvar) bind(c,name='qg_gom_maxloc_f90')
352 integer(c_int),
intent(in) :: c_key_self
353 real(c_double),
intent(inout) :: c_mxval
354 integer(c_int),
intent(inout) :: c_mxloc
355 type(c_ptr),
value,
intent(in) :: c_mxvar
358 type(
qg_gom),
pointer :: self
376 integer(c_int),
intent(inout) :: c_key_self
377 type(c_ptr),
value,
intent(in) :: c_conf
380 type(fckit_configuration) :: f_conf
381 type(
qg_gom),
pointer :: self
385 f_conf = fckit_configuration(c_conf)
398 integer(c_int),
intent(in) :: c_key_self
399 type(c_ptr),
value,
intent(in) :: c_conf
402 type(fckit_configuration) :: f_conf
403 type(
qg_gom),
pointer :: self
406 f_conf = fckit_configuration(c_conf)
420 integer(c_int),
intent(in) :: c_key_self
421 type(c_ptr),
value,
intent(in) :: c_locs
422 type(c_ptr),
value,
intent(in) :: c_conf
425 type(fckit_configuration) :: f_conf
426 type(
qg_gom),
pointer :: self
430 f_conf = fckit_configuration(c_conf)
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.
subroutine, public qg_gom_write_file(self, f_conf)
Write GOM to file.
subroutine, public qg_gom_add(self, other)
Add GOM.
type(registry_t), public qg_gom_registry
Linked list interface - defines registry_t type.
subroutine, public qg_gom_schurmult(self, other)
Schur product for GOM.
subroutine, public qg_gom_dotprod(gom1, gom2, prod)
GOM dot product.
subroutine, public qg_gom_random(self)
Generate random GOM values.
subroutine, public qg_gom_setup(self, nobs)
Linked list implementation.
subroutine, public qg_gom_maxloc(self, mxval, mxloc, mxvar)
Find and locate GOM max. value.
subroutine, public qg_gom_diff(self, other)
Subtract GOM.
subroutine, public qg_gom_abs(self)
Get GOM absolute value.
subroutine, public qg_gom_mult(self, zz)
Multiply GOM with a scalar.
subroutine, public qg_gom_read_file(self, f_conf)
Read GOM from file.
subroutine, public qg_gom_delete(self)
Delete GOM.
subroutine, public qg_gom_analytic_init(self, locs, f_conf)
GOM analytic initialization.
subroutine, public qg_gom_divide(self, other)
Schur division for GOM.
subroutine, public qg_gom_copy(self, other)
Copy GOM.
subroutine, public qg_gom_zero(self)
Set GOM to zero.
subroutine, public qg_gom_stats(self, kobs, pmin, pmax, prms)
Compute GOM stats.