Last change
on this file since 2930 was
1907,
checked in by lguez, 11 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
|
Rev | Line | |
---|
[630] | 1 | SUBROUTINE pression_p( ngrid, ap, bp, ps, p ) |
---|
[1823] | 2 | USE parallel_lmdz |
---|
[630] | 3 | c |
---|
| 4 | |
---|
| 5 | c Auteurs : P. Le Van , Fr.Hourdin . |
---|
| 6 | |
---|
| 7 | c ************************************************************************ |
---|
| 8 | c Calcule la pression p(l) aux differents niveaux l = 1 ( niveau du |
---|
| 9 | c sol) a l = llm +1 ,ces niveaux correspondant aux interfaces des (llm) |
---|
| 10 | c couches , avec p(ij,llm +1) = 0. et p(ij,1) = ps(ij) . |
---|
| 11 | c ************************************************************************ |
---|
| 12 | c |
---|
| 13 | IMPLICIT NONE |
---|
| 14 | c |
---|
| 15 | #include "dimensions.h" |
---|
| 16 | #include "paramet.h" |
---|
| 17 | c |
---|
| 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 |
---|
[764] | 31 | |
---|
| 32 | c$OMP DO SCHEDULE(STATIC,OMP_CHUNK) |
---|
[630] | 33 | DO l = 1, llmp1 |
---|
| 34 | DO ij = ijb, ije |
---|
| 35 | p(ij,l) = ap(l) + bp(l) * ps(ij) |
---|
| 36 | ENDDO |
---|
| 37 | ENDDO |
---|
[764] | 38 | c$OMP END DO NOWAIT |
---|
[630] | 39 | RETURN |
---|
| 40 | END |
---|
Note: See
TracBrowser
for help on using the repository browser.