Merge remote-tracking branch 'origin/release-v4.5.2'
[WRF.git] / var / da / da_par_util / da_deallocate_global_sonde_sfc.inc
blob4351478d6686defadabc2201d2ce8c9e433ff73e
1 subroutine da_deallocate_global_sonde_sfc(iv_glob, re_glob, jo_grad_y_glob)
3    !-----------------------------------------------------------------------
4    ! Purpose: TBD
5    !-----------------------------------------------------------------------
7    implicit none
9    type (iv_type), intent(inout) :: iv_glob        ! Innovation vector
10    type (y_type),  intent(inout) :: re_glob        ! residual vector
11    type (y_type),  intent(inout) :: jo_grad_y_glob ! Grad_y(Jo)
13    if (trace_use_dull) call da_trace_entry("da_deallocate_global_sonde_sfc")
15    deallocate(iv_glob%sonde_sfc)
16    deallocate(re_glob%sonde_sfc)
17    deallocate(jo_grad_y_glob%sonde_sfc)
19    if (trace_use_dull) call da_trace_exit("da_deallocate_global_sonde_sfc")
20    
21 end subroutine da_deallocate_global_sonde_sfc