source: LMDZ6/trunk/libf/dyn3d_common/nxgrarot.f90 @ 5280

Last change on this file since 5280 was 5280, checked in by abarral, 4 days ago

Turn comdissip.h, comdissipn.h, comdissnew.h into modules

  • 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.4 KB
Line 
1!
2! $Header$
3!
4SUBROUTINE nxgrarot (klevel,xcov, ycov, lr, grx, gry )
5  !   ***********************************************************
6  !
7  !    Auteur :  P.Le Van
8  !
9  !                             lr
10  !  calcul de  ( nXgrad (rot) )   du vect. v  ....
11  !
12  !   xcov et ycov  etant les compos. covariantes de  v
13  !   ***********************************************************
14  ! xcov , ycov et lr  sont des arguments  d'entree pour le s-prog
15  !  grx   et  gry     sont des arguments de sortie pour le s-prog
16  !
17  !
18  USE comdissipn_mod_h
19  USE dimensions_mod, ONLY: iim, jjm, llm, ndm
20USE paramet_mod_h, ONLY: iip1, iip2, iip3, jjp1, llmp1, llmp2, llmm1, kftd, ip1jm, ip1jmp1, &
21          ip1jmi1, ijp1llm, ijmllm, mvar, jcfil, jcfllm
22IMPLICIT NONE
23  !
24  !
25
26
27  !
28  INTEGER :: klevel
29  REAL :: xcov( ip1jmp1,klevel ), ycov( ip1jm,klevel )
30  REAL :: grx( ip1jmp1,klevel ),  gry( ip1jm,klevel )
31  !
32  REAL :: rot(ip1jm,llm)
33
34  INTEGER :: l,ij,iter,lr
35  !
36  !
37  !
38  CALL SCOPY ( ip1jmp1*klevel, xcov, 1, grx, 1 )
39  CALL SCOPY (  ip1jm*klevel, ycov, 1, gry, 1 )
40  !
41  DO iter = 1,lr
42  CALL  rotat (klevel,grx, gry, rot )
43  CALL filtreg( rot, jjm, klevel, 2,1, .false.,2)
44  CALL nxgrad (klevel,rot, grx, gry )
45  !
46  DO  l = 1, klevel
47  DO ij = 1, ip1jm
48  gry( ij,l ) = - gry( ij,l ) * crot
49  END DO
50  DO ij = 1, ip1jmp1
51  grx( ij,l ) = - grx( ij,l ) * crot
52  END DO
53  END DO
54  !
55  END DO
56  RETURN
57END SUBROUTINE nxgrarot
Note: See TracBrowser for help on using the repository browser.