GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: phylmd/phys_output_mod.F90 Lines: 188 225 83.6 %
Date: 2023-06-30 12:56:34 Branches: 162 252 64.3 %

Line Branch Exec Source
1
! $Id: phys_output_mod.F90 4228 2022-07-26 13:36:45Z fairhead $
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
1
  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, tracers, niso
38
    USE strings_mod,  ONLY: maxlen
39
    USE ioipsl
40
    USE phys_cal_mod, only : hour, calend
41
    USE mod_phys_lmdz_para
42
    !Martin
43
    USE surface_data, ONLY : landice_opt
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, presinter
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
54
    IMPLICIT NONE
55
    include "clesphys.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
2
    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, iff, i, j, ilev, itr, ixt, iiso, izone
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
    CHARACTER(LEN=maxlen) :: tnam, lnam, dn
117
    INTEGER :: flag(nfiles)
118
119
!!!!!!!!!! stockage dans une region limitee pour chaque fichier !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
120
    !                 entre [phys_out_lonmin,phys_out_lonmax] et [phys_out_latmin,phys_out_latmax]
121
    LOGICAL, DIMENSION(nfiles), SAVE :: &
122
      phys_out_regfkey = [.FALSE., .FALSE., .FALSE., .FALSE., .FALSE., .FALSE., .FALSE., .FALSE., .FALSE., .FALSE.]
123
    REAL,    DIMENSION(nfiles), SAVE :: &
124
      phys_out_lonmin  = [  -180.,   -180.,   -180.,   -180.,   -180.,   -180.,   -180.,   -180.,   -180.,   -180.], &
125
      phys_out_lonmax  = [   180.,    180.,    180.,    180.,    180.,    180.,    180.,    180.,    180.,    180.], &
126
      phys_out_latmin  = [   -90.,    -90.,    -90.,    -90.,    -90.,    -90.,    -90.,    -90.,    -90.,    -90.], &
127
      phys_out_latmax  = [    90.,     90.,     90.,     90.,     90.,     90.,     90.,     90.,     90.,     90.]
128
2
    REAL, DIMENSION(klev,2) :: Ahyb_bounds, Bhyb_bounds
129
2
    REAL, DIMENSION(klev+1)   :: lev_index
130
131
#ifdef CPP_XIOS
132
    ! ug Variables utilis\'ees pour r\'ecup\'erer le calendrier pour xios
133
    INTEGER :: x_an, x_mois, x_jour
134
    REAL :: x_heure
135
    INTEGER :: ini_an, ini_mois, ini_jour
136
    REAL :: ini_heure
137
#endif
138
    INTEGER                         :: ISW
139
    REAL, DIMENSION(NSW)            :: wl1_sun, wl2_sun !wavelength bounds (in um) for SW
140
    REAL, DIMENSION(NSW)            :: wn1_sun, wn2_sun !wavenumber bounds (in m-1) for SW
141
    REAL, DIMENSION(NSW)            :: spectband  !mean wavenumb. of each sp.band
142
    REAL, DIMENSION(NSW,2)          :: spbnds_sun !bounds of spectband
143
144
1
    WRITE(lunout,*) 'Debut phys_output_mod.F90'
