Last change
on this file since 2404 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.4 KB
|
Line | |
---|
1 | SUBROUTINE convmas2_p ( convm ) |
---|
2 | c |
---|
3 | USE parallel_lmdz |
---|
4 | IMPLICIT NONE |
---|
5 | |
---|
6 | c======================================================================= |
---|
7 | c |
---|
8 | c Auteurs: P. Le Van , F. Hourdin . |
---|
9 | c ------- |
---|
10 | c |
---|
11 | c Objet: |
---|
12 | c ------ |
---|
13 | c |
---|
14 | c ******************************************************************** |
---|
15 | c .... calcul de la convergence du flux de masse aux niveaux p ... |
---|
16 | c ******************************************************************** |
---|
17 | c |
---|
18 | c |
---|
19 | c pbaru et pbarv sont des arguments d'entree pour le s-pg .... |
---|
20 | c ..... convm est un argument de sortie pour le s-pg .... |
---|
21 | c |
---|
22 | c le calcul se fait de haut en bas, |
---|
23 | c la convergence de masse au niveau p(llm+1) est egale a 0. et |
---|
24 | c n'est pas stockee dans le tableau convm . |
---|
25 | c |
---|
26 | c |
---|
27 | c======================================================================= |
---|
28 | c |
---|
29 | c Declarations: |
---|
30 | c ------------- |
---|
31 | |
---|
32 | #include "dimensions.h" |
---|
33 | #include "paramet.h" |
---|
34 | #include "comvert.h" |
---|
35 | #include "logic.h" |
---|
36 | |
---|
37 | REAL pbaru( ip1jmp1,llm ),pbarv( ip1jm,llm ) |
---|
38 | REAL :: convm( ip1jmp1,llm ) |
---|
39 | INTEGER l,ij |
---|
40 | INTEGER ijb,ije,jjb,jje |
---|
41 | |
---|
42 | c$OMP MASTER |
---|
43 | c integration de la convergence de masse de haut en bas ...... |
---|
44 | ijb=ij_begin |
---|
45 | ije=ij_end+iip1 |
---|
46 | if (pole_sud) ije=ij_end |
---|
47 | |
---|
48 | DO l = llmm1, 1, -1 |
---|
49 | DO ij = ijb, ije |
---|
50 | convm(ij,l) = convm(ij,l) + convm(ij,l+1) |
---|
51 | ENDDO |
---|
52 | ENDDO |
---|
53 | c |
---|
54 | c$OMP END MASTER |
---|
55 | RETURN |
---|
56 | END |
---|
Note: See
TracBrowser
for help on using the repository browser.