updated top-level README and version_decl for V4.5 (#1847)
[WRF.git] / var / da / da_ssmi / da_residual_ssmt1.inc
blob739f85ee3959daad70c3308b2c8396b92e8f86cf
1 subroutine da_residual_ssmt1(iv, y, re, np_missing, np_bad_data,np_obs_used, np_available)
3    !-----------------------------------------------------------------------
4    ! Purpose: TBD
5    !-----------------------------------------------------------------------
7    implicit none
9    type (iv_type), intent(in)    :: iv     ! Innovation vector (O-B).
10    type (y_type) , intent(in)    :: y      ! y = H (xa)
11    type (y_type) , intent(inout) :: re     ! Residual structure.
13    integer       , intent(inout) :: np_available
14    integer       , intent(inout) :: np_obs_used
15    integer       , intent(inout) :: np_missing
16    integer       , intent(inout) :: np_bad_data
18    type (bad_data_type) :: n_obs_bad
19    integer              :: n, k
21    if (trace_use_dull) call da_trace_entry("da_residual_ssmt1")
23    n_obs_bad % t % num = number_type(0, 0, 0)
25    do n=1, iv%info(ssmt1)%nlocal
26       do k=1, iv%info(ssmt1)%levels(n)
27          np_available = np_available + 1
28          re%ssmt1(n)%t(k) = da_residual(n, k, y%ssmt1(n)%t(k), iv%ssmt1(n)%t(k), n_obs_bad % t)
29       end do
30    end do
32    np_missing  = np_missing  + n_obs_bad % t % num % miss
33    np_bad_data = np_bad_data + n_obs_bad % t % num % bad
34    np_obs_used = np_obs_used + n_obs_bad % t % num % use
36    if (trace_use_dull) call da_trace_exit("da_residual_ssmt1")
38 end subroutine da_residual_ssmt1