145
    ! Initialisations (Valeurs par defaut
146
147
40
    DO ilev=1,klev
148
39
      Ahyb_bounds(ilev,1) = ap(ilev)
149
39
      Ahyb_bounds(ilev,2) = ap(ilev+1)
150
39
      Bhyb_bounds(ilev,1) = bp(ilev)
151
39
      Bhyb_bounds(ilev,2) = bp(ilev+1)
152
40
      lev_index(ilev) = REAL(ilev)
153
    END DO
154
1
      lev_index(klev+1) = REAL(klev+1)
155
156

1
    IF (.NOT. ALLOCATED(o_trac)) ALLOCATE(o_trac(nqtot))
157

1
    IF (.NOT. ALLOCATED(o_trac_cum)) ALLOCATE(o_trac_cum(nqtot))
158



1
    ALLOCATE(o_dtr_the(nqtot),o_dtr_con(nqtot),o_dtr_lessi_impa(nqtot))
159



1
    ALLOCATE(o_dtr_lessi_nucl(nqtot),o_dtr_insc(nqtot),o_dtr_bcscav(nqtot))
160



1
    ALLOCATE(o_dtr_evapls(nqtot),o_dtr_ls(nqtot),o_dtr_trsp(nqtot))
161



1
    ALLOCATE(o_dtr_sscav(nqtot),o_dtr_sat(nqtot),o_dtr_uscav(nqtot))
162


1
    ALLOCATE(o_dtr_dry(nqtot),o_dtr_vdf(nqtot))
163
164
11
    levmax = [klev, klev, klev, klev, klev, klev, nlevSTD, nlevSTD, nlevSTD, klev]
165
166
1
    phys_out_filenames(1) = 'histmth'
167
1
    phys_out_filenames(2) = 'histday'
168
1
    phys_out_filenames(3) = 'histhf6h'
169
1
    phys_out_filenames(4) = 'histhf3h'
170
1
    phys_out_filenames(5) = 'histhf3hm'
171
1
    phys_out_filenames(6) = 'histstn'
172
1
    phys_out_filenames(7) = 'histmthNMC'
173
1
    phys_out_filenames(8) = 'histdayNMC'
174
1
    phys_out_filenames(9) = 'histhfNMC'
175
1
    phys_out_filenames(10)= 'histstrataer'
176
177
1
    type_ecri(1) = 'ave(X)'
178
1
    type_ecri(2) = 'ave(X)'
179
1
    type_ecri(3) = 'inst(X)'
180
1
    type_ecri(4) = 'inst(X)'
181
1
    type_ecri(5) = 'ave(X)'
182
1
    type_ecri(6) = 'inst(X)'
183
1
    type_ecri(7) = 'inst(X)'
184
1
    type_ecri(8) = 'inst(X)'
185
1
    type_ecri(9) = 'inst(X)'
186
1
    type_ecri(10)= 'ave(X)'
187
188
1
    clef_files(1) = ok_mensuel
189
1
    clef_files(2) = ok_journe
190
1
    clef_files(3) = ok_hf
191
1
    clef_files(4) = ok_instan
192
1
    clef_files(5) = ok_LES
193
1
    clef_files(6) = ok_instan
194
1
    clef_files(7) = ok_histNMC(1)
195
1
    clef_files(8) = ok_histNMC(2)
196
1
    clef_files(9) = ok_histNMC(3)
197
#ifdef CPP_StratAer
198
    clef_files(10)= .TRUE.
199
#else
200
1
    clef_files(10)= .FALSE.
201
#endif
202
203
    !sortir des fichiers "stations" si clef_stations(:)=.TRUE.
204
1
    clef_stations(1) = .FALSE.
205
1
    clef_stations(2) = .FALSE.
206
1
    clef_stations(3) = .FALSE.
207
1
    clef_stations(4) = .FALSE.
208
1
    clef_stations(5) = .FALSE.
209
1
    clef_stations(6) = .FALSE.
210
1
    clef_stations(7) = .FALSE.
211
1
    clef_stations(8) = .FALSE.
212
1
    clef_stations(9) = .FALSE.
213
1
    clef_stations(10)= .FALSE.
214
215
1
    lev_files(1) = lev_histmth
216
1
    lev_files(2) = lev_histday
217
1
    lev_files(3) = lev_histhf
218
1
    lev_files(4) = lev_histins
219
1
    lev_files(5) = lev_histLES
220
1
    lev_files(6) = lev_histins
221
1
    lev_files(7) = levout_histNMC(1)
222
1
    lev_files(8) = levout_histNMC(2)
223
1
    lev_files(9) = levout_histNMC(3)
224
1
    lev_files(10)= 5
225
226
1
    ecrit_files(1) = ecrit_mth
227
1
    ecrit_files(2) = ecrit_day
228
1
    ecrit_files(3) = ecrit_hf
229
1
    ecrit_files(4) = ecrit_ins
230
1
    ecrit_files(5) = ecrit_LES
231
1
    ecrit_files(6) = ecrit_ins
232
1
    ecrit_files(7) = freq_outNMC(1)
233
1
    ecrit_files(8) = freq_outNMC(2)
234
1
    ecrit_files(9) = freq_outNMC(3)
235
1
    ecrit_files(10)= ecrit_mth
236
237
    !! Lectures des parametres de sorties dans physiq.def
238
239
1
    CALL getin('phys_out_regfkey',phys_out_regfkey)
240
1
    CALL getin('phys_out_lonmin',phys_out_lonmin)
241
1
    CALL getin('phys_out_lonmax',phys_out_lonmax)
242
1
    CALL getin('phys_out_latmin',phys_out_latmin)
243
1
    CALL getin('phys_out_latmax',phys_out_latmax)
244
    phys_out_levmin(:)=levmin(:)
245
1
    CALL getin('phys_out_levmin',levmin)
246
    phys_out_levmax(:)=levmax(:)
247
1
    CALL getin('phys_out_levmax',levmax)
248
1
    CALL getin('phys_out_filenames',phys_out_filenames)
249
    phys_out_filekeys(:)=clef_files(:)
250
1
    CALL getin('phys_out_filekeys',clef_files)
251
1
    phys_out_filestations(:)=clef_stations(:)
252
1
    CALL getin('phys_out_filestations',clef_stations)
253
    phys_out_filelevels(:)=lev_files(:)
254
1
    CALL getin('phys_out_filelevels',lev_files)
255
1
    CALL getin('phys_out_filetimesteps',chtimestep)
256
11
    phys_out_filetypes(:)=type_ecri(:)
257
1
    CALL getin('phys_out_filetypes',type_ecri)
258
259
11
    type_ecri_files(:)=type_ecri(:)
260
261
!    if (ok_all_xml) phys_out_filelevels = 999
262
263
1
    WRITE(lunout,*)'phys_out_lonmin=',phys_out_lonmin
264
1
    WRITE(lunout,*)'phys_out_lonmax=',phys_out_lonmax
265
1
    WRITE(lunout,*)'phys_out_latmin=',phys_out_latmin
266
1
    WRITE(lunout,*)'phys_out_latmax=',phys_out_latmax
267
1
    WRITE(lunout,*)'phys_out_filenames=',phys_out_filenames
268
1
    WRITE(lunout,*)'phys_out_filetypes=',type_ecri
269
1
    WRITE(lunout,*)'phys_out_filekeys=',clef_files
270
1
    WRITE(lunout,*)'phys_out_filestations=',clef_stations
271
1
    WRITE(lunout,*)'phys_out_filelevels=',lev_files
272
1
    WRITE(lunout,*)'phys_out_regfkey=',phys_out_regfkey
273
274
! A noter pour
275
! l heure initiale - dans les fichiers histoire hist* - on met comme
276
! heure de debut soit la vraie heure (pour le 1D) soit 0h (pour le 3D)
277
! afin d avoir une seule sortie mensuelle par mois lorsque l on tourne
278
! par annee (IM).
279
!
280
1
     idayref = day_ref
281
1
     IF (klon_glo==1) THEN
282
       ! current_time (used to compute hour) is updated at the begining of
283
       ! the physics; to set the correct outputs "initial time" we thus
284
       ! have to use (hour-dtphys).
285
         CALL ymds2ju(annee_ref, 1, idayref, hour-pdtphys, zjulian)
286
         print *,'phys_output_mod: annee,iday,hour,zjulian=',annee_ref,idayref, hour, zjulian
287
     ELSE
288
1
         CALL ymds2ju(annee_ref, 1, idayref, 0.0, zjulian)
289
1
         CALL ymds2ju(annee_ref, 1, day_ini, start_time*rday, zjulian_start)
290
     ENDIF
291
292
#ifdef CPP_XIOS
293
    ! ug R\'eglage du calendrier xios
294
    !Temps julian => an, mois, jour, heure
295
    CALL ju2ymds(zjulian, x_an, x_mois, x_jour, x_heure)
296
    CALL ju2ymds(zjulian_start, ini_an, ini_mois, ini_jour, ini_heure)
297
    CALL wxios_set_cal(dtime, calend, x_an, x_mois, x_jour, x_heure, ini_an, &
298
                       ini_mois, ini_jour, ini_heure )
299
#endif
300
301
!!!!!!!!!!!!!!!!!!!!!!! Boucle sur les fichiers !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
302
    ! Appel de histbeg et histvert pour creer le fichier et les niveaux verticaux !!
303
    ! Appel des histbeg pour definir les variables (nom, moy ou inst, freq de sortie ..
304
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
305
306
1
    zdtime_moy = dtime         ! Frequence ou l on moyenne
307
308
309
1
  ecrit_files(7) = ecrit_files(1)
310
1
  ecrit_files(8) = ecrit_files(2)
311
1
  ecrit_files(9) = ecrit_files(3)
312
313
11
  DO iff=1,nfiles
314
315
       ! Calculate ecrit_files for all files
316
10
      IF ( chtimestep(iff).eq.'Default' ) THEN
317
          ! Par defaut ecrit_files = (ecrit_mensuel ecrit_jour ecrit_hf
318
          ! ...)*86400.
319
5
          ecrit_files(iff)=ecrit_files(iff)*86400.
320
5
      ELSE IF (chtimestep(iff).eq.'-1') THEN
321
          PRINT*,'ecrit_files(',iff,') < 0 so IOIPSL work on different'
322
          PRINT*,'months length'
323
          ecrit_files(iff)=-1.
324
      ELSE
325
5
       CALL convers_timesteps(chtimestep(iff),dtime,ecrit_files(iff))
326
      ENDIF
327
328
10
       WRITE(lunout,*)'ecrit_files(',iff,')= ',ecrit_files(iff)
329
10
       zoutm(iff) = ecrit_files(iff) ! Frequence ou l on ecrit en seconde
330
331
332
#ifdef CPP_XIOS
333
!!! Ouverture de chaque fichier XIOS !!!!!!!!!!!
334
    IF (.not. ok_all_xml) THEN
335
      IF (prt_level >= 10) THEN
336
        print*,'phys_output_open: call wxios_add_file with phys_out_filenames(iff)=',trim(phys_out_filenames(iff))
337
      ENDIF
338
      CALL wxios_add_file(phys_out_filenames(iff),chtimestep(iff),lev_files(iff))
339
    ENDIF
340
341
!!! Declaration des axes verticaux de chaque fichier:
342
    IF (prt_level >= 10) THEN
343
      print*,'phys_output_open: Declare vertical axes for each file'
344
    ENDIF
345
346
   IF (iff.LE.6.OR.iff.EQ.10) THEN
347
    CALL wxios_add_vaxis("presnivs", &
348
            levmax(iff) - levmin(iff) + 1, presnivs(levmin(iff):levmax(iff)))
349
    CALL wxios_add_vaxis("presinter", &
350
            klev + 1, presinter(1:klev+1))
351
    CALL wxios_add_vaxis("Ahyb", &
352
            levmax(iff) - levmin(iff) + 1, aps(levmin(iff):levmax(iff)), positif='down', &
353
            bnds=Ahyb_bounds(levmin(iff):levmax(iff),:))
354
    CALL wxios_add_vaxis("Bhyb", &
355
            levmax(iff) - levmin(iff) + 1, bps(levmin(iff):levmax(iff)), positif='down', &
356
            bnds=Bhyb_bounds(levmin(iff):levmax(iff),:))
357
    CALL wxios_add_vaxis("klev", levmax(iff) - levmin(iff) + 1, &
358
                          lev_index(levmin(iff):levmax(iff)))
359
    CALL wxios_add_vaxis("klevp1", klev+1, &
360
                          lev_index(1:klev+1))
361
    CALL wxios_add_vaxis("bnds", 2, (/1.,2./))
362
363
    CALL wxios_add_vaxis("Alt", &
364
            levmax(iff) - levmin(iff) + 1, pseudoalt)
365
366
    ! wl1_sun/wl2_sun: minimum/maximum bound of wavelength (in um)
367
    SELECT CASE(NSW)
368
      CASE(6)
369
        wl1_sun(1:6) = [0.180, 0.250, 0.440, 0.690, 1.190, 2.380]
370
        wl2_sun(1:6) = [0.250, 0.440, 0.690, 1.190, 2.380, 4.000]
371
      CASE(2)
372
        wl1_sun(1:2) = [0.250, 0.690]
373
        wl2_sun(1:2) = [0.690, 4.000]
374
    END SELECT
375
376
    DO ISW=1, NSW
377
     wn1_sun(ISW)=1.e+6/wl1_sun(ISW)
378
     wn2_sun(ISW)=1.e+6/wl2_sun(ISW)
379
     spbnds_sun(ISW,1)=wn2_sun(ISW)
380
     spbnds_sun(ISW,2)=wn1_sun(ISW)
381
     spectband(ISW)=(wn1_sun(ISW)+wn2_sun(ISW))/2
382
    ENDDO
383
!
384
!!! ajout axe vertical spectband : solar band number
385
    CALL wxios_add_vaxis("spectband", NSW, spectband, positif='down')
386
   ELSE
387
    ! NMC files
388
    CALL wxios_add_vaxis("plev", &
389
            levmax(iff) - levmin(iff) + 1, rlevSTD(levmin(iff):levmax(iff)))
390
   ENDIF
391
#endif
392
393
10
        IF (clef_files(iff)) THEN
394
!!!!!!!!!!!!!!!!! Traitement dans le cas ou l'on veut stocker sur un domaine limite !!
395
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
396
4
          IF (phys_out_regfkey(iff)) THEN
397
             imin_ins=1
398
             imax_ins=nbp_lon
399
             jmin_ins=1
400
             jmax_ins=jjmp1
401
402
             ! correction abderr
403
             DO i=1,nbp_lon
404
                WRITE(lunout,*)'io_lon(i)=',io_lon(i)
405
                IF (io_lon(i).le.phys_out_lonmin(iff)) imin_ins=i
406
                IF (io_lon(i).le.phys_out_lonmax(iff)) imax_ins=i+1
407
             ENDDO
408
409
             DO j=1,jjmp1
410
                WRITE(lunout,*)'io_lat(j)=',io_lat(j)
411
                IF (io_lat(j).ge.phys_out_latmin(iff)) jmax_ins=j+1
412
                IF (io_lat(j).ge.phys_out_latmax(iff)) jmin_ins=j
413
             ENDDO
414
415
             WRITE(lunout,*)'On stoke le fichier histoire numero ',iff,' sur ', &
416
                  imin_ins,imax_ins,jmin_ins,jmax_ins
417
             WRITE(lunout,*)'longitudes : ', &
418
                  io_lon(imin_ins),io_lon(imax_ins), &
419
                  'latitudes : ', &
420
                  io_lat(jmax_ins),io_lat(jmin_ins)
421
422
             CALL histbeg(phys_out_filenames(iff),nbp_lon,io_lon,jjmp1,io_lat, &
423
                  imin_ins,imax_ins-imin_ins+1, &
424
                  jmin_ins,jmax_ins-jmin_ins+1, &
425
                  itau_phy,zjulian,dtime,nhorim(iff),nid_files(iff))
426
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
427
             !IM fichiers stations
428
4
          ELSE IF (clef_stations(iff)) THEN
429
430
             IF (prt_level >= 10) THEN
431
             WRITE(lunout,*)'phys_output_open: iff=',iff,'  phys_out_filenames(iff)=',phys_out_filenames(iff)
432
             ENDIF
433
434
             CALL histbeg_phy_all(rlon,rlat,pim,tabij,ipt,jpt,plon,plat,plon_bounds,plat_bounds, &
435
                  phys_out_filenames(iff), &
436
                  itau_phy,zjulian,dtime,nhorim(iff),nid_files(iff))
437
          ELSE
438
439
4
             IF (prt_level >= 10) THEN
440
             WRITE(lunout,*)'phys_output_open: iff=',iff,'  phys_out_filenames(iff)=',phys_out_filenames(iff)
441
             ENDIF
442
443
             CALL histbeg_phy_all(phys_out_filenames(iff),itau_phy,zjulian,&
444
4
                 dtime,nhorim(iff),nid_files(iff))
445
          ENDIF
446
447
#ifndef CPP_IOIPSL_NO_OUTPUT
448
4
          IF (iff.LE.6.OR.iff.EQ.10) THEN
449
             CALL histvert(nid_files(iff), "presnivs", "Vertical levels", "Pa", &
450
               levmax(iff) - levmin(iff) + 1, &
451
4
               presnivs(levmin(iff):levmax(iff)), nvertm(iff),"down")
452
!!!! Composantes de la coordonnee sigma-hybride
453
          CALL histvert(nid_files(iff), "Ahyb","Ahyb comp of Hyb Cord ", "Pa", &
454
4
               levmax(iff) - levmin(iff) + 1,aps,nvertap(iff))
455
456
          CALL histvert(nid_files(iff), "Bhyb","Bhyb comp of Hyb Cord", " ", &
457
4
               levmax(iff) - levmin(iff) + 1,bps,nvertbp(iff))
458
459
          CALL histvert(nid_files(iff), "Alt","Height approx for scale heigh of 8km at levels", "Km", &
460
4
               levmax(iff) - levmin(iff) + 1,pseudoalt,nvertAlt(iff))
461
462
          ELSE
463
          ! NMC files
464
             CALL histvert(nid_files(iff), "plev", "pressure", "Pa", &
465
               levmax(iff) - levmin(iff) + 1, &
466
              rlevSTD(levmin(iff):levmax(iff)), nvertm(iff), "down")
467
          ENDIF
468
#endif
469
470
     ENDIF ! clef_files
471
472
          itr = 0
473
61
          DO iq = 1, nqtot
474

50
            IF(.NOT.(tracers(iq)%isAdvected .AND. tracers(iq)%isInPhysics)) CYCLE
475
20
            itr = itr + 1
476

20
            dn = 'd'//TRIM(tracers(iq)%name)//'_'
477
478
20
            flag = [1, 5, 5, 5, 10, 10, 11, 11, 11, 11]
479
20
            lnam = 'Tracer '//TRIM(tracers(iq)%longName)
480

420
            tnam = TRIM(tracers(iq)%name);  o_trac          (itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)])
