updated top-level README and version_decl for V4.5 (#1847)
[WRF.git] / var / da / da_tamdar / da_jo_tamdar_uvtq.inc
blobb7cac73508da30ef53c3789d514b19e6ffa98abe
1 subroutine da_jo_tamdar_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    !-----------------------------------------------------------------------
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.
15    integer :: n, k
17    if (trace_use_dull) call da_trace_entry("da_jo_tamdar_uvtq")
19    do n=1, iv%info(tamdar)%nlocal
20       do k=1, iv%info(tamdar)%levels(n)
21          if (iv%info(tamdar)%proc_domain(1,n)) then
22             jo % tamdar_u = jo % tamdar_u - re%tamdar(n)%u(k) * jo_grad_y%tamdar(n)%u(k)
23             jo % tamdar_v = jo % tamdar_v - re%tamdar(n)%v(k) * jo_grad_y%tamdar(n)%v(k)
24             jo % tamdar_t = jo % tamdar_t - re%tamdar(n)%t(k) * jo_grad_y%tamdar(n)%t(k)
25             jo % tamdar_q = jo % tamdar_q - re%tamdar(n)%q(k) * jo_grad_y%tamdar(n)%q(k)
26          end if
27       end do
28    end do
30    if (trace_use_dull) call da_trace_exit("da_jo_tamdar_uvtq")
32 end subroutine da_jo_tamdar_uvtq