Merge remote-tracking branch 'origin/release-v4.5.2'
[WRF.git] / var / da / da_synop / da_transform_xtoy_synop.inc
blob6c4df34d1c7f7a932d16f9c266ef41ef7fc872d6
1 subroutine da_transform_xtoy_synop (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_psfc(:)
22    real, allocatable :: ub(:,:)
23    real, allocatable :: vb(:,:)
24    if (trace_use_dull) call da_trace_entry("da_transform_xtoy_synop")
26    if (sfc_assi_options == sfc_assi_options_1) then
27       allocate (model_u(1,iv%info(synop)%n1:iv%info(synop)%n2))
28       allocate (model_v(1,iv%info(synop)%n1:iv%info(synop)%n2))
29       allocate (model_t(1,iv%info(synop)%n1:iv%info(synop)%n2))
30       allocate (model_q(1,iv%info(synop)%n1:iv%info(synop)%n2))
31       allocate (model_psfc(iv%info(synop)%n1:iv%info(synop)%n2))
32       allocate (ub(1,iv%info(synop)%n1:iv%info(synop)%n2))
33       allocate (vb(1,iv%info(synop)%n1:iv%info(synop)%n2))
35       call da_interp_lin_3d (grid%xb%u, iv%info(synop), ub)
36       call da_interp_lin_3d (grid%xb%v, iv%info(synop), vb)
38       ! [1.2] Interpolate horizontally:
39 #ifdef A2C
40       call da_interp_lin_3d (grid%xa%u, iv%info(synop), model_u,'u')
41       call da_interp_lin_3d (grid%xa%v, iv%info(synop), model_v,'v')
42 #else
43       call da_interp_lin_3d (grid%xa%u, iv%info(synop), model_u)
44       call da_interp_lin_3d (grid%xa%v, iv%info(synop), model_v)
45 #endif
46       call da_interp_lin_3d (grid%xa%t, iv%info(synop), model_t)
47       call da_interp_lin_3d (grid%xa%q, iv%info(synop), model_q)
49       call da_interp_lin_2d(grid%xa%psfc, iv%info(synop), 1, model_psfc)
51       do n=iv%info(synop)%n1,iv%info(synop)%n2
52          if(wind_sd_synop)then
53             call da_uv_to_sd_lin(y%synop(n)%u,y%synop(n)%v,model_u(1,n),model_v(1,n),ub(1,n),vb(1,n))
54          else
55             y%synop(n)%u = model_u(1,n)
56             y%synop(n)%v = model_v(1,n)
57          end if
58          y%synop(n)%t = model_t(1,n)
59          y%synop(n)%q = model_q(1,n)
60          y%synop(n)%p = model_psfc(n)
61       end do
62       deallocate (model_u)
63       deallocate (model_v)
64       deallocate (model_t)
65       deallocate (model_q)
66       deallocate (model_psfc)
67       deallocate (ub)
68       deallocate (vb)
70    else if (sfc_assi_options == sfc_assi_options_2) then
71       call da_transform_xtopsfc(grid, iv, synop, iv%synop(:), y%synop(:))
72    end if
74    if (trace_use_dull) call da_trace_exit("da_transform_xtoy_synop")
76 end subroutine da_transform_xtoy_synop