[3940] | 1 | ! $Id: phys_output_mod.F90 3792 2021-01-04 17:01:25Z evignon $ |
---|
[3927] | 2 | ! |
---|
| 3 | |
---|
| 4 | MODULE phys_output_mod |
---|
| 5 | USE indice_sol_mod |
---|
| 6 | USE phys_output_var_mod |
---|
| 7 | USE phys_output_write_mod, ONLY : phys_output_write |
---|
| 8 | REAL, DIMENSION(nfiles),SAVE :: ecrit_files |
---|
| 9 | |
---|
| 10 | ! Abderrahmane 12 2007 |
---|
| 11 | !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
| 12 | !!! Ecreture des Sorties du modele dans les fichiers Netcdf : |
---|
| 13 | ! histmth.nc : moyennes mensuelles |
---|
| 14 | ! histday.nc : moyennes journalieres |
---|
| 15 | ! histhf.nc : moyennes toutes les 3 heures |
---|
| 16 | ! histins.nc : valeurs instantanees |
---|
| 17 | !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
| 18 | |
---|
| 19 | CONTAINS |
---|
| 20 | |
---|
| 21 | !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
| 22 | !!!!!!!!! Ouverture des fichier et definition des variable de sortie !!!!!!!! |
---|
| 23 | !! histbeg, histvert et histdef |
---|
| 24 | !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
| 25 | |
---|
| 26 | SUBROUTINE phys_output_open(rlon,rlat,pim,tabij,ipt,jpt,plon,plat, & |
---|
| 27 | jjmp1,nlevSTD,clevSTD,rlevSTD, dtime, ok_veget, & |
---|
| 28 | type_ocean, iflag_pbl,iflag_pbl_split,ok_mensuel,ok_journe, & |
---|
| 29 | ok_hf,ok_instan,ok_LES,ok_ade,ok_aie, read_climoz, & |
---|
| 30 | phys_out_filestations, & |
---|
| 31 | aerosol_couple, flag_aerosol_strat, & |
---|
| 32 | pdtphys, paprs, pphis, pplay, lmax_th, ptconv, ptconvth, ivap, & |
---|
| 33 | d_u, d_t, qx, d_qx, zmasse, ok_sync) |
---|
| 34 | |
---|
| 35 | USE iophy |
---|
| 36 | USE dimphy |
---|
[4170] | 37 | USE infotrac_phy, ONLY: nqtot, tracers, niso, ntraciso=>ntiso |
---|
[4120] | 38 | USE strings_mod, ONLY: maxlen |
---|
[3927] | 39 | USE ioipsl |
---|
| 40 | USE phys_cal_mod, only : hour, calend |
---|
| 41 | USE mod_phys_lmdz_para |
---|
| 42 | !Martin |
---|
[3940] | 43 | USE surface_data, ONLY : landice_opt |
---|
[3927] | 44 | USE phys_output_ctrlout_mod |
---|
| 45 | USE mod_grid_phy_lmdz, only: klon_glo,nbp_lon,nbp_lat |
---|
| 46 | USE print_control_mod, ONLY: prt_level,lunout |
---|
| 47 | USE vertical_layers_mod, ONLY: ap,bp,preff,presnivs, aps, bps, pseudoalt |
---|
| 48 | USE time_phylmdz_mod, ONLY: day_ini, itau_phy, start_time, annee_ref, day_ref |
---|
| 49 | #ifdef CPP_XIOS |
---|
| 50 | ! ug Pour les sorties XIOS |
---|
| 51 | USE wxios |
---|
| 52 | #endif |
---|
| 53 | #ifdef ISO |
---|
[4149] | 54 | USE isotopes_mod, ONLY: isoName,iso_HTO |
---|
[3927] | 55 | #ifdef ISOTRAC |
---|
| 56 | use isotrac_mod, only: index_zone,index_iso,strtrac |
---|
| 57 | #endif |
---|
| 58 | #endif |
---|
| 59 | |
---|
| 60 | IMPLICIT NONE |
---|
| 61 | include "clesphys.h" |
---|
[4089] | 62 | include "alpale.h" |
---|
[3927] | 63 | include "YOMCST.h" |
---|
| 64 | |
---|
| 65 | ! ug Nouveaux arguments n\'ecessaires au histwrite_mod: |
---|
| 66 | INTEGER, INTENT(IN) :: ivap |
---|
| 67 | INTEGER, DIMENSION(klon), INTENT(IN) :: lmax_th |
---|
| 68 | LOGICAL, INTENT(IN) :: ok_sync |
---|
| 69 | LOGICAL, DIMENSION(klon, klev), INTENT(IN) :: ptconv, ptconvth |
---|
| 70 | REAL, INTENT(IN) :: pdtphys |
---|
| 71 | REAL, DIMENSION(klon), INTENT(IN) :: pphis |
---|
| 72 | REAL, DIMENSION(klon, klev), INTENT(IN) :: pplay, d_u, d_t |
---|
| 73 | REAL, DIMENSION(klon, klev+1), INTENT(IN) :: paprs |
---|
| 74 | REAL, DIMENSION(klon,klev,nqtot), INTENT(IN):: qx, d_qx |
---|
| 75 | REAL, DIMENSION(klon, klev), INTENT(IN) :: zmasse |
---|
| 76 | |
---|
| 77 | |
---|
| 78 | REAL,DIMENSION(klon),INTENT(IN) :: rlon |
---|
| 79 | REAL,DIMENSION(klon),INTENT(IN) :: rlat |
---|
| 80 | INTEGER, INTENT(IN) :: pim |
---|
| 81 | INTEGER, DIMENSION(pim) :: tabij |
---|
| 82 | INTEGER,DIMENSION(pim), INTENT(IN) :: ipt, jpt |
---|
| 83 | REAL,DIMENSION(pim), INTENT(IN) :: plat, plon |
---|
| 84 | REAL,DIMENSION(pim,2) :: plat_bounds, plon_bounds |
---|
| 85 | |
---|
| 86 | INTEGER :: jjmp1 |
---|
| 87 | INTEGER :: nlevSTD, radpas |
---|
| 88 | LOGICAL :: ok_mensuel, ok_journe, ok_hf, ok_instan |
---|
| 89 | LOGICAL :: ok_LES,ok_ade,ok_aie |
---|
| 90 | INTEGER :: flag_aerosol_strat |
---|
| 91 | LOGICAL :: aerosol_couple |
---|
| 92 | INTEGER, INTENT(IN):: read_climoz ! read ozone climatology |
---|
| 93 | ! Allowed values are 0, 1 and 2 |
---|
| 94 | ! 0: do not read an ozone climatology |
---|
| 95 | ! 1: read a single ozone climatology that will be used day and night |
---|
| 96 | ! 2: read two ozone climatologies, the average day and night |
---|
| 97 | ! climatology and the daylight climatology |
---|
| 98 | |
---|
| 99 | REAL :: dtime |
---|
| 100 | INTEGER :: idayref |
---|
| 101 | REAL :: zjulian_start, zjulian |
---|
| 102 | CHARACTER(LEN=4), DIMENSION(nlevSTD) :: clevSTD |
---|
| 103 | REAL, DIMENSION(nlevSTD) :: rlevSTD |
---|
[4056] | 104 | INTEGER :: nsrf, k, iq, iff, i, j, ilev, itr, ixt, iiso, izone |
---|
[3927] | 105 | INTEGER :: naero |
---|
| 106 | LOGICAL :: ok_veget |
---|
| 107 | INTEGER :: iflag_pbl |
---|
| 108 | INTEGER :: iflag_pbl_split |
---|
| 109 | CHARACTER(LEN=4) :: bb2 |
---|
| 110 | CHARACTER(LEN=2) :: bb3 |
---|
| 111 | CHARACTER(LEN=6) :: type_ocean |
---|
| 112 | INTEGER, DIMENSION(nbp_lon*jjmp1) :: ndex2d |
---|
| 113 | INTEGER, DIMENSION(nbp_lon*jjmp1*klev) :: ndex3d |
---|
| 114 | INTEGER :: imin_ins, imax_ins |
---|
| 115 | INTEGER :: jmin_ins, jmax_ins |
---|
| 116 | INTEGER, DIMENSION(nfiles) :: phys_out_levmin, phys_out_levmax |
---|
| 117 | INTEGER, DIMENSION(nfiles) :: phys_out_filelevels |
---|
| 118 | CHARACTER(LEN=20), DIMENSION(nfiles) :: chtimestep = (/ 'Default', 'Default', 'Default', 'Default', 'Default', & |
---|
| 119 | 'Default', 'Default', 'Default', 'Default', 'Default' /) |
---|
| 120 | LOGICAL, DIMENSION(nfiles) :: phys_out_filekeys |
---|
| 121 | LOGICAL, DIMENSION(nfiles) :: phys_out_filestations |
---|
| 122 | |
---|
| 123 | #ifdef ISO |
---|
[4149] | 124 | CHARACTER(LEN=maxlen) :: outiso |
---|
[4046] | 125 | CHARACTER(LEN=20) :: unit |
---|
[3927] | 126 | #endif |
---|
[4046] | 127 | CHARACTER(LEN=maxlen) :: tnam, lnam, dn |
---|
| 128 | INTEGER :: flag(nfiles) |
---|
[3927] | 129 | |
---|
| 130 | !!!!!!!!!! stockage dans une region limitee pour chaque fichier !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
| 131 | ! entre [phys_out_lonmin,phys_out_lonmax] et [phys_out_latmin,phys_out_latmax] |
---|
[4056] | 132 | LOGICAL, DIMENSION(nfiles), SAVE :: & |
---|
| 133 | phys_out_regfkey = [.FALSE., .FALSE., .FALSE., .FALSE., .FALSE., .FALSE., .FALSE., .FALSE., .FALSE., .FALSE.] |
---|
| 134 | REAL, DIMENSION(nfiles), SAVE :: & |
---|
| 135 | phys_out_lonmin = [ -180., -180., -180., -180., -180., -180., -180., -180., -180., -180.], & |
---|
| 136 | phys_out_lonmax = [ 180., 180., 180., 180., 180., 180., 180., 180., 180., 180.], & |
---|
| 137 | phys_out_latmin = [ -90., -90., -90., -90., -90., -90., -90., -90., -90., -90.], & |
---|
| 138 | phys_out_latmax = [ 90., 90., 90., 90., 90., 90., 90., 90., 90., 90.] |
---|
[3927] | 139 | REAL, DIMENSION(klev,2) :: Ahyb_bounds, Bhyb_bounds |
---|
| 140 | REAL, DIMENSION(klev+1) :: lev_index |
---|
| 141 | |
---|
| 142 | #ifdef CPP_XIOS |
---|
| 143 | ! ug Variables utilis\'ees pour r\'ecup\'erer le calendrier pour xios |
---|
| 144 | INTEGER :: x_an, x_mois, x_jour |
---|
| 145 | REAL :: x_heure |
---|
| 146 | INTEGER :: ini_an, ini_mois, ini_jour |
---|
| 147 | REAL :: ini_heure |
---|
| 148 | #endif |
---|
| 149 | INTEGER :: ISW |
---|
| 150 | REAL, DIMENSION(NSW) :: wl1_sun, wl2_sun !wavelength bounds (in um) for SW |
---|
| 151 | REAL, DIMENSION(NSW) :: wn1_sun, wn2_sun !wavenumber bounds (in m-1) for SW |
---|
| 152 | REAL, DIMENSION(NSW) :: spectband !mean wavenumb. of each sp.band |
---|
| 153 | REAL, DIMENSION(NSW,2) :: spbnds_sun !bounds of spectband |
---|
| 154 | |
---|
| 155 | WRITE(lunout,*) 'Debut phys_output_mod.F90' |
---|
| 156 | ! Initialisations (Valeurs par defaut |
---|
| 157 | |
---|
| 158 | DO ilev=1,klev |
---|
| 159 | Ahyb_bounds(ilev,1) = ap(ilev) |
---|
| 160 | Ahyb_bounds(ilev,2) = ap(ilev+1) |
---|
| 161 | Bhyb_bounds(ilev,1) = bp(ilev) |
---|
| 162 | Bhyb_bounds(ilev,2) = bp(ilev+1) |
---|
| 163 | lev_index(ilev) = REAL(ilev) |
---|
| 164 | END DO |
---|
| 165 | lev_index(klev+1) = REAL(klev+1) |
---|
| 166 | |
---|
| 167 | IF (.NOT. ALLOCATED(o_trac)) ALLOCATE(o_trac(nqtot)) |
---|
| 168 | IF (.NOT. ALLOCATED(o_trac_cum)) ALLOCATE(o_trac_cum(nqtot)) |
---|
| 169 | ALLOCATE(o_dtr_the(nqtot),o_dtr_con(nqtot),o_dtr_lessi_impa(nqtot)) |
---|
| 170 | ALLOCATE(o_dtr_lessi_nucl(nqtot),o_dtr_insc(nqtot),o_dtr_bcscav(nqtot)) |
---|
| 171 | ALLOCATE(o_dtr_evapls(nqtot),o_dtr_ls(nqtot),o_dtr_trsp(nqtot)) |
---|
| 172 | ALLOCATE(o_dtr_sscav(nqtot),o_dtr_sat(nqtot),o_dtr_uscav(nqtot)) |
---|
| 173 | ALLOCATE(o_dtr_dry(nqtot),o_dtr_vdf(nqtot)) |
---|
| 174 | |
---|
| 175 | #ifdef ISO |
---|
| 176 | ALLOCATE(o_xtprecip(ntraciso)) |
---|
| 177 | ALLOCATE(o_xtplul(ntraciso)) |
---|
| 178 | ALLOCATE(o_xtpluc(ntraciso)) |
---|
| 179 | ALLOCATE(o_xtevap(ntraciso)) |
---|
[4524] | 180 | ALLOCATE(o_xtevap_srf(ntraciso,4)) |
---|
[3927] | 181 | ALLOCATE(o_xtovap(ntraciso)) |
---|
| 182 | ALLOCATE(o_xtoliq(ntraciso)) |
---|
| 183 | ALLOCATE(o_xtcond(ntraciso)) |
---|
| 184 | ALLOCATE(o_dxtdyn(ntraciso)) |
---|
| 185 | ALLOCATE(o_dxtldyn(ntraciso)) |
---|
| 186 | ALLOCATE(o_dxtcon(ntraciso)) |
---|
| 187 | ALLOCATE(o_dxtlsc(ntraciso)) |
---|
| 188 | ALLOCATE(o_dxteva(ntraciso)) |
---|
| 189 | ALLOCATE(o_dxtajs(ntraciso)) |
---|
| 190 | ALLOCATE(o_dxtvdf(ntraciso)) |
---|
| 191 | ALLOCATE(o_dxtthe(ntraciso)) |
---|
| 192 | ALLOCATE(o_dxtch4(ntraciso)) |
---|
| 193 | if (iso_HTO.gt.0) then |
---|
| 194 | ALLOCATE(o_dxtprod_nucl(ntraciso)) |
---|
| 195 | ALLOCATE(o_dxtcosmo(ntraciso)) |
---|
| 196 | ALLOCATE(o_dxtdecroiss(ntraciso)) |
---|
| 197 | endif |
---|
| 198 | #endif |
---|
| 199 | |
---|
| 200 | levmax = (/ klev, klev, klev, klev, klev, klev, nlevSTD, nlevSTD, nlevSTD, klev /) |
---|
| 201 | |
---|
| 202 | phys_out_filenames(1) = 'histmth' |
---|
| 203 | phys_out_filenames(2) = 'histday' |
---|
| 204 | phys_out_filenames(3) = 'histhf6h' |
---|
| 205 | phys_out_filenames(4) = 'histhf3h' |
---|
| 206 | phys_out_filenames(5) = 'histhf3hm' |
---|
| 207 | phys_out_filenames(6) = 'histstn' |
---|
| 208 | phys_out_filenames(7) = 'histmthNMC' |
---|
| 209 | phys_out_filenames(8) = 'histdayNMC' |
---|
| 210 | phys_out_filenames(9) = 'histhfNMC' |
---|
| 211 | phys_out_filenames(10)= 'histstrataer' |
---|
| 212 | |
---|
| 213 | type_ecri(1) = 'ave(X)' |
---|
| 214 | type_ecri(2) = 'ave(X)' |
---|
| 215 | type_ecri(3) = 'inst(X)' |
---|
| 216 | type_ecri(4) = 'inst(X)' |
---|
| 217 | type_ecri(5) = 'ave(X)' |
---|
| 218 | type_ecri(6) = 'inst(X)' |
---|
| 219 | type_ecri(7) = 'inst(X)' |
---|
| 220 | type_ecri(8) = 'inst(X)' |
---|
| 221 | type_ecri(9) = 'inst(X)' |
---|
| 222 | type_ecri(10)= 'ave(X)' |
---|
| 223 | |
---|
| 224 | clef_files(1) = ok_mensuel |
---|
| 225 | clef_files(2) = ok_journe |
---|
| 226 | clef_files(3) = ok_hf |
---|
| 227 | clef_files(4) = ok_instan |
---|
| 228 | clef_files(5) = ok_LES |
---|
| 229 | clef_files(6) = ok_instan |
---|
| 230 | clef_files(7) = ok_histNMC(1) |
---|
| 231 | clef_files(8) = ok_histNMC(2) |
---|
| 232 | clef_files(9) = ok_histNMC(3) |
---|
| 233 | #ifdef CPP_StratAer |
---|
| 234 | clef_files(10)= .TRUE. |
---|
| 235 | #else |
---|
| 236 | clef_files(10)= .FALSE. |
---|
| 237 | #endif |
---|
| 238 | |
---|
| 239 | !sortir des fichiers "stations" si clef_stations(:)=.TRUE. |
---|
| 240 | clef_stations(1) = .FALSE. |
---|
| 241 | clef_stations(2) = .FALSE. |
---|
| 242 | clef_stations(3) = .FALSE. |
---|
| 243 | clef_stations(4) = .FALSE. |
---|
| 244 | clef_stations(5) = .FALSE. |
---|
| 245 | clef_stations(6) = .FALSE. |
---|
| 246 | clef_stations(7) = .FALSE. |
---|
| 247 | clef_stations(8) = .FALSE. |
---|
| 248 | clef_stations(9) = .FALSE. |
---|
| 249 | clef_stations(10)= .FALSE. |
---|
| 250 | |
---|
| 251 | lev_files(1) = lev_histmth |
---|
| 252 | lev_files(2) = lev_histday |
---|
| 253 | lev_files(3) = lev_histhf |
---|
| 254 | lev_files(4) = lev_histins |
---|
| 255 | lev_files(5) = lev_histLES |
---|
| 256 | lev_files(6) = lev_histins |
---|
| 257 | lev_files(7) = levout_histNMC(1) |
---|
| 258 | lev_files(8) = levout_histNMC(2) |
---|
| 259 | lev_files(9) = levout_histNMC(3) |
---|
| 260 | lev_files(10)= 5 |
---|
| 261 | |
---|
| 262 | ecrit_files(1) = ecrit_mth |
---|
| 263 | ecrit_files(2) = ecrit_day |
---|
| 264 | ecrit_files(3) = ecrit_hf |
---|
| 265 | ecrit_files(4) = ecrit_ins |
---|
| 266 | ecrit_files(5) = ecrit_LES |
---|
| 267 | ecrit_files(6) = ecrit_ins |
---|
| 268 | ecrit_files(7) = freq_outNMC(1) |
---|
| 269 | ecrit_files(8) = freq_outNMC(2) |
---|
| 270 | ecrit_files(9) = freq_outNMC(3) |
---|
| 271 | ecrit_files(10)= ecrit_mth |
---|
| 272 | |
---|
| 273 | !! Lectures des parametres de sorties dans physiq.def |
---|
| 274 | |
---|
| 275 | CALL getin('phys_out_regfkey',phys_out_regfkey) |
---|
| 276 | CALL getin('phys_out_lonmin',phys_out_lonmin) |
---|
| 277 | CALL getin('phys_out_lonmax',phys_out_lonmax) |
---|
| 278 | CALL getin('phys_out_latmin',phys_out_latmin) |
---|
| 279 | CALL getin('phys_out_latmax',phys_out_latmax) |
---|
| 280 | phys_out_levmin(:)=levmin(:) |
---|
| 281 | CALL getin('phys_out_levmin',levmin) |
---|
| 282 | phys_out_levmax(:)=levmax(:) |
---|
| 283 | CALL getin('phys_out_levmax',levmax) |
---|
| 284 | CALL getin('phys_out_filenames',phys_out_filenames) |
---|
| 285 | phys_out_filekeys(:)=clef_files(:) |
---|
| 286 | CALL getin('phys_out_filekeys',clef_files) |
---|
| 287 | phys_out_filestations(:)=clef_stations(:) |
---|
| 288 | CALL getin('phys_out_filestations',clef_stations) |
---|
| 289 | phys_out_filelevels(:)=lev_files(:) |
---|
| 290 | CALL getin('phys_out_filelevels',lev_files) |
---|
| 291 | CALL getin('phys_out_filetimesteps',chtimestep) |
---|
| 292 | phys_out_filetypes(:)=type_ecri(:) |
---|
| 293 | CALL getin('phys_out_filetypes',type_ecri) |
---|
| 294 | |
---|
| 295 | type_ecri_files(:)=type_ecri(:) |
---|
| 296 | |
---|
| 297 | ! if (ok_all_xml) phys_out_filelevels = 999 |
---|
| 298 | |
---|
| 299 | WRITE(lunout,*)'phys_out_lonmin=',phys_out_lonmin |
---|
| 300 | WRITE(lunout,*)'phys_out_lonmax=',phys_out_lonmax |
---|
| 301 | WRITE(lunout,*)'phys_out_latmin=',phys_out_latmin |
---|
| 302 | WRITE(lunout,*)'phys_out_latmax=',phys_out_latmax |
---|
| 303 | WRITE(lunout,*)'phys_out_filenames=',phys_out_filenames |
---|
| 304 | WRITE(lunout,*)'phys_out_filetypes=',type_ecri |
---|
| 305 | WRITE(lunout,*)'phys_out_filekeys=',clef_files |
---|
| 306 | WRITE(lunout,*)'phys_out_filestations=',clef_stations |
---|
| 307 | WRITE(lunout,*)'phys_out_filelevels=',lev_files |
---|
| 308 | WRITE(lunout,*)'phys_out_regfkey=',phys_out_regfkey |
---|
| 309 | |
---|
| 310 | ! A noter pour |
---|
| 311 | ! l heure initiale - dans les fichiers histoire hist* - on met comme |
---|
| 312 | ! heure de debut soit la vraie heure (pour le 1D) soit 0h (pour le 3D) |
---|
| 313 | ! afin d avoir une seule sortie mensuelle par mois lorsque l on tourne |
---|
| 314 | ! par annee (IM). |
---|
| 315 | ! |
---|
| 316 | idayref = day_ref |
---|
| 317 | IF (klon_glo==1) THEN |
---|
| 318 | ! current_time (used to compute hour) is updated at the begining of |
---|
| 319 | ! the physics; to set the correct outputs "initial time" we thus |
---|
| 320 | ! have to use (hour-dtphys). |
---|
| 321 | CALL ymds2ju(annee_ref, 1, idayref, hour-pdtphys, zjulian) |
---|
| 322 | print *,'phys_output_mod: annee,iday,hour,zjulian=',annee_ref,idayref, hour, zjulian |
---|
| 323 | ELSE |
---|
| 324 | CALL ymds2ju(annee_ref, 1, idayref, 0.0, zjulian) |
---|
| 325 | CALL ymds2ju(annee_ref, 1, day_ini, start_time*rday, zjulian_start) |
---|
| 326 | ENDIF |
---|
| 327 | |
---|
| 328 | #ifdef CPP_XIOS |
---|
| 329 | ! ug R\'eglage du calendrier xios |
---|
| 330 | !Temps julian => an, mois, jour, heure |
---|
| 331 | CALL ju2ymds(zjulian, x_an, x_mois, x_jour, x_heure) |
---|
| 332 | CALL ju2ymds(zjulian_start, ini_an, ini_mois, ini_jour, ini_heure) |
---|
| 333 | CALL wxios_set_cal(dtime, calend, x_an, x_mois, x_jour, x_heure, ini_an, & |
---|
| 334 | ini_mois, ini_jour, ini_heure ) |
---|
| 335 | #endif |
---|
| 336 | |
---|
| 337 | !!!!!!!!!!!!!!!!!!!!!!! Boucle sur les fichiers !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
| 338 | ! Appel de histbeg et histvert pour creer le fichier et les niveaux verticaux !! |
---|
| 339 | ! Appel des histbeg pour definir les variables (nom, moy ou inst, freq de sortie .. |
---|
| 340 | !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
| 341 | |
---|
| 342 | zdtime_moy = dtime ! Frequence ou l on moyenne |
---|
| 343 | |
---|
| 344 | |
---|
| 345 | ecrit_files(7) = ecrit_files(1) |
---|
| 346 | ecrit_files(8) = ecrit_files(2) |
---|
| 347 | ecrit_files(9) = ecrit_files(3) |
---|
| 348 | |
---|
| 349 | DO iff=1,nfiles |
---|
| 350 | |
---|
| 351 | ! Calculate ecrit_files for all files |
---|
| 352 | IF ( chtimestep(iff).eq.'Default' ) THEN |
---|
| 353 | ! Par defaut ecrit_files = (ecrit_mensuel ecrit_jour ecrit_hf |
---|
| 354 | ! ...)*86400. |
---|
| 355 | ecrit_files(iff)=ecrit_files(iff)*86400. |
---|
| 356 | ELSE IF (chtimestep(iff).eq.'-1') THEN |
---|
| 357 | PRINT*,'ecrit_files(',iff,') < 0 so IOIPSL work on different' |
---|
| 358 | PRINT*,'months length' |
---|
| 359 | ecrit_files(iff)=-1. |
---|
| 360 | ELSE |
---|
| 361 | CALL convers_timesteps(chtimestep(iff),dtime,ecrit_files(iff)) |
---|
| 362 | ENDIF |
---|
| 363 | |
---|
| 364 | WRITE(lunout,*)'ecrit_files(',iff,')= ',ecrit_files(iff) |
---|
| 365 | zoutm(iff) = ecrit_files(iff) ! Frequence ou l on ecrit en seconde |
---|
| 366 | |
---|
| 367 | |
---|
| 368 | #ifdef CPP_XIOS |
---|
| 369 | !!! Ouverture de chaque fichier XIOS !!!!!!!!!!! |
---|
| 370 | IF (.not. ok_all_xml) THEN |
---|
| 371 | IF (prt_level >= 10) THEN |
---|
| 372 | print*,'phys_output_open: call wxios_add_file with phys_out_filenames(iff)=',trim(phys_out_filenames(iff)) |
---|
| 373 | ENDIF |
---|
| 374 | CALL wxios_add_file(phys_out_filenames(iff),chtimestep(iff),lev_files(iff)) |
---|
| 375 | ENDIF |
---|
| 376 | |
---|
| 377 | !!! Declaration des axes verticaux de chaque fichier: |
---|
| 378 | IF (prt_level >= 10) THEN |
---|
| 379 | print*,'phys_output_open: Declare vertical axes for each file' |
---|
| 380 | ENDIF |
---|
| 381 | |
---|
| 382 | IF (iff.LE.6.OR.iff.EQ.10) THEN |
---|
| 383 | CALL wxios_add_vaxis("presnivs", & |
---|
| 384 | levmax(iff) - levmin(iff) + 1, presnivs(levmin(iff):levmax(iff))) |
---|
| 385 | CALL wxios_add_vaxis("Ahyb", & |
---|
| 386 | levmax(iff) - levmin(iff) + 1, aps(levmin(iff):levmax(iff)), positif='down', & |
---|
| 387 | bnds=Ahyb_bounds(levmin(iff):levmax(iff),:)) |
---|
| 388 | CALL wxios_add_vaxis("Bhyb", & |
---|
| 389 | levmax(iff) - levmin(iff) + 1, bps(levmin(iff):levmax(iff)), positif='down', & |
---|
| 390 | bnds=Bhyb_bounds(levmin(iff):levmax(iff),:)) |
---|
| 391 | CALL wxios_add_vaxis("klev", levmax(iff) - levmin(iff) + 1, & |
---|
| 392 | lev_index(levmin(iff):levmax(iff))) |
---|
| 393 | CALL wxios_add_vaxis("klevp1", klev+1, & |
---|
| 394 | lev_index(1:klev+1)) |
---|
| 395 | CALL wxios_add_vaxis("bnds", 2, (/1.,2./)) |
---|
| 396 | |
---|
[4056] | 397 | CALL wxios_add_vaxis("Alt", & |
---|
[3927] | 398 | levmax(iff) - levmin(iff) + 1, pseudoalt) |
---|
| 399 | |
---|
[4056] | 400 | ! wl1_sun/wl2_sun: minimum/maximum bound of wavelength (in um) |
---|
| 401 | SELECT CASE(NSW) |
---|
| 402 | CASE(6) |
---|
| 403 | wl1_sun(1:6) = [0.180, 0.250, 0.440, 0.690, 1.190, 2.380] |
---|
| 404 | wl2_sun(1:6) = [0.250, 0.440, 0.690, 1.190, 2.380, 4.000] |
---|
| 405 | CASE(2) |
---|
| 406 | wl1_sun(1:2) = [0.250, 0.690] |
---|
| 407 | wl2_sun(1:2) = [0.690, 4.000] |
---|
| 408 | END SELECT |
---|
[3927] | 409 | |
---|
| 410 | DO ISW=1, NSW |
---|
| 411 | wn1_sun(ISW)=1.e+6/wl1_sun(ISW) |
---|
| 412 | wn2_sun(ISW)=1.e+6/wl2_sun(ISW) |
---|
| 413 | spbnds_sun(ISW,1)=wn2_sun(ISW) |
---|
| 414 | spbnds_sun(ISW,2)=wn1_sun(ISW) |
---|
| 415 | spectband(ISW)=(wn1_sun(ISW)+wn2_sun(ISW))/2 |
---|
| 416 | ENDDO |
---|
| 417 | ! |
---|
| 418 | !!! ajout axe vertical spectband : solar band number |
---|
| 419 | CALL wxios_add_vaxis("spectband", NSW, spectband, positif='down') |
---|
| 420 | ELSE |
---|
| 421 | ! NMC files |
---|
| 422 | CALL wxios_add_vaxis("plev", & |
---|
| 423 | levmax(iff) - levmin(iff) + 1, rlevSTD(levmin(iff):levmax(iff))) |
---|
| 424 | ENDIF |
---|
| 425 | #endif |
---|
| 426 | |
---|
| 427 | IF (clef_files(iff)) THEN |
---|
| 428 | !!!!!!!!!!!!!!!!! Traitement dans le cas ou l'on veut stocker sur un domaine limite !! |
---|
| 429 | !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
| 430 | IF (phys_out_regfkey(iff)) THEN |
---|
| 431 | imin_ins=1 |
---|
| 432 | imax_ins=nbp_lon |
---|
| 433 | jmin_ins=1 |
---|
| 434 | jmax_ins=jjmp1 |
---|
| 435 | |
---|
| 436 | ! correction abderr |
---|
| 437 | DO i=1,nbp_lon |
---|
| 438 | WRITE(lunout,*)'io_lon(i)=',io_lon(i) |
---|
| 439 | IF (io_lon(i).le.phys_out_lonmin(iff)) imin_ins=i |
---|
| 440 | IF (io_lon(i).le.phys_out_lonmax(iff)) imax_ins=i+1 |
---|
| 441 | ENDDO |
---|
| 442 | |
---|
| 443 | DO j=1,jjmp1 |
---|
| 444 | WRITE(lunout,*)'io_lat(j)=',io_lat(j) |
---|
| 445 | IF (io_lat(j).ge.phys_out_latmin(iff)) jmax_ins=j+1 |
---|
| 446 | IF (io_lat(j).ge.phys_out_latmax(iff)) jmin_ins=j |
---|
| 447 | ENDDO |
---|
| 448 | |
---|
| 449 | WRITE(lunout,*)'On stoke le fichier histoire numero ',iff,' sur ', & |
---|
| 450 | imin_ins,imax_ins,jmin_ins,jmax_ins |
---|
| 451 | WRITE(lunout,*)'longitudes : ', & |
---|
| 452 | io_lon(imin_ins),io_lon(imax_ins), & |
---|
| 453 | 'latitudes : ', & |
---|
| 454 | io_lat(jmax_ins),io_lat(jmin_ins) |
---|
| 455 | |
---|
| 456 | CALL histbeg(phys_out_filenames(iff),nbp_lon,io_lon,jjmp1,io_lat, & |
---|
| 457 | imin_ins,imax_ins-imin_ins+1, & |
---|
| 458 | jmin_ins,jmax_ins-jmin_ins+1, & |
---|
| 459 | itau_phy,zjulian,dtime,nhorim(iff),nid_files(iff)) |
---|
| 460 | !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
| 461 | !IM fichiers stations |
---|
| 462 | ELSE IF (clef_stations(iff)) THEN |
---|
| 463 | |
---|
| 464 | IF (prt_level >= 10) THEN |
---|
| 465 | WRITE(lunout,*)'phys_output_open: iff=',iff,' phys_out_filenames(iff)=',phys_out_filenames(iff) |
---|
| 466 | ENDIF |
---|
| 467 | |
---|
| 468 | CALL histbeg_phy_all(rlon,rlat,pim,tabij,ipt,jpt,plon,plat,plon_bounds,plat_bounds, & |
---|
| 469 | phys_out_filenames(iff), & |
---|
| 470 | itau_phy,zjulian,dtime,nhorim(iff),nid_files(iff)) |
---|
| 471 | ELSE |
---|
| 472 | |
---|
| 473 | IF (prt_level >= 10) THEN |
---|
| 474 | WRITE(lunout,*)'phys_output_open: iff=',iff,' phys_out_filenames(iff)=',phys_out_filenames(iff) |
---|
| 475 | ENDIF |
---|
| 476 | |
---|
| 477 | CALL histbeg_phy_all(phys_out_filenames(iff),itau_phy,zjulian,& |
---|
| 478 | dtime,nhorim(iff),nid_files(iff)) |
---|
| 479 | ENDIF |
---|
| 480 | |
---|
| 481 | #ifndef CPP_IOIPSL_NO_OUTPUT |
---|
| 482 | IF (iff.LE.6.OR.iff.EQ.10) THEN |
---|
| 483 | CALL histvert(nid_files(iff), "presnivs", "Vertical levels", "Pa", & |
---|
| 484 | levmax(iff) - levmin(iff) + 1, & |
---|
| 485 | presnivs(levmin(iff):levmax(iff)), nvertm(iff),"down") |
---|
| 486 | !!!! Composantes de la coordonnee sigma-hybride |
---|
| 487 | CALL histvert(nid_files(iff), "Ahyb","Ahyb comp of Hyb Cord ", "Pa", & |
---|
| 488 | levmax(iff) - levmin(iff) + 1,aps,nvertap(iff)) |
---|
| 489 | |
---|
| 490 | CALL histvert(nid_files(iff), "Bhyb","Bhyb comp of Hyb Cord", " ", & |
---|
| 491 | levmax(iff) - levmin(iff) + 1,bps,nvertbp(iff)) |
---|
| 492 | |
---|
| 493 | CALL histvert(nid_files(iff), "Alt","Height approx for scale heigh of 8km at levels", "Km", & |
---|
| 494 | levmax(iff) - levmin(iff) + 1,pseudoalt,nvertAlt(iff)) |
---|
| 495 | |
---|
| 496 | ELSE |
---|
| 497 | ! NMC files |
---|
| 498 | CALL histvert(nid_files(iff), "plev", "pressure", "Pa", & |
---|
| 499 | levmax(iff) - levmin(iff) + 1, & |
---|
| 500 | rlevSTD(levmin(iff):levmax(iff)), nvertm(iff), "down") |
---|
| 501 | ENDIF |
---|
| 502 | #endif |
---|
| 503 | |
---|
| 504 | ENDIF ! clef_files |
---|
| 505 | |
---|
[4056] | 506 | itr = 0 |
---|
| 507 | DO iq = 1, nqtot |
---|
[4071] | 508 | IF(.NOT.(tracers(iq)%isAdvected .AND. tracers(iq)%isInPhysics)) CYCLE |
---|
[4056] | 509 | itr = itr + 1 |
---|
| 510 | dn = 'd'//TRIM(tracers(iq)%name)//'_' |
---|
[3927] | 511 | |
---|
[4046] | 512 | flag = [1, 5, 5, 5, 10, 10, 11, 11, 11, 11] |
---|
[4056] | 513 | lnam = 'Tracer '//TRIM(tracers(iq)%longName) |
---|
| 514 | tnam = TRIM(tracers(iq)%name); o_trac (itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)]) |
---|
[3927] | 515 | |
---|
[4046] | 516 | flag = [4, 7, 7, 7, 10, 10, 11, 11, 11, 11] |
---|
[4056] | 517 | lnam = 'Tendance tracer '//TRIM(tracers(iq)%longName) |
---|
[4046] | 518 | tnam = TRIM(dn)//'vdf'; o_dtr_vdf (itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)]) |
---|
[3927] | 519 | |
---|
[4046] | 520 | flag = [5, 7, 7, 7, 10, 10, 11, 11, 11, 11] |
---|
| 521 | tnam = TRIM(dn)//'the'; o_dtr_the (itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)]) |
---|
| 522 | tnam = TRIM(dn)//'con'; o_dtr_con (itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)]) |
---|
[3927] | 523 | |
---|
[4046] | 524 | flag = [7, 7, 7, 7, 10, 10, 11, 11, 11, 11] |
---|
| 525 | tnam = TRIM(dn)//'lessi_impa'; o_dtr_lessi_impa(itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)]) |
---|
| 526 | tnam = TRIM(dn)//'lessi_nucl'; o_dtr_lessi_nucl(itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)]) |
---|
| 527 | tnam = TRIM(dn)//'insc'; o_dtr_insc (itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)]) |
---|
| 528 | tnam = TRIM(dn)//'bcscav'; o_dtr_bcscav (itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)]) |
---|
| 529 | tnam = TRIM(dn)//'evapls'; o_dtr_evapls (itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)]) |
---|
| 530 | tnam = TRIM(dn)//'ls'; o_dtr_ls (itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)]) |
---|
| 531 | tnam = TRIM(dn)//'trsp'; o_dtr_trsp (itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)]) |
---|
| 532 | tnam = TRIM(dn)//'sscav'; o_dtr_sscav (itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)]) |
---|
| 533 | tnam = TRIM(dn)//'sat'; o_dtr_sat (itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)]) |
---|
| 534 | tnam = TRIM(dn)//'uscav'; o_dtr_uscav (itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)]) |
---|
[3927] | 535 | |
---|
[4056] | 536 | lnam = 'tracer tendency dry deposition'//TRIM(tracers(iq)%longName) |
---|
[4046] | 537 | tnam = 'cum'//TRIM(dn)//'dry'; o_dtr_dry (itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)]) |
---|
[3927] | 538 | |
---|
[4046] | 539 | flag = [1, 4, 10, 10, 10, 10, 11, 11, 11, 11] |
---|
[4056] | 540 | lnam = 'Cumulated tracer '//TRIM(tracers(iq)%longName) |
---|
| 541 | tnam = 'cum'//TRIM(tracers(iq)%name); o_trac_cum(itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)]) |
---|
[4046] | 542 | ENDDO |
---|
[3927] | 543 | |
---|
| 544 | ENDDO ! iff |
---|
| 545 | |
---|
| 546 | #ifdef ISO |
---|
[4056] | 547 | write(*,*) 'phys_output_mid 589' |
---|
[4046] | 548 | do ixt=1,ntraciso |
---|
[4149] | 549 | outiso = TRIM(isoName(ixt)) |
---|
| 550 | i = INDEX(outiso, '_', .TRUE.) |
---|
| 551 | outiso = outiso(1:i-1)//outiso(i+1:LEN_TRIM(outiso)) |
---|
[3927] | 552 | |
---|
[4046] | 553 | flag = [1, 1, 1, 10, 5, 10, 11, 11, 11, 11]; unit = 'kg/(s*m2)' |
---|
| 554 | o_xtprecip(ixt)=ctrl_out(flag, 'precip'//TRIM(outiso), 'Precip Totale liq+sol', unit, [('',i=1,nfiles)]) |
---|
| 555 | o_xtpluc (ixt)=ctrl_out(flag, 'pluc'//TRIM(outiso), 'Convective Precip.', unit, [('',i=1,nfiles)]) |
---|
[3927] | 556 | |
---|
[4046] | 557 | flag = [1, 1, 1, 10, 10, 10, 11, 11, 11, 11] |
---|
| 558 | o_xtplul (ixt)=ctrl_out(flag, 'plul'//TRIM(outiso), 'Large-scale Precip.', unit, [('',i=1,nfiles)]) |
---|
| 559 | o_xtevap (ixt)=ctrl_out(flag, 'evap'//TRIM(outiso), 'Evaporat.', unit, [('',i=1,nfiles)]) |
---|
[3927] | 560 | |
---|
[4524] | 561 | ! ajout Camille 8 mai 2023 |
---|
| 562 | flag = [1, 6, 10, 10, 10, 10, 11, 11, 11, 11] |
---|
| 563 | o_xtevap_srf (ixt,1)=ctrl_out(flag, 'evap_ter'//TRIM(outiso), 'Evap sfc'//clnsurf(1), unit, [('',i=1,nfiles)]) |
---|
| 564 | o_xtevap_srf (ixt,2)=ctrl_out(flag, 'evap_lic'//TRIM(outiso), 'Evap sfc'//clnsurf(2), unit, [('',i=1,nfiles)]) |
---|
| 565 | o_xtevap_srf (ixt,3)=ctrl_out(flag, 'evap_oce'//TRIM(outiso), 'Evap sfc'//clnsurf(3), unit, [('',i=1,nfiles)]) |
---|
| 566 | o_xtevap_srf (ixt,4)=ctrl_out(flag, 'evap_sic'//TRIM(outiso), 'Evap sfc'//clnsurf(4), unit, [('',i=1,nfiles)]) |
---|
| 567 | |
---|
[4046] | 568 | flag = [2, 3, 4, 10, 10, 10, 11, 11, 11, 11]; unit = 'kg/kg' |
---|
| 569 | o_xtovap (ixt)=ctrl_out(flag, 'ovap'//TRIM(outiso), 'Specific humidity', unit, [('',i=1,nfiles)]) |
---|
| 570 | o_xtoliq (ixt)=ctrl_out(flag, 'oliq'//TRIM(outiso), 'Liquid water', unit, [('',i=1,nfiles)]) |
---|
| 571 | o_xtcond (ixt)=ctrl_out(flag, 'ocond'//TRIM(outiso), 'Condensed water', unit, [('',i=1,nfiles)]) |
---|
| 572 | |
---|
| 573 | flag = [4, 10, 10, 10, 10, 10, 11, 11, 11, 11]; unit = '(kg/kg)/s' |
---|
| 574 | o_dxtdyn (ixt)=ctrl_out(flag, 'dqdyn'//TRIM(outiso), 'Dynamics dQ', unit, [('',i=1,nfiles)]) |
---|
| 575 | o_dxtldyn (ixt)=ctrl_out(flag, 'dqldyn'//TRIM(outiso), 'Dynamics dQL', unit, [('',i=1,nfiles)]) |
---|
| 576 | o_dxtcon (ixt)=ctrl_out(flag, 'dqcon'//TRIM(outiso), 'Convection dQ', unit, [('',i=1,nfiles)]) |
---|
| 577 | o_dxteva (ixt)=ctrl_out(flag, 'dqeva'//TRIM(outiso), 'Reevaporation dQ', unit, [('',i=1,nfiles)]) |
---|
| 578 | o_dxtlsc (ixt)=ctrl_out(flag, 'dqlsc'//TRIM(outiso), 'Condensation dQ', unit, [('',i=1,nfiles)]) |
---|
| 579 | o_dxtajs (ixt)=ctrl_out(flag, 'dqajs'//TRIM(outiso), 'Dry adjust. dQ', unit, [('',i=1,nfiles)]) |
---|
| 580 | o_dxtvdf (ixt)=ctrl_out(flag, 'dqvdf'//TRIM(outiso), 'Boundary-layer dQ', unit, [('',i=1,nfiles)]) |
---|
| 581 | o_dxtthe (ixt)=ctrl_out(flag, 'dqthe'//TRIM(outiso), 'Thermal dQ', unit, [('',i=1,nfiles)]) |
---|
| 582 | |
---|
| 583 | IF(ok_qch4) o_dxtch4(ixt)=ctrl_out(flag, 'dqch4'//TRIM(outiso), 'H2O due to CH4 oxidation & photolysis', & |
---|
| 584 | unit, [('',i=1,nfiles)]) |
---|
| 585 | IF(ixt == iso_HTO) THEN |
---|
| 586 | o_dxtprod_nucl(ixt)=ctrl_out(flag, 'dqprodnucl'//TRIM(outiso), 'dHTO/dt due to nuclear production', & |
---|
| 587 | unit, [('',i=1,nfiles)]) |
---|
| 588 | o_dxtcosmo (ixt)=ctrl_out(flag, 'dqcosmo'//TRIM(outiso), 'dHTO/dt due to cosmogenic production', & |
---|
| 589 | unit, [('',i=1,nfiles)]) |
---|
| 590 | o_dxtdecroiss (ixt)=ctrl_out(flag, 'dqdecroiss'//TRIM(outiso), 'dHTO/dt due to radiative destruction', & |
---|
[4048] | 591 | unit, [('',i=1,nfiles)]) |
---|
[4046] | 592 | END IF |
---|
| 593 | enddo !do ixt=1,niso |
---|
[4056] | 594 | write(*,*) 'phys_output_mid 596' |
---|
[3927] | 595 | #endif |
---|
| 596 | |
---|
| 597 | |
---|
| 598 | ! Updated write frequencies due to phys_out_filetimesteps. |
---|
| 599 | ! Write frequencies are now in seconds. |
---|
| 600 | ecrit_mth = ecrit_files(1) |
---|
| 601 | ecrit_day = ecrit_files(2) |
---|
| 602 | ecrit_hf = ecrit_files(3) |
---|
| 603 | ecrit_ins = ecrit_files(4) |
---|
| 604 | ecrit_LES = ecrit_files(5) |
---|
| 605 | ecrit_ins = ecrit_files(6) |
---|
| 606 | |
---|
| 607 | IF (prt_level >= 10) THEN |
---|
| 608 | WRITE(lunout,*)'swaerofree_diag=',swaerofree_diag |
---|
| 609 | WRITE(lunout,*)'swaero_diag=',swaero_diag |
---|
| 610 | WRITE(lunout,*)'dryaod_diag=',dryaod_diag |
---|
| 611 | WRITE(lunout,*)'ok_4xCO2atm=',ok_4xCO2atm |
---|
| 612 | WRITE(lunout,*)'phys_output_open: ends here' |
---|
| 613 | ENDIF |
---|
| 614 | |
---|
| 615 | END SUBROUTINE phys_output_open |
---|
| 616 | |
---|
| 617 | SUBROUTINE convers_timesteps(str,dtime,timestep) |
---|
| 618 | |
---|
| 619 | use ioipsl |
---|
| 620 | USE phys_cal_mod |
---|
| 621 | USE time_phylmdz_mod, ONLY: day_ref, annee_ref |
---|
| 622 | USE print_control_mod, ONLY: lunout |
---|
| 623 | |
---|
| 624 | IMPLICIT NONE |
---|
| 625 | |
---|
| 626 | CHARACTER(LEN=20) :: str |
---|
| 627 | CHARACTER(LEN=10) :: type |
---|
| 628 | INTEGER :: ipos,il |
---|
| 629 | real :: ttt,xxx,timestep,dayseconde,dtime |
---|
| 630 | parameter (dayseconde=86400.) |
---|
| 631 | |
---|
| 632 | ipos=scan(str,'0123456789.',.TRUE.) |
---|
| 633 | ! |
---|
| 634 | il=len_trim(str) |
---|
| 635 | WRITE(lunout,*) "ipos = ", ipos |
---|
| 636 | WRITE(lunout,*) "il = ", il |
---|
| 637 | IF (ipos == 0) CALL abort_physic("convers_timesteps", "bad str", 1) |
---|
| 638 | read(str(1:ipos),*) ttt |
---|
| 639 | WRITE(lunout,*)ttt |
---|
| 640 | type=str(ipos+1:il) |
---|
| 641 | |
---|
| 642 | IF ( il == ipos ) THEN |
---|
| 643 | type='day' |
---|
| 644 | ENDIF |
---|
| 645 | |
---|
| 646 | IF ( type == 'day'.or.type == 'days'.or.type == 'jours'.or.type == 'jour' ) timestep = ttt * dayseconde |
---|
| 647 | IF ( type == 'mounths'.or.type == 'mth'.or.type == 'mois' ) THEN |
---|
| 648 | WRITE(lunout,*)'annee_ref,day_ref mon_len',annee_ref,day_ref,mth_len |
---|
| 649 | timestep = ttt * dayseconde * mth_len |
---|
| 650 | ENDIF |
---|
| 651 | IF ( type == 'hours'.or.type == 'hr'.or.type == 'heurs') timestep = ttt * dayseconde / 24. |
---|
| 652 | IF ( type == 'mn'.or.type == 'minutes' ) timestep = ttt * 60. |
---|
| 653 | IF ( type == 's'.or.type == 'sec'.or.type == 'secondes' ) timestep = ttt |
---|
| 654 | IF ( type == 'TS' ) timestep = ttt * dtime |
---|
| 655 | |
---|
| 656 | WRITE(lunout,*)'type = ',type |
---|
| 657 | WRITE(lunout,*)'nb j/h/m = ',ttt |
---|
| 658 | WRITE(lunout,*)'timestep(s)=',timestep |
---|
| 659 | |
---|
| 660 | END SUBROUTINE convers_timesteps |
---|
| 661 | |
---|
| 662 | END MODULE phys_output_mod |
---|