Merge remote-tracking branch 'origin/release-v4.6.1'
[WRF.git] / var / da / da_test / da_check_xtoy_adjoint_ssmt1.inc
blob6e7052b2d074d721f2d8e1f4f1afafcb4c5581ff
1 subroutine da_check_xtoy_adjoint_ssmt1(iv, y, adjtest_lhs, pertile_lhs)
3    !-----------------------------------------------------------------------
4    ! Purpose: TBD
5    !-----------------------------------------------------------------------
7    implicit none
9    type (iv_type), intent(in)     :: iv            ! obs. inc. vector (o-b).
10    type (y_type) , intent(inout)  :: y             ! y = h (xa)
11    real          , intent(inout)  :: adjtest_lhs, pertile_lhs   
13    integer  :: n, k          ! Loop counter.
15    if (trace_use_dull) call da_trace_entry("da_check_xtoy_adjoint_ssmt1")
17    do n=iv%info(ssmt1)%n1, iv%info(ssmt1)%n2
18       if (iv%info(ssmt1)%proc_domain(1,n)) then
19          do k=1, iv%info(ssmt1)%levels(n)
20             adjtest_lhs = adjtest_lhs + (y%ssmt1(n)%t(k)/typical_t_rms)**2
21          end do
22       end if
24       do k=1, iv%info(ssmt1)%levels(n)
25          pertile_lhs = pertile_lhs + (y%ssmt1(n)%t(k)/typical_t_rms)**2
27          y%ssmt1(n)%t(k) = y%ssmt1(n)%t(k) / typical_t_rms ** 2
28       end do
29    end do
31    if (trace_use_dull) call da_trace_exit("da_check_xtoy_adjoint_ssmt1")
33 end subroutine da_check_xtoy_adjoint_ssmt1