Last change
on this file since 4325 was
629,
checked in by Laurent Fairhead, 20 years ago
|
Rajout de routines pour la physique parallelisee YM
LF
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
468 bytes
|
Line | |
---|
1 | module 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(:) |
---|
7 | contains |
---|
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 | |
---|
20 | end module comgeomphy |
---|
Note: See
TracBrowser
for help on using the repository browser.