/[lmdze]/trunk/phylmd/Interface_surf/calcul_fluxs.f90
ViewVC logotype

Annotation of /trunk/phylmd/Interface_surf/calcul_fluxs.f90

Parent Directory Parent Directory | Revision Log Revision Log


Revision 341 - (hide annotations)
Mon Oct 21 06:11:44 2019 UTC (4 years, 7 months ago) by guez
File size: 4360 byte(s)
Remove intermediate variables in `pbl_surface`

Remove file `diagcld2.f90`, no longer used since revision 340.

In procedure cdrag, rename zcdn to cdn. In procedure `interfsurf_hq`,
rename `temp_air` to t1lay: this is the corresponding name in
`calcul_fluxs`, is consistent with the other names `[uvq]1lay` and is
more precise.

In procedure `pbl_surface`, rename t and q to `t_seri` and `q_seri`,
which are the names in procedure physiq. Remove needless intermediate
variables qair1, tairsol, psfce, patm and zgeo1. Remove useless
initialization of yrugos. Remove a useless assignment `i = ni(j)`.

1 guez 54 module calcul_fluxs_m
2    
3     implicit none
4    
5     contains
6    
7 guez 311 SUBROUTINE calcul_fluxs(tsurf, p1lay, cal, beta, cdragh, ps, qsurf, radsol, &
8     t1lay, q1lay, u1lay, v1lay, tAcoef, qAcoef, tBcoef, qBcoef, tsurf_new, &
9     evap, fluxlat, flux_t, dflux_s, dflux_l, dif_grnd)
10 guez 54
11 guez 207 ! Cette routine calcule les flux en h et q à l'interface et une
12 guez 99 ! température de surface.
13 guez 54
14 guez 214 ! L. Fairhead, April 2000
15 guez 54
16 guez 279 ! Note that, if cal = 0, beta = 1 and dif_grnd = 0, then tsurf_new
17     ! = tsurf and qsurf = qsat.
18    
19 guez 299 ! Libraries:
20 guez 279 use nr_util, only: assert_eq
21    
22 guez 299 use comconst, only: dtphys
23 guez 221 USE fcttre, ONLY: foede, foeew
24 guez 178 USE suphec_m, ONLY: rcpd, rd, retv, rlstt, rlvtt, rtt
25 guez 104 USE yoethf_m, ONLY: r2es, r5ies, r5les, rvtmp2
26    
27 guez 206 real, intent(IN):: tsurf(:) ! (knon) température de surface
28    
29     real, intent(IN):: p1lay(:) ! (knon)
30     ! pression première couche (milieu de couche)
31    
32 guez 104 real, intent(IN):: cal(:) ! (knon) capacité calorifique du sol
33 guez 206 real, intent(IN):: beta(:) ! (knon) évaporation réelle
34 guez 308 real, intent(IN):: cdragh(:) ! (knon) coefficient d'échange
35 guez 311 real, intent(IN):: ps(:) ! (knon) pression au sol, en Pa
36 guez 206 real, intent(OUT):: qsurf(:) ! (knon) humidité de l'air au-dessus du sol
37 guez 104
38 guez 206 real, intent(IN):: radsol(:) ! (knon)
39 guez 309 ! net downward radiative (longwave + shortwave) flux at the surface
40 guez 206
41 guez 300 real, intent(IN):: dif_grnd ! coefficient de diffusion vers le sol profond
42 guez 341 real, intent(IN):: t1lay(:) ! (knon) temp\'erature de l'air 1\`ere couche
43     real, intent(IN):: q1lay(:), u1lay(:), v1lay(:) ! (knon)
44 guez 104
45 guez 299 real, intent(IN):: tAcoef(:), qAcoef(:) ! (knon)
46 guez 206 ! coefficients A de la résolution de la couche limite pour T et q
47 guez 104
48 guez 299 real, intent(IN):: tBcoef(:), qBcoef(:) ! (knon)
49 guez 206 ! coefficients B de la résolution de la couche limite pour t et q
50 guez 54
51 guez 104 real, intent(OUT):: tsurf_new(:) ! (knon) température au sol
52 guez 171 real, intent(OUT):: evap(:) ! (knon)
53    
54 guez 206 real, intent(OUT):: fluxlat(:), flux_t(:) ! (knon)
55 guez 311 ! flux de chaleurs latente et sensible, en W m-2
56 guez 171
57 guez 104 real, intent(OUT):: dflux_s(:), dflux_l(:) ! (knon)
58 guez 171 ! dérivées des flux de chaleurs sensible et latente par rapport à
59     ! Ts (W m-2 K-1)
60 guez 54
61 guez 104 ! Local:
62     integer i
63 guez 279 integer knon ! nombre de points \`a traiter
64 guez 206 real, dimension(size(ps)):: mh, oh, mq, nq, oq, dq_s_dt, coef ! (knon)
65 guez 207 real qsat(size(ps)) ! (knon) mass fraction
66     real sl(size(ps)) ! (knon) chaleur latente d'évaporation ou de sublimation
67 guez 105 logical delta
68     real zcor
69 guez 207 real, parameter:: t_grnd = 271.35
70 guez 308 real, parameter:: min_wind_speed = 1. ! in m s-1
71 guez 54
72 guez 104 !---------------------------------------------------------------------
73 guez 54
74 guez 279 knon = assert_eq([size(tsurf), size(p1lay), size(cal), size(beta), &
75 guez 308 size(cdragh), size(ps), size(qsurf), size(radsol), size(t1lay), &
76 guez 300 size(q1lay), size(u1lay), size(v1lay), size(tAcoef), size(qAcoef), &
77     size(tBcoef), size(qBcoef), size(tsurf_new), size(evap), &
78     size(fluxlat), size(flux_t), size(dflux_s), size(dflux_l)], &
79     "calcul_fluxs knon")
80 guez 54
81 guez 206 ! Traitement de l'humidité du sol
82 guez 54
83 guez 207 DO i = 1, knon
84     delta = rtt >= tsurf(i)
85     qsat(i) = MIN(0.5, r2es * FOEEW(tsurf(i), delta) / ps(i))
86     zcor = 1. / (1. - retv * qsat(i))
87     qsat(i) = qsat(i) * zcor
88     dq_s_dt(i) = RCPD * FOEDE(tsurf(i), delta, merge(R5IES * RLSTT, &
89 guez 324 R5LES * RLVTT, delta) / RCPD / (1. + RVTMP2 * q1lay(i)), qsat(i), &
90     zcor) / RLVTT
91 guez 207 ENDDO
92 guez 54
93 guez 308 coef = cdragh * (min_wind_speed + SQRT(u1lay**2 + v1lay**2)) * p1lay &
94     / (RD * t1lay)
95 guez 105 sl = merge(RLSTT, RLVTT, tsurf < RTT)
96 guez 54
97 guez 105 ! Q
98 guez 299 oq = 1. - beta * coef * qBcoef * dtphys
99     mq = beta * coef * (qAcoef - qsat + dq_s_dt * tsurf) / oq
100 guez 279 nq = - beta * coef * dq_s_dt / oq
101 guez 54
102 guez 105 ! H
103 guez 299 oh = 1. - coef * tBcoef * dtphys
104     mh = coef * tAcoef / oh
105 guez 279 dflux_s = - coef * RCPD / oh
106 guez 54
107 guez 299 tsurf_new = (tsurf + cal / RCPD * dtphys * (radsol + mh + sl * mq) &
108     + dif_grnd * t_grnd * dtphys) / (1. - dtphys * cal / RCPD * (dflux_s &
109     + sl * nq) + dtphys * dif_grnd)
110 guez 105 evap = - mq - nq * tsurf_new
111     fluxlat = - evap * sl
112 guez 206 flux_t = mh + dflux_s * tsurf_new
113 guez 105 dflux_l = sl * nq
114 guez 299 qsurf = (qAcoef - qBcoef * evap * dtphys) * (1. - beta) + beta * (qsat &
115 guez 105 + dq_s_dt * (tsurf_new - tsurf))
116 guez 54
117     END SUBROUTINE calcul_fluxs
118    
119     end module calcul_fluxs_m

  ViewVC Help
Powered by ViewVC 1.1.21