OOPS
qg_wind_mod.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 
9 module qg_wind_mod
10 
11 use kinds
12 use iso_c_binding
13 use qg_gom_mod
14 use qg_obsvec_mod
15 
16 implicit none
17 
18 private
20 ! ------------------------------------------------------------------------------
21 contains
22 ! ------------------------------------------------------------------------------
23 ! Public
24 ! ------------------------------------------------------------------------------
25 !> Get equivalent for wind (TL calls this subroutine too)
26 subroutine qg_wind_equiv(gom,hofx,bias)
27 
28 implicit none
29 
30 ! Passed variables
31 type(qg_gom),intent(in) :: gom !< GOM
32 type(qg_obsvec),intent(inout) :: hofx !< Observation vector
33 real(kind_real),intent(in) :: bias(2) !< Bias
34 
35 ! Local variables
36 integer :: iobs
37 
38 ! Loop over observations
39 do iobs=1,gom%nobs
40  hofx%values(1,iobs) = gom%u(iobs)+bias(1)
41  hofx%values(2,iobs) = gom%v(iobs)+bias(2)
42 enddo
43 
44 end subroutine qg_wind_equiv
45 ! ------------------------------------------------------------------------------
46 !> Get equivalent for wind - adjoint
47 subroutine qg_wind_equiv_ad(gom,hofx,bias)
48 
49 implicit none
50 
51 ! Passed variables
52 type(qg_gom),intent(inout) :: gom !< GOM
53 type(qg_obsvec),intent(in) :: hofx !< Observation vector
54 real(kind_real),intent(inout) :: bias(2) !< Bias
55 
56 ! Local variables
57 integer :: iobs
58 
59 ! Loop over observations
60 do iobs=1,gom%nobs
61  gom%u(iobs) = hofx%values(1,iobs)
62  gom%v(iobs) = hofx%values(2,iobs)
63  bias(1) = bias(1)+hofx%values(1,iobs)
64  bias(2) = bias(2)+hofx%values(2,iobs)
65 enddo
66 
67 end subroutine qg_wind_equiv_ad
68 ! ------------------------------------------------------------------------------
69 end module qg_wind_mod
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