Merge remote-tracking branch 'origin/release-v4.5.2'
[WRF.git] / var / da / da_sound / da_jo_sound_uvtq.inc
blob270486504ad72f1cfd5b692bc649a5eddcc17aaf
1 subroutine da_jo_sound_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_sound_uvtq")
19    do n=1, iv%info(sound)%nlocal
20       do k=1, iv%info(sound)%levels(n)
21          if (iv%info(sound)%proc_domain(1,n)) then
22             jo % sound_u = jo % sound_u - re%sound(n)%u(k) * jo_grad_y%sound(n)%u(k)
23             jo % sound_v = jo % sound_v - re%sound(n)%v(k) * jo_grad_y%sound(n)%v(k)
24             jo % sound_t = jo % sound_t - re%sound(n)%t(k) * jo_grad_y%sound(n)%t(k)
25             jo % sound_q = jo % sound_q - re%sound(n)%q(k) * jo_grad_y%sound(n)%q(k)
26          end if
27       end do
28    end do
30    if (trace_use_dull) call da_trace_exit("da_jo_sound_uvtq")
32 end subroutine da_jo_sound_uvtq