da_synop.f90

References to this file elsewhere.
1 module da_synop
2 
3    use da_control, only : obs_qc_pointer,max_ob_levels,missing_r, &
4       check_max_iv_print, check_max_iv_unit, v_interp_p, v_interp_h, &
5       check_max_iv, missing, max_error_uv, max_error_t, rootproc, &
6       num_synop_tot, max_error_p,max_error_q, sfc_assi_options, &
7       max_stheight_diff,testing_dm_exact, anal_type_verify
8    use da_define_structures, only : maxmin_type, ob_type, y_type, jo_type, &
9       bad_data_type, x_type, synop_type, number_type, bad_data_type
10    use module_domain, only : xpose_type, xb_type
11    use da_interpolation, only : da_to_zk, &
12       da_interp_obs_lin_2d,da_interp_obs_lin_2d_adj, &
13       da_interp_lin_2d, da_interp_lin_2d_adj
14    use da_statistics, only : da_stats_calculate
15    use da_tools, only : da_max_error_qc, da_residual, da_obs_sfc_correction
16    use da_par_util1, only : da_proc_sum_int
17    use da_par_util, only : da_proc_stats_combine, &
18       da_deallocate_global_synop, da_to_global_synop
19    use da_physics, only : da_sfc_pre, da_transform_xtopsfc, &
20       da_transform_xtopsfc_adj
21 
22    ! The "stats_synop_type" is ONLY used locally in da_synop:
23 
24    type residual_synop1_type
25       real          :: u                        ! u-wind.
26       real          :: v                        ! v-wind.
27       real          :: t                        ! temperature
28       real          :: p                        ! pressure
29       real          :: q                        ! specific humidity
30    end type residual_synop1_type
31 
32    type maxmin_synop_stats_type
33       type (maxmin_type)         :: u, v, t, p, q
34    end type maxmin_synop_stats_type
35 
36    type stats_synop_type
37       type (maxmin_synop_stats_type)  :: maximum, minimum
38       type (residual_synop1_type)     :: average, rms_err
39    end type stats_synop_type
40 
41 contains
42 
43 #include "da_ao_stats_synop.inc"
44 #include "da_jo_and_grady_synop.inc"
45 #include "da_jo_synop_uvtq.inc"
46 #include "da_residual_synop.inc"
47 #include "da_oi_stats_synop.inc"
48 #include "da_print_stats_synop.inc"
49 #include "da_transform_xtoy_synop.inc"
50 #include "da_transform_xtoy_synop_adj.inc"
51 #include "da_get_innov_vector_synop.inc"
52 #include "da_check_max_iv_synop.inc"
53 #include "da_calculate_grady_synop.inc"
54 
55 end module da_synop
56