My Project
 All Classes Files Functions Variables Macros
gr_fi_ecrit.F
Go to the documentation of this file.
1 !
2 ! $Id $
3 !
4  SUBROUTINE gr_fi_ecrit(nfield,nlon,iim,jjmp1,fi,ecrit)
5  IMPLICIT NONE
6 c
7 c Transfer a field from the full physics grid
8 c to a full 2D (lonxlat) grid suitable for outputs
9 c
10  INTEGER,INTENT(IN) :: nfield,nlon,iim,jjmp1
11  REAL,INTENT(IN) :: fi(nlon,nfield)
12  REAL,INTENT(out) :: ecrit(iim*jjmp1,nfield)
13 c
14  INTEGER :: i, n, ig, jjm
15 c
16  jjm = jjmp1 - 1
17  DO n = 1, nfield
18  DO i=1,iim
19  ecrit(i,n) = fi(1,n)
20  ecrit(i+jjm*iim,n) = fi(nlon,n)
21  ENDDO
22  DO ig = 1, nlon - 2
23  ecrit(iim+ig,n) = fi(1+ig,n)
24  ENDDO
25  ENDDO
26 
27  END