updated top-level README and version_decl for V4.5 (#1847)
[WRF.git] / var / da / da_sound / da_transform_xtoy_sonde_sfc.inc
blob199488d2b01972e294b95bc95bfb9e8285cec577
1 subroutine da_transform_xtoy_sonde_sfc (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(:)
23    real, allocatable :: ub(:,:)
24    real, allocatable :: vb(:,:)
26    if (trace_use_dull) call da_trace_entry("da_transform_xtoy_sonde_sfc")
28    if (sfc_assi_options == sfc_assi_options_1) then
29       allocate (model_u(1,iv%info(sound)%n1:iv%info(sound)%n2))
30       allocate (model_v(1,iv%info(sound)%n1:iv%info(sound)%n2))
31       allocate (model_t(1,iv%info(sound)%n1:iv%info(sound)%n2))
32       allocate (model_q(1,iv%info(sound)%n1:iv%info(sound)%n2))
33       allocate (model_psfc(iv%info(sound)%n1:iv%info(sound)%n2))
35       allocate (ub(1,iv%info(sound)%n1:iv%info(sound)%n2))
36       allocate (vb(1,iv%info(sound)%n1:iv%info(sound)%n2))
38       ! [1.2] Interpolate horizontally:
39 #ifdef A2C
40       call da_interp_lin_3d (grid%xa%u, iv%info(sonde_sfc), model_u,'u')
41       call da_interp_lin_3d (grid%xa%v, iv%info(sonde_sfc), model_v,'v')
42 #else
43       call da_interp_lin_3d (grid%xa%u, iv%info(sonde_sfc), model_u)
44       call da_interp_lin_3d (grid%xa%v, iv%info(sonde_sfc), model_v)
45 #endif
46       call da_interp_lin_3d (grid%xa%t, iv%info(sonde_sfc), model_t)
47       call da_interp_lin_3d (grid%xa%q, iv%info(sonde_sfc), model_q)
49       call da_interp_lin_2d (grid%xa%psfc, iv%info(sonde_sfc), 1, model_psfc)
51       call da_interp_lin_3d (grid%xb%u, iv%info(sonde_sfc), ub)
52       call da_interp_lin_3d (grid%xb%v, iv%info(sonde_sfc), vb)
54       do n=iv%info(sound)%n1,iv%info(sound)%n2
55          if(wind_sd_sound)then
56             call da_uv_to_sd_lin(y%sonde_sfc(n)%u,y%sonde_sfc(n)%v,model_u(1,n),model_v(1,n),ub(1,n),vb(1,n))
57          else
58             y%sonde_sfc(n)%u = model_u(1,n)
59             y%sonde_sfc(n)%v = model_v(1,n)
60          end if
61          y%sonde_sfc(n)%t = model_t(1,n)
62          y%sonde_sfc(n)%q = model_q(1,n)
63          y%sonde_sfc(n)%p = model_psfc(n)
64       end do
66       deallocate (model_u)
67       deallocate (model_v)
68       deallocate (model_t)
69       deallocate (model_q)
70       deallocate (model_psfc)
71       deallocate (ub)
72       deallocate (vb)
74    else if (sfc_assi_options == sfc_assi_options_2) then
75       call da_transform_xtopsfc(grid, iv, sonde_sfc, iv%sonde_sfc(:), y%sonde_sfc(:))
76    end if
78    if (trace_use_dull) call da_trace_exit("da_transform_xtoy_sonde_sfc")
80 end subroutine da_transform_xtoy_sonde_sfc