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

Last change on this file since 5201 was 5159, checked in by abarral, 7 weeks ago

Put dimensions.h and paramet.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
18USE lmdz_dimensions, ONLY: iim, jjm, llm, ndm
19  USE lmdz_paramet
20  IMPLICIT NONE
21  !
22
23
24
25
26  !   ..........    variables  en  arguments     .............
27
28  INTEGER :: klevel
29  REAL :: rotin( ip1jm,klevel ), rotout( ip1jm,klevel )
30
31  !   ..........    variables   locales       ................
32
33  REAL :: ghy(ip1jm,klevel), ghx(ip1jmp1,klevel)
34  !   ........................................................
35
36
37  CALL  filtreg ( rotin ,   jjm, klevel,   2, 1, .FALSE., 1 )
38
39  CALL   nxgrad ( klevel, rotin,   ghx ,  ghy               )
40  CALL   rotatf  ( klevel, ghx  ,   ghy , rotout             )
41
42  RETURN
43END SUBROUTINE laplacien_rot
Note: See TracBrowser for help on using the repository browser.