OOPS
qg_error_covariance_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 fckit_configuration_module, only: fckit_configuration
12 use fckit_log_module, only: fckit_log
13 use iso_c_binding
14 use kinds
16 use qg_fields_mod
17 use qg_geom_mod
19 
20 implicit none
21 
22 public
23 ! ------------------------------------------------------------------------------
24 contains
25 ! ------------------------------------------------------------------------------
26 !> Setup error covariance matrix
27 subroutine qg_error_covariance_setup_c(c_key_self,c_conf,c_key_geom) bind (c,name='qg_error_covariance_setup_f90')
28 
29 implicit none
30 
31 ! Passed variables
32 integer(c_int),intent(inout) :: c_key_self !< Error covariance configuration
33 type(c_ptr),value,intent(in) :: c_conf !< Configuration
34 integer(c_int),intent(in) :: c_key_geom !< Geometry
35 
36 ! Local variables
37 type(fckit_configuration) :: f_conf
38 type(qg_error_covariance_config),pointer :: self
39 type(qg_geom),pointer :: geom
40 
41 ! Interface
42 f_conf = fckit_configuration(c_conf)
43 call qg_geom_registry%get(c_key_geom,geom)
45 call qg_error_covariance_registry%add(c_key_self)
46 call qg_error_covariance_registry%get(c_key_self,self)
47 
48 ! Call Fortran
49 call qg_error_covariance_setup(self,f_conf,geom)
50 
51 end subroutine qg_error_covariance_setup_c
52 ! ------------------------------------------------------------------------------
53 !> Delete error covariance matrix
54 subroutine qg_error_covariance_delete_c(c_key_self) bind (c,name='qg_error_covariance_delete_f90')
55 
56 implicit none
57 
58 ! Passed variables
59 integer(c_int),intent(inout) :: c_key_self !< Error covariance configuration
60 
61 ! Local variables
62 type(qg_error_covariance_config),pointer :: self
63 
64 ! Interface
65 call qg_error_covariance_registry%get(c_key_self,self)
66 
67 ! Call Fortran
69 
70 ! Clear interface
71 call qg_error_covariance_registry%remove(c_key_self)
72 
73 end subroutine qg_error_covariance_delete_c
74 ! ------------------------------------------------------------------------------
75 !> Multiply by error covariance matrix
76 subroutine qg_error_covariance_mult_c(c_key_self,c_key_in,c_key_out) bind(c,name='qg_error_covariance_mult_f90')
77 
78 implicit none
79 
80 ! Passed variables
81 integer(c_int),intent(in) :: c_key_self !< Error covariance configuration
82 integer(c_int),intent(in) :: c_key_in !< Input field
83 integer(c_int),intent(in) :: c_key_out !< Output field
84 
85 ! Local variables
86 type(qg_error_covariance_config),pointer :: self
87 type(qg_fields),pointer :: fld_in,fld_out
88 
89 ! Interface
90 call qg_error_covariance_registry%get(c_key_self,self)
91 call qg_fields_registry%get(c_key_in,fld_in)
92 call qg_fields_registry%get(c_key_out,fld_out)
93 
94 ! Call Fortran
95 call qg_error_covariance_mult(self,fld_in,fld_out)
96 
97 end subroutine qg_error_covariance_mult_c
98 ! ------------------------------------------------------------------------------
99 !> Randomize error covariance
100 subroutine qg_error_covariance_randomize_c(c_key_self,c_key_out) bind(c,name='qg_error_covariance_randomize_f90')
101 
102 implicit none
103 
104 ! Passed variables
105 integer(c_int),intent(in) :: c_key_self !< Error covariance configuration
106 integer(c_int),intent(in) :: c_key_out !< Output field
107 
108 ! Local variables
109 type(qg_error_covariance_config),pointer :: self
110 type(qg_fields),pointer :: fld_out
111 
112 ! Interface
113 call qg_error_covariance_registry%get(c_key_self,self)
114 call qg_fields_registry%get(c_key_out,fld_out)
115 
116 ! Call Fortran
117 call qg_error_covariance_randomize(self,fld_out)
118 
119 end subroutine qg_error_covariance_randomize_c
120 ! ------------------------------------------------------------------------------
Fortran interface to Variables.
subroutine qg_error_covariance_mult_c(c_key_self, c_key_in, c_key_out)
Multiply by error covariance matrix.
subroutine qg_error_covariance_setup_c(c_key_self, c_conf, c_key_geom)
Setup error covariance matrix.
subroutine qg_error_covariance_randomize_c(c_key_self, c_key_out)
Randomize error covariance.
subroutine qg_error_covariance_delete_c(c_key_self)
Delete error covariance matrix.
type(registry_t), public qg_error_covariance_registry
Linked list interface - defines registry_t type.
subroutine, public qg_error_covariance_setup(self, f_conf, geom)
Linked list implementation.
subroutine, public qg_error_covariance_delete(self)
Delete error covariance matrix.
subroutine, public qg_error_covariance_randomize(self, fld_out)
Randomize error covariance.
subroutine, public qg_error_covariance_mult(self, fld_in, fld_out)
Multiply by error covariance matrix.
type(registry_t), public qg_fields_registry
Linked list interface - defines registry_t type.
type(registry_t), public qg_geom_registry
Linked list interface - defines registry_t type.
Definition: qg_geom_mod.F90:53