Last change
on this file since 5300 was
5285,
checked in by abarral, 4 days ago
|
As discussed internally, remove generic ONLY: ... for new _mod_h modules
|
-
Property copyright set to
Name of program: LMDZ Creation date: 1984 Version: LMDZ5 License: CeCILL version 2 Holder: Laboratoire de m\'et\'eorologie dynamique, CNRS, UMR 8539 See the license file in the root directory
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
789 bytes
|
Line | |
---|
1 | ! |
---|
2 | ! $Header$ |
---|
3 | ! |
---|
4 | subroutine interpost(q,qppm) |
---|
5 | |
---|
6 | USE comgeom2_mod_h |
---|
7 | USE dimensions_mod, ONLY: iim, jjm, llm, ndm |
---|
8 | USE paramet_mod_h |
---|
9 | implicit none |
---|
10 | |
---|
11 | |
---|
12 | |
---|
13 | |
---|
14 | |
---|
15 | ! Arguments |
---|
16 | real :: q(iip1,jjp1,llm) |
---|
17 | real :: qppm(iim,jjp1,llm) |
---|
18 | ! Local |
---|
19 | integer :: l,i,j |
---|
20 | |
---|
21 | ! RE-INVERSION DES NIVEAUX |
---|
22 | ! le programme ppm3d travaille avec une 3�me coordonn�e invers�e par rapport |
---|
23 | ! de celle du LMDZ: z=1<=>niveau max, z=llm+1<=>surface |
---|
24 | ! On passe donc des niveaux de Lin � ceux du LMDZ |
---|
25 | |
---|
26 | do l=1,llm |
---|
27 | do j=1,jjp1 |
---|
28 | do i=1,iim |
---|
29 | q(i,j,l)=qppm(i,j,llm-l+1) |
---|
30 | enddo |
---|
31 | enddo |
---|
32 | enddo |
---|
33 | |
---|
34 | ! BOUCLAGE EN LONGITUDE PAS EFFECTUE DANS PPM3D |
---|
35 | |
---|
36 | do l=1,llm |
---|
37 | do j=1,jjp1 |
---|
38 | q(iip1,j,l)=q(1,j,l) |
---|
39 | enddo |
---|
40 | enddo |
---|
41 | |
---|
42 | |
---|
43 | return |
---|
44 | |
---|
45 | end subroutine interpost |
---|
Note: See
TracBrowser
for help on using the repository browser.