[1926] | 1 | ! A.Idelkadi sept 2013 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
| 2 | !! Module pour declarer et initialiser les parametres de controle des fichiers de sorties et des champs a sortir |
---|
| 3 | !! La routine cosp_output_open (appelee 1 seule fois dans phy_cosp.F90) permet : |
---|
| 4 | !! de creer les fichiers avec leurs grilles horizontales et verticales |
---|
| 5 | !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
| 6 | MODULE cosp_output_mod |
---|
| 7 | |
---|
| 8 | USE MOD_COSP_CONSTANTS |
---|
| 9 | USE MOD_COSP_TYPES |
---|
[2428] | 10 | use MOD_COSP_Modis_Simulator, only : cosp_modis |
---|
[2713] | 11 | use mod_modis_sim, only : numMODISReffIceBins, reffICE_binCenters, & |
---|
| 12 | numMODISReffLiqBins, reffLIQ_binCenters |
---|
[1926] | 13 | |
---|
| 14 | ! cosp_output_mod |
---|
| 15 | INTEGER, PRIVATE :: i |
---|
| 16 | !!!!!!! Controle des fichier de sorties Cosp !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
| 17 | LOGICAL, DIMENSION(3), SAVE :: cosp_outfilekeys |
---|
| 18 | INTEGER, DIMENSION(3), SAVE :: cosp_nidfiles |
---|
| 19 | !$OMP THREADPRIVATE(cosp_outfilekeys, cosp_nidfiles) |
---|
[2447] | 20 | INTEGER, DIMENSION(3), SAVE :: nhoricosp,nvert,nvertmcosp,nvertcol,nvertbze, & |
---|
[2713] | 21 | nvertsratio,nvertisccp,nvertp,nverttemp,nvertmisr, & |
---|
[2822] | 22 | nvertReffIce,nvertReffLiq,nverttau |
---|
[1926] | 23 | REAL, DIMENSION(3), SAVE :: zoutm_cosp |
---|
[2447] | 24 | !$OMP THREADPRIVATE(nhoricosp, nvert,nvertmcosp,nvertcol,nvertsratio,nvertbze,nvertisccp,nvertp,zoutm_cosp,nverttemp,nvertmisr) |
---|
[2822] | 25 | !$OMP THREADPRIVATE(nvertReffIce,nvertReffLiq,nverttau) |
---|
[1926] | 26 | REAL, SAVE :: zdtimemoy_cosp |
---|
| 27 | !$OMP THREADPRIVATE(zdtimemoy_cosp) |
---|
| 28 | CHARACTER(LEN=20), DIMENSION(3), SAVE :: cosp_outfiletypes |
---|
| 29 | CHARACTER(LEN=20), DIMENSION(3), SAVE :: cosp_outfilenames |
---|
| 30 | REAL, DIMENSION(3), SAVE :: cosp_ecritfiles |
---|
| 31 | !$OMP THREADPRIVATE(cosp_outfiletypes, cosp_outfilenames, cosp_ecritfiles) |
---|
| 32 | |
---|
| 33 | !!!! Controle des variables a sortir dans les fichiers !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
| 34 | TYPE ctrl_outcosp |
---|
| 35 | LOGICAL,DIMENSION(3) :: cles !!! Sortir ou non le champs |
---|
| 36 | CHARACTER(len=20) :: name |
---|
| 37 | CHARACTER(len=150) :: description !!! Nom |
---|
| 38 | CHARACTER(len=20) :: unit !!! Unite |
---|
| 39 | CHARACTER(len=20),DIMENSION(3) :: cosp_typeecrit !!! Operation (ave, inst, ...) |
---|
| 40 | END TYPE ctrl_outcosp |
---|
[2428] | 41 | |
---|
[1926] | 42 | ! CALIPSO vars |
---|
| 43 | TYPE(ctrl_outcosp), SAVE :: o_cllcalipso = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
[2944] | 44 | "cllcalipso", "Lidar Low-level Cloud Fraction", "1", (/ ('', i=1, 3) /)) |
---|
[1926] | 45 | TYPE(ctrl_outcosp), SAVE :: o_clmcalipso = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
[2944] | 46 | "clmcalipso", "Lidar Mid-level Cloud Fraction", "1", (/ ('', i=1, 3) /)) |
---|
[1926] | 47 | TYPE(ctrl_outcosp), SAVE :: o_clhcalipso = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
[2944] | 48 | "clhcalipso", "Lidar High-level Cloud Fraction", "1", (/ ('', i=1, 3) /)) |
---|
[1926] | 49 | TYPE(ctrl_outcosp), SAVE :: o_cltcalipso = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
[2944] | 50 | "cltcalipso", "Lidar Total Cloud Fraction", "1", (/ ('', i=1, 3) /)) |
---|
[1926] | 51 | TYPE(ctrl_outcosp), SAVE :: o_clcalipso = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
[2944] | 52 | "clcalipso", "Lidar Cloud Fraction (532 nm)", "1", (/ ('', i=1, 3) /)) |
---|
[1926] | 53 | TYPE(ctrl_outcosp), SAVE :: o_cfad_lidarsr532 = ctrl_outcosp((/ .FALSE., .FALSE., .FALSE. /), & |
---|
| 54 | "cfad_lidarsr532", "Lidar Scattering Ratio CFAD (532 nm)", "1", (/ ('', i=1, 3) /)) |
---|
| 55 | TYPE(ctrl_outcosp), SAVE :: o_parasol_refl = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 56 | "parasol_refl", "PARASOL-like mono-directional reflectance","1", (/ ('', i=1, 3) /)) |
---|
| 57 | TYPE(ctrl_outcosp), SAVE :: o_parasol_crefl = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 58 | "parasol_crefl", "PARASOL-like mono-directional reflectance (integral)","1", (/ ('', i=1, 3) /)) |
---|
[2268] | 59 | TYPE(ctrl_outcosp), SAVE :: o_Ncrefl = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 60 | "Ncrefl", "Nb PARASOL-like mono-directional reflectance (integral)","1", (/ ('', i=1, 3) /)) |
---|
[1926] | 61 | TYPE(ctrl_outcosp), SAVE :: o_atb532 = ctrl_outcosp((/ .FALSE., .FALSE., .FALSE. /), & |
---|
| 62 | "atb532", "Lidar Attenuated Total Backscatter (532 nm)","1", (/ ('', i=1, 3) /)) |
---|
| 63 | TYPE(ctrl_outcosp), SAVE :: o_beta_mol532 = ctrl_outcosp((/ .FALSE., .FALSE., .FALSE. /), & |
---|
| 64 | "beta_mol532", "Lidar Molecular Backscatter (532 nm)","m-1 sr-1", (/ ('', i=1, 3) /)) |
---|
[2428] | 65 | !! AI 11 2015 |
---|
| 66 | TYPE(ctrl_outcosp), SAVE :: o_cllcalipsoice = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 67 | "cllcalipsoice", "CALIPSO Ice-Phase Low Level Cloud Fraction", "%", (/ ('', i=1, 3) /)) |
---|
| 68 | TYPE(ctrl_outcosp), SAVE :: o_cllcalipsoliq = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 69 | "cllcalipsoliq", "CALIPSO Liq-Phase Low Level Cloud Fraction", "%", (/ ('', i=1, 3) /)) |
---|
| 70 | TYPE(ctrl_outcosp), SAVE :: o_clmcalipsoice = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 71 | "clmcalipsoice", "CALIPSO Ice-Phase Mid Level Cloud Fraction", "%", (/ ('', i=1, 3) /)) |
---|
| 72 | TYPE(ctrl_outcosp), SAVE :: o_clmcalipsoliq = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 73 | "clmcalipsoliq", "CALIPSO Liq-Phase Mid Level Cloud Fraction", "%", (/ ('', i=1, 3) /)) |
---|
| 74 | TYPE(ctrl_outcosp), SAVE :: o_clhcalipsoice = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 75 | "clhcalipsoice", "CALIPSO Ice-Phase High Level Cloud Fraction", "%", (/ ('', i=1, 3) /)) |
---|
| 76 | TYPE(ctrl_outcosp), SAVE :: o_clhcalipsoliq = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 77 | "clhcalipsoliq", "CALIPSO Liq-Phase High Level Cloud Fraction", "%", (/ ('', i=1, 3) /)) |
---|
| 78 | TYPE(ctrl_outcosp), SAVE :: o_cltcalipsoice = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 79 | "cltcalipsoice", "CALIPSO Ice-Phase Tot Level Cloud Fraction", "%", (/ ('', i=1, 3) /)) |
---|
| 80 | TYPE(ctrl_outcosp), SAVE :: o_cltcalipsoliq = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 81 | "cltcalipsoliq", "CALIPSO Liq-Phase Tot Level Cloud Fraction", "%", (/ ('', i=1, 3) /)) |
---|
| 82 | TYPE(ctrl_outcosp), SAVE :: o_cllcalipsoun = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 83 | "cllcalipsoun", "CALIPSO Undefined-Phase Low Level Cloud Fraction", "%", (/ ('', i=1, 3) /)) |
---|
| 84 | TYPE(ctrl_outcosp), SAVE :: o_clmcalipsoun = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 85 | "clmcalipsoun", "CALIPSO Undefined-Phase Mid Level Cloud Fraction", "%", (/ ('', i=1, 3) /)) |
---|
| 86 | TYPE(ctrl_outcosp), SAVE :: o_clhcalipsoun = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 87 | "clhcalipsoun", "CALIPSO Undefined-Phase High Level Cloud Fraction", "%", (/ ('', i=1, 3) /)) |
---|
| 88 | TYPE(ctrl_outcosp), SAVE :: o_cltcalipsoun = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 89 | "cltcalipsoun", "CALIPSO Undefined-Phase Tot Level Cloud Fraction", "%", (/ ('', i=1, 3) /)) |
---|
| 90 | TYPE(ctrl_outcosp), SAVE :: o_clcalipsoice = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 91 | "clcalipsoice", "Lidar Ice-Phase Cloud Fraction", "%", (/ ('', i=1, 3) /)) |
---|
| 92 | TYPE(ctrl_outcosp), SAVE :: o_clcalipsoliq = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 93 | "clcalipsoliq", "Lidar Liq-Phase Cloud Fraction", "%", (/ ('', i=1, 3) /)) |
---|
| 94 | TYPE(ctrl_outcosp), SAVE :: o_clcalipsoun = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 95 | "clcalipsoun", "Lidar Undef-Phase Cloud Fraction", "%", (/ ('', i=1, 3) /)) |
---|
| 96 | TYPE(ctrl_outcosp), SAVE :: o_clcalipsotmpice = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 97 | "clcalipsotmpice", "Lidar Ice-Phase Cloud Fraction", "%", (/ ('', i=1, 3) /)) |
---|
| 98 | TYPE(ctrl_outcosp), SAVE :: o_clcalipsotmpliq = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 99 | "clcalipsotmpliq", "Lidar Liq-Phase Cloud Fraction", "%", (/ ('', i=1, 3) /)) |
---|
| 100 | TYPE(ctrl_outcosp), SAVE :: o_clcalipsotmpun = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 101 | "clcalipsotmpun", "Lidar Undef-Phase Cloud Fraction", "%", (/ ('', i=1, 3) /)) |
---|
| 102 | TYPE(ctrl_outcosp), SAVE :: o_clcalipsotmp = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 103 | "clcalipsotmp", "Lidar Cloud Fraction", "%", (/ ('', i=1, 3) /)) |
---|
| 104 | |
---|
[2955] | 105 | TYPE(ctrl_outcosp), SAVE :: o_clopaquecalipso = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & !OPAQ |
---|
| 106 | "clopaquecalipso", "Lidar Opaque Cloud Fraction", "%", (/ ('', i=1, 3) /)) !OPAQ |
---|
| 107 | TYPE(ctrl_outcosp), SAVE :: o_clthincalipso = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & !OPAQ |
---|
| 108 | "clthincalipso", "Lidar Thin Cloud Fraction", "%", (/ ('', i=1, 3) /)) !OPAQ |
---|
| 109 | TYPE(ctrl_outcosp), SAVE :: o_clzopaquecalipso = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & !OPAQ |
---|
| 110 | "clzopaquecalipso", "Lidar mean opacity altitude", "m", (/ ('', i=1, 3) /)) !OPAQ |
---|
| 111 | TYPE(ctrl_outcosp), SAVE :: o_clcalipsoopaque = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & !OPAQ |
---|
| 112 | "clcalipsoopaque", "Lidar Opaque profile Cloud Fraction", "%", (/ ('', i=1, 3) /)) !OPAQ |
---|
| 113 | TYPE(ctrl_outcosp), SAVE :: o_clcalipsothin = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & !OPAQ |
---|
| 114 | "clcalipsothin", "Lidar Thin profile Cloud Fraction", "%", (/ ('', i=1, 3) /)) !OPAQ |
---|
| 115 | TYPE(ctrl_outcosp), SAVE :: o_clcalipsozopaque = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & !OPAQ |
---|
| 116 | "clcalipsozopaque", "Lidar z_opaque Fraction", "%", (/ ('', i=1, 3) /)) !OPAQ |
---|
| 117 | TYPE(ctrl_outcosp), SAVE :: o_clcalipsoopacity = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & !OPAQ |
---|
| 118 | "clcalipsoopacity", "Lidar opacity Fraction", "%", (/ ('', i=1, 3) /)) !OPAQ |
---|
| 119 | |
---|
| 120 | TYPE(ctrl_outcosp), SAVE :: o_proftemp = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & !TIBO |
---|
| 121 | "proftemp", "Temperature profiles (40 lev)", "K", (/ ('', i=1, 3) /)) !TIBO |
---|
| 122 | TYPE(ctrl_outcosp), SAVE :: o_profSR = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & !TIBO |
---|
| 123 | "profSR", "Lidar Scattering Ratio profiles (532 nm)", "1", (/ ('', i=1, 3) /)) !TIBO |
---|
| 124 | |
---|
[2428] | 125 | ! Radar Cloudsat |
---|
| 126 | TYPE(ctrl_outcosp), SAVE :: o_cfadDbze94 = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 127 | "cfadDbze94", "CloudSat Radar Reflectivity CFAD", "%", (/ ('', i=1, 3) /)) |
---|
| 128 | TYPE(ctrl_outcosp), SAVE :: o_dbze94 = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 129 | "dbze94", "CloudSat Radar Reflectivity", "%", (/ ('', i=1, 3) /)) |
---|
| 130 | |
---|
| 131 | ! Calipso + Cloudsat |
---|
| 132 | TYPE(ctrl_outcosp), SAVE :: o_clcalipso2 = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 133 | "clcalipso2", "CALIPSO Cloud Fraction Undetected by CloudSat", "1", (/ ('', i=1, 3) /)) |
---|
[2447] | 134 | TYPE(ctrl_outcosp), SAVE :: o_cltlidarradar = ctrl_outcosp((/ .TRUE., .TRUE.,.TRUE. /), & |
---|
| 135 | "cltlidarradar", "Lidar and Radar Total Cloud Fraction", "%", (/ ('', i=1, 3) /)) |
---|
| 136 | |
---|
[1926] | 137 | ! ISCCP vars |
---|
| 138 | TYPE(ctrl_outcosp), SAVE :: o_sunlit = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 139 | "sunlit", "1 for day points, 0 for nightime","1",(/ ('', i=1, 3) /)) |
---|
| 140 | TYPE(ctrl_outcosp), SAVE :: o_clisccp2 = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
[2944] | 141 | "clisccp2", "Cloud Fraction as Calculated by the ISCCP Simulator","%", (/ ('', i=1, 3) /)) |
---|
[1926] | 142 | TYPE(ctrl_outcosp), SAVE :: o_boxtauisccp = ctrl_outcosp((/ .FALSE., .FALSE., .FALSE. /), & |
---|
| 143 | "boxtauisccp", "Optical Depth in Each Column as Calculated by the ISCCP Simulator","1", (/ ('', i=1, 3) /)) |
---|
| 144 | TYPE(ctrl_outcosp), SAVE :: o_boxptopisccp = ctrl_outcosp((/ .FALSE., .FALSE., .FALSE. /), & |
---|
| 145 | "boxptopisccp", "Cloud Top Pressure in Each Column as Calculated by the ISCCP Simulator","Pa", (/ ('', i=1, 3) /)) |
---|
| 146 | TYPE(ctrl_outcosp), SAVE :: o_tclisccp = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
[2944] | 147 | "tclisccp", "Total Cloud Fraction as Calculated by the ISCCP Simulator", "%", (/ ('', i=1, 3) /)) |
---|
[1926] | 148 | TYPE(ctrl_outcosp), SAVE :: o_ctpisccp = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 149 | "ctpisccp", "Mean Cloud Top Pressure as Calculated by the ISCCP Simulator", "Pa", (/ ('', i=1, 3) /)) |
---|
| 150 | TYPE(ctrl_outcosp), SAVE :: o_tauisccp = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 151 | "tauisccp", "Optical Depth as Calculated by the ISCCP Simulator", "1", (/ ('', i=1, 3) /)) |
---|
| 152 | TYPE(ctrl_outcosp), SAVE :: o_albisccp = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 153 | "albisccp", "Mean Cloud Albedo as Calculated by the ISCCP Simulator", "1", (/ ('', i=1, 3) /)) |
---|
| 154 | TYPE(ctrl_outcosp), SAVE :: o_meantbisccp = ctrl_outcosp((/ .FALSE., .FALSE., .FALSE. /), & |
---|
| 155 | "meantbisccp", " Mean all-sky 10.5 micron brightness temperature as calculated & |
---|
| 156 | by the ISCCP Simulator","K", (/ ('', i=1, 3) /)) |
---|
| 157 | TYPE(ctrl_outcosp), SAVE :: o_meantbclrisccp = ctrl_outcosp((/ .FALSE., .FALSE., .FALSE. /), & |
---|
| 158 | "meantbclrisccp", "Mean clear-sky 10.5 micron brightness temperature as calculated & |
---|
| 159 | by the ISCCP Simulator","K", (/ ('', i=1, 3) /)) |
---|
| 160 | |
---|
[2428] | 161 | ! MISR simulator |
---|
| 162 | TYPE(ctrl_outcosp), SAVE :: o_clMISR = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
[2944] | 163 | "clMISR", "Cloud Fraction as Calculated by the MISR Simulator","%", (/ ('', i=1, 3) /)) |
---|
[2428] | 164 | |
---|
| 165 | ! MODIS simulator |
---|
| 166 | TYPE(ctrl_outcosp), SAVE :: o_cllmodis = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
[2944] | 167 | "cllmodis", "MODIS Low-level Cloud Fraction", "%", (/ ('', i=1, 3) /)) |
---|
[2428] | 168 | TYPE(ctrl_outcosp), SAVE :: o_clmmodis = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
[2944] | 169 | "clmmodis", "MODIS Mid-level Cloud Fraction", "%", (/ ('', i=1, 3) /)) |
---|
[2428] | 170 | TYPE(ctrl_outcosp), SAVE :: o_clhmodis = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
[2944] | 171 | "clhmodis", "MODIS High-level Cloud Fraction", "%", (/ ('', i=1, 3) /)) |
---|
[2428] | 172 | TYPE(ctrl_outcosp), SAVE :: o_cltmodis = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
[2944] | 173 | "cltmodis", "MODIS Total Cloud Fraction", "%", (/ ('', i=1, 3) /)) |
---|
[2428] | 174 | TYPE(ctrl_outcosp), SAVE :: o_clwmodis = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
[2944] | 175 | "clwmodis", "MODIS Cloud Fraction water mean", "%", (/ ('', i=1, 3) /)) |
---|
[2428] | 176 | TYPE(ctrl_outcosp), SAVE :: o_climodis = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
[2944] | 177 | "climodis", "MODIS Cloud Fraction ice mean", "%", (/ ('', i=1, 3) /)) |
---|
[2428] | 178 | TYPE(ctrl_outcosp), SAVE :: o_tautmodis = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 179 | "tautmodis", "MODIS Optical_Thickness_Total_Mean", "1", (/ ('', i=1, 3) /)) |
---|
| 180 | TYPE(ctrl_outcosp), SAVE :: o_tauwmodis = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 181 | "tauwmodis", "MODIS Optical_Thickness_Water_Mean", "1", (/ ('', i=1, 3) /)) |
---|
| 182 | TYPE(ctrl_outcosp), SAVE :: o_tauimodis= ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 183 | "tauimodis", "MODIS Optical_Thickness_Ice_Mean", "1", (/ ('', i=1, 3) /)) |
---|
| 184 | TYPE(ctrl_outcosp), SAVE :: o_tautlogmodis = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 185 | "tautlogmodis", "MODIS Optical_Thickness_Total_logMean", "1", (/ ('', i=1, 3) /)) |
---|
| 186 | TYPE(ctrl_outcosp), SAVE :: o_tauwlogmodis = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 187 | "tauwlogmodis", "MODIS Optical_Thickness_Water_logMean", "1", (/ ('', i=1, 3) /)) |
---|
| 188 | TYPE(ctrl_outcosp), SAVE :: o_tauilogmodis = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
[2944] | 189 | "tauilogmodis", "MODIS Optical_Thickness_Ice_logMean", "1", (/ ('', i=1, 3) /)) |
---|
[2428] | 190 | TYPE(ctrl_outcosp), SAVE :: o_reffclwmodis = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
[2944] | 191 | "reffclwmodis", "Modis Cloud_Particle_Size_Water_Mean", "m", (/ ('', i=1, 3) /)) |
---|
[2428] | 192 | TYPE(ctrl_outcosp), SAVE :: o_reffclimodis = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 193 | "reffclimodis", "Modis Cloud_Particle_Size_Ice_Mean", "m", (/ ('', i=1, 3) /)) |
---|
| 194 | TYPE(ctrl_outcosp), SAVE :: o_pctmodis = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 195 | "pctmodis", "Modis Cloud_Top_Pressure_Total_Mean", "Pa", (/ ('', i=1, 3) /)) |
---|
| 196 | TYPE(ctrl_outcosp), SAVE :: o_lwpmodis = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 197 | "lwpmodis", "Modis Liquid_Water_Path_Mean", "kg m-2", (/ ('', i=1, 3) /)) |
---|
| 198 | TYPE(ctrl_outcosp), SAVE :: o_iwpmodis = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
[2944] | 199 | "iwpmodis", "Modis Ice_Water_Path_Mean", "kg m-2", (/ ('', i=1, 3) /)) |
---|
[2428] | 200 | TYPE(ctrl_outcosp), SAVE :: o_clmodis = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 201 | "clmodis", "MODIS Cloud Area Fraction", "%", (/ ('', i=1, 3) /)) |
---|
[2713] | 202 | TYPE(ctrl_outcosp), SAVE :: o_crimodis = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 203 | "crimodis", "Optical_Thickness_vs_ReffIce from Modis", "%", (/ ('',i=1, 3) /)) |
---|
| 204 | TYPE(ctrl_outcosp), SAVE :: o_crlmodis = ctrl_outcosp((/ .TRUE., .TRUE.,.TRUE. /), & |
---|
| 205 | "crlmodis", "Optical_Thickness_vs_ReffLiq from Modis", "%", (/ ('',i=1, 3) /)) |
---|
[2428] | 206 | |
---|
| 207 | ! Rttovs simulator |
---|
| 208 | TYPE(ctrl_outcosp), SAVE :: o_tbrttov = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
| 209 | "tbrttov", "Rttovs Cloud Area Fraction", "%", (/ ('', i=1, 3) /)) |
---|
| 210 | |
---|
| 211 | ! Scops and others |
---|
| 212 | TYPE(ctrl_outcosp), SAVE :: o_fracout = ctrl_outcosp((/ .TRUE., .TRUE., .TRUE. /), & |
---|
[2944] | 213 | "fracout", "Subcolumn output from SCOPS", "%", (/ ('', i=1, 3) /)) |
---|
[2428] | 214 | |
---|
[2297] | 215 | LOGICAL, SAVE :: cosp_varsdefined = .FALSE. ! ug PAS THREADPRIVATE ET C'EST NORMAL |
---|
| 216 | REAL, SAVE :: Cosp_fill_value |
---|
| 217 | !$OMP THREADPRIVATE(Cosp_fill_value) |
---|
| 218 | |
---|
[1926] | 219 | |
---|
| 220 | CONTAINS |
---|
| 221 | |
---|
| 222 | !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
| 223 | !!!!!!!!! Ouverture des fichier et definition des axes!!!!!!!! |
---|
| 224 | !! histbeg, histvert |
---|
| 225 | !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
| 226 | |
---|
| 227 | SUBROUTINE cosp_output_open(Nlevlmdz, Ncolumns, presnivs, dtime, freq_cosp, & |
---|
[2137] | 228 | ok_mensuelCOSP, ok_journeCOSP, ok_hfCOSP, ok_all_xml, & |
---|
[2822] | 229 | ecrit_mth, ecrit_day, ecrit_hf, use_vgrid, vgrid, stlidar) |
---|
[1926] | 230 | |
---|
| 231 | USE iophy |
---|
| 232 | USE ioipsl |
---|
| 233 | USE phys_cal_mod |
---|
[2345] | 234 | USE time_phylmdz_mod, ONLY: day_ref, annee_ref, day_ini, start_time, itau_phy |
---|
[2311] | 235 | USE print_control_mod, ONLY: lunout |
---|
[1926] | 236 | |
---|
| 237 | #ifdef CPP_XIOS |
---|
| 238 | ! ug Pour les sorties XIOS |
---|
| 239 | USE wxios |
---|
| 240 | #endif |
---|
| 241 | |
---|
| 242 | IMPLICIT NONE |
---|
| 243 | |
---|
| 244 | !!! Variables d'entree |
---|
| 245 | integer :: Nlevlmdz, Ncolumns ! Number of levels |
---|
| 246 | real,dimension(Nlevlmdz) :: presnivs |
---|
| 247 | real :: dtime, freq_cosp, ecrit_day, ecrit_hf, ecrit_mth |
---|
[2137] | 248 | logical :: ok_mensuelCOSP, ok_journeCOSP, ok_hfCOSP, use_vgrid, ok_all_xml |
---|
[1926] | 249 | type(cosp_vgrid) :: vgrid ! Information on vertical grid of stats |
---|
[2822] | 250 | type(cosp_lidarstats) :: stlidar ! Summary statistics from lidar simulator |
---|
[1926] | 251 | |
---|
| 252 | !!! Variables locales |
---|
[2447] | 253 | integer :: idayref, iff, ii |
---|
| 254 | real :: zjulian,zjulian_start |
---|
| 255 | real,dimension(Ncolumns) :: column_ax |
---|
| 256 | real,dimension(2,SR_BINS) :: sratio_bounds |
---|
| 257 | real,dimension(SR_BINS) :: sratio_ax |
---|
[2822] | 258 | real,dimension(DBZE_BINS) :: dbze_ax |
---|
[2571] | 259 | CHARACTER(LEN=20), DIMENSION(3) :: chfreq = (/ '1day', '1d ', '3h ' /) |
---|
[1926] | 260 | |
---|
| 261 | !!! Variables d'entree |
---|
| 262 | |
---|
| 263 | #ifdef CPP_XIOS |
---|
| 264 | ! ug Variables utilisées pour récupérer le calendrier pour xios |
---|
| 265 | INTEGER :: x_an, x_mois, x_jour |
---|
| 266 | REAL :: x_heure |
---|
[2137] | 267 | INTEGER :: ini_an, ini_mois, ini_jour |
---|
| 268 | REAL :: ini_heure |
---|
[1926] | 269 | #endif |
---|
| 270 | |
---|
| 271 | WRITE(lunout,*) 'Debut cosp_output_mod.F90' |
---|
[2137] | 272 | print*,'cosp_varsdefined',cosp_varsdefined |
---|
[1926] | 273 | ! Initialisations (Valeurs par defaut) |
---|
| 274 | |
---|
[2447] | 275 | !! Definition valeurs axes |
---|
[1926] | 276 | do ii=1,Ncolumns |
---|
| 277 | column_ax(ii) = real(ii) |
---|
| 278 | enddo |
---|
| 279 | |
---|
[2822] | 280 | do i=1,DBZE_BINS |
---|
| 281 | dbze_ax(i) = CFAD_ZE_MIN + CFAD_ZE_WIDTH*(i - 0.5) |
---|
| 282 | enddo |
---|
| 283 | |
---|
[1926] | 284 | |
---|
[2822] | 285 | sratio_bounds(2,:)=stlidar%srbval(:) ! srbval contains the upper |
---|
[2447] | 286 | ! limits from lmd_ipsl_stats.f90 |
---|
[2822] | 287 | sratio_bounds(1,2:SR_BINS) = stlidar%srbval(1:SR_BINS-1) |
---|
| 288 | sratio_bounds(1,1) = 0.0 |
---|
| 289 | sratio_bounds(2,SR_BINS) = 1.e5 ! This matches with Chepfer et al., JGR, |
---|
[2447] | 290 | ! ! 2009. However, it is not consistent |
---|
| 291 | ! with the upper limit in |
---|
| 292 | ! lmd_ipsl_stats.f90, which is |
---|
| 293 | ! LIDAR_UNDEF-1=998.999 |
---|
[2822] | 294 | sratio_ax(:) = (sratio_bounds(1,:)+sratio_bounds(2,:))/2.0 |
---|
[2447] | 295 | |
---|
[1926] | 296 | cosp_outfilenames(1) = 'histmthCOSP' |
---|
| 297 | cosp_outfilenames(2) = 'histdayCOSP' |
---|
| 298 | cosp_outfilenames(3) = 'histhfCOSP' |
---|
| 299 | |
---|
| 300 | cosp_outfiletypes(1) = 'ave(X)' |
---|
| 301 | cosp_outfiletypes(2) = 'ave(X)' |
---|
| 302 | cosp_outfiletypes(3) = 'ave(X)' |
---|
| 303 | |
---|
| 304 | cosp_outfilekeys(1) = ok_mensuelCOSP |
---|
| 305 | cosp_outfilekeys(2) = ok_journeCOSP |
---|
| 306 | cosp_outfilekeys(3) = ok_hfCOSP |
---|
| 307 | |
---|
| 308 | cosp_ecritfiles(1) = mth_len*86400. |
---|
| 309 | cosp_ecritfiles(2) = 1.*86400. |
---|
| 310 | cosp_ecritfiles(3) = 0.125*86400. |
---|
| 311 | |
---|
| 312 | ! Lecture des parametres dans output.def ou config.def |
---|
| 313 | |
---|
| 314 | CALL getin('cosp_outfilenames',cosp_outfilenames) |
---|
| 315 | CALL getin('cosp_outfilekeys',cosp_outfilekeys) |
---|
[2137] | 316 | CALL getin('cosp_ecritfiles',cosp_ecritfiles) |
---|
[1926] | 317 | CALL getin('cosp_outfiletypes',cosp_outfiletypes) |
---|
| 318 | |
---|
| 319 | WRITE(lunout,*)'cosp_outfilenames=',cosp_outfilenames |
---|
| 320 | WRITE(lunout,*)'cosp_outfilekeys=',cosp_outfilekeys |
---|
[2137] | 321 | WRITE(lunout,*)'cosp_ecritfiles=',cosp_ecritfiles |
---|
[1926] | 322 | WRITE(lunout,*)'cosp_outfiletypes=',cosp_outfiletypes |
---|
[2137] | 323 | |
---|
| 324 | idayref = day_ref |
---|
| 325 | CALL ymds2ju(annee_ref, 1, idayref, 0.0, zjulian) |
---|
| 326 | CALL ymds2ju(annee_ref, 1, day_ini, start_time, zjulian_start) |
---|
| 327 | |
---|
[1926] | 328 | #ifdef CPP_XIOS |
---|
[2297] | 329 | |
---|
| 330 | ! recuperer la valeur indefine Xios |
---|
[2367] | 331 | ! CALL xios_get_field_attr("clcalipso",default_value=Cosp_fill_value) |
---|
| 332 | ! Cosp_fill_value=missing_val |
---|
| 333 | Cosp_fill_value=0. |
---|
| 334 | print*,'Cosp_fill_value=',Cosp_fill_value |
---|
[2268] | 335 | ! if (use_vgrid) then |
---|
[2428] | 336 | ! print*,'vgrid%Nlvgrid, vgrid%z = ',vgrid%Nlvgrid, vgrid%z |
---|
[2137] | 337 | CALL wxios_add_vaxis("height", vgrid%Nlvgrid, vgrid%z) |
---|
[2428] | 338 | print*,'wxios_add_vaxis ' |
---|
[2268] | 339 | ! else |
---|
| 340 | ! WRITE(lunout,*) 'wxios_add_vaxis "presnivs", vgrid%Nlvgrid ',vgrid%Nlvgrid |
---|
| 341 | ! CALL wxios_add_vaxis("presnivs", vgrid%Nlvgrid, presnivs) |
---|
| 342 | ! endif |
---|
[2137] | 343 | WRITE(lunout,*) 'wxios_add_vaxis height_mlev, Nlevlmdz ',Nlevlmdz |
---|
| 344 | CALL wxios_add_vaxis("height_mlev", Nlevlmdz, vgrid%mz) |
---|
| 345 | WRITE(lunout,*) 'wxios_add_vaxis sza, PARASOL_NREFL ',PARASOL_NREFL |
---|
| 346 | CALL wxios_add_vaxis("sza", PARASOL_NREFL, PARASOL_SZA) |
---|
| 347 | WRITE(lunout,*) 'wxios_add_vaxis pressure2 ',7 |
---|
| 348 | CALL wxios_add_vaxis("pressure2", 7, ISCCP_PC) |
---|
| 349 | WRITE(lunout,*) 'wxios_add_vaxis column ',Ncolumns |
---|
| 350 | CALL wxios_add_vaxis("column", Ncolumns, column_ax) |
---|
[2428] | 351 | |
---|
| 352 | ! AI nov 2015 |
---|
| 353 | CALL wxios_add_vaxis("temp", LIDAR_NTEMP, LIDAR_PHASE_TEMP) |
---|
| 354 | CALL wxios_add_vaxis("cth16", MISR_N_CTH, MISR_CTH) |
---|
[2822] | 355 | CALL wxios_add_vaxis("dbze", DBZE_BINS, dbze_ax) |
---|
| 356 | CALL wxios_add_vaxis("scatratio", SR_BINS, sratio_ax) |
---|
[2713] | 357 | CALL wxios_add_vaxis("ReffIce", numMODISReffIceBins, reffICE_binCenters) |
---|
| 358 | CALL wxios_add_vaxis("ReffLiq", numMODISReffLiqBins, reffLIQ_binCenters) |
---|
[2822] | 359 | print*,'reffICE_binCenters=',reffICE_binCenters |
---|
| 360 | CALL wxios_add_vaxis("tau", 7, ISCCP_TAU) |
---|
[2713] | 361 | |
---|
[1926] | 362 | #endif |
---|
| 363 | |
---|
| 364 | zdtimemoy_cosp = freq_COSP ! Frequence ou l on moyenne |
---|
| 365 | |
---|
| 366 | DO iff=1,3 |
---|
| 367 | zoutm_cosp(iff) = cosp_ecritfiles(iff) ! Frequence ou l on ecrit en seconde |
---|
| 368 | |
---|
| 369 | IF (cosp_outfilekeys(iff)) THEN |
---|
[2137] | 370 | CALL histbeg_phy_all(cosp_outfilenames(iff),itau_phy,zjulian,& |
---|
[1926] | 371 | dtime,nhoricosp(iff),cosp_nidfiles(iff)) |
---|
[2428] | 372 | ! print*,'histbeg_phy nhoricosp(iff),cosp_nidfiles(iff)', & |
---|
| 373 | ! nhoricosp(iff),cosp_nidfiles(iff) |
---|
[1926] | 374 | |
---|
[2137] | 375 | #ifdef CPP_XIOS |
---|
| 376 | IF (.not. ok_all_xml) then |
---|
| 377 | WRITE(lunout,*) 'wxios_add_file ',cosp_outfilenames(iff) |
---|
| 378 | CALL wxios_add_file(cosp_outfilenames(iff),chfreq(iff),10) |
---|
| 379 | ENDIF |
---|
| 380 | #endif |
---|
| 381 | |
---|
| 382 | #ifndef CPP_IOIPSL_NO_OUTPUT |
---|
[1926] | 383 | ! Definition de l'axe vertical |
---|
| 384 | if (use_vgrid) then |
---|
| 385 | ! Axe vertical Cosp 40 niveaux (en m) |
---|
[2080] | 386 | CALL histvert(cosp_nidfiles(iff),"height","height","m",vgrid%Nlvgrid,vgrid%z,nvert(iff)) |
---|
[1926] | 387 | else |
---|
| 388 | ! Axe vertical modele LMDZ presnivs |
---|
[2080] | 389 | CALL histvert(cosp_nidfiles(iff),"presnivs","Vertical levels","Pa",vgrid%Nlvgrid,presnivs,nvert(iff),"down") |
---|
[1926] | 390 | endif |
---|
| 391 | ! Axe vertical niveaux modele (en m) |
---|
| 392 | CALL histvert(cosp_nidfiles(iff),"height_mlev","height_mlev","m",Nlevlmdz,vgrid%mz,nvertmcosp(iff)) |
---|
| 393 | |
---|
| 394 | CALL histvert(cosp_nidfiles(iff),"sza","solar_zenith_angle","degrees",PARASOL_NREFL,PARASOL_SZA,nvertp(iff)) |
---|
| 395 | |
---|
| 396 | CALL histvert(cosp_nidfiles(iff),"pressure2","pressure","mb",7,ISCCP_PC,nvertisccp(iff),"down") |
---|
| 397 | |
---|
[2955] | 398 | CALL histvert(cosp_nidfiles(iff),"column","column","count",Ncolumns,column_ax,nvertcol(iff)) !DBUG |
---|
[2297] | 399 | |
---|
[2571] | 400 | CALL histvert(cosp_nidfiles(iff),"temp","temperature","C",LIDAR_NTEMP,LIDAR_PHASE_TEMP,nverttemp(iff)) |
---|
| 401 | |
---|
| 402 | CALL histvert(cosp_nidfiles(iff),"cth16","altitude","m",MISR_N_CTH,MISR_CTH,nvertmisr(iff)) |
---|
[2713] | 403 | |
---|
| 404 | CALL histvert(cosp_nidfiles(iff),"ReffIce","Effective_particle_size_Ice","microns",numMODISReffIceBins, reffICE_binCenters, & |
---|
| 405 | nvertReffIce(iff)) |
---|
| 406 | |
---|
| 407 | CALL histvert(cosp_nidfiles(iff),"ReffLiq","Effective_particle_size_Liq","microns",numMODISReffLiqBins, reffLIQ_binCenters, & |
---|
| 408 | nvertReffLiq(iff)) |
---|
[2571] | 409 | |
---|
[2822] | 410 | CALL histvert(cosp_nidfiles(iff),"dbze","equivalent_reflectivity_factor","dBZ",DBZE_BINS,dbze_ax,nvertbze(iff)) |
---|
[2447] | 411 | |
---|
[2822] | 412 | CALL histvert(cosp_nidfiles(iff),"scatratio","backscattering_ratio","1",SR_BINS,sratio_ax,nvertsratio(iff)) |
---|
| 413 | |
---|
| 414 | CALL histvert(cosp_nidfiles(iff),"tau","cloud optical depth","1",7,ISCCP_TAU,nverttau(iff)) |
---|
[2447] | 415 | |
---|
[2297] | 416 | !!! Valeur indefinie en cas IOIPSL |
---|
| 417 | Cosp_fill_value=0. |
---|
| 418 | |
---|
[1926] | 419 | #endif |
---|
| 420 | |
---|
| 421 | ENDIF |
---|
| 422 | ENDDO |
---|
| 423 | |
---|
| 424 | end SUBROUTINE cosp_output_open |
---|
| 425 | |
---|
| 426 | END MODULE cosp_output_mod |
---|