[524] | 1 | ! |
---|
| 2 | ! $Header$ |
---|
| 3 | ! |
---|
| 4 | c================================================================ |
---|
| 5 | c================================================================ |
---|
| 6 | SUBROUTINE plevel(ilon,ilev,lnew,pgcm,pres,Qgcm,Qpres) |
---|
| 7 | c================================================================ |
---|
| 8 | c================================================================ |
---|
[766] | 9 | USE dimphy |
---|
[524] | 10 | IMPLICIT none |
---|
| 11 | |
---|
[766] | 12 | cym#include "dimensions.h" |
---|
| 13 | cy#include "dimphy.h" |
---|
[524] | 14 | |
---|
| 15 | c================================================================ |
---|
| 16 | c |
---|
| 17 | c Interpoler des champs 3-D u, v et g du modele a un niveau de |
---|
| 18 | c pression donnee (pres) |
---|
| 19 | c |
---|
| 20 | c INPUT: ilon ----- nombre de points |
---|
| 21 | c ilev ----- nombre de couches |
---|
| 22 | c lnew ----- true si on doit reinitialiser les poids |
---|
| 23 | c pgcm ----- pressions modeles |
---|
| 24 | c pres ----- pression vers laquelle on interpolle |
---|
| 25 | c Qgcm ----- champ GCM |
---|
| 26 | c Qpres ---- champ interpolle au niveau pres |
---|
| 27 | c |
---|
| 28 | c================================================================ |
---|
| 29 | c |
---|
| 30 | c arguments : |
---|
| 31 | c ----------- |
---|
| 32 | |
---|
| 33 | INTEGER ilon, ilev |
---|
| 34 | logical lnew |
---|
| 35 | |
---|
| 36 | REAL pgcm(ilon,ilev) |
---|
| 37 | REAL Qgcm(ilon,ilev) |
---|
| 38 | real pres |
---|
| 39 | REAL Qpres(ilon) |
---|
| 40 | |
---|
| 41 | c local : |
---|
| 42 | c ------- |
---|
| 43 | |
---|
[766] | 44 | cym INTEGER lt(klon), lb(klon) |
---|
| 45 | cym REAL ptop, pbot, aist(klon), aisb(klon) |
---|
[524] | 46 | |
---|
[766] | 47 | cym save lt,lb,ptop,pbot,aist,aisb |
---|
[870] | 48 | INTEGER,ALLOCATABLE,SAVE,DIMENSION(:) :: lt,lb |
---|
| 49 | REAL,ALLOCATABLE,SAVE,DIMENSION(:) :: aist,aisb |
---|
[766] | 50 | c$OMP THREADPRIVATE(lt,lb,aist,aisb) |
---|
| 51 | REAL,SAVE :: ptop, pbot |
---|
| 52 | c$OMP THREADPRIVATE(ptop, pbot) |
---|
| 53 | LOGICAL,SAVE :: first = .true. |
---|
| 54 | c$OMP THREADPRIVATE(first) |
---|
[524] | 55 | INTEGER i, k |
---|
| 56 | c |
---|
[766] | 57 | if (first) then |
---|
| 58 | allocate(lt(klon),lb(klon),aist(klon),aisb(klon)) |
---|
| 59 | first=.false. |
---|
| 60 | endif |
---|
| 61 | |
---|
[524] | 62 | c===================================================================== |
---|
| 63 | if (lnew) then |
---|
[766] | 64 | c on r�nitialise les r�ndicages et les poids |
---|
[524] | 65 | c===================================================================== |
---|
| 66 | |
---|
| 67 | |
---|
| 68 | c Chercher les 2 couches les plus proches du niveau a obtenir |
---|
| 69 | c |
---|
| 70 | c Eventuellement, faire l'extrapolation a partir des deux couches |
---|
| 71 | c les plus basses ou les deux couches les plus hautes: |
---|
| 72 | DO 130 i = 1, klon |
---|
| 73 | IF ( ABS(pres-pgcm(i,ilev) ) .LT. |
---|
| 74 | . ABS(pres-pgcm(i,1)) ) THEN |
---|
| 75 | lt(i) = ilev ! 2 |
---|
| 76 | lb(i) = ilev-1 ! 1 |
---|
| 77 | ELSE |
---|
| 78 | lt(i) = 2 |
---|
| 79 | lb(i) = 1 |
---|
| 80 | ENDIF |
---|
| 81 | 130 CONTINUE |
---|
| 82 | DO 150 k = 1, ilev-1 |
---|
| 83 | DO 140 i = 1, klon |
---|
| 84 | pbot = pgcm(i,k) |
---|
| 85 | ptop = pgcm(i,k+1) |
---|
| 86 | IF (ptop.LE.pres .AND. pbot.GE.pres) THEN |
---|
| 87 | lt(i) = k+1 |
---|
| 88 | lb(i) = k |
---|
| 89 | ENDIF |
---|
| 90 | 140 CONTINUE |
---|
| 91 | 150 CONTINUE |
---|
| 92 | c |
---|
| 93 | c Interpolation lineaire: |
---|
| 94 | c |
---|
| 95 | DO i = 1, klon |
---|
| 96 | c interpolation en logarithme de pression: |
---|
| 97 | c |
---|
| 98 | c ... Modif . P. Le Van ( 20/01/98) .... |
---|
[766] | 99 | c Modif Fr��ic Hourdin (3/01/02) |
---|
[524] | 100 | |
---|
| 101 | aist(i) = LOG( pgcm(i,lb(i))/ pres ) |
---|
| 102 | . / LOG( pgcm(i,lb(i))/ pgcm(i,lt(i)) ) |
---|
| 103 | aisb(i) = LOG( pres / pgcm(i,lt(i)) ) |
---|
| 104 | . / LOG( pgcm(i,lb(i))/ pgcm(i,lt(i))) |
---|
| 105 | enddo |
---|
| 106 | |
---|
| 107 | |
---|
| 108 | endif ! lnew |
---|
| 109 | |
---|
| 110 | c====================================================================== |
---|
| 111 | c inteprollation |
---|
| 112 | c====================================================================== |
---|
| 113 | |
---|
| 114 | do i=1,klon |
---|
| 115 | Qpres(i)= Qgcm(i,lb(i))*aisb(i)+Qgcm(i,lt(i))*aist(i) |
---|
| 116 | enddo |
---|
| 117 | c |
---|
| 118 | c Je mets les vents a zero quand je rencontre une montagne |
---|
| 119 | do i = 1, klon |
---|
| 120 | if (pgcm(i,1).LT.pres) THEN |
---|
| 121 | c Qpres(i)=1e33 |
---|
| 122 | Qpres(i)=1e+20 |
---|
| 123 | endif |
---|
| 124 | enddo |
---|
| 125 | |
---|
| 126 | c |
---|
| 127 | RETURN |
---|
| 128 | END |
---|