source: codes/icosagcm/branches/SATURN_DYNAMICO/LMDZ.COMMON/libf/phystd/comgeomphy.F90 @ 263

Last change on this file since 263 was 253, checked in by ymipsl, 10 years ago

Adding xios output functionnalities

YM

File size: 681 bytes
Line 
1module comgeomphy
2   integer,save             :: nvertex=0
3   real,save,allocatable :: airephy(:)
4   real,save,allocatable :: rlatd(:)
5   real,save,allocatable :: rlond(:)
6   real,save,allocatable :: rbounds_lon(:,:)
7   real,save,allocatable :: rbounds_lat(:,:)
8!$OMP THREADPRIVATE(airephy,cuphy,cvphy,rlatd,rlond,rbounds_lon,rbounds_lat)
9contains
10 
11  subroutine initcomgeomphy
12  USE mod_phys_lmdz_para, only: klon_omp
13  implicit none
14   
15 
16    allocate(airephy(klon_omp))
17    allocate(rlatd(klon_omp))
18    allocate(rlond(klon_omp))
19    allocate(rbounds_lon(klon_omp,nvertex))
20    allocate(rbounds_lat(klon_omp,nvertex))
21
22  end subroutine initcomgeomphy
23 
24end module comgeomphy
Note: See TracBrowser for help on using the repository browser.