updated top-level README and version_decl for V4.5 (#1847)
[WRF.git] / var / da / da_radiance / da_residual_rad.inc
blob1077ecabe966a6abaded8104b5a4c0cded8caf99
1 subroutine da_residual_rad(iv, y, re, np_missing, np_bad_data, np_obs_used, np_available)
3    !---------------------------------------------------------------------------
4    ! Purpose: Calculate Obs Residual and counting obs number.
5    !
6    ! Method:  re = (d - H delta_x)
7    !---------------------------------------------------------------------------
9    implicit none
11    type (iv_type), intent(in)    :: iv     ! Innovation vector (O-B).
12    type (y_type) , intent(in)    :: y      ! y = H (xa)
13    type (y_type) , intent(inout) :: re     ! Residual vector (O-A).
15    integer       , intent(inout) :: np_available
16    integer       , intent(inout) :: np_obs_used
17    integer       , intent(inout) :: np_missing
18    integer       , intent(inout) :: np_bad_data
20    type (bad_data_type)              :: n_obs_bad
21    integer                           :: i
23    if (trace_use) call da_trace_entry("da_residual_rad")
25    do i = 1, iv%num_inst
26       if (iv%instid(i)%num_rad < 1) cycle
28       n_obs_bad % rad % num = number_type(0, 0, 0)
29       call da_residual_new(y%instid(i)%tb(:,:), iv%instid(i)%tb_qc(:,:), &
30          iv%instid(i)%tb_inv(:,:), re%instid(i)%tb(:,:))
31       np_available = iv%instid(i)%nchan*iv%instid(i)%num_rad
32    end do
34    np_missing  = np_missing  + n_obs_bad % rad % num % miss
35    np_bad_data = np_bad_data + n_obs_bad % rad % num % bad
36    np_obs_used = np_obs_used + n_obs_bad % rad % num % use 
38    if (trace_use) call da_trace_exit("da_residual_rad")
39    
40 end subroutine da_residual_rad