481
482
20
            flag = [4, 7, 7, 7, 10, 10, 11, 11, 11, 11]
483
20
            lnam = 'Tendance tracer '//TRIM(tracers(iq)%longName)
484

420
            tnam = TRIM(dn)//'vdf';         o_dtr_vdf       (itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)])
485
486
20
            flag = [5, 7, 7, 7, 10, 10, 11, 11, 11, 11]
487

420
            tnam = TRIM(dn)//'the';         o_dtr_the       (itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)])
488

420
            tnam = TRIM(dn)//'con';         o_dtr_con       (itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)])
489
490
20
            flag = [7, 7, 7, 7, 10, 10, 11, 11, 11, 11]
491

420
            tnam = TRIM(dn)//'lessi_impa';  o_dtr_lessi_impa(itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)])
492

420
            tnam = TRIM(dn)//'lessi_nucl';  o_dtr_lessi_nucl(itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)])
493

420
            tnam = TRIM(dn)//'insc';        o_dtr_insc      (itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)])
494

420
            tnam = TRIM(dn)//'bcscav';      o_dtr_bcscav    (itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)])
495

420
            tnam = TRIM(dn)//'evapls';      o_dtr_evapls    (itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)])
496

420
            tnam = TRIM(dn)//'ls';          o_dtr_ls        (itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)])
