updated top-level README and version_decl for V4.5 (#1847)
[WRF.git] / var / da / da_test / da_check_xtoy_adjoint_satob.inc
blob458e65186b29ceb38d0630ee9ef067a07fc6a355
1 subroutine da_check_xtoy_adjoint_satob (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             ! Loop counter.
15    if (trace_use_dull) call da_trace_entry("da_check_xtoy_adjoint_satob")
17    do n=1, iv%num_satob
18       if (iv%satob(n)%loc%proc_domain) then
19          adjtest_lhs = adjtest_lhs + (y%satob(n)%u/typical_u_rms)**2 + &
20                        (y%satob(n)%v/typical_v_rms)**2
21       end if
23       pertile_lhs = pertile_lhs + (y%satob(n)%u/typical_u_rms)**2 + &
24                     (y%satob(n)%v/typical_v_rms)**2
26       y%satob(n)%u = y%satob(n)%u/typical_u_rms ** 2
27       y%satob(n)%v = y%satob(n)%v/typical_v_rms ** 2
28    end do
30    if (trace_use_dull) call da_trace_exit("da_check_xtoy_adjoint_satob")
32 end subroutine da_check_xtoy_adjoint_satob