updated top-level README and version_decl for V4.5 (#1847)
[WRF.git] / var / da / da_tools / da_get_2d_sum.inc
blob3c5e7f1d4c516d38d5820e63ef6feb6511d76fd4
1 subroutine da_get_2d_sum(var, name)
3    !-----------------------------------------------------------------------
4    ! Purpose: TBD
5    !-----------------------------------------------------------------------
7    implicit none
9    real,             intent(in) :: var(ims:ime, jms:jme)
10    character(len=*), intent(in) :: name
12    real :: partial, total
14    if (trace_use) call da_trace_entry("da_get_2d_sum")
16    partial = sum(var(its:ite,jts:jte)*var(its:ite,jts:jte))
18    total = wrf_dm_sum_real( partial)
20    write(unit=stdout, fmt='(3a, e24.14)') 'Square sum of <', trim(name), '>=', total
22    if (trace_use) call da_trace_exit("da_get_2d_sum")
24 end subroutine da_get_2d_sum