OOPS
qg_wind_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 iso_c_binding
13 use qg_gom_mod
14 use qg_obsvec_mod
15 use qg_wind_mod
16 
17 implicit none
18 
19 private
20 ! ------------------------------------------------------------------------------
21 contains
22 ! ------------------------------------------------------------------------------
23 !> Get equivalent for wind
24 subroutine qg_wind_equiv_c(c_key_gom,c_key_hofx,c_bias) bind(c,name='qg_wind_equiv_f90')
25 
26 implicit none
27 
28 ! Passed variables
29 integer(c_int),intent(in) :: c_key_gom !< GOM
30 integer(c_int),intent(in) :: c_key_hofx !< Observation vector
31 real(c_double),intent(in) :: c_bias(2) !< Bias
32 
33 ! Local variables
34 type(qg_gom),pointer :: gom
35 type(qg_obsvec),pointer :: hofx
36 
37 ! Interface
38 call qg_gom_registry%get(c_key_gom,gom)
39 call qg_obsvec_registry%get(c_key_hofx,hofx)
40 
41 ! Call Fortran
42 call qg_wind_equiv(gom,hofx,c_bias)
43 
44 end subroutine qg_wind_equiv_c
45 ! ------------------------------------------------------------------------------
46 !> Get equivalent for wind - tangent linear
47 subroutine qg_wind_equiv_tl_c(c_key_gom,c_key_hofx,c_bias) bind(c,name='qg_wind_equiv_tl_f90')
48 
49 implicit none
50 
51 ! Passed variables
52 integer(c_int),intent(in) :: c_key_gom !< GOM
53 integer(c_int),intent(in) :: c_key_hofx !< Observation vector
54 real(c_double),intent(in) :: c_bias(2) !< Bias
55 
56 ! Local variables
57 type(qg_gom),pointer :: gom
58 type(qg_obsvec),pointer :: hofx
59 
60 ! Interface
61 call qg_gom_registry%get(c_key_gom,gom)
62 call qg_obsvec_registry%get(c_key_hofx,hofx)
63 
64 ! Call Fortran
65 call qg_wind_equiv(gom,hofx,c_bias)
66 
67 end subroutine qg_wind_equiv_tl_c
68 ! ------------------------------------------------------------------------------
69 !> Get equivalent for wind - adjoint
70 subroutine qg_wind_equiv_ad_c(c_key_gom,c_key_hofx,c_bias) bind(c,name='qg_wind_equiv_ad_f90')
71 
72 implicit none
73 
74 ! Passed variables
75 integer(c_int),intent(in) :: c_key_gom !< GOM
76 integer(c_int),intent(in) :: c_key_hofx !< Observation vector
77 real(c_double),intent(inout) :: c_bias(2) !< Bias
78 
79 ! Local variables
80 type(qg_gom),pointer :: gom
81 type(qg_obsvec),pointer :: hofx
82 
83 ! Interface
84 call qg_gom_registry%get(c_key_gom,gom)
85 call qg_obsvec_registry%get(c_key_hofx,hofx)
86 
87 ! Call Fortran
88 call qg_wind_equiv_ad(gom,hofx,c_bias)
89 
90 end subroutine qg_wind_equiv_ad_c
91 !------------------------------------------------------------------------------
92 end module qg_wind_interface
type(registry_t), public qg_gom_registry
Linked list interface - defines registry_t type.
Definition: qg_gom_mod.F90:49
type(registry_t), public qg_obsvec_registry
Linked list interface - defines registry_t type.
subroutine qg_wind_equiv_ad_c(c_key_gom, c_key_hofx, c_bias)
Get equivalent for wind - adjoint.
subroutine qg_wind_equiv_c(c_key_gom, c_key_hofx, c_bias)
Get equivalent for wind.
subroutine qg_wind_equiv_tl_c(c_key_gom, c_key_hofx, c_bias)
Get equivalent for wind - tangent linear.
subroutine, public qg_wind_equiv_ad(gom, hofx, bias)
Get equivalent for wind - adjoint.
Definition: qg_wind_mod.F90:48
subroutine, public qg_wind_equiv(gom, hofx, bias)
Get equivalent for wind (TL calls this subroutine too)
Definition: qg_wind_mod.F90:27