497

420
            tnam = TRIM(dn)//'trsp';        o_dtr_trsp      (itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)])
498

420
            tnam = TRIM(dn)//'sscav';       o_dtr_sscav     (itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)])
499

420
            tnam = TRIM(dn)//'sat';         o_dtr_sat       (itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)])
500

420
            tnam = TRIM(dn)//'uscav';       o_dtr_uscav     (itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)])
501
502
20
            lnam = 'tracer tendency dry deposition'//TRIM(tracers(iq)%longName)
503

420
            tnam = 'cum'//TRIM(dn)//'dry';  o_dtr_dry       (itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)])
504
505
20
            flag = [1, 4, 10, 10, 10, 10, 11, 11, 11, 11]
506
20
            lnam = 'Cumulated tracer '//TRIM(tracers(iq)%longName)
507

460
            tnam = 'cum'//TRIM(tracers(iq)%name); o_trac_cum(itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)])
508
          ENDDO
509
510
   ENDDO !  iff
511
512
    ! Updated write frequencies due to phys_out_filetimesteps.
513
    ! Write frequencies are now in seconds.
514
1
    ecrit_mth = ecrit_files(1)
515
1
    ecrit_day = ecrit_files(2)
516
1
    ecrit_hf  = ecrit_files(3)
517
    ecrit_ins = ecrit_files(4)
