1 | SUBROUTINE geopot_p ( ngrid, teta, pk, pks, phis, phi ) |
---|
2 | USE parallel_lmdz |
---|
3 | IMPLICIT NONE |
---|
4 | |
---|
5 | |
---|
6 | c======================================================================= |
---|
7 | c |
---|
8 | c Auteur: P. Le Van |
---|
9 | c ------- |
---|
10 | c |
---|
11 | c Objet: |
---|
12 | c ------ |
---|
13 | c |
---|
14 | c ******************************************************************* |
---|
15 | c .... calcul du geopotentiel aux milieux des couches ..... |
---|
16 | c ******************************************************************* |
---|
17 | c |
---|
18 | c .... l'integration se fait de bas en haut .... |
---|
19 | c |
---|
20 | c .. ngrid,teta,pk,pks,phis sont des argum. d'entree pour le s-pg .. |
---|
21 | c phi est un argum. de sortie pour le s-pg . |
---|
22 | c |
---|
23 | c======================================================================= |
---|
24 | c----------------------------------------------------------------------- |
---|
25 | c Declarations: |
---|
26 | c ------------- |
---|
27 | |
---|
28 | #include "dimensions.h" |
---|
29 | #include "paramet.h" |
---|
30 | |
---|
31 | c Arguments: |
---|
32 | c ---------- |
---|
33 | INTEGER ngrid |
---|
34 | REAL teta(ngrid,llm),pks(ngrid),phis(ngrid),pk(ngrid,llm) , |
---|
35 | * phi(ngrid,llm) |
---|
36 | |
---|
37 | |
---|
38 | c Local: |
---|
39 | c ------ |
---|
40 | |
---|
41 | INTEGER l, ij,ijb,ije |
---|
42 | |
---|
43 | |
---|
44 | c----------------------------------------------------------------------- |
---|
45 | c calcul de phi au niveau 1 pres du sol ..... |
---|
46 | ijb=ij_begin |
---|
47 | ije=ij_end+iip1 |
---|
48 | |
---|
49 | IF (pole_sud) ije=ij_end |
---|
50 | |
---|
51 | DO ij = ijb, ije |
---|
52 | phi( ij,1 ) = phis( ij ) + teta(ij,1) * ( pks(ij) - pk(ij,1) ) |
---|
53 | ENDDO |
---|
54 | |
---|
55 | c calcul de phi aux niveaux superieurs ....... |
---|
56 | |
---|
57 | DO l = 2,llm |
---|
58 | DO ij = ijb,ije |
---|
59 | phi(ij,l) = phi(ij,l-1) + 0.5 * ( teta(ij,l) + teta(ij,l-1) ) |
---|
60 | * * ( pk(ij,l-1) - pk(ij,l) ) |
---|
61 | ENDDO |
---|
62 | ENDDO |
---|
63 | |
---|
64 | RETURN |
---|
65 | END |
---|