/[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

trunk/phylmd/Interface_surf/interfsurf_hq.f revision 101 by guez, Mon Jul 7 17:45:21 2014 UTC trunk/Sources/phylmd/Interface_surf/interfsurf_hq.f revision 156 by guez, Thu Jul 16 17:39:10 2015 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, &    SUBROUTINE interfsurf_hq(itime, dtime, jour, rmu0, nisurf, knon, knindex, &
8         knindex, pctsrf, rlat, debut, nsoilmx, tsoil, qsol, &         pctsrf, rlat, debut, nsoilmx, tsoil, qsol, u1_lay, v1_lay, temp_air, &
9         u1_lay, v1_lay, temp_air, spechum, tq_cdrag, petAcoef, peqAcoef, &         spechum, tq_cdrag, petAcoef, peqAcoef, petBcoef, peqBcoef, &
10         petBcoef, peqBcoef, precip_rain, precip_snow, fder, rugos, rugoro, &         precip_rain, precip_snow, fder, rugos, rugoro, snow, qsurf, tsurf, &
11         snow, qsurf, tsurf, p1lay, ps, radsol, evap, fluxsens, fluxlat, &         p1lay, ps, radsol, evap, fluxsens, fluxlat, dflux_l, dflux_s, &
12         dflux_l, dflux_s, tsurf_new, alb_new, alblw, z0_new, pctsrf_new, &         tsurf_new, albedo, z0_new, pctsrf_new, agesno, fqcalving, ffonte, &
13         agesno, fqcalving, ffonte, run_off_lic_0, flux_o, flux_g)         run_off_lic_0, flux_o, flux_g)
14    
15      ! Cette routine sert d'aiguillage entre l'atmosphère et la surface      ! Cette routine sert d'aiguillage entre l'atmosph\`ere et la surface
16      ! en général (sols continentaux, océans, glaces) pour les flux de      ! en g\'en\'eral (sols continentaux, oc\'eans, glaces) pour les flux de
17      ! chaleur et d'humidité.      ! chaleur et d'humidit\'e.
18    
19      ! Laurent Fairhead, 02/2000      ! Laurent Fairhead, February 2000
20    
21      USE abort_gcm_m, ONLY: abort_gcm      USE abort_gcm_m, ONLY: abort_gcm
22        use alboc_cd_m, only: alboc_cd
23        use alboc_m, only: alboc
24      USE albsno_m, ONLY: albsno      USE albsno_m, ONLY: albsno
25      use calbeta_m, only: calbeta      use calbeta_m, only: calbeta
26      USE calcul_fluxs_m, ONLY: calcul_fluxs      USE calcul_fluxs_m, ONLY: calcul_fluxs
27      use clesphys2, only: soil_model      use clesphys2, only: soil_model, cycle_diurne
28      USE dimphy, ONLY: klon      USE dimphy, ONLY: klon
29      USE fonte_neige_m, ONLY: fonte_neige      USE fonte_neige_m, ONLY: fonte_neige
30      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, nbsrf
# Line 39  contains Line 41  contains
41      integer, intent(IN):: nisurf ! index de la surface a traiter      integer, intent(IN):: nisurf ! index de la surface a traiter
42      integer, intent(IN):: knon ! nombre de points de la surface a traiter      integer, intent(IN):: knon ! nombre de points de la surface a traiter
43    
44      integer, intent(in):: knindex(klon)      integer, intent(in):: knindex(:) ! (knon)
45      ! index des points de la surface a traiter      ! index des points de la surface a traiter
46    
47      real, intent(IN):: pctsrf(klon, nbsrf)      real, intent(IN):: pctsrf(klon, nbsrf)
# Line 77  contains Line 79  contains
79      real, intent(IN):: precip_snow(klon)      real, intent(IN):: precip_snow(klon)
80      ! precipitation, solid water mass flux (kg/m2/s), positive down      ! precipitation, solid water mass flux (kg/m2/s), positive down
81    
82      REAL, DIMENSION(klon), INTENT(INOUT):: fder      REAL, INTENT(INOUT):: fder(klon) ! derivee des flux (pour le couplage)
83      ! fder derivee des flux (pour le couplage)      real, intent(IN):: rugos(klon) ! rugosite
84      real, dimension(klon), intent(IN):: rugos, rugoro      real, intent(IN):: rugoro(klon) ! rugosite orographique
     ! rugos rugosite  
     ! rugoro rugosite orographique  
85      real, intent(INOUT):: snow(klon), qsurf(klon)      real, intent(INOUT):: snow(klon), qsurf(klon)
86      real, dimension(klon), intent(IN):: tsurf, p1lay      real, intent(IN):: tsurf(:) ! (knon) temp\'erature de surface
87      ! tsurf temperature de surface      real, dimension(klon), intent(IN):: p1lay
88      ! p1lay pression 1er niveau (milieu de couche)      ! p1lay pression 1er niveau (milieu de couche)
89      real, dimension(klon), intent(IN):: ps      real, dimension(klon), intent(IN):: ps
90      ! ps pression au sol      ! ps pression au sol
91      REAL, DIMENSION(klon), INTENT(INOUT):: radsol      REAL, DIMENSION(klon), INTENT(INOUT):: radsol
92      ! radsol rayonnement net aus sol (LW + SW)      ! radsol rayonnement net aus sol (LW + SW)
93      real, dimension(klon), intent(INOUT):: evap      real, intent(INOUT):: evap(klon) ! evaporation totale
     ! evap evaporation totale  
94      real, dimension(klon), intent(OUT):: fluxsens, fluxlat      real, dimension(klon), intent(OUT):: fluxsens, fluxlat
95      ! fluxsens flux de chaleur sensible      ! fluxsens flux de chaleur sensible
96      ! fluxlat flux de chaleur latente      ! fluxlat flux de chaleur latente
97      real, dimension(klon), intent(OUT):: dflux_l, dflux_s      real, dimension(klon), intent(OUT):: dflux_l, dflux_s
98      real, dimension(klon), intent(OUT):: tsurf_new, alb_new      real, intent(OUT):: tsurf_new(knon) ! temp\'erature au sol
99      ! tsurf_new temperature au sol      real, intent(OUT):: albedo(:) ! (knon) albedo
100      ! alb_new albedo      real, intent(OUT):: z0_new(klon) ! surface roughness
     real, dimension(klon), intent(OUT):: alblw  
     real, dimension(klon), intent(OUT):: z0_new  
     ! z0_new surface roughness  
101      real, dimension(klon, nbsrf), intent(OUT):: pctsrf_new      real, dimension(klon, nbsrf), intent(OUT):: pctsrf_new
102      ! pctsrf_new nouvelle repartition des surfaces      ! pctsrf_new nouvelle repartition des surfaces
103      real, dimension(klon), intent(INOUT):: agesno      real, dimension(klon), intent(INOUT):: agesno
104    
105      ! Flux d'eau "perdue" par la surface et nécessaire pour que limiter la      ! Flux d'eau "perdue" par la surface et n\'ecessaire pour que limiter la
106      ! hauteur de neige, en kg/m2/s      ! hauteur de neige, en kg/m2/s
107      !jld a rajouter real, dimension(klon), intent(INOUT):: fqcalving      !jld a rajouter real, dimension(klon), intent(INOUT):: fqcalving
108      real, dimension(klon), intent(INOUT):: fqcalving      real, dimension(klon), intent(INOUT):: fqcalving
# Line 128  contains Line 124  contains
124    
125      !IM: "slab" ocean      !IM: "slab" ocean
126      real, parameter:: t_grnd=271.35      real, parameter:: t_grnd=271.35
     real, dimension(klon):: zx_sl  
127      integer i      integer i
128    
129      character (len = 20), save:: modname = 'interfsurf_hq'      character (len = 20), save:: modname = 'interfsurf_hq'
# Line 136  contains Line 131  contains
131      logical, save:: first_call = .true.      logical, save:: first_call = .true.
132      integer:: ii      integer:: ii
133      real, dimension(klon):: cal, beta, dif_grnd, capsol      real, dimension(klon):: cal, beta, dif_grnd, capsol
134      real, parameter:: calice=1.0/(5.1444e6 * 0.15), tau_gl=86400.*5.      real, parameter:: calice=1.0/(5.1444e6 * 0.15), tau_gl=86400. * 5.
135      real, parameter:: calsno=1./(2.3867e6 * 0.15)      real, parameter:: calsno=1./(2.3867e6 * 0.15)
136      real, dimension(klon):: tsurf_temp      real tsurf_temp(knon)
137      real, dimension(klon):: alb_neig, alb_eau      real alb_neig(klon)
138      real, DIMENSION(klon):: zfra      real zfra(klon)
     INTEGER, dimension(1):: iloc  
     real, dimension(klon):: fder_prev  
139    
140      !-------------------------------------------------------------      !-------------------------------------------------------------
141    
# Line 173  contains Line 166  contains
166    
167      ffonte(1:knon)=0.      ffonte(1:knon)=0.
168      fqcalving(1:knon)=0.      fqcalving(1:knon)=0.
   
169      cal = 999999.      cal = 999999.
170      beta = 999999.      beta = 999999.
171      dif_grnd = 999999.      dif_grnd = 999999.
172      capsol = 999999.      capsol = 999999.
     alb_new = 999999.  
173      z0_new = 999999.      z0_new = 999999.
174      alb_neig = 999999.      alb_neig = 999999.
175      tsurf_new = 999999.      tsurf_new = 999999.
     alblw = 999999.  
176    
177      !IM: "slab" ocean; initialisations      !IM: "slab" ocean; initialisations
178      flux_o = 0.      flux_o = 0.
# Line 190  contains Line 180  contains
180    
181      ! Aiguillage vers les differents schemas de surface      ! Aiguillage vers les differents schemas de surface
182    
183      if (nisurf == is_ter) then      select case (nisurf)
184        case (is_ter)
185         ! Surface "terre" appel a l'interface avec les sols continentaux         ! Surface "terre" appel a l'interface avec les sols continentaux
186    
187         ! allocation du run-off         ! allocation du run-off
# Line 208  contains Line 199  contains
199    
200         ! calcul albedo: lecture albedo fichier boundary conditions         ! calcul albedo: lecture albedo fichier boundary conditions
201         ! puis ajout albedo neige         ! puis ajout albedo neige
202         call interfsur_lim(itime, dtime, jour, nisurf, knon, knindex, &         call interfsur_lim(itime, dtime, jour, knindex, debut, albedo, z0_new)
             debut, alb_new, z0_new)  
203    
204         ! calcul snow et qsurf, hydrol adapté         ! calcul snow et qsurf, hydrol adapt\'e
205         CALL calbeta(nisurf, snow(:knon), qsol(:knon), beta(:knon), &         CALL calbeta(nisurf, snow(:knon), qsol(:knon), beta(:knon), &
206              capsol(:knon), dif_grnd(:knon))              capsol(:knon), dif_grnd(:knon))
207    
208         IF (soil_model) THEN         IF (soil_model) THEN
209            CALL soil(dtime, nisurf, knon, snow, tsurf, tsoil, soilcap, soilflux)            CALL soil(dtime, nisurf, knon, snow, tsurf, tsoil, soilcap, soilflux)
210            cal(1:knon) = RCPD / soilcap(1:knon)            cal(1:knon) = RCPD / soilcap(1:knon)
211            radsol(1:knon) = radsol(1:knon) + soilflux(1:knon)            radsol(1:knon) = radsol(1:knon) + soilflux(:knon)
212         ELSE         ELSE
213            cal = RCPD * capsol            cal = RCPD * capsol
214         ENDIF         ENDIF
215         CALL calcul_fluxs(klon, knon, nisurf, dtime, tsurf, p1lay, cal, beta, &         CALL calcul_fluxs(nisurf, dtime, tsurf, p1lay(:knon), cal(:knon), &
216              tq_cdrag, ps, precip_rain, precip_snow, snow, qsurf, radsol, &              beta(:knon), tq_cdrag(:knon), ps(:knon), qsurf(:knon), &
217              dif_grnd, temp_air, spechum, u1_lay, v1_lay, petAcoef, peqAcoef, &              radsol(:knon), dif_grnd(:knon), temp_air(:knon), spechum(:knon), &
218              petBcoef, peqBcoef, tsurf_new, evap, fluxlat, fluxsens, dflux_s, &              u1_lay(:knon), v1_lay(:knon), petAcoef(:knon), peqAcoef(:knon), &
219              dflux_l)              petBcoef(:knon), peqBcoef(:knon), tsurf_new, evap(:knon), &
220                fluxlat(:knon), fluxsens(:knon), dflux_s(:knon), dflux_l(:knon))
221         CALL fonte_neige(klon, knon, nisurf, dtime, tsurf, p1lay, beta, &  
222              tq_cdrag, ps, precip_rain(:knon), precip_snow, snow, qsol(:knon), &         CALL fonte_neige(nisurf, dtime, tsurf, p1lay(:knon), beta(:knon), &
223              temp_air, spechum, u1_lay, v1_lay, petAcoef, peqAcoef, petBcoef, &              tq_cdrag(:knon), ps(:knon), precip_rain(:knon), &
224              peqBcoef, tsurf_new, evap, fqcalving, ffonte, run_off_lic_0)              precip_snow(:knon), snow(:knon), qsol(:knon), temp_air(:knon), &
225                spechum(:knon), u1_lay(:knon), v1_lay(:knon), petAcoef(:knon), &
226                peqAcoef(:knon), petBcoef(:knon), peqBcoef(:knon), tsurf_new, &
227                evap(:knon), fqcalving(:knon), ffonte(:knon), run_off_lic_0(:knon))
228    
229         call albsno(klon, knon, dtime, agesno, alb_neig, precip_snow)         call albsno(klon, knon, dtime, agesno, alb_neig, precip_snow)
230         where (snow(1 : knon) .LT. 0.0001) agesno(1 : knon) = 0.         where (snow(1 : knon) < 0.0001) agesno(1 : knon) = 0.
231         zfra(1:knon) = max(0.0, min(1.0, snow(1:knon)/(snow(1:knon) + 10.0)))         zfra(:knon) = max(0.0, min(1.0, snow(1:knon)/(snow(1:knon) + 10.0)))
232         alb_new(1 : knon) = alb_neig(1 : knon) *zfra(1:knon) + &         albedo = alb_neig(:knon) * zfra(:knon) &
233              alb_new(1 : knon)*(1.0-zfra(1:knon))              + albedo * (1. - zfra(:knon))
234         z0_new = sqrt(z0_new**2 + rugoro**2)         z0_new = sqrt(z0_new**2 + rugoro**2)
        alblw(1 : knon) = alb_new(1 : knon)  
235    
236         ! Remplissage des pourcentages de surface         ! Remplissage des pourcentages de surface
237         pctsrf_new(:, nisurf) = pctsrf(:, nisurf)         pctsrf_new(:, nisurf) = pctsrf(:, nisurf)
238      else if (nisurf == is_oce) then      case (is_oce)
239         ! Surface "ocean" appel a l'interface avec l'ocean         ! Surface "ocean" appel \`a l'interface avec l'oc\'ean
240         ! lecture conditions limites         ! lecture conditions limites
241         call interfoce_lim(itime, dtime, jour, klon, nisurf, knon, knindex, &         call interfoce_lim(itime, dtime, jour, knindex, debut, tsurf_temp, &
242              debut, tsurf_new, pctsrf_new)              pctsrf_new)
243    
        tsurf_temp = tsurf_new  
244         cal = 0.         cal = 0.
245         beta = 1.         beta = 1.
246         dif_grnd = 0.         dif_grnd = 0.
247         alb_neig = 0.         alb_neig = 0.
248         agesno = 0.         agesno = 0.
249           call calcul_fluxs(nisurf, dtime, tsurf_temp, p1lay(:knon), &
250         call calcul_fluxs(klon, knon, nisurf, dtime, tsurf_temp, p1lay, cal, &              cal(:knon), beta(:knon), tq_cdrag(:knon), ps(:knon), &
251              beta, tq_cdrag, ps, precip_rain, precip_snow, snow, qsurf, &              qsurf(:knon), radsol(:knon), dif_grnd(:knon), temp_air(:knon), &
252              radsol, dif_grnd, temp_air, spechum, u1_lay, v1_lay, petAcoef, &              spechum(:knon), u1_lay(:knon), v1_lay(:knon), petAcoef(:knon), &
253              peqAcoef, petBcoef, peqBcoef, tsurf_new, evap, fluxlat, fluxsens, &              peqAcoef(:knon), petBcoef(:knon), peqBcoef(:knon), &
254              dflux_s, dflux_l)              tsurf_new, evap(:knon), fluxlat(:knon), fluxsens(:knon), &
255                dflux_s(:knon), dflux_l(:knon))
256         fder_prev = fder         fder = fder + dflux_s + dflux_l
        fder = fder_prev + dflux_s + dflux_l  
   
        iloc = maxloc(fder(1:klon))  
257    
258         !IM: flux ocean-atmosphere utile pour le "slab" ocean         !IM: flux ocean-atmosphere utile pour le "slab" ocean
259         DO i=1, knon         flux_o(:knon) = fluxsens(:knon) - evap(:knon) &
260            zx_sl(i) = RLVTT              * merge(RLSTT, RLVTT, tsurf_new < RTT)
           if (tsurf_new(i) .LT. RTT) zx_sl(i) = RLSTT  
           flux_o(i) = fluxsens(i)-evap(i)*zx_sl(i)  
        ENDDO  
261    
262         ! calcul albedo         ! calcul albedo
263         if (minval(rmu0) == maxval(rmu0) .and. minval(rmu0) == -999.999) then         if (cycle_diurne) then
264            CALL alboc(FLOAT(jour), rlat, alb_eau)            CALL alboc_cd(rmu0(knindex), albedo)
265         else ! cycle diurne         else
266            CALL alboc_cd(rmu0, alb_eau)            CALL alboc(jour, rlat(knindex), albedo)
267         endif         endif
        DO ii =1, knon  
           alb_new(ii) = alb_eau(knindex(ii))  
        enddo  
268    
269         z0_new = sqrt(rugos**2 + rugoro**2)         z0_new = sqrt(rugos**2 + rugoro**2)
270         alblw(1:knon) = alb_new(1:knon)      case (is_sic)
     else if (nisurf == is_sic) then  
271         ! Surface "glace de mer" appel a l'interface avec l'ocean         ! Surface "glace de mer" appel a l'interface avec l'ocean
272    
273         ! ! lecture conditions limites         ! ! lecture conditions limites
274         CALL interfoce_lim(itime, dtime, jour, klon, nisurf, knon, knindex, &         CALL interfoce_lim(itime, dtime, jour, knindex, debut, tsurf_new, &
275              debut, tsurf_new, pctsrf_new)              pctsrf_new)
276    
        !IM cf LF  
277         DO ii = 1, knon         DO ii = 1, knon
278            tsurf_new(ii) = tsurf(ii)            tsurf_new(ii) = tsurf(ii)
           !IMbad IF (pctsrf_new(ii, nisurf) < EPSFRA) then  
279            IF (pctsrf_new(knindex(ii), nisurf) < EPSFRA) then            IF (pctsrf_new(knindex(ii), nisurf) < EPSFRA) then
280               snow(ii) = 0.0               snow(ii) = 0.0
              !IM cf LF/JLD tsurf(ii) = RTT - 1.8  
281               tsurf_new(ii) = RTT - 1.8               tsurf_new(ii) = RTT - 1.8
282               IF (soil_model) tsoil(ii, :) = RTT -1.8               IF (soil_model) tsoil(ii, :) = RTT - 1.8
283            endif            endif
284         enddo         enddo
285    
# Line 319  contains Line 297  contains
297            cal = RCPD * calice            cal = RCPD * calice
298            WHERE (snow > 0.0) cal = RCPD * calsno            WHERE (snow > 0.0) cal = RCPD * calsno
299         ENDIF         ENDIF
        !IMbadtsurf_temp = tsurf  
300         tsurf_temp = tsurf_new         tsurf_temp = tsurf_new
301         beta = 1.0         beta = 1.0
302    
303         CALL calcul_fluxs(klon, knon, nisurf, dtime, tsurf_temp, p1lay, cal, &         CALL calcul_fluxs(nisurf, dtime, tsurf_temp, p1lay(:knon), cal(:knon), &
304              beta, tq_cdrag, ps, precip_rain, precip_snow, snow, qsurf, &              beta(:knon), tq_cdrag(:knon), ps(:knon), qsurf(:knon), &
305              radsol, dif_grnd, temp_air, spechum, u1_lay, v1_lay, petAcoef, &              radsol(:knon), dif_grnd(:knon), temp_air(:knon), spechum(:knon), &
306              peqAcoef, petBcoef, peqBcoef, tsurf_new, evap, fluxlat, fluxsens, &              u1_lay(:knon), v1_lay(:knon), petAcoef(:knon), peqAcoef(:knon), &
307              dflux_s, dflux_l)              petBcoef(:knon), peqBcoef(:knon), tsurf_new, evap(:knon), &
308                fluxlat(:knon), fluxsens(:knon), dflux_s(:knon), dflux_l(:knon))
309    
310         !IM: flux entre l'ocean et la glace de mer pour le "slab" ocean         !IM: flux entre l'ocean et la glace de mer pour le "slab" ocean
311         DO i = 1, knon         DO i = 1, knon
# Line 336  contains Line 314  contains
314                 * dif_grnd(i) * RCPD / cal(i)                 * dif_grnd(i) * RCPD / cal(i)
315         ENDDO         ENDDO
316    
317         CALL fonte_neige(klon, knon, nisurf, dtime, tsurf_temp, p1lay, beta, &         CALL fonte_neige(nisurf, dtime, tsurf_temp, p1lay(:knon), beta(:knon), &
318              tq_cdrag, ps, precip_rain(:knon), precip_snow, snow, qsol(:knon), &              tq_cdrag(:knon), ps(:knon), precip_rain(:knon), &
319              temp_air, spechum, u1_lay, v1_lay, petAcoef, peqAcoef, petBcoef, &              precip_snow(:knon), snow(:knon), qsol(:knon), temp_air(:knon), &
320              peqBcoef, tsurf_new, evap, fqcalving, ffonte, run_off_lic_0)              spechum(:knon), u1_lay(:knon), v1_lay(:knon), petAcoef(:knon), &
321                peqAcoef(:knon), petBcoef(:knon), peqBcoef(:knon), tsurf_new, &
322                evap(:knon), fqcalving(:knon), ffonte(:knon), run_off_lic_0(:knon))
323    
324         ! calcul albedo         ! calcul albedo
325    
326         CALL albsno(klon, knon, dtime, agesno, alb_neig, precip_snow)         CALL albsno(klon, knon, dtime, agesno, alb_neig, precip_snow)
327         WHERE (snow(1 : knon) .LT. 0.0001) agesno(1 : knon) = 0.         WHERE (snow(1 : knon) < 0.0001) agesno(1 : knon) = 0.
328         zfra(1:knon) = MAX(0.0, MIN(1.0, snow(1:knon)/(snow(1:knon) + 10.0)))         zfra(:knon) = MAX(0.0, MIN(1.0, snow(1:knon)/(snow(1:knon) + 10.0)))
329         alb_new(1 : knon) = alb_neig(1 : knon) *zfra(1:knon) + &         albedo = alb_neig(:knon) * zfra(:knon) + 0.6 * (1.0 - zfra(:knon))
             0.6 * (1.0-zfra(1:knon))  
   
        fder_prev = fder  
        fder = fder_prev + dflux_s + dflux_l  
330    
331         iloc = maxloc(fder(1:klon))         fder = fder + dflux_s + dflux_l
332    
333         ! 2eme appel a interfoce pour le cumul et le passage des flux a l'ocean         ! 2eme appel a interfoce pour le cumul et le passage des flux a l'ocean
334    
335         z0_new = 0.002         z0_new = 0.002
336         z0_new = SQRT(z0_new**2 + rugoro**2)         z0_new = SQRT(z0_new**2 + rugoro**2)
337         alblw(1:knon) = alb_new(1:knon)      case (is_lic)
   
     else if (nisurf == is_lic) then  
338         if (.not. allocated(run_off_lic)) then         if (.not. allocated(run_off_lic)) then
339            allocate(run_off_lic(knon))            allocate(run_off_lic(knon))
340            run_off_lic = 0.            run_off_lic = 0.
# Line 379  contains Line 353  contains
353         beta = 1.0         beta = 1.0
354         dif_grnd = 0.0         dif_grnd = 0.0
355    
356         call calcul_fluxs(klon, knon, nisurf, dtime, tsurf, p1lay, cal, beta, &         call calcul_fluxs(nisurf, dtime, tsurf, p1lay(:knon), cal(:knon), &
357              tq_cdrag, ps, precip_rain, precip_snow, snow, qsurf, radsol, &              beta(:knon), tq_cdrag(:knon), ps(:knon), qsurf(:knon), &
358              dif_grnd, temp_air, spechum, u1_lay, v1_lay, petAcoef, peqAcoef, &              radsol(:knon), dif_grnd(:knon), temp_air(:knon), spechum(:knon), &
359              petBcoef, peqBcoef, tsurf_new, evap, fluxlat, fluxsens, dflux_s, &              u1_lay(:knon), v1_lay(:knon), petAcoef(:knon), peqAcoef(:knon), &
360              dflux_l)              petBcoef(:knon), peqBcoef(:knon), tsurf_new, evap(:knon), &
361                fluxlat(:knon), fluxsens(:knon), dflux_s(:knon), dflux_l(:knon))
362         call fonte_neige(klon, knon, nisurf, dtime, tsurf, p1lay, beta, &  
363              tq_cdrag, ps, precip_rain(:knon), precip_snow, snow, qsol(:knon), &         call fonte_neige(nisurf, dtime, tsurf, p1lay(:knon), beta(:knon), &
364              temp_air, spechum, u1_lay, v1_lay, petAcoef, peqAcoef, petBcoef, &              tq_cdrag(:knon), ps(:knon), precip_rain(:knon), &
365              peqBcoef, tsurf_new, evap, fqcalving, ffonte, run_off_lic_0)              precip_snow(:knon), snow(:knon), qsol(:knon), temp_air(:knon), &
366                spechum(:knon), u1_lay(:knon), v1_lay(:knon), petAcoef(:knon), &
367                peqAcoef(:knon), petBcoef(:knon), peqBcoef(:knon), tsurf_new, &
368                evap(:knon), fqcalving(:knon), ffonte(:knon), run_off_lic_0(:knon))
369    
370         ! calcul albedo         ! calcul albedo
371         CALL albsno(klon, knon, dtime, agesno, alb_neig, precip_snow)         CALL albsno(klon, knon, dtime, agesno, alb_neig, precip_snow)
372         WHERE (snow(1 : knon) .LT. 0.0001) agesno(1 : knon) = 0.         WHERE (snow(1 : knon) < 0.0001) agesno(1 : knon) = 0.
373         zfra(1:knon) = MAX(0.0, MIN(1.0, snow(1:knon)/(snow(1:knon) + 10.0)))         zfra(:knon) = MAX(0.0, MIN(1.0, snow(1:knon)/(snow(1:knon) + 10.0)))
374         alb_new(1 : knon) = alb_neig(1 : knon)*zfra(1:knon) + &         albedo = 0.77
             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  
375    
376         ! Rugosite         ! Rugosite
377         z0_new = rugoro         z0_new = rugoro
# Line 407  contains Line 379  contains
379         ! Remplissage des pourcentages de surface         ! Remplissage des pourcentages de surface
380         pctsrf_new(:, nisurf) = pctsrf(:, nisurf)         pctsrf_new(:, nisurf) = pctsrf(:, nisurf)
381    
382         alblw(1:knon) = alb_new(1:knon)      case default
     else  
383         print *, 'Index surface = ', nisurf         print *, 'Index surface = ', nisurf
384         abort_message = 'Index surface non valable'         abort_message = 'Index surface non valable'
385         call abort_gcm(modname, abort_message, 1)         call abort_gcm(modname, abort_message, 1)
386      endif      end select
387    
388    END SUBROUTINE interfsurf_hq    END SUBROUTINE interfsurf_hq
389    

Legend:
Removed from v.101  
changed lines
  Added in v.156

  ViewVC Help
Powered by ViewVC 1.1.21