updated top-level README and version_decl for V4.5 (#1847)
[WRF.git] / var / da / da_airsr / da_jo_airsr_tq.inc
blob0dc599fab0cddb7d312c0c8dac25fa5fd75fcfe6
1 subroutine da_jo_airsr_tq(iv, re, jo_grad_y, jo)
3    !-----------------------------------------------------------------------
4    ! Purpose: TBD
5    !-----------------------------------------------------------------------
7    implicit none
9    type (iv_type), intent(in)    :: iv         ! Innovation vector.
10    type (y_type),  intent(in)    :: re         ! Residual vector.
11    type (y_type),  intent(inout) :: jo_grad_y  ! Grad_y(Jo)
12    type (jo_type), intent(inout) :: jo         ! Obs cost function.
14    integer :: n, k
16    if (trace_use_dull) call da_trace_entry("da_jo_airsr_tq")
18    do n=1, iv%info(airsr)%nlocal
19       if (iv%info(airsr)%proc_domain(1,n)) then
20          do k=1, iv%info(airsr)%levels(n)
21             jo % airsr_t = jo % airsr_t - re%airsr(n)%t(k) * jo_grad_y%airsr(n)%t(k)
22             jo % airsr_q = jo % airsr_q - re%airsr(n)%q(k) * jo_grad_y%airsr(n)%q(k)
23          end do
24       end if
25    end do
27    if (trace_use_dull) call da_trace_exit("da_jo_airsr_tq")
29 end subroutine da_jo_airsr_tq