1 | module lmdz_call_blowing_snow |
---|
2 | |
---|
3 | CONTAINS |
---|
4 | |
---|
5 | SUBROUTINE call_blowing_snow_sublim_sedim(ngrid,nlay,dtime,temp,q,qbs,pplay,paprs, & |
---|
6 | dtemp_bs,dq_bs,dqbs_bs,bsfl,precip_bs) |
---|
7 | |
---|
8 | USE lmdz_blowing_snow_sublim_sedim, ONLY: blowing_snow_sublim_sedim |
---|
9 | IMPLICIT NONE |
---|
10 | |
---|
11 | !INPUT |
---|
12 | !===== |
---|
13 | |
---|
14 | INTEGER, INTENT(IN) :: ngrid,nlay |
---|
15 | REAL, INTENT(IN) :: dtime |
---|
16 | REAL, INTENT(IN), DIMENSION(ngrid,nlay) :: temp |
---|
17 | REAL, INTENT(IN), DIMENSION(ngrid,nlay) :: q |
---|
18 | REAL, INTENT(IN), DIMENSION(ngrid,nlay) :: qbs |
---|
19 | REAL, INTENT(IN), DIMENSION(ngrid,nlay) :: pplay |
---|
20 | REAL, INTENT(IN), DIMENSION(ngrid,nlay+1) :: paprs |
---|
21 | |
---|
22 | |
---|
23 | ! OUTPUT |
---|
24 | !======== |
---|
25 | |
---|
26 | |
---|
27 | REAL, INTENT(OUT), DIMENSION(ngrid,nlay) :: dtemp_bs |
---|
28 | REAL, INTENT(OUT), DIMENSION(ngrid,nlay) :: dq_bs |
---|
29 | REAL, INTENT(OUT), DIMENSION(ngrid,nlay) :: dqbs_bs |
---|
30 | REAL, INTENT(OUT), DIMENSION(ngrid,nlay+1) :: bsfl |
---|
31 | REAL, INTENT(OUT), DIMENSION(ngrid) :: precip_bs |
---|
32 | |
---|
33 | |
---|
34 | |
---|
35 | |
---|
36 | CALL blowing_snow_sublim_sedim(ngrid,nlay,dtime,temp,q,qbs,pplay,paprs, & |
---|
37 | dtemp_bs,dq_bs,dqbs_bs,bsfl,precip_bs) |
---|
38 | |
---|
39 | |
---|
40 | |
---|
41 | |
---|
42 | |
---|
43 | END SUBROUTINE call_blowing_snow_sublim_sedim |
---|
44 | |
---|
45 | END MODULE lmdz_call_blowing_snow |
---|