source: LMDZ6/trunk/libf/dynphy_lonlat/gr_fi_dyn.F @ 3981

Last change on this file since 3981 was 2239, checked in by Ehouarn Millour, 9 years ago

Reorganizing physics/dynamics interface:

  • what is related to dynamics-physics interface is now in a seperate directory: dynlmdz_phy* for physics in phy*
  • 1d model and related dependencies (including a couple from "dynamics", set up as symbolic links) is now in subdirectory "dyn1d" of phy*.
  • "bibio" directory is now "misc" and should only contain autonomous utilities.
  • "cosp" is now a subdirectory of phylmd.

EM

  • 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: 1.0 KB
Line 
1!
2! $Header$
3!
4      SUBROUTINE gr_fi_dyn(nfield,ngrid,im,jm,pfi,pdyn)
5      IMPLICIT NONE
6c=======================================================================
7c   passage d'un champ de la grille scalaire a la grille physique
8c=======================================================================
9
10c-----------------------------------------------------------------------
11c   declarations:
12c   -------------
13
14      INTEGER im,jm,ngrid,nfield
15      REAL pdyn(im,jm,nfield)
16      REAL pfi(ngrid,nfield)
17
18      INTEGER i,j,ifield,ig
19
20c-----------------------------------------------------------------------
21c   calcul:
22c   -------
23
24      DO ifield=1,nfield
25c   traitement des poles
26         DO i=1,im
27            pdyn(i,1,ifield)=pfi(1,ifield)
28            pdyn(i,jm,ifield)=pfi(ngrid,ifield)
29         ENDDO
30
31c   traitement des point normaux
32         DO j=2,jm-1
33            ig=2+(j-2)*(im-1)
34            CALL SCOPY(im-1,pfi(ig,ifield),1,pdyn(1,j,ifield),1)
35            pdyn(im,j,ifield)=pdyn(1,j,ifield)
36         ENDDO
37      ENDDO
38
39      RETURN
40      END
Note: See TracBrowser for help on using the repository browser.