source: LMDZ6/branches/Amaury_dev/libf/dyn3d_common/laplacien_rot.f90 @ 5155

Last change on this file since 5155 was 5136, checked in by abarral, 12 months ago

Put comgeom.h, comgeom2.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.1 KB
Line 
1
2! $Header$
3
4SUBROUTINE laplacien_rot( klevel, rotin, rotout,ghx,ghy )
5  !
6  !    P. Le Van
7  !
8  !   ************************************************************
9  !    ...  calcul de  ( rotat x nxgrad )  du rotationnel rotin  .
10  !   ************************************************************
11  !
12  ! klevel et rotin  sont des arguments  d'entree pour le s-prog
13  !  rotout           est  un argument  de sortie pour le s-prog
14  !
15  USE lmdz_filtreg, ONLY: filtreg
16  USE lmdz_comgeom
17
18  IMPLICIT NONE
19  !
20  INCLUDE "dimensions.h"
21  INCLUDE "paramet.h"
22
23  !
24  !   ..........    variables  en  arguments     .............
25  !
26  INTEGER :: klevel
27  REAL :: rotin( ip1jm,klevel ), rotout( ip1jm,klevel )
28  !
29  !   ..........    variables   locales       ................
30  !
31  REAL :: ghy(ip1jm,klevel), ghx(ip1jmp1,klevel)
32  !   ........................................................
33  !
34  !
35  CALL  filtreg ( rotin ,   jjm, klevel,   2, 1, .FALSE., 1 )
36
37  CALL   nxgrad ( klevel, rotin,   ghx ,  ghy               )
38  CALL   rotatf  ( klevel, ghx  ,   ghy , rotout             )
39  !
40  RETURN
41END SUBROUTINE laplacien_rot
Note: See TracBrowser for help on using the repository browser.