source: LMDZ6/branches/LMDZ_DECOUPLE/libf/phylmd/phys_output_mod.F90

Last change on this file was 4795, checked in by nfevrier, 7 months ago

First save of N. Février's modifications

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