source: LMDZ.3.3/tags/IPSL-CM4_LJ29_OPT/libf/dyn3d/gr_ecrit_fi.F @ 497

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

This commit was manufactured by cvs2svn to create tag
'IPSL-CM4_LJ29_OPT'.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 613 bytes
Line 
1        SUBROUTINE gr_ecrit_fi(nfield,nlon,iim,jjmp1,ecrit,fi)
2
3        IMPLICIT none
4
5c Transformer une variable de la grille d'ecriture a la grille physique
6       
7        INTEGER nfield,nlon,iim,jjmp1, jjm
8      REAL fi(nlon,nfield), ecrit(iim,jjmp1,nfield)
9c
10      INTEGER i, j, n, ig
11c
12c       print*,'iim jjm ',iim,jjm
13
14c modif par abd 21 02 01
15
16        jjm = jjmp1 - 1
17        do n = 1, nfield
18            fi(1,n) = ecrit(1,1,n)
19            fi(nlon,n) = ecrit(1,jjm+1,n)
20         DO j = 2, jjm
21            ig = 2+(j-2)*iim
22            DO i = 1, iim
23             fi(ig-1+i,n) = ecrit(i,j,n)
24            ENDDO
25         ENDDO
26      ENDDO
27      RETURN
28      END
29
Note: See TracBrowser for help on using the repository browser.