1 subroutine da_deallocate_global_sonde_sfc(iv_glob, re_glob, jo_grad_y_glob)
3 !-----------------------------------------------------------------------
5 !-----------------------------------------------------------------------
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")
21 end subroutine da_deallocate_global_sonde_sfc