updated top-level README and version_decl for V4.5 (#1847)
[WRF.git] / var / da / da_sound / da_jo_sonde_sfc_uvtq.inc
blobb064c82f2fb9817e048a223a13fed8367a7de2b8
1 subroutine da_jo_sonde_sfc_uvtq(iv, re, jo_grad_y, jo)
3    !-----------------------------------------------------------------------
4    ! Purpose: Ensures that exactly the same code is used for both
5    ! serial and parallel computations when testing_dm_bitwise_exact is set.
6    !-----------------------------------------------------------------------
7  
8    implicit none
10    type (iv_type), intent(in  ) :: iv         ! Innovation vector.
11    type (y_type),  intent(in  ) :: re         ! Residual vector.
12    type (y_type),  intent(inout) :: jo_grad_y  ! Grad_y(Jo)
13    type (jo_type), intent(inout) :: jo         ! Obs cost function.
14   
15    integer :: n
17    if (trace_use_dull) call da_trace_entry("da_jo_sonde_sfc_uvtq")
19    do n=1, iv%info(sound)%nlocal
20       if (iv%info(sonde_sfc)%proc_domain(1,n)) then
21         jo % sonde_sfc_u = jo % sonde_sfc_u - re%sonde_sfc(n)%u * jo_grad_y%sonde_sfc(n)%u
22         jo % sonde_sfc_v = jo % sonde_sfc_v - re%sonde_sfc(n)%v * jo_grad_y%sonde_sfc(n)%v
23         jo % sonde_sfc_t = jo % sonde_sfc_t - re%sonde_sfc(n)%t * jo_grad_y%sonde_sfc(n)%t
24         jo % sonde_sfc_p = jo % sonde_sfc_p - re%sonde_sfc(n)%p * jo_grad_y%sonde_sfc(n)%p
25         jo % sonde_sfc_q = jo % sonde_sfc_q - re%sonde_sfc(n)%q * jo_grad_y%sonde_sfc(n)%q
26       end if
27    end do
29    if (trace_use_dull) call da_trace_exit("da_jo_sonde_sfc_uvtq")
31 end subroutine da_jo_sonde_sfc_uvtq