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