updated top-level README and version_decl for V4.5 (#1847)
[WRF.git] / var / da / da_ssmi / da_transform_xtoy_ssmt2_adj.inc
blob0677d2d9698cebd516f3f319712cffc060f29327
1 subroutine da_transform_xtoy_ssmt2_adj(iv, jo_grad_y, jo_grad_x)
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(in)    :: jo_grad_y   ! grad_y(jo)
11    type (x_type) , intent(inout) :: jo_grad_x   ! grad_x(jo)
13    integer  :: n  ! Loop counter.
15    real, allocatable :: rh(:,:)
17    if (trace_use_dull) call da_trace_entry("da_transform_xtoy_ssmt2_adj") 
19    allocate (rh(1:iv%info(ssmt2)%max_lev,iv%info(ssmt2)%n1:iv%info(ssmt2)%n2))
21    do n=iv%info(ssmt2)%n1,iv%info(ssmt2)%n2
22       rh(1:iv%info(ssmt2)%levels(n),n) = jo_grad_y%ssmt2(n)%rh(:)
23    end do
25    call da_interp_lin_3d_adj (jo_grad_x%rh, iv%info(ssmt2), rh)
27    deallocate (rh)
29    if (trace_use_dull) call da_trace_exit("da_transform_xtoy_ssmt2_adj") 
31 end subroutine da_transform_xtoy_ssmt2_adj