/[lmdze]/trunk/phylmd/Interface_surf/interfsurf_hq.f
ViewVC logotype

Diff of /trunk/phylmd/Interface_surf/interfsurf_hq.f

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 130 by guez, Tue Feb 24 15:43:51 2015 UTC revision 283 by guez, Fri Jul 20 17:08:44 2018 UTC
# Line 4  module interfsurf_hq_m Line 4  module interfsurf_hq_m
4    
5  contains  contains
6    
7    SUBROUTINE interfsurf_hq(itime, dtime, jour, rmu0, nisurf, knon, knindex, &    SUBROUTINE interfsurf_hq(dtime, julien, rmu0, nisurf, knindex, debut, &
8         pctsrf, rlat, debut, nsoilmx, tsoil, qsol, u1_lay, v1_lay, temp_air, &         tsoil, qsol, u1_lay, v1_lay, temp_air, spechum, tq_cdrag, petAcoef, &
9         spechum, tq_cdrag, petAcoef, peqAcoef, petBcoef, peqBcoef, &         peqAcoef, petBcoef, peqBcoef, precip_rain, precip_snow, rugos, rugoro, &
10         precip_rain, precip_snow, fder, rugos, rugoro, snow, qsurf, tsurf, &         snow, qsurf, ts, p1lay, ps, radsol, evap, flux_t, fluxlat, dflux_l, &
11         p1lay, ps, radsol, evap, fluxsens, fluxlat, dflux_l, dflux_s, &         dflux_s, tsurf_new, albedo, z0_new, pctsrf_new_sic, agesno, fqcalving, &
12         tsurf_new, alb_new, alblw, z0_new, pctsrf_new, agesno, fqcalving, &         ffonte, run_off_lic_0)
13         ffonte, run_off_lic_0, flux_o, flux_g)  
14        ! Cette routine sert d'aiguillage entre l'atmosph\`ere et la surface
15      ! Cette routine sert d'aiguillage entre l'atmosphère et la surface      ! en g\'en\'eral (sols continentaux, oc\'eans, glaces) pour les flux de
16      ! en général (sols continentaux, océans, glaces) pour les flux de      ! chaleur et d'humidit\'e.
     ! chaleur et d'humidité.  
17    
18      ! Laurent Fairhead, February 2000      ! Laurent Fairhead, February 2000
19    
20      USE abort_gcm_m, ONLY: abort_gcm      USE abort_gcm_m, ONLY: abort_gcm
21      use alboc_m, only: alboc      use alboc_cd_m, only: alboc_cd
22      USE albsno_m, ONLY: albsno      USE albsno_m, ONLY: albsno
     use calbeta_m, only: calbeta  
23      USE calcul_fluxs_m, ONLY: calcul_fluxs      USE calcul_fluxs_m, ONLY: calcul_fluxs
     use clesphys2, only: soil_model  
24      USE dimphy, ONLY: klon      USE dimphy, ONLY: klon
25      USE fonte_neige_m, ONLY: fonte_neige      USE fonte_neige_m, ONLY: fonte_neige
26      USE indicesol, ONLY: epsfra, is_lic, is_oce, is_sic, is_ter, nbsrf      USE indicesol, ONLY: epsfra, is_lic, is_oce, is_sic, is_ter
27      USE interface_surf, ONLY: run_off, run_off_lic, conf_interface      USE interface_surf, ONLY: conf_interface
     USE interfoce_lim_m, ONLY: interfoce_lim  
28      USE interfsur_lim_m, ONLY: interfsur_lim      USE interfsur_lim_m, ONLY: interfsur_lim
29        use read_sst_m, only: read_sst
30      use soil_m, only: soil      use soil_m, only: soil
31      USE suphec_m, ONLY: rcpd, rlstt, rlvtt, rtt      USE suphec_m, ONLY: rcpd, rtt
32    
     integer, intent(IN):: itime ! numero du pas de temps  
33      real, intent(IN):: dtime ! pas de temps de la physique (en s)      real, intent(IN):: dtime ! pas de temps de la physique (en s)
34      integer, intent(IN):: jour ! jour dans l'annee en cours      integer, intent(IN):: julien ! jour dans l'annee en cours
35      real, intent(IN):: rmu0(klon) ! cosinus de l'angle solaire zenithal      real, intent(IN):: rmu0(klon) ! cosinus de l'angle solaire zenithal
36      integer, intent(IN):: nisurf ! index de la surface a traiter      integer, intent(IN):: nisurf ! index de la surface a traiter
     integer, intent(IN):: knon ! nombre de points de la surface a traiter  
37    
38      integer, intent(in):: knindex(:) ! (knon)      integer, intent(in):: knindex(:) ! (knon)
39      ! index des points de la surface a traiter      ! index des points de la surface a traiter
40    
     real, intent(IN):: pctsrf(klon, nbsrf)  
     ! tableau des pourcentages de surface de chaque maille  
   
     real, intent(IN):: rlat(klon) ! latitudes  
   
41      logical, intent(IN):: debut ! 1er appel a la physique      logical, intent(IN):: debut ! 1er appel a la physique
42      ! (si false calcul simplifie des fluxs sur les continents)      ! (si false calcul simplifie des fluxs sur les continents)
43    
44      integer, intent(in):: nsoilmx      REAL, intent(inout):: tsoil(:, :) ! (knon, nsoilmx)
     REAL tsoil(klon, nsoilmx)  
45    
46      REAL, intent(INOUT):: qsol(klon)      REAL, intent(INOUT):: qsol(:) ! (knon)
47      ! column-density of water in soil, in kg m-2      ! column-density of water in soil, in kg m-2
48    
49      real, dimension(klon), intent(IN):: u1_lay, v1_lay      real, intent(IN):: u1_lay(:), v1_lay(:) ! (knon) vitesse 1ere couche
50      ! u1_lay vitesse u 1ere couche  
51      ! v1_lay vitesse v 1ere couche      real, intent(IN):: temp_air(:) ! (knon) temperature de l'air 1ere couche
52      real, dimension(klon), intent(IN):: temp_air, spechum      real, intent(IN):: spechum(:) ! (knon) humidite specifique 1ere couche
53      ! temp_air temperature de l'air 1ere couche      real, intent(IN):: tq_cdrag(:) ! (knon) coefficient d'echange
54      ! spechum humidite specifique 1ere couche  
55      real, dimension(klon), intent(INOUT):: tq_cdrag      real, intent(IN):: petAcoef(:), peqAcoef(:) ! (knon)
56      ! tq_cdrag cdrag      ! coefficients A de la r\'esolution de la couche limite pour t et q
57      real, dimension(klon), intent(IN):: petAcoef, peqAcoef  
58      ! petAcoef coeff. A de la resolution de la CL pour t      real, intent(IN):: petBcoef(:), peqBcoef(:) ! (knon)
59      ! peqAcoef coeff. A de la resolution de la CL pour q      ! coefficients B de la r\'esolution de la couche limite pour t et q
     real, dimension(klon), intent(IN):: petBcoef, peqBcoef  
     ! petBcoef coeff. B de la resolution de la CL pour t  
     ! peqBcoef coeff. B de la resolution de la CL pour q  
60    
61      real, intent(IN):: precip_rain(klon)      real, intent(IN):: precip_rain(klon)
62      ! precipitation, liquid water mass flux (kg/m2/s), positive down      ! precipitation, liquid water mass flux (kg / m2 / s), positive down
63    
64      real, intent(IN):: precip_snow(klon)      real, intent(IN):: precip_snow(klon)
65      ! precipitation, solid water mass flux (kg/m2/s), positive down      ! precipitation, solid water mass flux (kg / m2 / s), positive down
66    
67      REAL, DIMENSION(klon), INTENT(INOUT):: fder      real, intent(IN):: rugos(:) ! (knon) rugosite
68      ! fder derivee des flux (pour le couplage)      real, intent(IN):: rugoro(:) ! (knon) rugosite orographique
69      real, dimension(klon), intent(IN):: rugos, rugoro      real, intent(INOUT):: snow(:) ! (knon)
70      ! rugos rugosite      real, intent(OUT):: qsurf(:) ! (knon)
71      ! rugoro rugosite orographique      real, intent(IN):: ts(:) ! (knon) temp\'erature de surface
72      real, intent(INOUT):: snow(klon), qsurf(klon)      real, intent(IN):: p1lay(:) ! (knon) pression 1er niveau (milieu de couche)
73      real, intent(IN):: tsurf(:) ! (knon) température de surface      real, intent(IN):: ps(:) ! (knon) pression au sol
74      real, dimension(klon), intent(IN):: p1lay      REAL, INTENT(IN):: radsol(:) ! (knon) rayonnement net au sol (LW + SW)
75      ! p1lay pression 1er niveau (milieu de couche)      real, intent(OUT):: evap(:) ! (knon) evaporation totale
76      real, dimension(klon), intent(IN):: ps  
77      ! ps pression au sol      real, intent(OUT):: flux_t(:) ! (knon) flux de chaleur sensible
78      REAL, DIMENSION(klon), INTENT(INOUT):: radsol      ! (Cp T) à la surface, positif vers le bas, W / m2
79      ! radsol rayonnement net aus sol (LW + SW)  
80      real, intent(INOUT):: evap(klon) ! evaporation totale      real, intent(OUT):: fluxlat(:) ! (knon) flux de chaleur latente
81      real, dimension(klon), intent(OUT):: fluxsens, fluxlat      real, intent(OUT):: dflux_l(:), dflux_s(:) ! (knon)
82      ! fluxsens flux de chaleur sensible      real, intent(OUT):: tsurf_new(:) ! (knon) temp\'erature au sol
83      ! fluxlat flux de chaleur latente      real, intent(OUT):: albedo(:) ! (knon) albedo
84      real, dimension(klon), intent(OUT):: dflux_l, dflux_s      real, intent(OUT):: z0_new(:) ! (knon) surface roughness
85      real, intent(OUT):: tsurf_new(knon) ! température au sol  
86      real, intent(OUT):: alb_new(klon) ! albedo      real, intent(in):: pctsrf_new_sic(:) ! (klon)
87      real, dimension(klon), intent(OUT):: alblw      ! nouvelle repartition des surfaces
88      real, dimension(klon), intent(OUT):: z0_new  
89      ! z0_new surface roughness      real, intent(INOUT):: agesno(:) ! (knon)
90      real, dimension(klon, nbsrf), intent(OUT):: pctsrf_new  
91      ! pctsrf_new nouvelle repartition des surfaces      real, intent(OUT):: fqcalving(:) ! (knon)
92      real, dimension(klon), intent(INOUT):: agesno      ! Flux d'eau "perdue" par la surface et n\'ecessaire pour limiter la
93        ! hauteur de neige, en kg / m2 / s
     ! Flux d'eau "perdue" par la surface et nécessaire pour que limiter la  
     ! hauteur de neige, en kg/m2/s  
     !jld a rajouter real, dimension(klon), intent(INOUT):: fqcalving  
     real, dimension(klon), intent(INOUT):: fqcalving  
94    
     ! Flux thermique utiliser pour fondre la neige  
     !jld a rajouter real, dimension(klon), intent(INOUT):: ffonte  
95      real, dimension(klon), intent(INOUT):: ffonte      real, dimension(klon), intent(INOUT):: ffonte
96        ! Flux thermique utiliser pour fondre la neige
97    
98      real, dimension(klon), intent(INOUT):: run_off_lic_0      real, dimension(klon), intent(INOUT):: run_off_lic_0
99      ! run_off_lic_0 runoff glacier du pas de temps precedent      ! run_off_lic_0 runoff glacier du pas de temps precedent
100    
     !IM: "slab" ocean  
     real, dimension(klon), intent(OUT):: flux_o, flux_g  
   
101      ! Local:      ! Local:
102        integer knon ! nombre de points de la surface a traiter
103      REAL, dimension(klon):: soilcap      REAL soilcap(size(knindex)) ! (knon)
104      REAL, dimension(klon):: soilflux      REAL soilflux(size(knindex)) ! (knon)
105        logical:: first_call = .true.
106      !IM: "slab" ocean      integer ii
107      real, parameter:: t_grnd=271.35      real cal(size(knindex)) ! (knon)
108      real, dimension(klon):: zx_sl      real beta(size(knindex)) ! (knon) evap reelle
109      integer i      real dif_grnd(klon)
110        real tsurf(size(knindex)) ! (knon)
111      character (len = 20), save:: modname = 'interfsurf_hq'      real alb_neig(size(knindex)) ! (knon)
112      character (len = 80):: abort_message      real zfra(size(knindex)) ! (knon)
113      logical, save:: first_call = .true.      REAL, PARAMETER:: fmagic = 1. ! facteur magique pour r\'egler l'alb\'edo
114      integer:: ii      REAL, PARAMETER:: max_eau_sol = 150. ! in kg m-2
115      real, dimension(klon):: cal, beta, dif_grnd, capsol      REAL, PARAMETER:: tau_gl = 86400. * 5.
     real, parameter:: calice=1.0/(5.1444e6 * 0.15), tau_gl=86400.*5.  
     real, parameter:: calsno=1./(2.3867e6 * 0.15)  
     real tsurf_temp(knon)  
     real, dimension(klon):: alb_neig, alb_eau  
     real, DIMENSION(klon):: zfra  
     INTEGER, dimension(1):: iloc  
     real, dimension(klon):: fder_prev  
116    
117      !-------------------------------------------------------------      !-------------------------------------------------------------
118    
119        knon = size(knindex)
120    
121      ! On doit commencer par appeler les schemas de surfaces continentales      ! On doit commencer par appeler les schemas de surfaces continentales
122      ! car l'ocean a besoin du ruissellement qui est y calcule      ! car l'ocean a besoin du ruissellement qui est y calcule
123    
124      if (first_call) then      if (first_call) then
125         call conf_interface         call conf_interface
126    
127         if (nisurf /= is_ter .and. klon > 1) then         if (nisurf /= is_ter .and. klon > 1) then
           print *, ' Warning:'  
128            print *, ' nisurf = ', nisurf, ' /= is_ter = ', is_ter            print *, ' nisurf = ', nisurf, ' /= is_ter = ', is_ter
129            print *, 'or on doit commencer par les surfaces continentales'            print *, 'or on doit commencer par les surfaces continentales'
130            abort_message='voir ci-dessus'            call abort_gcm("interfsurf_hq", &
131            call abort_gcm(modname, abort_message, 1)                 'On doit commencer par les surfaces continentales')
132         endif         endif
133    
134         if (is_oce > is_sic) then         if (is_oce > is_sic) then
135            print *, 'Warning:'            print *, 'is_oce = ', is_oce, '> is_sic = ', is_sic
136            print *, ' Pour des raisons de sequencement dans le code'            call abort_gcm("interfsurf_hq", &
137            print *, ' l''ocean doit etre traite avant la banquise'                 "L'ocean doit etre traite avant la banquise")
           print *, ' or is_oce = ', is_oce, '> is_sic = ', is_sic  
           abort_message='voir ci-dessus'  
           call abort_gcm(modname, abort_message, 1)  
138         endif         endif
139    
140           first_call = .false.
141      endif      endif
     first_call = .false.  
142    
143      ! Initialisations diverses      ! Initialisations diverses
144    
145      ffonte(1:knon)=0.      ffonte(1:knon) = 0.
     fqcalving(1:knon)=0.  
     cal = 999999.  
     beta = 999999.  
146      dif_grnd = 999999.      dif_grnd = 999999.
     capsol = 999999.  
     alb_new = 999999.  
     z0_new = 999999.  
     alb_neig = 999999.  
     tsurf_new = 999999.  
     alblw = 999999.  
   
     !IM: "slab" ocean; initialisations  
     flux_o = 0.  
     flux_g = 0.  
147    
148      ! Aiguillage vers les differents schemas de surface      ! Aiguillage vers les differents schemas de surface
149    
150      select case (nisurf)      select case (nisurf)
151      case (is_ter)      case (is_ter)
152         ! Surface "terre" appel a l'interface avec les sols continentaux         ! Surface "terre", appel \`a l'interface avec les sols continentaux
   
        ! allocation du run-off  
        if (.not. allocated(run_off)) then  
           allocate(run_off(knon))  
           run_off = 0.  
        else if (size(run_off) /= knon) then  
           print *, 'Bizarre, le nombre de points continentaux'  
           print *, 'a change entre deux appels. J''arrete '  
           abort_message='voir ci-dessus'  
           call abort_gcm(modname, abort_message, 1)  
        endif  
153    
154         ! Calcul age de la neige         ! Calcul age de la neige
155    
156         ! calcul albedo: lecture albedo fichier boundary conditions         ! Read albedo from the file containing boundary conditions then
157         ! puis ajout albedo neige         ! add the albedo of snow:
158         call interfsur_lim(itime, dtime, jour, nisurf, knindex, debut, &  
159              alb_new, z0_new)         call interfsur_lim(dtime, julien, knindex, debut, albedo, z0_new)
   
        ! calcul snow et qsurf, hydrol adapté  
        CALL calbeta(nisurf, snow(:knon), qsol(:knon), beta(:knon), &  
             capsol(:knon), dif_grnd(:knon))  
   
        IF (soil_model) THEN  
           CALL soil(dtime, nisurf, knon, snow, tsurf, tsoil, soilcap, soilflux)  
           cal(1:knon) = RCPD / soilcap(1:knon)  
           radsol(1:knon) = radsol(1:knon) + soilflux(:knon)  
        ELSE  
           cal = RCPD * capsol  
        ENDIF  
        CALL calcul_fluxs(nisurf, dtime, tsurf, p1lay(:knon), cal(:knon), &  
             beta(:knon), tq_cdrag(:knon), ps(:knon), qsurf(:knon), &  
             radsol(:knon), dif_grnd(:knon), temp_air(:knon), spechum(:knon), &  
             u1_lay(:knon), v1_lay(:knon), petAcoef(:knon), peqAcoef(:knon), &  
             petBcoef(:knon), peqBcoef(:knon), tsurf_new, evap(:knon), &  
             fluxlat(:knon), fluxsens(:knon), dflux_s(:knon), dflux_l(:knon))  
   
        CALL fonte_neige(nisurf, dtime, tsurf, p1lay(:knon), beta(:knon), &  
             tq_cdrag(:knon), ps(:knon), precip_rain(:knon), &  
             precip_snow(:knon), snow(:knon), qsol(:knon), temp_air(:knon), &  
             spechum(:knon), u1_lay(:knon), v1_lay(:knon), petAcoef(:knon), &  
             peqAcoef(:knon), petBcoef(:knon), peqBcoef(:knon), tsurf_new, &  
             evap(:knon), fqcalving(:knon), ffonte(:knon), run_off_lic_0(:knon))  
   
        call albsno(klon, knon, dtime, agesno, alb_neig, precip_snow)  
        where (snow(1 : knon) < 0.0001) agesno(1 : knon) = 0.  
        zfra(1:knon) = max(0.0, min(1.0, snow(1:knon)/(snow(1:knon) + 10.0)))  
        alb_new(1 : knon) = alb_neig(1 : knon) *zfra(1:knon) + &  
             alb_new(1 : knon)*(1.0-zfra(1:knon))  
        z0_new = sqrt(z0_new**2 + rugoro**2)  
        alblw(1 : knon) = alb_new(1 : knon)  
160    
161         ! Remplissage des pourcentages de surface         beta = min(2. * qsol / max_eau_sol, 1.)
162         pctsrf_new(:, nisurf) = pctsrf(:, nisurf)         dif_grnd(:knon) = 0.
163           CALL soil(dtime, is_ter, snow, ts, tsoil, soilcap, soilflux)
164           cal = RCPD / soilcap
165    
166           CALL calcul_fluxs(dtime, ts, p1lay, cal, beta, tq_cdrag, ps, qsurf, &
167                radsol + soilflux, dif_grnd(:knon), temp_air, spechum, u1_lay, &
168                v1_lay, petAcoef, peqAcoef, petBcoef, peqBcoef, tsurf_new, evap, &
169                fluxlat, flux_t, dflux_s, dflux_l)
170           CALL fonte_neige(is_ter, dtime, precip_rain(:knon), precip_snow(:knon), &
171                snow, qsol, tsurf_new, evap, fqcalving, ffonte(:knon), &
172                run_off_lic_0(:knon))
173    
174           call albsno(dtime, agesno, alb_neig, precip_snow(:knon))
175           where (snow < 0.0001) agesno = 0.
176           zfra = max(0., min(1., snow / (snow + 10.)))
177           albedo = alb_neig * zfra + albedo * (1. - zfra)
178           z0_new = sqrt(z0_new**2 + rugoro**2)
179      case (is_oce)      case (is_oce)
180         ! Surface "ocean" appel à l'interface avec l'océan         ! Surface "oc\'ean", appel \`a l'interface avec l'oc\'ean
        ! lecture conditions limites  
        call interfoce_lim(itime, dtime, jour, knindex, debut, tsurf_temp, &  
             pctsrf_new)  
181    
182           call read_sst(julien, knindex, tsurf)
183         cal = 0.         cal = 0.
184         beta = 1.         beta = 1.
185         dif_grnd = 0.         dif_grnd = 0.
186         alb_neig = 0.         call calcul_fluxs(dtime, tsurf, p1lay, cal, beta, tq_cdrag, ps, qsurf, &
187                radsol, dif_grnd(:knon), temp_air, spechum, u1_lay, v1_lay, &
188                petAcoef, peqAcoef, petBcoef, peqBcoef, tsurf_new, evap, fluxlat, &
189                flux_t, dflux_s, dflux_l)
190         agesno = 0.         agesno = 0.
191         call calcul_fluxs(nisurf, dtime, tsurf_temp, p1lay(:knon), &         albedo = alboc_cd(rmu0(knindex)) * fmagic
             cal(:knon), beta(:knon), tq_cdrag(:knon), ps(:knon), &  
             qsurf(:knon), radsol(:knon), dif_grnd(:knon), temp_air(:knon), &  
             spechum(:knon), u1_lay(:knon), v1_lay(:knon), petAcoef(:knon), &  
             peqAcoef(:knon), petBcoef(:knon), peqBcoef(:knon), &  
             tsurf_new, evap(:knon), fluxlat(:knon), fluxsens(:knon), &  
             dflux_s(:knon), dflux_l(:knon))  
        fder_prev = fder  
        fder = fder_prev + dflux_s + dflux_l  
        iloc = maxloc(fder(1:klon))  
   
        !IM: flux ocean-atmosphere utile pour le "slab" ocean  
        DO i=1, knon  
           zx_sl(i) = RLVTT  
           if (tsurf_new(i) < RTT) zx_sl(i) = RLSTT  
           flux_o(i) = fluxsens(i)-evap(i)*zx_sl(i)  
        ENDDO  
   
        ! calcul albedo  
        if (minval(rmu0) == maxval(rmu0) .and. minval(rmu0) == -999.999) then  
           CALL alboc(jour, rlat, alb_eau)  
        else ! cycle diurne  
           CALL alboc_cd(rmu0, alb_eau)  
        endif  
        DO ii =1, knon  
           alb_new(ii) = alb_eau(knindex(ii))  
        enddo  
   
192         z0_new = sqrt(rugos**2 + rugoro**2)         z0_new = sqrt(rugos**2 + rugoro**2)
193         alblw(1:knon) = alb_new(1:knon)         fqcalving = 0.
194      case (is_sic)      case (is_sic)
195         ! Surface "glace de mer" appel a l'interface avec l'ocean         ! Surface "glace de mer" appel a l'interface avec l'ocean
196    
        ! ! lecture conditions limites  
        CALL interfoce_lim(itime, dtime, jour, knindex, debut, tsurf_new, &  
             pctsrf_new)  
   
197         DO ii = 1, knon         DO ii = 1, knon
198            tsurf_new(ii) = tsurf(ii)            IF (pctsrf_new_sic(knindex(ii)) < EPSFRA) then
199            IF (pctsrf_new(knindex(ii), nisurf) < EPSFRA) then               snow(ii) = 0.
              snow(ii) = 0.0  
200               tsurf_new(ii) = RTT - 1.8               tsurf_new(ii) = RTT - 1.8
201               IF (soil_model) tsoil(ii, :) = RTT -1.8               tsoil(ii, :) = RTT - 1.8
202              else
203                 tsurf_new(ii) = ts(ii)
204            endif            endif
205         enddo         enddo
206    
207         CALL calbeta(nisurf, snow(:knon), qsol(:knon), beta(:knon), &         CALL soil(dtime, is_sic, snow, tsurf_new, tsoil, soilcap, soilflux)
208              capsol(:knon), dif_grnd(:knon))         cal = RCPD / soilcap
209           dif_grnd = 1. / tau_gl
210         IF (soil_model) THEN         tsurf = tsurf_new
211            CALL soil(dtime, nisurf, knon, snow, tsurf_new, tsoil, soilcap, &         beta = 1.
                soilflux)  
           cal(1:knon) = RCPD / soilcap(1:knon)  
           radsol(1:knon) = radsol(1:knon) + soilflux(1:knon)  
           dif_grnd = 0.  
        ELSE  
           dif_grnd = 1.0 / tau_gl  
           cal = RCPD * calice  
           WHERE (snow > 0.0) cal = RCPD * calsno  
        ENDIF  
        tsurf_temp = tsurf_new  
        beta = 1.0  
   
        CALL calcul_fluxs(nisurf, dtime, tsurf_temp, p1lay(:knon), cal(:knon), &  
             beta(:knon), tq_cdrag(:knon), ps(:knon), qsurf(:knon), &  
             radsol(:knon), dif_grnd(:knon), temp_air(:knon), spechum(:knon), &  
             u1_lay(:knon), v1_lay(:knon), petAcoef(:knon), peqAcoef(:knon), &  
             petBcoef(:knon), peqBcoef(:knon), tsurf_new, evap(:knon), &  
             fluxlat(:knon), fluxsens(:knon), dflux_s(:knon), dflux_l(:knon))  
   
        !IM: flux entre l'ocean et la glace de mer pour le "slab" ocean  
        DO i = 1, knon  
           flux_g(i) = 0.0  
           IF (cal(i) > 1e-15) flux_g(i) = (tsurf_new(i) - t_grnd) &  
                * dif_grnd(i) * RCPD / cal(i)  
        ENDDO  
   
        CALL fonte_neige(nisurf, dtime, tsurf_temp, p1lay(:knon), beta(:knon), &  
             tq_cdrag(:knon), ps(:knon), precip_rain(:knon), &  
             precip_snow(:knon), snow(:knon), qsol(:knon), temp_air(:knon), &  
             spechum(:knon), u1_lay(:knon), v1_lay(:knon), petAcoef(:knon), &  
             peqAcoef(:knon), petBcoef(:knon), peqBcoef(:knon), tsurf_new, &  
             evap(:knon), fqcalving(:knon), ffonte(:knon), run_off_lic_0(:knon))  
   
        ! calcul albedo  
212    
213         CALL albsno(klon, knon, dtime, agesno, alb_neig, precip_snow)         CALL calcul_fluxs(dtime, tsurf, p1lay, cal, beta, tq_cdrag, ps, qsurf, &
214         WHERE (snow(1 : knon) < 0.0001) agesno(1 : knon) = 0.              radsol + soilflux, dif_grnd(:knon), temp_air, spechum, u1_lay, &
215         zfra(1:knon) = MAX(0.0, MIN(1.0, snow(1:knon)/(snow(1:knon) + 10.0)))              v1_lay, petAcoef, peqAcoef, petBcoef, peqBcoef, tsurf_new, evap, &
216         alb_new(1 : knon) = alb_neig(1 : knon) *zfra(1:knon) + &              fluxlat, flux_t, dflux_s, dflux_l)
217              0.6 * (1.0-zfra(1:knon))         CALL fonte_neige(is_sic, dtime, precip_rain(:knon), &
218                precip_snow(:knon), snow, qsol, tsurf_new, evap, &
219         fder_prev = fder              fqcalving, ffonte(:knon), run_off_lic_0(:knon))
220         fder = fder_prev + dflux_s + dflux_l  
221           ! Compute the albedo:
222         iloc = maxloc(fder(1:klon))  
223           CALL albsno(dtime, agesno, alb_neig, precip_snow(:knon))
224         ! 2eme appel a interfoce pour le cumul et le passage des flux a l'ocean         WHERE (snow < 0.0001) agesno = 0.
225           zfra = MAX(0., MIN(1., snow / (snow + 10.)))
226         z0_new = 0.002         albedo = alb_neig * zfra + 0.6 * (1. - zfra)
        z0_new = SQRT(z0_new**2 + rugoro**2)  
        alblw(1:knon) = alb_new(1:knon)  
227    
228           z0_new = SQRT(0.002**2 + rugoro**2)
229      case (is_lic)      case (is_lic)
        if (.not. allocated(run_off_lic)) then  
           allocate(run_off_lic(knon))  
           run_off_lic = 0.  
        endif  
   
230         ! Surface "glacier continentaux" appel a l'interface avec le sol         ! Surface "glacier continentaux" appel a l'interface avec le sol
231    
232         IF (soil_model) THEN         CALL soil(dtime, is_lic, snow, ts, tsoil, soilcap, soilflux)
233            CALL soil(dtime, nisurf, knon, snow, tsurf, tsoil, soilcap, soilflux)         cal = RCPD / soilcap
234            cal(1:knon) = RCPD / soilcap(1:knon)         beta = 1.
235            radsol(1:knon) = radsol(1:knon) + soilflux(1:knon)         dif_grnd = 0.
236         ELSE  
237            cal = RCPD * calice         call calcul_fluxs(dtime, ts, p1lay, cal, beta, tq_cdrag, ps, qsurf, &
238            WHERE (snow > 0.0) cal = RCPD * calsno              radsol + soilflux, dif_grnd(:knon), temp_air, spechum, u1_lay, &
239         ENDIF              v1_lay, petAcoef, peqAcoef, petBcoef, peqBcoef, tsurf_new, evap, &
240         beta = 1.0              fluxlat, flux_t, dflux_s, dflux_l)
241         dif_grnd = 0.0         call fonte_neige(is_lic, dtime, precip_rain(:knon), &
242                precip_snow(:knon), snow, qsol, tsurf_new, evap, &
243         call calcul_fluxs(nisurf, dtime, tsurf, p1lay(:knon), cal(:knon), &              fqcalving, ffonte(:knon), run_off_lic_0(:knon))
             beta(:knon), tq_cdrag(:knon), ps(:knon), qsurf(:knon), &  
             radsol(:knon), dif_grnd(:knon), temp_air(:knon), spechum(:knon), &  
             u1_lay(:knon), v1_lay(:knon), petAcoef(:knon), peqAcoef(:knon), &  
             petBcoef(:knon), peqBcoef(:knon), tsurf_new, evap(:knon), &  
             fluxlat(:knon), fluxsens(:knon), dflux_s(:knon), dflux_l(:knon))  
   
        call fonte_neige(nisurf, dtime, tsurf, p1lay(:knon), beta(:knon), &  
             tq_cdrag(:knon), ps(:knon), precip_rain(:knon), &  
             precip_snow(:knon), snow(:knon), qsol(:knon), temp_air(:knon), &  
             spechum(:knon), u1_lay(:knon), v1_lay(:knon), petAcoef(:knon), &  
             peqAcoef(:knon), petBcoef(:knon), peqBcoef(:knon), tsurf_new, &  
             evap(:knon), fqcalving(:knon), ffonte(:knon), run_off_lic_0(:knon))  
244    
245         ! calcul albedo         ! calcul albedo
246         CALL albsno(klon, knon, dtime, agesno, alb_neig, precip_snow)         CALL albsno(dtime, agesno, alb_neig, precip_snow(:knon))
247         WHERE (snow(1 : knon) < 0.0001) agesno(1 : knon) = 0.         WHERE (snow < 0.0001) agesno = 0.
248         zfra(1:knon) = MAX(0.0, MIN(1.0, snow(1:knon)/(snow(1:knon) + 10.0)))         albedo = 0.77
        alb_new(1 : knon) = alb_neig(1 : knon)*zfra(1:knon) + &  
             0.6 * (1.0-zfra(1:knon))  
   
        !IM: plusieurs choix/tests sur l'albedo des "glaciers continentaux"  
        !IM: KstaTER0.77 & LMD_ARMIP6  
        alb_new(1 : knon) = 0.77  
249    
250         ! Rugosite         ! Rugosite
251         z0_new = rugoro         z0_new = rugoro
   
        ! Remplissage des pourcentages de surface  
        pctsrf_new(:, nisurf) = pctsrf(:, nisurf)  
   
        alblw(1:knon) = alb_new(1:knon)  
252      case default      case default
253         print *, 'Index surface = ', nisurf         print *, 'Index surface = ', nisurf
254         abort_message = 'Index surface non valable'         call abort_gcm("interfsurf_hq", 'Index surface non valable')
        call abort_gcm(modname, abort_message, 1)  
255      end select      end select
256    
257    END SUBROUTINE interfsurf_hq    END SUBROUTINE interfsurf_hq

Legend:
Removed from v.130  
changed lines
  Added in v.283

  ViewVC Help
Powered by ViewVC 1.1.21