source: LMDZ6/trunk/libf/dyn3dmem/nxgrad_gam_loc.f90 @ 5272

Last change on this file since 5272 was 5272, checked in by abarral, 25 hours ago

Turn paramet.h into a module

  • 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
File size: 1.7 KB
Line 
1SUBROUTINE nxgrad_gam_loc( klevel, rot, x, y )
2  !
3  !  P. Le Van
4  !
5  !   ********************************************************************
6  !  calcul du gradient tourne de pi/2 du rotationnel du vect.v
7  !   ********************************************************************
8  !   rot          est un argument  d'entree pour le s-prog
9  !   x  et y    sont des arguments de sortie pour le s-prog
10  !
11  USE parallel_lmdz
12
13  USE dimensions_mod, ONLY: iim, jjm, llm, ndm
14USE paramet_mod_h, ONLY: iip1, iip2, iip3, jjp1, llmp1, llmp2, llmm1, kftd, ip1jm, ip1jmp1, &
15          ip1jmi1, ijp1llm, ijmllm, mvar, jcfil, jcfllm
16IMPLICIT NONE
17  !
18
19
20  INCLUDE "comgeom.h"
21  INTEGER :: klevel
22  REAL :: rot( ijb_v:ije_v,klevel )
23  REAL :: x( ijb_u:ije_u,klevel ),y(ijb_v:ije_v,klevel )
24  INTEGER :: l,ij
25  integer :: ismin,ismax
26  external ismin,ismax
27  INTEGER :: ijb,ije
28  !
29!$OMP DO SCHEDULE(STATIC,OMP_CHUNK)
30  DO l = 1,klevel
31  !
32  ijb=ij_begin
33  ije=ij_end
34  if(pole_sud) ije=ij_end-iip1
35
36  DO  ij = ijb+1, ije
37  y( ij,l ) = (rot( ij,l ) - rot( ij-1,l )) * cvscuvgam( ij )
38  END DO
39  !
40  !    ..... correction pour  y ( 1,j,l )  ......
41  !
42  !    ....    y(1,j,l)= y(iip1,j,l) ....
43  !DIR$ IVDEP
44  DO  ij = ijb, ije, iip1
45  y( ij,l ) = y( ij +iim,l )
46  END DO
47  !
48  ijb=ij_begin
49  ije=ij_end+iip1
50  if(pole_nord) ijb=ij_begin+iip1
51  if(pole_sud) ije=ij_end-iip1
52
53  DO  ij = ijb,ije
54  x( ij,l ) = (rot( ij,l ) - rot( ij -iip1,l )) * cuscvugam( ij )
55  END DO
56
57  if (pole_nord) then
58    DO  ij = 1,iip1
59     x(    ij    ,l ) = 0.
60    ENDDO
61  endif
62
63  if (pole_sud) then
64    DO  ij = 1,iip1
65     x( ij +ip1jm,l ) = 0.
66    ENDDO
67  endif
68  !
69  END DO
70!$OMP END DO NOWAIT
71  RETURN
72END SUBROUTINE nxgrad_gam_loc
Note: See TracBrowser for help on using the repository browser.