source: trunk/LMDZ.COMMON/libf/dyn3dpar/nxgrad_gam_p.F @ 3093

Last change on this file since 3093 was 1019, checked in by emillour, 11 years ago

Common dynamics; keep up with updates (seq and ) in LMDZ5 (up tio rev 1845):

  • General stuff:
  • makelmdz_fcm: add options -j # (compile using # threads) and -full, and to keep up

with Earth model, possibility to compile with various versions of orchidee

  • bld.cfg: adaptations to enable compiling using multiple threads
  • build_gcm: adaptations to enable compiling using multiple threads
  • makelmdz: keep up with Earth model: possibility to compile with various versions of orchidee + cosmetic changes + library directory name change
  • bibio:
  • wxios.F90 : Added for possible future use of XIOS library
  • filtrez:
  • mkl_dft_type.f90 & mkl_dfti.f90 : MKL (for MKL FFT) interface definitions
  • filtreg_mod : limit use of FFT to parallel mode
  • mod_filtre_fft.F90 & mod_filtre_fft_lov.F90 : swich to use parallel_lmdz
  • dyn3d:
  • abort_gcm.F : add things for xios
  • advtrac.F90 : minor change in CFL outputs
  • ce0l.F90 : indicesol.h is now module indice_sol_mod
  • comvert.h : cosmetic change on comments
  • gcm.F : add xios and use module indice_sol_mod (for INCA)
  • inigeom.F : move two computations outside loop
  • dyn3dpar:
  • parallel.F90 => parallel_lmdz.F90 : and change all the "use parallel" into "use parallel_lmdz" in all files in dyn3dpar
  • comvert.h : cosmetic change on comments
  • gcm.F : add xios and use module indice_sol_mod (for INCA)
  • leapfrog_p.F : add xios + correction for times in Newtonian case
  • ce0l.F90 : indicesol.h is now module indice_sol_mod
  • inigeom.F : move two computations outside loop

EM

File size: 1.6 KB
Line 
1      SUBROUTINE nxgrad_gam_p( klevel, rot, x, y )
2c
3c  P. Le Van
4c
5c   ********************************************************************
6c      calcul du gradient tourne de pi/2 du rotationnel du vect.v
7c   ********************************************************************
8c       rot          est un argument  d'entree pour le s-prog
9c       x  et y    sont des arguments de sortie pour le s-prog
10c
11      USE parallel_lmdz
12      IMPLICIT NONE
13c
14#include "dimensions.h"
15#include "paramet.h"
16#include "comgeom.h"
17      INTEGER klevel
18      REAL rot( ip1jm,klevel ),x( ip1jmp1,klevel ),y(ip1jm,klevel )
19      INTEGER   l,ij
20      integer ismin,ismax
21      external ismin,ismax
22      INTEGER :: ijb,ije
23c
24c$OMP DO SCHEDULE(STATIC,OMP_CHUNK)
25      DO 10 l = 1,klevel
26c
27      ijb=ij_begin
28      ije=ij_end
29      if(pole_sud) ije=ij_end-iip1
30     
31      DO 1  ij = ijb+1, ije
32      y( ij,l ) = (rot( ij,l ) - rot( ij-1,l )) * cvscuvgam( ij )
33   1  CONTINUE
34c
35c    ..... correction pour  y ( 1,j,l )  ......
36c
37c    ....    y(1,j,l)= y(iip1,j,l) ....
38CDIR$ IVDEP
39      DO 2  ij = ijb, ije, iip1
40      y( ij,l ) = y( ij +iim,l )
41   2  CONTINUE
42c
43      ijb=ij_begin
44      ije=ij_end+iip1
45      if(pole_nord) ijb=ij_begin+iip1
46      if(pole_sud) ije=ij_end-iip1
47     
48      DO 4  ij = ijb,ije
49      x( ij,l ) = (rot( ij,l ) - rot( ij -iip1,l )) * cuscvugam( ij )
50   4  CONTINUE
51   
52      if (pole_nord) then
53        DO  ij = 1,iip1
54         x(    ij    ,l ) = 0.
55        ENDDO
56      endif
57
58      if (pole_sud) then
59        DO  ij = 1,iip1
60         x( ij +ip1jm,l ) = 0.
61        ENDDO
62      endif
63c
64  10  CONTINUE
65c$OMP END DO NOWAIT
66      RETURN
67      END
Note: See TracBrowser for help on using the repository browser.