Merge remote-tracking branch 'origin/release-v4.5.2'
[WRF.git] / var / da / da_metar / da_transform_xtoy_metar_adj.inc
blob241ebc9dc76012770994386bc9ef279278e4301b
1 subroutine da_transform_xtoy_metar_adj(grid, iv, jo_grad_y, jo_grad_x)
3    !-----------------------------------------------------------------------
4    ! Purpose: TBD
5    !    Updated for Analysis on Arakawa-C grid
6    !    Author: Syed RH Rizvi,  MMM/ESSL/NCAR,  Date: 10/22/2008
7    !-----------------------------------------------------------------------
9    implicit none
11    type (domain),  intent(in)    :: grid          ! first guess state.
12    type (iv_type), intent(in)    :: iv          ! obs. inc vector (o-b).
13    type (y_type) , intent(inout) :: jo_grad_y   ! grad_y(jo)
14    type (x_type) , intent(inout) :: jo_grad_x   ! grad_x(jo)
16    integer :: n        ! Loop counter.
18    real, allocatable :: model_u(:,:)
19    real, allocatable :: model_v(:,:)
20    real, allocatable :: model_t(:,:)
21    real, allocatable :: model_q(:,:)
22    real, allocatable :: model_psfc(:)
24    real, allocatable :: ub(:,:)
25    real, allocatable :: vb(:,:)
27    if (trace_use_dull) call da_trace_entry("da_transform_xtoy_metar_adj")
29    if (sfc_assi_options == sfc_assi_options_1) then
30       allocate (model_u(1,iv%info(metar)%n1:iv%info(metar)%n2))
31       allocate (model_v(1,iv%info(metar)%n1:iv%info(metar)%n2))
32       allocate (model_t(1,iv%info(metar)%n1:iv%info(metar)%n2))
33       allocate (model_q(1,iv%info(metar)%n1:iv%info(metar)%n2))
34       allocate (model_psfc(iv%info(metar)%n1:iv%info(metar)%n2))
36       allocate (ub(1,iv%info(metar)%n1:iv%info(metar)%n2))
37       allocate (vb(1,iv%info(metar)%n1:iv%info(metar)%n2))
39       call da_interp_lin_3d (grid%xb%u, iv%info(metar), ub)
40       call da_interp_lin_3d (grid%xb%v, iv%info(metar), vb)
43       ! [1.2] Interpolate horizontally:
44       do n=iv%info(metar)%n1, iv%info(metar)%n2
46          if (wind_sd_metar) then
47              call da_uv_to_sd_adj(jo_grad_y%metar(n)%u, &
48                                   jo_grad_y%metar(n)%v, model_u(1,n), model_v(1,n), ub(1,n), vb(1,n))
49          else
50             model_u(1,n)  = jo_grad_y%metar(n)%u
51             model_v(1,n)  = jo_grad_y%metar(n)%v
52          end if
54          model_t(1,n)  = jo_grad_y%metar(n)%t
55          model_q(1,n)  = jo_grad_y%metar(n)%q
56          model_psfc(n) = jo_grad_y%metar(n)%p
58       end do
59 #ifdef A2C
60       call da_interp_lin_3d_adj (jo_grad_x%u, iv%info(metar), model_u,'u')
61       call da_interp_lin_3d_adj (jo_grad_x%v, iv%info(metar), model_v,'v')
62 #else
63       call da_interp_lin_3d_adj (jo_grad_x%u, iv%info(metar), model_u)
64       call da_interp_lin_3d_adj (jo_grad_x%v, iv%info(metar), model_v)
65 #endif
66       call da_interp_lin_3d_adj (jo_grad_x%t, iv%info(metar), model_t)
67       call da_interp_lin_3d_adj (jo_grad_x%q, iv%info(metar), model_q)
68       call da_interp_lin_2d_adj (jo_grad_x%psfc, iv%info(metar), 1, model_psfc)
70       deallocate (model_u)
71       deallocate (model_v)
72       deallocate (model_t)
73       deallocate (model_q)
74       deallocate (model_psfc)
75       deallocate (ub)
76       deallocate (vb)
78    else if (sfc_assi_options == sfc_assi_options_2) then
79       call da_transform_xtopsfc_adj(grid,iv,metar,iv%metar(:), jo_grad_y%metar(:),jo_grad_x)
80    end if
82    if (trace_use_dull) call da_trace_exit("da_transform_xtoy_metar_adj")
84 end subroutine da_transform_xtoy_metar_adj