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