Merge remote-tracking branch 'origin/release-v4.5.2'
[WRF.git] / var / da / da_metar / da_transform_xtoy_metar.inc
blobf37ae0371ac8bcbfbee72fe5da06aa8f0ade1b33
1 subroutine da_transform_xtoy_metar (grid, iv, y)
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(inout) :: grid
12    type (iv_type), intent(in)    :: iv       ! Innovation vector (O-B).
13    type (y_type),  intent(inout) :: y        ! y = h (grid%xa) (linear)
15    integer                      :: n   ! Loop counter.
17    real, allocatable :: model_u(:,:)
18    real, allocatable :: model_v(:,:)
19    real, allocatable :: model_t(:,:)
20    real, allocatable :: model_q(:,:)
21    real, allocatable :: model_p(:)
23    real, allocatable :: ub(:,:)
24    real, allocatable :: vb(:,:)
26    if (trace_use_dull) call da_trace_entry("da_transform_xtoy_metar")
28    if (sfc_assi_options == sfc_assi_options_1) then
29       allocate (model_u(1,iv%info(metar)%n1:iv%info(metar)%n2))
30       allocate (model_v(1,iv%info(metar)%n1:iv%info(metar)%n2))
31       allocate (model_t(1,iv%info(metar)%n1:iv%info(metar)%n2))
32       allocate (model_q(1,iv%info(metar)%n1:iv%info(metar)%n2))
33       allocate (model_p(iv%info(metar)%n1:iv%info(metar)%n2))
35       allocate (ub(1,iv%info(metar)%n1:iv%info(metar)%n2))
36       allocate (vb(1,iv%info(metar)%n1:iv%info(metar)%n2))
39       ! [1.2] Interpolate horizontally:
40 #ifdef A2C
41       call da_interp_lin_3d (grid%xa%u, iv%info(metar),model_u,'u')
42       call da_interp_lin_3d (grid%xa%v, iv%info(metar),model_v,'v')
43 #else
44       call da_interp_lin_3d (grid%xa%u, iv%info(metar),model_u)
45       call da_interp_lin_3d (grid%xa%v, iv%info(metar),model_v)
46 #endif
47       call da_interp_lin_3d (grid%xa%t, iv%info(metar),model_t)
48       call da_interp_lin_3d (grid%xa%q, iv%info(metar),model_q)
50       call da_interp_lin_2d (grid%xa%psfc, iv%info(metar), 1, model_p)
52       call da_interp_lin_3d (grid%xb%u, iv%info(metar), ub)
53       call da_interp_lin_3d (grid%xb%v, iv%info(metar), vb)
55       do n=iv%info(metar)%n1,iv%info(metar)%n2
57          if (wind_sd_metar) then
58             call da_uv_to_sd_lin(y%metar(n)%u,y%metar(n)%v,model_u(1,n),model_v(1,n),ub(1,n),vb(1,n))
59          else
60             y%metar(n)%u = model_u(1,n)
61             y%metar(n)%v = model_v(1,n)
62          end if
64          y%metar(n)%t = model_t(1,n)
65          y%metar(n)%q = model_q(1,n)
66          y%metar(n)%p = model_p(n)
68       end do
70       deallocate (model_u)
71       deallocate (model_v)
72       deallocate (model_t)
73       deallocate (model_q)
74       deallocate (model_p)
75       deallocate (ub)
76       deallocate (vb)
78    else if (sfc_assi_options == sfc_assi_options_2) then
79       ! [2.0] Surface assimilation approach 2
80       call da_transform_xtopsfc(grid,iv,metar,iv%metar(:),y%metar(:))
81    end if
83    if (trace_use_dull) call da_trace_exit("da_transform_xtoy_metar")
85 end subroutine da_transform_xtoy_metar