source: LMDZ5/trunk/libf/dyn3dpar/gr_dyn_fi_p.F @ 1660

Last change on this file since 1660 was 1615, checked in by Ehouarn Millour, 13 years ago

Introducing "phydev", the minimal physics package.
makegcm and makelmdz_fcm script have been updated to add CPP_PHYS preprocessing key when building with physics and CPP_EARTH for Earth (LMD physics) related routines or instructions in the dynamics.
Checked (on Vargas) that "dev" physics package compiles and runs well in all (seq/mpi/omp/mpi_omp) modes and that introduced changes do not modify results when using the "lmd" physics package.
EM + FH

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.1 KB
RevLine 
[1279]1!
2! $Id: gr_dyn_fi_p.F 1615 2012-02-10 15:42:26Z fairhead $
3!
[630]4      SUBROUTINE gr_dyn_fi_p(nfield,im,jm,ngrid,pdyn,pfi)
[1615]5#ifdef CPP_PHYS
[1279]6! Interface with parallel physics,
[774]7      USE mod_interface_dyn_phys
[630]8      USE dimphy
[764]9      USE PARALLEL
[630]10      IMPLICIT NONE
11c=======================================================================
12c   passage d'un champ de la grille scalaire a la grille physique
13c=======================================================================
14
15c-----------------------------------------------------------------------
16c   declarations:
17c   -------------
18
19      INTEGER im,jm,ngrid,nfield
20      REAL pdyn(im,jm,nfield)
21      REAL pfi(ngrid,nfield)
22
[764]23      INTEGER i,j,ig,l
[630]24
25c-----------------------------------------------------------------------
26c   calcul:
27c   -------
28
29c      IF(ngrid.NE.2+(jm-2)*(im-1)) STOP 'probleme de dim'
30c   traitement des poles
31c   traitement des point normaux
[764]32c$OMP DO SCHEDULE(STATIC,OMP_CHUNK)
33      DO l=1,nfield   
[630]34       DO ig=1,klon
[774]35         i=index_i(ig)
36         j=index_j(ig)
[764]37         pfi(ig,l)=pdyn(i,j,l)
[630]38       ENDDO
[764]39      ENDDO
40c$OMP END DO NOWAIT
[1279]41#endif
[1615]42! of #ifdef CPP_PHYS
[630]43      RETURN
44      END
Note: See TracBrowser for help on using the repository browser.