1 | module Mod_SISVATLSnO |
---|
2 | |
---|
3 | !--------------------------------------------------------------------------+ |
---|
4 | ! Wed 26-Jun-2013 MAR | |
---|
5 | ! module Mod_SISVATLSnO contains local variables of SISVAT SnOpt | |
---|
6 | ! Soil/Ice Snow Vegetation Atmosphere Transfer Scheme | |
---|
7 | ! | |
---|
8 | ! version 3.p.4.1 created by H. Gallee, Mon 17-Jun-2013 | |
---|
9 | ! Last Modification by H. Gallee, Wed 26-Jun-2013 | |
---|
10 | ! | |
---|
11 | !--------------------------------------------------------------------------+ |
---|
12 | |
---|
13 | |
---|
14 | ! Global Variables |
---|
15 | ! ================= |
---|
16 | |
---|
17 | use Mod_Real |
---|
18 | |
---|
19 | |
---|
20 | |
---|
21 | ! Internal Variables |
---|
22 | ! ================== |
---|
23 | |
---|
24 | IMPLICIT NONE |
---|
25 | |
---|
26 | |
---|
27 | real(kind=real8), SAVE, ALLOCATABLE, dimension(:,:) :: coalb1 ! weighted Coalbedo, Vis. |
---|
28 | real(kind=real8), SAVE, ALLOCATABLE, dimension(:,:) :: coalb2 ! weighted Coalbedo, nIR 1 |
---|
29 | real(kind=real8), SAVE, ALLOCATABLE, dimension(:,:) :: coalb3 ! weighted Coalbedo, nIR 2 |
---|
30 | real(kind=real8), SAVE, ALLOCATABLE, dimension(:,:) :: sExt_1 ! Extinction Coeff., Vis. |
---|
31 | real(kind=real8), SAVE, ALLOCATABLE, dimension(:,:) :: sExt_2 ! Extinction Coeff., nIR 1 |
---|
32 | real(kind=real8), SAVE, ALLOCATABLE, dimension(:,:) :: sExt_3 ! Extinction Coeff., nIR 2 |
---|
33 | real(kind=real8), SAVE, ALLOCATABLE, dimension(:,:,:) :: SnOpSV ! Snow Grain optical Size |
---|
34 | real(kind=real8), SAVE, ALLOCATABLE, dimension(:,:) :: alb1sv |
---|
35 | real(kind=real8), SAVE, ALLOCATABLE, dimension(:,:) :: alb2sv |
---|
36 | real(kind=real8), SAVE, ALLOCATABLE, dimension(:,:) :: alb3sv |
---|
37 | |
---|
38 | |
---|
39 | end module Mod_SISVATLSnO |
---|