da_gpspw.f90
References to this file elsewhere.
1 module da_gpspw
2
3 use module_dm, only : wrf_dm_sum_real
4 use module_domain, only : domain
5
6 use da_control, only : obs_qc_pointer,max_ob_levels,missing_r, &
7 v_interp_p, v_interp_h, check_max_iv_print,kts,kte, &
8 missing, max_error_uv, max_error_t, rootproc, gpspw, &
9 max_error_p,max_error_q, check_max_iv_unit,check_max_iv, &
10 max_stheight_diff,missing_data,max_error_bq,max_error_slp, &
11 max_error_bt, max_error_buv, gpspw,max_error_thickness, &
12 pseudo_var, num_pseudo, use_gpspwobs, max_error_pw, &
13 fails_error_max,pseudo_err,pseudo_x, pseudo_y, stdout, &
14 pseudo_z,pseudo_val,max_error_ref, trace_use_dull, pseudo, its,ite,jts,jte
15 use da_define_structures, only : maxmin_type, iv_type, y_type, jo_type, &
16 bad_data_type, x_type, number_type, bad_data_type, &
17 maxmin_type
18 use da_par_util, only : da_proc_stats_combine
19 use da_par_util1, only : da_proc_sum_int
20 use da_reporting, only : da_error
21 use da_statistics, only : da_stats_calculate
22 use da_tools, only : da_max_error_qc, da_residual
23 use da_tracing, only : da_trace_entry, da_trace_exit
24
25 ! The "stats_gpspw_type" is ONLY used locally in da_gpspw:
26
27 type residual_gpspw1_type
28 real :: tpw ! Precipitable water
29 end type residual_gpspw1_type
30
31 type maxmin_gpspw_stats_type
32 type (maxmin_type) :: tpw
33 end type maxmin_gpspw_stats_type
34
35 type stats_gpspw_type
36 type (maxmin_gpspw_stats_type) :: maximum, minimum
37 type (residual_gpspw1_type) :: average, rms_err
38 end type stats_gpspw_type
39
40 contains
41
42 #include "da_ao_stats_gpspw.inc"
43 #include "da_jo_and_grady_gpspw.inc"
44 #include "da_residual_gpspw.inc"
45 #include "da_oi_stats_gpspw.inc"
46 #include "da_print_stats_gpspw.inc"
47 #include "da_transform_xtoy_gpspw.inc"
48 #include "da_transform_xtoy_gpspw_adj.inc"
49 #include "da_check_max_iv_gpspw.inc"
50 #include "da_get_innov_vector_gpspw.inc"
51 #include "da_calculate_grady_gpspw.inc"
52
53
54 end module da_gpspw
55