source: LMDZ6/trunk/libf/dyn3dpar/pression_p.F @ 3981

Last change on this file since 3981 was 1907, checked in by lguez, 10 years ago

Added a copyright property to every file of the distribution, except
for the fcm files (which have their own copyright). Use svn propget on
a file to see the copyright. For instance:

$ svn propget copyright libf/phylmd/physiq.F90
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

Also added the files defining the CeCILL version 2 license, in French
and English, at the top of the LMDZ tree.

  • 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.0 KB
Line 
1      SUBROUTINE pression_p( ngrid, ap, bp, ps, p )
2      USE parallel_lmdz
3c
4
5c      Auteurs : P. Le Van , Fr.Hourdin  .
6
7c  ************************************************************************
8c     Calcule la pression p(l) aux differents niveaux l = 1 ( niveau du
9c     sol) a l = llm +1 ,ces niveaux correspondant aux interfaces des (llm)
10c     couches , avec  p(ij,llm +1) = 0.  et p(ij,1) = ps(ij)  .     
11c  ************************************************************************
12c
13      IMPLICIT NONE
14c
15#include "dimensions.h"
16#include "paramet.h"
17c
18      INTEGER ngrid
19      INTEGER l,ij
20 
21      REAL ap( llmp1 ), bp( llmp1 ), ps( ngrid ), p( ngrid,llmp1 )
22     
23      INTEGER ijb,ije
24
25     
26      ijb=ij_begin-iip1
27      ije=ij_end+2*iip1
28     
29      if (pole_nord) ijb=ij_begin
30      if (pole_sud)  ije=ij_end
31
32c$OMP DO SCHEDULE(STATIC,OMP_CHUNK)
33      DO    l    = 1, llmp1
34        DO  ij   = ijb, ije
35         p(ij,l) = ap(l) + bp(l) * ps(ij)
36        ENDDO
37      ENDDO
38c$OMP END DO NOWAIT   
39      RETURN
40      END
Note: See TracBrowser for help on using the repository browser.