[4724] | 1 | module lmdz_call_blowing_snow |
---|
| 2 | |
---|
| 3 | contains |
---|
| 4 | |
---|
[4485] | 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 | |
---|
[4724] | 8 | use lmdz_blowing_snow_sublim_sedim, only : blowing_snow_sublim_sedim |
---|
[4485] | 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 |
---|
[4724] | 44 | |
---|
| 45 | end module lmdz_call_blowing_snow |
---|