518
1
    ecrit_LES = ecrit_files(5)
519
1
    ecrit_ins = ecrit_files(6)
520
521
1
    IF (prt_level >= 10) THEN
522
      WRITE(lunout,*)'swaerofree_diag=',swaerofree_diag
523
      WRITE(lunout,*)'swaero_diag=',swaero_diag
524
      WRITE(lunout,*)'dryaod_diag=',dryaod_diag
525
      WRITE(lunout,*)'ok_4xCO2atm=',ok_4xCO2atm
526
      WRITE(lunout,*)'phys_output_open: ends here'
527
    ENDIF
528
529
!  DO iq=1,nqtot
530
!    IF(.NOT.(tracers(iq)%isAdvected .AND. tracers(iq)%isInPhysics)) CYCLE
531
!    WRITE(*,'(a,i1,a,10i3)')'trac(',iq,')%flag = ',o_trac(iq)%flag
532
!    WRITE(*,'(a,i1,a)')'trac(',iq,')%name = '//TRIM(o_trac(iq)%name)
533
!    WRITE(*,'(a,i1,a)')'trac(',iq,')%description = '//TRIM(o_trac(iq)%description)
534
!  END DO
535
536
1
  END SUBROUTINE phys_output_open
537
538
5
  SUBROUTINE convers_timesteps(str,dtime,timestep)
