--- trunk/Sources/phylmd/physiq.f 2016/12/07 17:37:21 209 +++ trunk/Sources/phylmd/physiq.f 2017/04/20 14:44:47 221 @@ -36,7 +36,7 @@ USE dimsoil, ONLY: nsoilmx use drag_noro_m, only: drag_noro use dynetat0_m, only: day_ref, annee_ref - USE fcttre, ONLY: foeew, qsatl, qsats + USE fcttre, ONLY: foeew use fisrtilp_m, only: fisrtilp USE hgardfou_m, ONLY: hgardfou USE histsync_m, ONLY: histsync @@ -57,7 +57,7 @@ USE phytrac_m, ONLY: phytrac use radlwsw_m, only: radlwsw use yoegwd, only: sugwd - USE suphec_m, ONLY: rcpd, retv, rg, rlvtt, romega, rsigma, rtt + USE suphec_m, ONLY: rcpd, retv, rg, rlvtt, romega, rsigma, rtt, rmo3, md use time_phylmdz, only: itap, increment_itap use transp_m, only: transp use transp_lay_m, only: transp_lay @@ -151,15 +151,13 @@ ! soil temperature of surface fraction REAL, save:: fevap(klon, nbsrf) ! evaporation - REAL, save:: fluxlat(klon, nbsrf) + REAL fluxlat(klon, nbsrf) REAL, save:: fqsurf(klon, nbsrf) ! humidite de l'air au contact de la surface - REAL, save:: qsol(klon) - ! column-density of water in soil, in kg m-2 - - REAL, save:: fsnow(klon, nbsrf) ! epaisseur neigeuse + REAL, save:: qsol(klon) ! column-density of water in soil, in kg m-2 + REAL, save:: fsnow(klon, nbsrf) ! \'epaisseur neigeuse REAL, save:: falbe(klon, nbsrf) ! albedo visible par type de surface ! Param\`etres de l'orographie \`a l'\'echelle sous-maille (OESM) : @@ -206,7 +204,7 @@ REAL, save:: pfrac_1nucl(klon, llm) ! Produits des coefs lessi nucl (alpha = 1) - REAL frac_impa(klon, llm) ! fractions d'aerosols lessivees (impaction) + REAL frac_impa(klon, llm) ! fraction d'a\'erosols lessiv\'es (impaction) REAL frac_nucl(klon, llm) ! idem (nucleation) REAL, save:: rain_fall(klon) @@ -236,8 +234,9 @@ INTEGER julien REAL, save:: pctsrf(klon, nbsrf) ! percentage of surface - REAL, save:: albsol(klon) ! albedo du sol total visible + REAL, save:: albsol(klon) ! albedo du sol total, visible, moyen par maille REAL, SAVE:: wo(klon, llm) ! column density of ozone in a cell, in kDU + real, parameter:: dobson_u = 2.1415e-05 ! Dobson unit, in kg m-2 real, save:: clwcon(klon, llm), rnebcon(klon, llm) real, save:: clwcon0(klon, llm), rnebcon0(klon, llm) @@ -275,8 +274,7 @@ REAL cldl(klon), cldm(klon), cldh(klon) ! nuages bas, moyen et haut REAL cldt(klon), cldq(klon) ! nuage total, eau liquide integree - REAL zxqsurf(klon), zxsnow(klon), zxfluxlat(klon) - + REAL zxfluxlat(klon) REAL dist, mu0(klon), fract(klon) real longi REAL z_avant(klon), z_apres(klon), z_factor(klon) @@ -340,7 +338,7 @@ real rain_lsc(klon) REAL, save:: snow_con(klon) ! neige (mm / s) real snow_lsc(klon) - REAL d_ts(klon, nbsrf) + REAL d_ts(klon, nbsrf) ! variation of ftsol REAL d_u_vdf(klon, llm), d_v_vdf(klon, llm) REAL d_t_vdf(klon, llm), d_q_vdf(klon, llm) @@ -383,12 +381,11 @@ REAL uq_lay(klon, llm) ! transport zonal de l'eau a chaque niveau vert. real date0 - REAL ztsol(klon) + REAL tsol(klon) REAL d_t_ec(klon, llm) - ! tendance due \`a la conversion Ec en énergie thermique - - REAL ZRCPD + ! tendance due \`a la conversion d'\'energie cin\'etique en + ! énergie thermique REAL, save:: t2m(klon, nbsrf), q2m(klon, nbsrf) ! temperature and humidity at 2 m @@ -399,26 +396,8 @@ ! Aerosol effects: - REAL sulfate(klon, llm) ! SO4 aerosol concentration (micro g / m3) - - REAL, save:: sulfate_pi(klon, llm) - ! SO4 aerosol concentration, in \mu g / m3, pre-industrial value - - REAL cldtaupi(klon, llm) - ! cloud optical thickness for pre-industrial aerosols - - REAL re(klon, llm) ! Cloud droplet effective radius - REAL fl(klon, llm) ! denominator of re - - ! Aerosol optical properties - REAL, save:: tau_ae(klon, llm, 2), piz_ae(klon, llm, 2) - REAL, save:: cg_ae(klon, llm, 2) - REAL, save:: topswad(klon), solswad(klon) ! aerosol direct effect - REAL, save:: topswai(klon), solswai(klon) ! aerosol indirect effect - LOGICAL:: ok_ade = .false. ! apply aerosol direct effect - LOGICAL:: ok_aie = .false. ! apply aerosol indirect effect REAL:: bl95_b0 = 2., bl95_b1 = 0.2 ! Parameters in equation (D) of Boucher and Lohmann (1995, Tellus @@ -431,8 +410,8 @@ integer, save:: ncid_startphy namelist /physiq_nml/ fact_cldcon, facttemps, ok_newmicro, iflag_cldcon, & - ratqsbas, ratqshaut, ok_ade, ok_aie, bl95_b0, bl95_b1, & - iflag_thermals, nsplit_thermals + ratqsbas, ratqshaut, ok_ade, bl95_b0, bl95_b1, iflag_thermals, & + nsplit_thermals !---------------------------------------------------------------- @@ -447,23 +426,14 @@ q2m = 0. ffonte = 0. fqcalving = 0. - piz_ae = 0. - tau_ae = 0. - cg_ae = 0. rain_con = 0. snow_con = 0. - topswai = 0. - topswad = 0. - solswai = 0. - solswad = 0. - d_u_con = 0. d_v_con = 0. rnebcon0 = 0. clwcon0 = 0. rnebcon = 0. clwcon = 0. - pblh =0. ! Hauteur de couche limite plcl =0. ! Niveau de condensation de la CLA capCL =0. ! CAPE de couche limite @@ -515,7 +485,7 @@ ! Initialisation des sorties - call ini_histins(dtphys) + call ini_histins(dtphys, ok_newmicro) CALL ymds2ju(annee_ref, 1, day_ref, 0., date0) ! Positionner date0 pour initialisation de ORCHIDEE print *, 'physiq date0: ', date0 @@ -531,7 +501,7 @@ ql_seri = qx(:, :, iliq) tr_seri = qx(:, :, 3:nqmx) - ztsol = sum(ftsol * pctsrf, dim = 2) + tsol = sum(ftsol * pctsrf, dim = 2) ! Diagnostic de la tendance dynamique : IF (ancien_ok) THEN @@ -567,9 +537,6 @@ forall (k = 1: llm) zmasse(:, k) = (paprs(:, k) - paprs(:, k + 1)) / rg - ! Prescrire l'ozone : - wo = ozonecm(REAL(julien), paprs) - ! \'Evaporation de l'eau liquide nuageuse : DO k = 1, llm DO i = 1, klon @@ -589,16 +556,14 @@ CALL orbite(REAL(julien), longi, dist) CALL zenang(longi, time, dtphys * radpas, mu0, fract) - - ! Calcul de l'abedo moyen par maille albsol = sum(falbe * pctsrf, dim = 2) ! R\'epartition sous maille des flux longwave et shortwave ! R\'epartition du longwave par sous-surface lin\'earis\'ee forall (nsrf = 1: nbsrf) - fsollw(:, nsrf) = sollw + 4. * RSIGMA * ztsol**3 & - * (ztsol - ftsol(:, nsrf)) + fsollw(:, nsrf) = sollw + 4. * RSIGMA * tsol**3 & + * (tsol - ftsol(:, nsrf)) fsolsw(:, nsrf) = solsw * (1. - falbe(:, nsrf)) / (1. - albsol) END forall @@ -632,7 +597,7 @@ call assert(abs(sum(pctsrf, dim = 2) - 1.) <= EPSFRA, 'physiq: pctsrf') ftsol = ftsol + d_ts - ztsol = sum(ftsol * pctsrf, dim = 2) + tsol = sum(ftsol * pctsrf, dim = 2) zxfluxlat = sum(fluxlat * pctsrf, dim = 2) zt2m = sum(t2m * pctsrf, dim = 2) zq2m = sum(q2m * pctsrf, dim = 2) @@ -655,7 +620,7 @@ DO nsrf = 1, nbsrf DO i = 1, klon IF (pctsrf(i, nsrf) < epsfra) then - ftsol(i, nsrf) = ztsol(i) + ftsol(i, nsrf) = tsol(i) t2m(i, nsrf) = zt2m(i) q2m(i, nsrf) = zq2m(i) u10m(i, nsrf) = zu10m(i) @@ -679,7 +644,7 @@ ! Calculer la dérive du flux infrarouge DO i = 1, klon - dlw(i) = - 4. * RSIGMA * ztsol(i)**3 + dlw(i) = - 4. * RSIGMA * tsol(i)**3 ENDDO ! Appeler la convection @@ -902,35 +867,24 @@ ENDDO ENDDO - ! Introduce the aerosol direct and first indirect radiative forcings: - tau_ae = 0. - piz_ae = 0. - cg_ae = 0. - ! Param\`etres optiques des nuages et quelques param\`etres pour ! diagnostics : if (ok_newmicro) then CALL newmicro(paprs, play, t_seri, cldliq, cldfra, cldtau, cldemi, & - cldh, cldl, cldm, cldt, cldq, flwp, fiwp, flwc, fiwc, ok_aie, & - sulfate, sulfate_pi, bl95_b0, bl95_b1, cldtaupi, re, fl) + cldh, cldl, cldm, cldt, cldq, flwp, fiwp, flwc, fiwc) else CALL nuage(paprs, play, t_seri, cldliq, cldfra, cldtau, cldemi, cldh, & - cldl, cldm, cldt, cldq, ok_aie, sulfate, sulfate_pi, bl95_b0, & - bl95_b1, cldtaupi, re, fl) + cldl, cldm, cldt, cldq) endif IF (MOD(itap - 1, radpas) == 0) THEN - ! Appeler le rayonnement mais calculer tout d'abord l'albedo du sol. - ! Calcul de l'abedo moyen par maille + wo = ozonecm(REAL(julien), paprs) albsol = sum(falbe * pctsrf, dim = 2) - - ! Rayonnement (compatible Arpege-IFS) : - CALL radlwsw(dist, mu0, fract, paprs, play, ztsol, albsol, t_seri, & + CALL radlwsw(dist, mu0, fract, paprs, play, tsol, albsol, t_seri, & q_seri, wo, cldfra, cldemi, cldtau, heat, heat0, cool, cool0, & radsol, albpla, topsw, toplw, solsw, sollw, sollwdown, topsw0, & toplw0, solsw0, sollw0, lwdn0, lwdn, lwup0, lwup, swdn0, swdn, & - swup0, swup, ok_ade, ok_aie, tau_ae, piz_ae, cg_ae, topswad, & - solswad, cldtaupi, topswai, solswai) + swup0, swup, ok_ade, topswad, solswad) ENDIF ! Ajouter la tendance des rayonnements (tous les pas) @@ -941,10 +895,6 @@ ENDDO ENDDO - ! Calculer l'hydrologie de la surface - zxqsurf = sum(fqsurf * pctsrf, dim = 2) - zxsnow = sum(fsnow * pctsrf, dim = 2) - ! Calculer le bilan du sol et la d\'erive de temp\'erature (couplage) DO i = 1, klon bils(i) = radsol(i) - sens(i) + zxfluxlat(i) @@ -1028,7 +978,7 @@ IF (offline) call phystokenc(dtphys, t, mfu, mfd, pen_u, pde_u, pen_d, & pde_d, fm_therm, entr_therm, ycoefh, yu1, yv1, ftsol, pctsrf, & - frac_impa, frac_nucl, pphis, airephy, dtphys) + frac_impa, frac_nucl, pphis, airephy) ! Calculer le transport de l'eau et de l'energie (diagnostique) CALL transp(paprs, t_seri, q_seri, u_seri, v_seri, zphi, ve, vq, ue, uq) @@ -1043,8 +993,7 @@ ! conversion Ec en énergie thermique DO k = 1, llm DO i = 1, klon - ZRCPD = RCPD * (1. + RVTMP2 * q_seri(i, k)) - d_t_ec(i, k) = 0.5 / ZRCPD & + d_t_ec(i, k) = 0.5 / (RCPD * (1. + RVTMP2 * q_seri(i, k))) & * (u(i, k)**2 + v(i, k)**2 - u_seri(i, k)**2 - v_seri(i, k)**2) t_seri(i, k) = t_seri(i, k) + d_t_ec(i, k) d_t_ec(i, k) = d_t_ec(i, k) / dtphys @@ -1095,7 +1044,7 @@ CALL histwrite_phy("precip", rain_fall + snow_fall) CALL histwrite_phy("plul", rain_lsc + snow_lsc) CALL histwrite_phy("pluc", rain_con + snow_con) - CALL histwrite_phy("tsol", ztsol) + CALL histwrite_phy("tsol", tsol) CALL histwrite_phy("t2m", zt2m) CALL histwrite_phy("q2m", zq2m) CALL histwrite_phy("u10m", zu10m) @@ -1129,6 +1078,7 @@ END DO CALL histwrite_phy("albs", albsol) + CALL histwrite_phy("tro3", wo * dobson_u * 1e3 / zmasse / rmo3 * md) CALL histwrite_phy("rugs", zxrugs) CALL histwrite_phy("s_pblh", s_pblh) CALL histwrite_phy("s_pblt", s_pblt) @@ -1154,6 +1104,11 @@ CALL histwrite_phy("dtvdf", d_t_vdf) CALL histwrite_phy("dqvdf", d_q_vdf) CALL histwrite_phy("rhum", zx_rh) + CALL histwrite_phy("d_t_ec", d_t_ec) + CALL histwrite_phy("dtsw0", heat0 / 86400.) + CALL histwrite_phy("dtlw0", - cool0 / 86400.) + CALL histwrite_phy("msnow", sum(fsnow * pctsrf, dim = 2)) + call histwrite_phy("qsurf", sum(fqsurf * pctsrf, dim = 2)) if (ok_instan) call histsync(nid_ins)