Merge remote-tracking branch 'origin/release-v4.5.2'
[WRF.git] / var / da / da_ssmi / da_jo_and_grady_ssmt2.inc
blob9800421d759a0afa4bef1f5ccbee04f23b8c1b92
1 subroutine da_jo_and_grady_ssmt2(iv, re, jo, jo_grad_y)
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_and_grady_ssmt2")
18    jo % ssmt2_rh = 0.0
19    
20    do n=1, iv%info(ssmt2)%nlocal
21       do k=1, iv%info(ssmt2)%levels(n)
22          jo_grad_y%ssmt2(n)%rh(k) = -re%ssmt2(n)%rh(k) / &
23             (iv%ssmt2(n)%rh(k)%error * iv%ssmt2(n)%rh(k)%error)
25          jo % ssmt2_rh = jo % ssmt2_rh - re%ssmt2(n)%rh(k) * jo_grad_y%ssmt2(n)%rh(k)
26       end do
27    end do
29    jo % ssmt2_rh = 0.5 * jo % ssmt2_rh
31    if (trace_use_dull) call da_trace_exit("da_jo_and_grady_ssmt2")
33 end subroutine da_jo_and_grady_ssmt2