source: LMDZ6/trunk/libf/phymar/Mod_SISVATLSBL.f90 @ 3956

Last change on this file since 3956 was 2089, checked in by Laurent Fairhead, 10 years ago

Inclusion de la physique de MAR


Integration of MAR physics

File size: 1.7 KB
Line 
1      module Mod_SISVATLSBL
2
3!--------------------------------------------------------------------------+
4!                                                     Wed 26-Jun-2013  MAR |
5!     module Mod_SISVATLSBL contains local variables of SISVATeSBL         |
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
28      real(kind=real8), SAVE, ALLOCATABLE, dimension(:,:)  ::  VVaSBL          ! effective SBL wind speed
29      real(kind=real8), SAVE, ALLOCATABLE, dimension(:,:)  ::  dTa_Ts          ! effective SBL Temperature diff.
30      real(kind=real8), SAVE, ALLOCATABLE, dimension(:,:)  ::  LMOmom          ! Monin-Obukhov Scale Momentum
31      real(kind=real8), SAVE, ALLOCATABLE, dimension(:,:)  ::  CDm             ! Drag Coefficient, Momentum
32      real(kind=real8), SAVE, ALLOCATABLE, dimension(:,:)  ::  CDs             ! Drag Coefficient, Blown **
33      real(kind=real8), SAVE, ALLOCATABLE, dimension(:,:)  :: rCDs             ! Drag Coefficient, Blown **
34      real(kind=real8), SAVE, ALLOCATABLE, dimension(:,:)  ::  CDh             ! Drag Coefficient, Scalar
35      real(kind=real8), SAVE, ALLOCATABLE, dimension(:,:)  ::  Richar          ! Richardson Number
36
37
38      end module Mod_SISVATLSBL
Note: See TracBrowser for help on using the repository browser.