laplacien_rot.f90 Source File


This file depends on

sourcefile~~laplacien_rot.f90~~EfferentGraph sourcefile~laplacien_rot.f90 laplacien_rot.f90 sourcefile~paramet_mod_h.f90 paramet_mod_h.f90 sourcefile~laplacien_rot.f90->sourcefile~paramet_mod_h.f90 sourcefile~comgeom_mod_h.f90 comgeom_mod_h.f90 sourcefile~laplacien_rot.f90->sourcefile~comgeom_mod_h.f90 sourcefile~comgeom_mod_h.f90->sourcefile~paramet_mod_h.f90

Contents

Source Code


Source Code

!
! $Header$
!
SUBROUTINE laplacien_rot ( klevel, rotin, rotout,ghx,ghy )
  !
  !    P. Le Van
  !
  !   ************************************************************
  !    ...  calcul de  ( rotat x nxgrad )  du rotationnel rotin  .
  !   ************************************************************
  !
  ! klevel et rotin  sont des arguments  d'entree pour le s-prog
  !  rotout           est  un argument  de sortie pour le s-prog
  !
  USE comgeom_mod_h
  USE dimensions_mod, ONLY: iim, jjm, llm, ndm
USE paramet_mod_h
IMPLICIT NONE
  !



  !
  !   ..........    variables  en  arguments     .............
  !
  INTEGER :: klevel
  REAL :: rotin( ip1jm,klevel ), rotout( ip1jm,klevel )
  !
  !   ..........    variables   locales       ................
  !
  REAL :: ghy(ip1jm,klevel), ghx(ip1jmp1,klevel)
  !   ........................................................
  !
  !
  CALL  filtreg ( rotin ,   jjm, klevel,   2, 1, .FALSE., 1 )

  CALL   nxgrad ( klevel, rotin,   ghx ,  ghy               )
  CALL   rotatf  ( klevel, ghx  ,   ghy , rotout             )
  !
  RETURN
END SUBROUTINE laplacien_rot