source: LMDZ6/branches/Amaury_dev/libf/phylmd/phyaqua_mod.F90 @ 5097

Last change on this file since 5097 was 5093, checked in by abarral, 2 months ago

Use latest FCM source (2021.05.0) [Note: we still use the legacy FCM1 build system]
Correct UTF8 encoding of french chars


Compil OK (tested: oldrad/rrtm/ecrad, para/seq/1D)
Convergence (ref r5063) bench 33x OK oldrad orch2.0 (tested: para/seq)

  • 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:keywords set to Id
File size: 30.1 KB
Line 
1!
2! $Id: phyaqua_mod.F90 5093 2024-07-21 11:07:18Z snguyen $
3!
4MODULE phyaqua_mod
5  ! Routines complementaires pour la physique planetaire.
6  IMPLICIT NONE
7
8CONTAINS
9
10  SUBROUTINE iniaqua(nlon,year_len,iflag_phys)
11
12    ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
13    ! Creation d'un etat initial et de conditions aux limites
14    ! (resp startphy.nc et limit.nc) pour des configurations idealisees
15    ! du modele LMDZ dans sa version terrestre.
16    ! iflag_phys est un parametre qui controle
17    ! iflag_phys = N
18    ! de 100 a 199 : aqua planetes avec SST forcees
19    ! N-100 determine le type de SSTs
20    ! de 200 a 299 : terra planetes avec Ts calcule
21
22    ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
23
24    USE dimphy, ONLY: klon
25    USE geometry_mod, ONLY : latitude
26    USE surface_data, ONLY: type_ocean, ok_veget
27    USE pbl_surface_mod, ONLY: pbl_surface_init
28    USE fonte_neige_mod, ONLY: fonte_neige_init
29    USE phys_state_var_mod
30    USE time_phylmdz_mod, ONLY: day_ref, ndays, pdtphys, &
31                                day_ini,day_end
32    USE indice_sol_mod
33    USE nrtype, ONLY: pi
34!    USE ioipsl
35    USE mod_phys_lmdz_para, ONLY: is_master
36    USE mod_phys_lmdz_transfert_para, ONLY: bcast
37    USE mod_grid_phy_lmdz
38    USE ioipsl_getin_p_mod, ONLY : getin_p
39    USE phys_cal_mod , ONLY: calend, year_len_phy => year_len
40    IMPLICIT NONE
41
42    include "YOMCST.h"
43    include "clesphys.h"
44    include "dimsoil.h"
45
46    INTEGER, INTENT (IN) :: nlon, year_len, iflag_phys
47    ! IM ajout latfi, lonfi
48!    REAL, INTENT (IN) :: lonfi(nlon), latfi(nlon)
49
50    INTEGER type_profil, type_aqua
51
52    ! Ajouts initialisation des surfaces
53    REAL :: run_off_lic_0(nlon)
54    REAL :: qsolsrf(nlon, nbsrf), snsrf(nlon, nbsrf)
55    REAL :: tsoil(nlon, nsoilmx, nbsrf)
56    REAL :: tslab(nlon), seaice(nlon)
57    REAL fder(nlon)
58
59
60
61    ! Arguments :
62    ! -----------
63
64    ! integer radpas
65    INTEGER it, unit, i, k, itap
66
67    REAL rugos, albedo
68    REAL tsurf
69    REAL time, timestep, day, day0
70    REAL qsol_f
71    REAL rugsrel(nlon)
72    LOGICAL alb_ocean
73
74    CHARACTER *80 ans, file_forctl, file_fordat, file_start
75    CHARACTER *100 file, var
76    CHARACTER *2 cnbl
77
78    REAL phy_nat(nlon, year_len)
79    REAL phy_alb(nlon, year_len)
80    REAL phy_sst(nlon, year_len)
81    REAL phy_bil(nlon, year_len)
82    REAL phy_rug(nlon, year_len)
83    REAL phy_ice(nlon, year_len)
84    REAL phy_fter(nlon, year_len)
85    REAL phy_foce(nlon, year_len)
86    REAL phy_fsic(nlon, year_len)
87    REAL phy_flic(nlon, year_len)
88
89    INTEGER, SAVE :: read_climoz = 0 ! read ozone climatology
90!$OMP THREADPRIVATE(read_climoz)
91
92    ! -------------------------------------------------------------------------
93    ! declaration pour l'appel a phyredem
94    ! -------------------------------------------------------------------------
95
96    ! real pctsrf(nlon,nbsrf),ftsol(nlon,nbsrf)
97    REAL falbe(nlon, nbsrf), falblw(nlon, nbsrf)
98    ! real pbl_tke(nlon,llm,nbsrf)
99    ! real rain_fall(nlon),snow_fall(nlon)
100    ! real solsw(nlon), sollw(nlon),radsol(nlon)
101    ! real t_ancien(nlon,llm),q_ancien(nlon,llm),rnebcon(nlon,llm)
102    ! real ratqs(nlon,llm)
103    ! real clwcon(nlon,llm)
104
105    INTEGER longcles
106    PARAMETER (longcles=20)
107    REAL clesphy0(longcles)
108
109
110    ! -----------------------------------------------------------------------
111    ! dynamial tendencies :
112    ! ---------------------
113
114    INTEGER l, ierr, aslun
115
116    REAL paire
117
118    ! Local
119    CHARACTER (LEN=20) :: modname='phyaqua'
120    CHARACTER (LEN=80) :: abort_message
121
122
123    ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
124    ! INITIALISATIONS
125    ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
126
127    ! -----------------------------------------------------------------------
128    ! Initialisations  des constantes
129    ! -------------------------------
130
131    !IF (calend .EQ. "earth_360d") Then
132      year_len_phy = year_len
133    !END IF
134   
135    if (year_len/=360) then
136      write (*,*) year_len
137      call abort_physic("iniaqua", 'iniaqua: 360 day calendar is required !', 1)
138    endif
139
140    type_aqua = iflag_phys/100
141    type_profil = iflag_phys - type_aqua*100
142    PRINT *, 'iniaqua:type_aqua, type_profil', type_aqua, type_profil
143
144    IF (klon/=nlon) THEN
145      WRITE (*, *) 'iniaqua: klon=', klon, ' nlon=', nlon
146      abort_message= 'probleme de dimensions dans iniaqua'
147      CALL abort_physic(modname,abort_message,1)
148    END IF
149    CALL phys_state_var_init(read_climoz)
150
151
152    read_climoz = 0
153    day0 = 217.
154    day = day0
155    it = 0
156    time = 0.
157
158    ! -----------------------------------------------------------------------
159    ! initialisations de la physique
160    ! -----------------------------------------------------------------------
161
162    day_ini = day_ref
163    day_end = day_ini + ndays
164
165    nbapp_rad = 24
166    CALL getin_p('nbapp_rad', nbapp_rad)
167
168    ! ---------------------------------------------------------------------
169    ! Creation des conditions aux limites:
170    ! ------------------------------------
171    ! Initialisations des constantes
172    ! Ajouter les manquants dans planete.def... (albedo etc)
173    co2_ppm = 348.
174    CALL getin_p('co2_ppm', co2_ppm)
175
176    solaire = 1365.
177    CALL getin_p('solaire', solaire)
178 
179    ! CALL getin('albedo',albedo) ! albedo is set below, depending on
180    ! type_aqua
181    alb_ocean = .TRUE.
182    CALL getin_p('alb_ocean', alb_ocean)
183
184    WRITE (*, *) 'iniaqua: co2_ppm=', co2_ppm
185    WRITE (*, *) 'iniaqua: solaire=', solaire
186    WRITE (*, *) 'iniaqua: alb_ocean=', alb_ocean
187
188    radsol = 0.
189    qsol_f = 10.
190
191    ! Conditions aux limites:
192    ! -----------------------
193
194    qsol(:) = qsol_f
195    rugsrel = 0.0 ! (rugsrel = rugoro)
196    rugoro = 0.0
197    u_ancien = 0.0
198    v_ancien = 0.0
199    agesno = 50.0
200    ! Relief plat
201    zmea = 0.
202    zstd = 0.
203    zsig = 0.
204    zgam = 0.
205    zthe = 0.
206    zpic = 0.
207    zval = 0.
208
209    ! Une seule surface
210    pctsrf = 0.
211    IF (type_aqua==1) THEN
212      rugos = 1.E-4
213      albedo = 0.19
214      pctsrf(:, is_oce) = 1.
215    ELSE IF (type_aqua==2) THEN
216      rugos = 0.03
217      albedo = 0.1
218      pctsrf(:, is_ter) = 1.
219    END IF
220
221    CALL getin_p('rugos', rugos)
222
223    WRITE (*, *) 'iniaqua: rugos=', rugos
224    zmasq(:) = pctsrf(:, is_ter)
225
226    ! pctsrf_pot(:,is_oce) = 1. - zmasq(:)
227    ! pctsrf_pot(:,is_sic) = 1. - zmasq(:)
228
229    ! Si alb_ocean on calcule un albedo oceanique moyen
230    ! if (alb_ocean) then
231    ! Voir pourquoi on avait ca.
232    ! CALL ini_alb_oce(phy_alb)
233    ! else
234    phy_alb(:, :) = albedo ! albedo land only (old value condsurf_jyg=0.3)
235    ! endif !alb_ocean
236
237    DO i = 1, year_len
238      ! IM Terraplanete   phy_sst(:,i) = 260.+50.*cos(rlatd(:))**2
239      ! IM ajout calcul profil sst selon le cas considere (cf. FBr)
240
241      phy_nat(:, i) = 1.0 ! 0=ocean libre, 1=land, 2=glacier, 3=banquise
242      phy_bil(:, i) = 1.0 ! ne sert que pour les slab_ocean
243      phy_rug(:, i) = rugos ! longueur rugosite utilisee sur land only
244      phy_ice(:, i) = 0.0 ! fraction de glace (?)
245      phy_fter(:, i) = pctsrf(:, is_ter) ! fraction de glace (?)
246      phy_foce(:, i) = pctsrf(:, is_oce) ! fraction de glace (?)
247      phy_fsic(:, i) = pctsrf(:, is_sic) ! fraction de glace (?)
248      phy_flic(:, i) = pctsrf(:, is_lic) ! fraction de glace (?)
249    END DO
250    ! IM calcul profil sst
251    CALL profil_sst(nlon, latitude, type_profil, phy_sst)
252
253    IF (grid_type==unstructured) THEN
254      CALL writelim_unstruct(klon, phy_nat, phy_alb, phy_sst, phy_bil, phy_rug, phy_ice, &
255                             phy_fter, phy_foce, phy_flic, phy_fsic)
256    ELSE
257     
258       CALL writelim(klon, phy_nat, phy_alb, phy_sst, phy_bil, phy_rug, phy_ice, &
259                     phy_fter, phy_foce, phy_flic, phy_fsic)
260    ENDIF
261
262    ! ---------------------------------------------------------------------
263    ! Ecriture de l'etat initial:
264    ! ---------------------------
265
266
267    ! Ecriture etat initial physique
268
269    timestep = pdtphys
270    radpas = nint(rday/timestep/float(nbapp_rad))
271
272    DO i = 1, longcles
273      clesphy0(i) = 0.
274    END DO
275    clesphy0(1) = float(iflag_con)
276    clesphy0(2) = float(nbapp_rad)
277    ! IF( cycle_diurne  ) clesphy0(3) =  1.
278    clesphy0(3) = 1. ! cycle_diurne
279    clesphy0(4) = 1. ! soil_model
280    clesphy0(5) = 1. ! new_oliq
281    clesphy0(6) = 0. ! ok_orodr
282    clesphy0(7) = 0. ! ok_orolf
283    clesphy0(8) = 0. ! ok_limitvrai
284
285
286    ! =======================================================================
287    ! Profils initiaux
288    ! =======================================================================
289
290    ! On initialise les temperatures de surfaces comme les sst
291    DO i = 1, nlon
292      ftsol(i, :) = phy_sst(i, 1)
293      tsoil(i, :, :) = phy_sst(i, 1)
294      tslab(i) = phy_sst(i, 1)
295    END DO
296
297    falbe(:, :) = albedo
298    falblw(:, :) = albedo
299    rain_fall(:) = 0.
300    snow_fall(:) = 0.
301    solsw(:) = 0.
302    sollw(:) = 0.
303    radsol(:) = 0.
304
305    ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
306    ! intialisation bidon mais pas grave
307    t_ancien(:, :) = 0.
308    q_ancien(:, :) = 0.
309    ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
310    rnebcon = 0.
311    ratqs = 0.
312    clwcon = 0.
313    pbl_tke = 1.E-8
314
315    ! variables supplementaires pour appel a plb_surface_init
316    fder(:) = 0.
317    seaice(:) = 0.
318    run_off_lic_0 = 0.
319    fevap = 0.
320
321
322    ! Initialisations necessaires avant phyredem
323    type_ocean = 'force'
324    CALL fonte_neige_init(run_off_lic_0)
325    qsolsrf(:, :) = qsol(1) ! humidite du sol des sous surface
326    snsrf(:, :) = 0. ! couverture de neige des sous surface
327    z0m(:, :) = rugos ! couverture de neige des sous surface
328    z0h=z0m
329
330
331    CALL pbl_surface_init(fder, snsrf, qsolsrf, tsoil)
332
333    PRINT *, 'iniaqua: before phyredem'
334
335    pbl_tke(:,:,:) = 1.e-8
336    falb1 = albedo
337    falb2 = albedo
338    zmax0 = 0.
339    f0 = 0.
340    sig1 = 0.
341    w01 = 0.
342    wake_deltat = 0.
343    wake_deltaq = 0.
344    wake_s = 0.
345    wake_dens = 0.
346    wake_cstar = 0.
347    wake_pe = 0.
348    wake_fip = 0.
349    fm_therm = 0.
350    entr_therm = 0.
351    detr_therm = 0.
352    ale_bl = 0.
353    ale_bl_trig =0.
354    alp_bl =0.
355    treedrg(:,:,:)=0.
356
357    u10m = 0.
358    v10m = 0.
359
360    ql_ancien   = 0.
361    qs_ancien   = 0.
362    qbs_ancien  = 0.
363    u_ancien    = 0.
364    v_ancien    = 0.
365    prw_ancien  = 0.
366    prlw_ancien = 0.
367    prsw_ancien = 0. 
368    prbsw_ancien= 0.
369
370    ale_wake    = 0.
371    ale_bl_stat = 0. 
372
373
374!ym error : the sub surface dimension is the third not second : forgotten for iniaqua
375!    falb_dir(:,is_ter,:)=0.08; falb_dir(:,is_lic,:)=0.6
376!    falb_dir(:,is_oce,:)=0.5;  falb_dir(:,is_sic,:)=0.6
377    falb_dir(:,:,is_ter)=0.08; falb_dir(:,:,is_lic)=0.6
378    falb_dir(:,:,is_oce)=0.5;  falb_dir(:,:,is_sic)=0.6
379
380!ym falb_dif has been forgotten, initialize with defaukt value found in phyetat0 or 0 ?
381!ym probably the uninitialized value was 0 for standard (regular grid) case
382    falb_dif(:,:,:)=0
383
384
385    CALL phyredem('startphy.nc')
386
387    PRINT *, 'iniaqua: after phyredem'
388    CALL phys_state_var_end
389
390    RETURN
391  END SUBROUTINE iniaqua
392
393
394  ! ====================================================================
395  ! ====================================================================
396  SUBROUTINE zenang_an(cycle_diurne, gmtime, rlat, rlon, rmu0, fract)
397    USE dimphy
398    IMPLICIT NONE
399    ! ====================================================================
400    ! =============================================================
401    ! CALL zenang(cycle_diurne,gmtime,rlat,rlon,rmu0,fract)
402    ! Auteur : A. Campoy et F. Hourdin
403    ! Objet  : calculer les valeurs moyennes du cos de l'angle zenithal
404    ! et l'ensoleillement moyen entre gmtime1 et gmtime2
405    ! connaissant la declinaison, la latitude et la longitude.
406
407    ! Dans cette version particuliere, on calcule le rayonnement
408    ! moyen sur l'année à chaque latitude.
409    ! angle zenithal calculé pour obtenir un
410    ! Fit polynomial de  l'ensoleillement moyen au sommet de l'atmosphere
411    ! en moyenne annuelle.
412    ! Spécifique de la terre. Utilisé pour les aqua planetes.
413
414    ! Rque   : Different de la routine angle en ce sens que zenang
415    ! fournit des moyennes de pmu0 et non des valeurs
416    ! instantanees, du coup frac prend toutes les valeurs
417    ! entre 0 et 1.
418    ! Date   : premiere version le 13 decembre 1994
419    ! revu pour  GCM  le 30 septembre 1996
420    ! ===============================================================
421    ! longi----INPUT : la longitude vraie de la terre dans son plan
422    ! solaire a partir de l'equinoxe de printemps (degre)
423    ! gmtime---INPUT : temps universel en fraction de jour
424    ! pdtrad---INPUT : pas de temps du rayonnement (secondes)
425    ! lat------INPUT : latitude en degres
426    ! long-----INPUT : longitude en degres
427    ! pmu0-----OUTPUT: angle zenithal moyen entre gmtime et gmtime+pdtrad
428    ! frac-----OUTPUT: ensoleillement moyen entre gmtime et gmtime+pdtrad
429    ! ================================================================
430    include "YOMCST.h"
431    ! ================================================================
432    LOGICAL cycle_diurne
433    REAL gmtime
434    REAL rlat(klon), rlon(klon), rmu0(klon), fract(klon)
435    ! ================================================================
436    INTEGER i
437    REAL gmtime1, gmtime2
438    REAL pi_local
439
440
441    REAL rmu0m(klon), rmu0a(klon)
442
443
444    pi_local = 4.0*atan(1.0)
445
446    ! ================================================================
447    ! Calcul de l'angle zenithal moyen sur la journee
448    ! ================================================================
449
450    DO i = 1, klon
451      fract(i) = 1.
452      ! Calcule du flux moyen
453      IF (abs(rlat(i))<=28.75) THEN
454        rmu0m(i) = (210.1924+206.6059*cos(0.0174533*rlat(i))**2)/1365.
455      ELSE IF (abs(rlat(i))<=43.75) THEN
456        rmu0m(i) = (187.4562+236.1853*cos(0.0174533*rlat(i))**2)/1365.
457      ELSE IF (abs(rlat(i))<=71.25) THEN
458        rmu0m(i) = (162.4439+284.1192*cos(0.0174533*rlat(i))**2)/1365.
459      ELSE
460        rmu0m(i) = (172.8125+183.7673*cos(0.0174533*rlat(i))**2)/1365.
461      END IF
462    END DO
463
464    ! ================================================================
465    ! Avec ou sans cycle diurne
466    ! ================================================================
467
468    IF (cycle_diurne) THEN
469
470      ! On redecompose flux  au sommet suivant un cycle diurne idealise
471      ! identique a toutes les latitudes.
472
473      DO i = 1, klon
474        rmu0a(i) = 2.*rmu0m(i)*sqrt(2.)*pi_local/(4.-pi_local)
475        rmu0(i) = rmu0a(i)*abs(sin(pi_local*gmtime+pi_local*rlon(i)/360.)) - &
476          rmu0a(i)/sqrt(2.)
477      END DO
478
479      DO i = 1, klon
480        IF (rmu0(i)<=0.) THEN
481          rmu0(i) = 0.
482          fract(i) = 0.
483        ELSE
484          fract(i) = 1.
485        END IF
486      END DO
487
488      ! Affichage de l'angel zenitale
489      ! print*,'************************************'
490      ! print*,'************************************'
491      ! print*,'************************************'
492      ! print*,'latitude=',rlat(i),'longitude=',rlon(i)
493      ! print*,'rmu0m=',rmu0m(i)
494      ! print*,'rmu0a=',rmu0a(i)
495      ! print*,'rmu0=',rmu0(i)
496
497    ELSE
498
499      DO i = 1, klon
500        fract(i) = 0.5
501        rmu0(i) = rmu0m(i)*2.
502      END DO
503
504    END IF
505
506    RETURN
507  END SUBROUTINE zenang_an
508
509  ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
510
511  SUBROUTINE writelim_unstruct(klon, phy_nat, phy_alb, phy_sst, phy_bil, phy_rug, &
512      phy_ice, phy_fter, phy_foce, phy_flic, phy_fsic)
513
514    USE mod_phys_lmdz_para, ONLY: is_omp_master, klon_mpi
515    USE mod_phys_lmdz_transfert_para, ONLY: gather_omp
516    USE lmdz_xios
517    IMPLICIT NONE
518
519    INTEGER, INTENT (IN) :: klon
520    REAL, INTENT (IN) :: phy_nat(klon, 360)
521    REAL, INTENT (IN) :: phy_alb(klon, 360)
522    REAL, INTENT (IN) :: phy_sst(klon, 360)
523    REAL, INTENT (IN) :: phy_bil(klon, 360)
524    REAL, INTENT (IN) :: phy_rug(klon, 360)
525    REAL, INTENT (IN) :: phy_ice(klon, 360)
526    REAL, INTENT (IN) :: phy_fter(klon, 360)
527    REAL, INTENT (IN) :: phy_foce(klon, 360)
528    REAL, INTENT (IN) :: phy_flic(klon, 360)
529    REAL, INTENT (IN) :: phy_fsic(klon, 360)
530
531    REAL :: phy_mpi(klon_mpi, 360) ! temporary variable, to store phy_***(:)
532      ! on the whole physics grid
533 
534    IF (using_xios) THEN
535      PRINT *, 'writelim: Ecriture du fichier limit'
536
537      CALL gather_omp(phy_foce, phy_mpi)
538      IF (is_omp_master) CALL xios_send_field('foce_limout',phy_mpi)
539
540      CALL gather_omp(phy_fsic, phy_mpi)
541      IF (is_omp_master) CALL xios_send_field('fsic_limout',phy_mpi)
542     
543      CALL gather_omp(phy_fter, phy_mpi)
544      IF (is_omp_master) CALL xios_send_field('fter_limout',phy_mpi)
545     
546      CALL gather_omp(phy_flic, phy_mpi)
547      IF (is_omp_master) CALL xios_send_field('flic_limout',phy_mpi)
548
549      CALL gather_omp(phy_sst, phy_mpi)
550      IF (is_omp_master) CALL xios_send_field('sst_limout',phy_mpi)
551
552      CALL gather_omp(phy_bil, phy_mpi)
553      IF (is_omp_master) CALL xios_send_field('bils_limout',phy_mpi)
554
555      CALL gather_omp(phy_alb, phy_mpi)
556      IF (is_omp_master) CALL xios_send_field('alb_limout',phy_mpi)
557
558      CALL gather_omp(phy_rug, phy_mpi)
559      IF (is_omp_master) CALL xios_send_field('rug_limout',phy_mpi)
560    ENDIF
561  END SUBROUTINE writelim_unstruct
562
563
564
565  SUBROUTINE writelim(klon, phy_nat, phy_alb, phy_sst, phy_bil, phy_rug, &
566      phy_ice, phy_fter, phy_foce, phy_flic, phy_fsic)
567
568    USE mod_phys_lmdz_para, ONLY: is_master
569    USE mod_grid_phy_lmdz, ONLY: klon_glo
570    USE mod_phys_lmdz_transfert_para, ONLY: gather
571    USE phys_cal_mod, ONLY: year_len
572    USE netcdf, ONLY: nf90_def_var, nf90_put_var, nf90_get_var, nf90_strerror, nf90_close, &
573            nf90_enddef, nf90_put_att, nf90_unlimited, nf90_noerr, nf90_global, nf90_clobber, &
574            nf90_64bit_offset, nf90_def_dim, nf90_create
575    USE lmdz_cppkeys_wrapper, ONLY: nf90_format
576    IMPLICIT NONE
577
578    INTEGER, INTENT (IN) :: klon
579    REAL, INTENT (IN) :: phy_nat(klon, year_len)
580    REAL, INTENT (IN) :: phy_alb(klon, year_len)
581    REAL, INTENT (IN) :: phy_sst(klon, year_len)
582    REAL, INTENT (IN) :: phy_bil(klon, year_len)
583    REAL, INTENT (IN) :: phy_rug(klon, year_len)
584    REAL, INTENT (IN) :: phy_ice(klon, year_len)
585    REAL, INTENT (IN) :: phy_fter(klon, year_len)
586    REAL, INTENT (IN) :: phy_foce(klon, year_len)
587    REAL, INTENT (IN) :: phy_flic(klon, year_len)
588    REAL, INTENT (IN) :: phy_fsic(klon, year_len)
589
590    REAL :: phy_glo(klon_glo, year_len) ! temporary variable, to store phy_***(:)
591      ! on the whole physics grid
592    INTEGER :: k
593    INTEGER ierr
594    INTEGER dimfirst(3)
595    INTEGER dimlast(3)
596
597    INTEGER nid, ndim, ntim
598    INTEGER dims(2), debut(2), epais(2)
599    INTEGER id_tim
600    INTEGER id_nat, id_sst, id_bils, id_rug, id_alb
601    INTEGER id_fter, id_foce, id_fsic, id_flic
602
603    IF (is_master) THEN
604
605      PRINT *, 'writelim: Ecriture du fichier limit'
606
607      ierr = nf90_create('limit.nc', IOR(nf90_clobber,nf90_64bit_offset), nid)
608
609      ierr = nf90_put_att(nid, nf90_global, 'title', &
610        'Fichier conditions aux limites')
611      ! !        ierr = nf90_def_dim (nid, "points_physiques", klon, ndim)
612      ierr = nf90_def_dim(nid, 'points_physiques', klon_glo, ndim)
613      ierr = nf90_def_dim(nid, 'time', nf90_unlimited, ntim)
614
615      dims(1) = ndim
616      dims(2) = ntim
617
618      ierr = nf90_def_var(nid, 'TEMPS', nf90_format, [ntim], id_tim)
619      ierr = nf90_put_att(nid, id_tim, 'title', 'Jour dans l annee')
620
621      ierr = nf90_def_var(nid, 'NAT', nf90_format, dims, id_nat)
622      ierr = nf90_put_att(nid, id_nat, 'title', &
623        'Nature du sol (0,1,2,3)')
624
625      ierr = nf90_def_var(nid, 'SST', nf90_format, dims, id_sst)
626      ierr = nf90_put_att(nid, id_sst, 'title', &
627        'Temperature superficielle de la mer')
628
629      ierr = nf90_def_var(nid, 'BILS', nf90_format, dims, id_bils)
630      ierr = nf90_put_att(nid, id_bils, 'title', &
631        'Reference flux de chaleur au sol')
632
633      ierr = nf90_def_var(nid, 'ALB', nf90_format, dims, id_alb)
634      ierr = nf90_put_att(nid, id_alb, 'title', 'Albedo a la surface')
635
636      ierr = nf90_def_var(nid, 'RUG', nf90_format, dims, id_rug)
637      ierr = nf90_put_att(nid, id_rug, 'title', 'Rugosite')
638
639      ierr = nf90_def_var(nid, 'FTER', nf90_format, dims, id_fter)
640      ierr = nf90_put_att(nid, id_fter, 'title','Frac. Land')
641      ierr = nf90_def_var(nid, 'FOCE', nf90_format, dims, id_foce)
642      ierr = nf90_put_att(nid, id_foce, 'title','Frac. Ocean')
643      ierr = nf90_def_var(nid, 'FSIC', nf90_format, dims, id_fsic)
644      ierr = nf90_put_att(nid, id_fsic, 'title','Frac. Sea Ice')
645      ierr = nf90_def_var(nid, 'FLIC', nf90_format, dims, id_flic)
646      ierr = nf90_put_att(nid, id_flic, 'title','Frac. Land Ice')
647
648      ierr = nf90_enddef(nid)
649      IF (ierr/=nf90_noerr) THEN
650        WRITE (*, *) 'writelim error: failed to end define mode'
651        WRITE (*, *) nf90_strerror(ierr)
652      END IF
653
654
655      ! write the 'times'
656      DO k = 1, year_len
657        ierr = nf90_put_var(nid, id_tim, k, [k])
658        IF (ierr/=nf90_noerr) THEN
659          WRITE (*, *) 'writelim error with temps(k),k=', k
660          WRITE (*, *) nf90_strerror(ierr)
661        END IF
662      END DO
663
664    END IF ! of if (is_master)
665
666    ! write the fields, after having collected them on master
667
668    CALL gather(phy_nat, phy_glo)
669    IF (is_master) THEN
670      ierr = nf90_put_var(nid, id_nat, phy_glo)
671      IF (ierr/=nf90_noerr) THEN
672        WRITE (*, *) 'writelim error with phy_nat'
673        WRITE (*, *) nf90_strerror(ierr)
674      END IF
675    END IF
676
677    CALL gather(phy_sst, phy_glo)
678    IF (is_master) THEN
679      ierr = nf90_put_var(nid, id_sst, phy_glo)
680      IF (ierr/=nf90_noerr) THEN
681        WRITE (*, *) 'writelim error with phy_sst'
682        WRITE (*, *) nf90_strerror(ierr)
683      END IF
684    END IF
685
686    CALL gather(phy_bil, phy_glo)
687    IF (is_master) THEN
688      ierr = nf90_put_var(nid, id_bils, phy_glo)
689      IF (ierr/=nf90_noerr) THEN
690        WRITE (*, *) 'writelim error with phy_bil'
691        WRITE (*, *) nf90_strerror(ierr)
692      END IF
693    END IF
694
695    CALL gather(phy_alb, phy_glo)
696    IF (is_master) THEN
697      ierr = nf90_put_var(nid, id_alb, phy_glo)
698      IF (ierr/=nf90_noerr) THEN
699        WRITE (*, *) 'writelim error with phy_alb'
700        WRITE (*, *) nf90_strerror(ierr)
701      END IF
702    END IF
703
704    CALL gather(phy_rug, phy_glo)
705    IF (is_master) THEN
706      ierr = nf90_put_var(nid, id_rug, phy_glo)
707      IF (ierr/=nf90_noerr) THEN
708        WRITE (*, *) 'writelim error with phy_rug'
709        WRITE (*, *) nf90_strerror(ierr)
710      END IF
711    END IF
712
713    CALL gather(phy_fter, phy_glo)
714    IF (is_master) THEN
715      ierr = nf90_put_var(nid, id_fter, phy_glo)
716      IF (ierr/=nf90_noerr) THEN
717        WRITE (*, *) 'writelim error with phy_fter'
718        WRITE (*, *) nf90_strerror(ierr)
719      END IF
720    END IF
721
722    CALL gather(phy_foce, phy_glo)
723    IF (is_master) THEN
724      ierr = nf90_put_var(nid, id_foce, phy_glo)
725      IF (ierr/=nf90_noerr) THEN
726        WRITE (*, *) 'writelim error with phy_foce'
727        WRITE (*, *) nf90_strerror(ierr)
728      END IF
729    END IF
730
731    CALL gather(phy_fsic, phy_glo)
732    IF (is_master) THEN
733      ierr = nf90_put_var(nid, id_fsic, phy_glo)
734      IF (ierr/=nf90_noerr) THEN
735        WRITE (*, *) 'writelim error with phy_fsic'
736        WRITE (*, *) nf90_strerror(ierr)
737      END IF
738    END IF
739
740    CALL gather(phy_flic, phy_glo)
741    IF (is_master) THEN
742      ierr = nf90_put_var(nid, id_flic, phy_glo)
743      IF (ierr/=nf90_noerr) THEN
744        WRITE (*, *) 'writelim error with phy_flic'
745        WRITE (*, *) nf90_strerror(ierr)
746      END IF
747    END IF
748
749    ! close file:
750    IF (is_master) THEN
751      ierr = nf90_close(nid)
752    END IF
753
754  END SUBROUTINE writelim
755
756  ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
757
758  SUBROUTINE profil_sst(nlon, rlatd, type_profil, phy_sst)
759    USE dimphy
760    USE phys_cal_mod , ONLY: year_len
761    IMPLICIT NONE
762
763    INTEGER nlon, type_profil, i, k, j
764    REAL :: rlatd(nlon), phy_sst(nlon, year_len)
765    INTEGER imn, imx, amn, amx, kmn, kmx
766    INTEGER p, pplus, nlat_max
767    PARAMETER (nlat_max=72)
768    REAL x_anom_sst(nlat_max)
769    CHARACTER (LEN=20) :: modname='profil_sst'
770    CHARACTER (LEN=80) :: abort_message
771
772    IF (klon/=nlon) THEN
773       abort_message='probleme de dimensions dans profil_sst'
774       CALL abort_physic(modname,abort_message,1)
775    ENDIF
776    WRITE (*, *) ' profil_sst: type_profil=', type_profil
777    DO i = 1, year_len
778      ! phy_sst(:,i) = 260.+50.*cos(rlatd(:))**2
779
780      ! Rajout fbrlmd
781
782      IF (type_profil==1) THEN
783        ! Méthode 1 "Control" faible plateau à l'Equateur
784        DO j = 1, klon
785          phy_sst(j, i) = 273. + 27.*(1-sin(1.5*rlatd(j))**2)
786          ! PI/3=1.047197551
787          IF ((rlatd(j)>1.0471975) .OR. (rlatd(j)<-1.0471975)) THEN
788            phy_sst(j, i) = 273.
789          END IF
790        END DO
791      END IF
792      IF (type_profil==2) THEN
793        ! Méthode 2 "Flat" fort plateau à l'Equateur
794        DO j = 1, klon
795          phy_sst(j, i) = 273. + 27.*(1-sin(1.5*rlatd(j))**4)
796          IF ((rlatd(j)>1.0471975) .OR. (rlatd(j)<-1.0471975)) THEN
797            phy_sst(j, i) = 273.
798          END IF
799        END DO
800      END IF
801
802
803      IF (type_profil==3) THEN
804        ! Méthode 3 "Qobs" plateau réel à l'Equateur
805        DO j = 1, klon
806          phy_sst(j, i) = 273. + 0.5*27.*(2-sin(1.5*rlatd(j))**2-sin(1.5* &
807            rlatd(j))**4)
808          IF ((rlatd(j)>1.0471975) .OR. (rlatd(j)<-1.0471975)) THEN
809            phy_sst(j, i) = 273.
810          END IF
811        END DO
812      END IF
813
814      IF (type_profil==4) THEN
815        ! Méthode 4 : Méthode 3 + SST+2 "Qobs" plateau réel à l'Equateur
816        DO j = 1, klon
817          phy_sst(j, i) = 273. + 0.5*29.*(2-sin(1.5*rlatd(j))**2-sin(1.5* &
818            rlatd(j))**4)
819          IF ((rlatd(j)>1.0471975) .OR. (rlatd(j)<-1.0471975)) THEN
820            phy_sst(j, i) = 273.
821          END IF
822        END DO
823      END IF
824
825      IF (type_profil==5) THEN
826        ! Méthode 5 : Méthode 3 + +2K "Qobs" plateau réel à l'Equateur
827        DO j = 1, klon
828          phy_sst(j, i) = 273. + 2. + 0.5*27.*(2-sin(1.5*rlatd(j))**2-sin(1.5 &
829            *rlatd(j))**4)
830          IF ((rlatd(j)>1.0471975) .OR. (rlatd(j)<-1.0471975)) THEN
831            phy_sst(j, i) = 273. + 2.
832          END IF
833
834        END DO
835      END IF
836
837      IF (type_profil==6) THEN
838        ! Méthode 6 "cst" valeur constante de SST
839        DO j = 1, klon
840          phy_sst(j, i) = 288.
841        END DO
842      END IF
843
844
845      IF (type_profil==7) THEN
846        ! Méthode 7 "cst" valeur constante de SST +2
847        DO j = 1, klon
848          phy_sst(j, i) = 288. + 2.
849        END DO
850      END IF
851
852      p = 0
853      IF (type_profil==8) THEN
854        ! Méthode 8 profil anomalies SST du modèle couplé AR4
855        DO j = 1, klon
856          IF (rlatd(j)==rlatd(j-1)) THEN
857            phy_sst(j, i) = 273. + x_anom_sst(pplus) + &
858              0.5*27.*(2-sin(1.5*rlatd(j))**2-sin(1.5*rlatd(j))**4)
859            IF ((rlatd(j)>1.0471975) .OR. (rlatd(j)<-1.0471975)) THEN
860              phy_sst(j, i) = 273. + x_anom_sst(pplus)
861            END IF
862          ELSE
863            p = p + 1
864            pplus = 73 - p
865            phy_sst(j, i) = 273. + x_anom_sst(pplus) + &
866              0.5*27.*(2-sin(1.5*rlatd(j))**2-sin(1.5*rlatd(j))**4)
867            IF ((rlatd(j)>1.0471975) .OR. (rlatd(j)<-1.0471975)) THEN
868              phy_sst(j, i) = 273. + x_anom_sst(pplus)
869            END IF
870            WRITE (*, *) rlatd(j), x_anom_sst(pplus), phy_sst(j, i)
871          END IF
872        END DO
873      END IF
874
875      IF (type_profil==9) THEN
876        ! Méthode 5 : Méthode 3 + -2K "Qobs" plateau réel à l'Equateur
877        DO j = 1, klon
878          phy_sst(j, i) = 273. - 2. + 0.5*27.*(2-sin(1.5*rlatd(j))**2-sin(1.5 &
879            *rlatd(j))**4)
880          IF ((rlatd(j)>1.0471975) .OR. (rlatd(j)<-1.0471975)) THEN
881            phy_sst(j, i) = 273. - 2.
882          END IF
883        END DO
884      END IF
885
886
887      IF (type_profil==10) THEN
888        ! Méthode 10 : Méthode 3 + +4K "Qobs" plateau réel à l'Equateur
889        DO j = 1, klon
890          phy_sst(j, i) = 273. + 4. + 0.5*27.*(2-sin(1.5*rlatd(j))**2-sin(1.5 &
891            *rlatd(j))**4)
892          IF ((rlatd(j)>1.0471975) .OR. (rlatd(j)<-1.0471975)) THEN
893            phy_sst(j, i) = 273. + 4.
894          END IF
895        END DO
896      END IF
897
898      IF (type_profil==11) THEN
899        ! Méthode 11 : Méthode 3 + 4CO2 "Qobs" plateau réel à l'Equateur
900        DO j = 1, klon
901          phy_sst(j, i) = 273. + 0.5*27.*(2-sin(1.5*rlatd(j))**2-sin(1.5* &
902            rlatd(j))**4)
903          IF ((rlatd(j)>1.0471975) .OR. (rlatd(j)<-1.0471975)) THEN
904            phy_sst(j, i) = 273.
905          END IF
906        END DO
907      END IF
908
909      IF (type_profil==12) THEN
910        ! Méthode 12 : Méthode 10 + 4CO2 "Qobs" plateau réel à l'Equateur
911        DO j = 1, klon
912          phy_sst(j, i) = 273. + 4. + 0.5*27.*(2-sin(1.5*rlatd(j))**2-sin(1.5 &
913            *rlatd(j))**4)
914          IF ((rlatd(j)>1.0471975) .OR. (rlatd(j)<-1.0471975)) THEN
915            phy_sst(j, i) = 273. + 4.
916          END IF
917        END DO
918      END IF
919
920      IF (type_profil==13) THEN
921        ! Méthode 13 "Qmax" plateau réel à l'Equateur augmenté !
922        DO j = 1, klon
923          phy_sst(j, i) = 273. + 0.5*29.*(2-sin(1.5*rlatd(j))**2-sin(1.5* &
924            rlatd(j))**4)
925          IF ((rlatd(j)>1.0471975) .OR. (rlatd(j)<-1.0471975)) THEN
926            phy_sst(j, i) = 273.
927          END IF
928        END DO
929      END IF
930
931      IF (type_profil==14) THEN
932        ! Méthode 13 "Qmax2K" plateau réel à l'Equateur augmenté +2K !
933        DO j = 1, klon
934          phy_sst(j, i) = 273. + 2. + 0.5*29.*(2-sin(1.5*rlatd(j))**2-sin(1.5 &
935            *rlatd(j))**4)
936          IF ((rlatd(j)>1.0471975) .OR. (rlatd(j)<-1.0471975)) THEN
937            phy_sst(j, i) = 273.
938          END IF
939        END DO
940      END IF
941
942      if (type_profil==20) then
943      print*,'Profile SST 20'
944!     Méthode 13 "Qmax2K" plateau réel é|  l'Equateur augmenté +2K
945
946      do j=1,klon
947        phy_sst(j,i)=248.+55.*(1-sin(rlatd(j))**2)
948      enddo
949      endif
950
951      if (type_profil==21) then
952      print*,'Profile SST 21'
953!     Méthode 13 "Qmax2K" plateau réel é|  l'Equateur augmenté +2K
954      do j=1,klon
955        phy_sst(j,i)=252.+55.*(1-sin(rlatd(j))**2)
956      enddo
957      endif
958
959
960
961    END DO
962
963    ! IM beg : verif profil SST: phy_sst
964    amn = min(phy_sst(1,1), 1000.)
965    amx = max(phy_sst(1,1), -1000.)
966    imn = 1
967    kmn = 1
968    imx = 1
969    kmx = 1
970    DO k = 1, year_len
971      DO i = 2, nlon
972        IF (phy_sst(i,k)<amn) THEN
973          amn = phy_sst(i, k)
974          imn = i
975          kmn = k
976        END IF
977        IF (phy_sst(i,k)>amx) THEN
978          amx = phy_sst(i, k)
979          imx = i
980          kmx = k
981        END IF
982      END DO
983    END DO
984
985    PRINT *, 'profil_sst: imn, kmn, phy_sst(imn,kmn) ', imn, kmn, amn
986    PRINT *, 'profil_sst: imx, kmx, phy_sst(imx,kmx) ', imx, kmx, amx
987    ! IM end : verif profil SST: phy_sst
988
989    RETURN
990  END SUBROUTINE profil_sst
991
992END MODULE phyaqua_mod
Note: See TracBrowser for help on using the repository browser.