updated top-level README and version_decl for V4.5 (#1847)
[WRF.git] / var / da / da_gpspw / da_print_stats_gpspw.inc
blob2ea50f1cbd5e043f5d65dd937d063f56ef676ca4
1 subroutine da_print_stats_gpspw(stats_unit, ntpw, Gpspw)
3    !-----------------------------------------------------------------------
4    ! Purpose: TBD
5    !-----------------------------------------------------------------------
7    implicit none
9    integer,                 intent(in)    :: stats_unit
10    integer,                 intent(inout) :: ntpw
11    type (stats_gpspw_type), intent(in)    :: gpspw
13    if (trace_use_dull) call da_trace_entry("da_residual_gpspw")
15    if (ntpw > 0) then
16       if (use_gpspwObs) then
17         write(unit=stats_unit, fmt='(a/)') '   var           tpw(cm)     n'
18       else if (use_gpsztdObs) then
19         write(unit=stats_unit, fmt='(a/)') '   var           ztd(cm)     n'
20       endif
22       write(unit=stats_unit, fmt='(a,i14)') '  Number: ', ntpw
24       write(unit=stats_unit, fmt='(a, f12.4,i5)') &
25         ' Minimum(n): ', gpspw%minimum%tpw%value, &
26                          gpspw%minimum%tpw%n    , &
27         ' Maximum(n): ', gpspw%maximum%tpw%value, &
28                          gpspw%maximum%tpw%n
29       write(unit=stats_unit, fmt='(a, f12.4,5x)') &
30         ' Average   : ', gpspw%average%tpw/real(ntpw), &
31         '    RMSE   : ', sqrt(gpspw%rms_err%tpw/real(ntpw))
32    end if
34    if (trace_use_dull) call da_trace_exit("da_residual_gpspw")
36 end subroutine da_print_stats_gpspw