539
540
2
    use ioipsl
541
    USE phys_cal_mod
542
    USE time_phylmdz_mod, ONLY: day_ref, annee_ref
543
    USE print_control_mod, ONLY: lunout
544
545
    IMPLICIT NONE
546
547
    CHARACTER(LEN=20)   :: str
548
    CHARACTER(LEN=10)   :: type
549
    INTEGER             :: ipos,il
550
    real                :: ttt,xxx,timestep,dayseconde,dtime
551
    parameter (dayseconde=86400.)
552
553
5
    ipos=scan(str,'0123456789.',.TRUE.)
554
    !
555
5
    il=len_trim(str)
556
5
    WRITE(lunout,*) "ipos = ", ipos
557
5
    WRITE(lunout,*) "il = ", il
558
5
    IF (ipos == 0) CALL abort_physic("convers_timesteps", "bad str", 1)
559
5
    read(str(1:ipos),*) ttt
560
5
    WRITE(lunout,*)ttt
561
5
    type=str(ipos+1:il)
562
563
5
    IF ( il == ipos ) THEN
564
       type='day'
565
    ENDIF
566
567


5
    IF ( type == 'day'.or.type == 'days'.or.type == 'jours'.or.type == 'jour' ) timestep = ttt * dayseconde
568

5
    IF ( type == 'mounths'.or.type == 'mth'.or.type == 'mois' ) THEN
569
       WRITE(lunout,*)'annee_ref,day_ref mon_len',annee_ref,day_ref,mth_len
570
       timestep = ttt * dayseconde * mth_len
571
    ENDIF
572

5
    IF ( type == 'hours'.or.type == 'hr'.or.type == 'heurs') timestep = ttt * dayseconde / 24.
573

5
    IF ( type == 'mn'.or.type == 'minutes'  ) timestep = ttt * 60.
574

5
    IF ( type == 's'.or.type == 'sec'.or.type == 'secondes'   ) timestep = ttt
575
5
    IF ( type == 'TS' ) timestep = ttt * dtime
576
577
5
    WRITE(lunout,*)'type =      ',type
578
5
    WRITE(lunout,*)'nb j/h/m =  ',ttt
579
5
    WRITE(lunout,*)'timestep(s)=',timestep
580
581
5
  END SUBROUTINE convers_timesteps
582
583
END MODULE phys_output_mod