source: LMDZ4/tags/LMDZ4_V2/libf/phylmd/comgeomphy.F90 @ 741

Last change on this file since 741 was 741, checked in by (none), 17 years ago

This commit was manufactured by cvs2svn to create tag 'LMDZ4_V2'.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 468 bytes
Line 
1module comgeomphy
2   real,save,allocatable :: airephy(:)
3   real,save,allocatable :: cuphy(:)
4   real,save,allocatable :: cvphy(:)
5   real,save,allocatable :: rlatd(:)
6   real,save,allocatable :: rlond(:)
7contains
8 
9  subroutine InitComgeomphy
10  use dimphy
11  implicit none
12   
13    allocate(airephy(klon))
14    allocate(cuphy(klon))
15    allocate(cvphy(klon))
16    allocate(rlatd(klon))
17    allocate(rlond(klon))
18  end subroutine InitComgeomphy
19 
20end module comgeomphy
Note: See TracBrowser for help on using the repository browser.