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

Legend:
Removed from v.178  
changed lines
  Added in v.299

  ViewVC Help
Powered by ViewVC 1.1.21