da_pilot.f90

References to this file elsewhere.
1 module da_pilot
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_pilot_tot, max_error_p,max_error_q,  &
7       max_stheight_diff, anal_type_verify
8    use da_define_structures, only : maxmin_type, ob_type, y_type, jo_type, &
9       bad_data_type, x_type, pilot_type, number_type, bad_data_type
10    use module_domain, only : xpose_type, xb_type
11    use da_interpolation, only : da_interp_lin_3d, da_to_zk, &
12       da_interp_lin_3d_adj
13    use da_statistics, only : da_stats_calculate
14    use da_tools, only : da_max_error_qc, da_residual
15    use da_par_util, only : da_proc_stats_combine
16    use da_par_util1, only : da_proc_sum_int
17 
18    ! The "stats_pilot_type" is ONLY used locally in da_pilot:
19 
20    type residual_pilot1_type
21       real          :: u                        ! u-wind.
22       real          :: v                        ! v-wind.
23    end type residual_pilot1_type
24 
25    type maxmin_pilot_stats_type
26       type (maxmin_type)         :: u, v
27    end type maxmin_pilot_stats_type
28 
29    type stats_pilot_type
30       type (maxmin_pilot_stats_type)  :: maximum, minimum
31       type (residual_pilot1_type)     :: average, rms_err
32    end type stats_pilot_type
33 
34 contains
35 
36 #include "da_ao_stats_pilot.inc"
37 #include "da_jo_and_grady_pilot.inc"
38 #include "da_residual_pilot.inc"
39 #include "da_oi_stats_pilot.inc"
40 #include "da_print_stats_pilot.inc"
41 #include "da_transform_xtoy_pilot.inc"
42 #include "da_transform_xtoy_pilot_adj.inc"
43 #include "da_check_max_iv_pilot.inc"
44 #include "da_get_innov_vector_pilot.inc"
45 #include "da_calculate_grady_pilot.inc"
46 
47 end module da_pilot
48