Merge remote-tracking branch 'origin/release-v4.6.1'
[WRF.git] / var / da / da_qscat / da_residual_qscat.inc
blob9112f5cf60eea15927cffee67842fc0afd05b933
1 subroutine da_residual_qscat(iv, y, re, np_missing, np_bad_data,np_obs_used, np_available)
3    !-----------------------------------------------------------------------
4    ! Purpose: Calculate residuals for qscat obs
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 vector (O-A).
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
21    if (trace_use_dull) call da_trace_entry("da_residual_qscat")
23    n_obs_bad % u % num = number_type(0, 0, 0)
24    n_obs_bad % v % num = number_type(0, 0, 0)
26    do n=1, iv%info(qscat)%nlocal
27       np_available = np_available + 2
28       re%qscat(n)%u = da_residual(n, 0, y%qscat(n)%u, iv%qscat(n)%u, n_obs_bad % u)
29       re%qscat(n)%v = da_residual(n, 0, y%qscat(n)%v, iv%qscat(n)%v, n_obs_bad % v)
30    end do
32    np_missing  = np_missing  + n_obs_bad % u % num % miss + n_obs_bad % v % num % miss
33    np_bad_data = np_bad_data + n_obs_bad % u % num % bad  + n_obs_bad % v % num % bad
34    np_obs_used = np_obs_used + n_obs_bad % u % num % use  + n_obs_bad % v % num % use
36    if (trace_use_dull) call da_trace_exit("da_residual_qscat")
38 end subroutine da_residual_qscat