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