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
|
Rev | Line | |
---|
[524] | 1 | ! |
---|
| 2 | ! $Header$ |
---|
| 3 | ! |
---|
[5246] | 4 | subroutine interpost(q,qppm) |
---|
[524] | 5 | |
---|
[5281] | 6 | USE comgeom2_mod_h |
---|
| 7 | USE dimensions_mod, ONLY: iim, jjm, llm, ndm |
---|
[5285] | 8 | USE paramet_mod_h |
---|
[5271] | 9 | implicit none |
---|
[524] | 10 | |
---|
| 11 | |
---|
[5271] | 12 | |
---|
[5272] | 13 | |
---|
[524] | 14 | |
---|
[5246] | 15 | ! Arguments |
---|
| 16 | real :: q(iip1,jjp1,llm) |
---|
| 17 | real :: qppm(iim,jjp1,llm) |
---|
| 18 | ! Local |
---|
| 19 | integer :: l,i,j |
---|
[524] | 20 | |
---|
[5246] | 21 | ! RE-INVERSION DES NIVEAUX |
---|
[5271] | 22 | ! le programme ppm3d travaille avec une 3�me coordonn�e invers�e par rapport |
---|
[5246] | 23 | ! de celle du LMDZ: z=1<=>niveau max, z=llm+1<=>surface |
---|
[5271] | 24 | ! On passe donc des niveaux de Lin � ceux du LMDZ |
---|
[5246] | 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) |
---|
[524] | 30 | enddo |
---|
[5246] | 31 | enddo |
---|
| 32 | enddo |
---|
[524] | 33 | |
---|
[5246] | 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.