source: LMDZ5/trunk/libf/dyn3dmem/gr_fi_dyn_p.F @ 1632

Last change on this file since 1632 was 1632, checked in by Laurent Fairhead, 12 years ago

Import initial du répertoire dyn3dmem

Attention! ceci n'est qu'une version préliminaire du code "basse mémoire":
le code contenu dans ce répertoire est basé sur la r1320 et a donc besoin
d'être mis à jour par rapport à la dynamique parallèle d'aujourd'hui.
Ce code est toutefois mis à disposition pour circonvenir à des problèmes
de mémoire que certaines configurations du modèle pourraient rencontrer.
Dans l'état, il compile et tourne sur vargas et au CCRT


Initial import of dyn3dmem

Warning! this is just a preliminary version of the memory light code:
it is based on r1320 of the code and thus needs to be updated before
it can replace the present dyn3dpar code. It is nevertheless put at your
disposal to circumvent some memory problems some LMDZ configurations may
encounter. In its present state, it will compile and run on vargas and CCRT

File size: 1.5 KB
Line 
1!
2! $Id: gr_fi_dyn_p.F 1279 2009-12-10 09:02:56Z fairhead $
3!
4      SUBROUTINE gr_fi_dyn_p(nfield,ngrid,im,jm,pfi,pdyn)
5#ifdef CPP_EARTH
6! Interface with parallel physics,
7! for now this routine only works with Earth physics
8      USE mod_interface_dyn_phys
9      USE dimphy
10      use parallel
11      IMPLICIT NONE
12c=======================================================================
13c   passage d'un champ de la grille scalaire a la grille physique
14c=======================================================================
15
16c-----------------------------------------------------------------------
17c   declarations:
18c   -------------
19
20      INTEGER im,jm,ngrid,nfield
21      REAL pdyn(im,jm,nfield)
22      REAL pfi(ngrid,nfield)
23
24      INTEGER i,j,ifield,ig
25
26c-----------------------------------------------------------------------
27c   calcul:
28c   -------
29c$OMP DO SCHEDULE(STATIC,OMP_CHUNK)
30      DO ifield=1,nfield
31
32        do ig=1,klon
33          i=index_i(ig)
34          j=index_j(ig)
35          pdyn(i,j,ifield)=pfi(ig,ifield)
36          if (i==1) pdyn(im,j,ifield)=pdyn(i,j,ifield)
37        enddo
38
39c   traitement des poles
40      if (pole_nord) then
41        do i=1,im
42          pdyn(i,1,ifield)=pdyn(1,1,ifield)
43        enddo
44      endif
45       
46      if (pole_sud) then
47        do i=1,im
48          pdyn(i,jm,ifield)=pdyn(1,jm,ifield)
49        enddo
50      endif
51     
52      ENDDO
53c$OMP END DO NOWAIT
54#else
55      write(lunout,*) "gr_fi_dyn_p : This routine should not be called",
56     &   "without parallelized physics"
57      stop
58#endif
59! of #ifdef CPP_EARTH
60      RETURN
61      END
Note: See TracBrowser for help on using the repository browser.