Merge remote-tracking branch 'origin/release-v4.5.2'
[WRF.git] / var / da / da_buoy / da_buoy.f90
blobb08cc61ff70dc4813f38376d7498a6c596d6a166
1 module da_buoy
3 use module_domain, only : domain
5 use da_control, only : obs_qc_pointer,max_ob_levels,missing_r, &
6 check_max_iv_print, check_max_iv_unit, v_interp_p, v_interp_h, &
7 check_max_iv, missing, max_error_uv, max_error_t, rootproc, &
8 buoy, max_error_p,max_error_q, trace_use_dull,fails_error_max, &
9 max_stheight_diff,missing_data,max_error_bq,max_error_slp, &
10 max_error_bt, max_error_buv,sfc_assi_options, anal_type_verify, &
11 kms,kme,kts,kte,sfc_assi_options_1,sfc_assi_options_2, max_ext_its,&
12 qcstat_conv_unit,ob_vars, &
13 convert_fd2uv, convert_uv2fd, max_error_spd, max_error_dir, &
14 max_omb_spd, max_omb_dir, pi, qc_rej_both, &
15 wind_sd_buoy, wind_stats_sd, write_rej_obs_conv
16 use da_grid_definitions, only : da_ffdduv, da_ffdduv_model, da_ffdduv_diagnose
17 use da_define_structures, only : maxmin_type, iv_type, y_type, jo_type, &
18 bad_data_type, x_type, number_type, bad_data_type
19 use da_interpolation, only : da_to_zk, &
20 da_interp_lin_3d,da_interp_lin_3d_adj, &
21 da_interp_lin_2d, da_interp_lin_2d_adj, da_interp_lin_2d_partial
22 use da_par_util1, only : da_proc_sum_int
23 use da_par_util, only : da_proc_stats_combine
24 use da_physics, only : da_sfc_pre, da_transform_xtopsfc, da_transform_xtopsfc_adj, &
25 da_uv_to_sd_lin, da_uv_to_sd_adj
26 use da_statistics, only : da_stats_calculate
27 use da_tools, only : da_max_error_qc, da_residual, da_obs_sfc_correction, da_convert_zk
28 use da_tracing, only : da_trace_entry, da_trace_exit
30 ! The "stats_buoy_type" is ONLY used locally in da_buoy:
32 type residual_buoy1_type
33 real :: u ! u-wind.
34 real :: v ! v-wind.
35 real :: t ! temperature
36 real :: p ! pressure
37 real :: q ! specific humidity
38 end type residual_buoy1_type
40 type maxmin_buoy_stats_type
41 type (maxmin_type) :: u, v, t, p, q
42 end type maxmin_buoy_stats_type
44 type stats_buoy_type
45 type (maxmin_buoy_stats_type) :: maximum, minimum
46 type (residual_buoy1_type) :: average, rms_err
47 end type stats_buoy_type
49 contains
51 #include "da_ao_stats_buoy.inc"
52 #include "da_jo_and_grady_buoy.inc"
53 #include "da_residual_buoy.inc"
54 #include "da_oi_stats_buoy.inc"
55 #include "da_print_stats_buoy.inc"
56 #include "da_transform_xtoy_buoy.inc"
57 #include "da_transform_xtoy_buoy_adj.inc"
58 #include "da_check_max_iv_buoy.inc"
59 #include "da_get_innov_vector_buoy.inc"
60 #include "da_calculate_grady_buoy.inc"
63 end module da_buoy