source: LMDZ6/trunk/libf/dyn3d_common/bernoui.f90 @ 5271

Last change on this file since 5271 was 5271, checked in by abarral, 26 hours ago

Move dimensions.h into a module
Nb: doesn't compile yet

  • 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 bernoui (ngrid,nlay,pphi,pecin,pbern)
5  USE dimensions_mod, ONLY: iim, jjm, llm, ndm
6IMPLICIT NONE
7
8  !=======================================================================
9  !
10  !   Auteur:   P. Le Van
11  !   -------
12  !
13  !   Objet:
14  !   ------
15  ! calcul de la fonction de Bernouilli aux niveaux s  .....
16  ! phi  et  ecin  sont des arguments d'entree pour le s-pg .......
17  !      bern       est un  argument de sortie pour le s-pg  ......
18  !
19  !    fonction de Bernouilli = bern = filtre de( geopotentiel +
20  !                          energ.cinet.)
21  !
22  !=======================================================================
23  !
24  !-----------------------------------------------------------------------
25  !   Decalrations:
26  !   -------------
27  !
28
29  include "paramet.h"
30  !
31  !   Arguments:
32  !   ----------
33  !
34  INTEGER :: nlay,ngrid
35  REAL :: pphi(ngrid*nlay),pecin(ngrid*nlay),pbern(ngrid*nlay)
36  !
37  !   Local:
38  !   ------
39  !
40  INTEGER :: ijl
41  !
42  !-----------------------------------------------------------------------
43  !   calcul de Bernouilli:
44  !   ---------------------
45  !
46  DO ijl = 1,ngrid*nlay
47     pbern( ijl ) =  pphi( ijl ) + pecin( ijl )
48  END DO
49  !
50  !-----------------------------------------------------------------------
51  !   filtre:
52  !   -------
53  !
54  CALL filtreg( pbern, jjp1, llm, 2,1, .true., 1 )
55  !
56  !-----------------------------------------------------------------------
57  RETURN
58END SUBROUTINE bernoui
Note: See TracBrowser for help on using the repository browser.