[135] | 1 | SUBROUTINE profile(nlev,zkm,temp) |
---|
| 2 | ! to use 'getin' |
---|
| 3 | USE ioipsl_getincom |
---|
| 4 | IMPLICIT NONE |
---|
| 5 | c======================================================================= |
---|
[253] | 6 | c Subroutine utilisee dans "rcm1d" |
---|
[135] | 7 | c pour l'initialisation du profil atmospherique |
---|
| 8 | c======================================================================= |
---|
| 9 | c |
---|
| 10 | c differents profils d'atmospheres. T=f(z) |
---|
| 11 | c entree: |
---|
| 12 | c nlev nombre de niveaux |
---|
| 13 | c zkm alititudes en km |
---|
| 14 | c ichoice choix de l'atmosphere: |
---|
| 15 | c 1 Temperature constante |
---|
| 16 | c 2 profil Savidjari |
---|
| 17 | c 3 Lindner (profil polaire) |
---|
| 18 | c 4 Inversion pour Francois |
---|
| 19 | c 5 Seiff (moyen) |
---|
| 20 | c 6 T constante + perturbation gauss (level) (christophe 10/98) |
---|
| 21 | c 7 T constante + perturbation gauss (km) (christophe 10/98) |
---|
| 22 | c 8 Lecture du profile dans un fichier ASCII (profile) |
---|
| 23 | c tref temperature de reference |
---|
| 24 | c isin ajout d'une perturbation (isin=1) |
---|
| 25 | c pic pic perturbation gauss pour ichoice = 6 ou 7 |
---|
| 26 | c largeur largeur de la perturbation gauss pour ichoice = 6 ou 7 |
---|
| 27 | c hauteur hauteur de la perturbation gauss pour ichoice = 6 ou 7 |
---|
| 28 | c |
---|
| 29 | c sortie: |
---|
| 30 | c temp temperatures en K |
---|
| 31 | c |
---|
| 32 | c======================================================================= |
---|
| 33 | c----------------------------------------------------------------------- |
---|
| 34 | c declarations: |
---|
| 35 | c ------------- |
---|
| 36 | |
---|
| 37 | c arguments: |
---|
| 38 | c ---------- |
---|
| 39 | |
---|
| 40 | INTEGER nlev, unit |
---|
| 41 | REAL zkm(nlev),temp(nlev) |
---|
| 42 | |
---|
| 43 | c local: |
---|
| 44 | c ------ |
---|
| 45 | |
---|
| 46 | INTEGER il,ichoice,nseiff,iseiff,isin,iter |
---|
| 47 | REAL pi |
---|
| 48 | PARAMETER(nseiff=37) |
---|
| 49 | REAL tref,t1,t2,t3,ww |
---|
| 50 | REAL tseiff(nseiff) |
---|
| 51 | DATA tseiff/214.,213.8,213.4,212.4,209.3,205.,201.4,197.8, |
---|
| 52 | $ 194.6,191.4,188.2,185.2,182.5,180.,177.5,175, |
---|
| 53 | $ 172.5,170.,167.5,164.8,162.4,160.,158.,156., |
---|
| 54 | $ 154.1,152.2,150.3,148.7,147.2,145.7,144.2,143., |
---|
| 55 | $ 142.,141.,140,139.5,139./ |
---|
| 56 | REAL pic,largeur |
---|
| 57 | REAL hauteur,tmp |
---|
| 58 | |
---|
| 59 | c----------------------------------------------------------------------- |
---|
| 60 | c read input profile type: |
---|
| 61 | c-------------------------- |
---|
| 62 | |
---|
| 63 | ichoice=1 ! default value for ichoice |
---|
| 64 | call getin("ichoice",ichoice) |
---|
| 65 | tref=200 ! default value for tref |
---|
| 66 | call getin("tref",tref) |
---|
| 67 | isin=0 ! default value for isin (=0 means no perturbation) |
---|
| 68 | call getin("isin",isin) |
---|
| 69 | pic=26.522 ! default value for pic |
---|
| 70 | call getin("pic",pic) |
---|
| 71 | largeur=10 ! default value for largeur |
---|
| 72 | call getin("largeur",largeur) |
---|
| 73 | hauteur=30 ! default value for hauteur |
---|
| 74 | call getin("hauteur",hauteur) |
---|
| 75 | |
---|
| 76 | c----------------------------------------------------------------------- |
---|
| 77 | c ichoice=1 temperature constante: |
---|
| 78 | c -------------------------------- |
---|
| 79 | |
---|
| 80 | IF(ichoice.EQ.1) THEN |
---|
| 81 | DO il=1,nlev |
---|
| 82 | temp(il)=tref |
---|
| 83 | ENDDO |
---|
| 84 | |
---|
| 85 | c----------------------------------------------------------------------- |
---|
| 86 | c ichoice=2 savidjari: |
---|
| 87 | c -------------------- |
---|
| 88 | |
---|
| 89 | ELSE IF(ichoice.EQ.2) THEN |
---|
| 90 | DO il=1,nlev |
---|
| 91 | temp(il)=AMAX1(219.-2.5*zkm(il),140.) |
---|
| 92 | ENDDO |
---|
| 93 | |
---|
| 94 | c----------------------------------------------------------------------- |
---|
| 95 | c ichoice=3 Lindner: |
---|
| 96 | c ------------------ |
---|
| 97 | |
---|
| 98 | ELSE IF(ichoice.EQ.3) THEN |
---|
| 99 | DO il=1,nlev |
---|
| 100 | IF(zkm(il).LT.2.5) THEN |
---|
| 101 | temp(il)=150.+30.*zkm(il)/2.5 |
---|
| 102 | ELSE IF(zkm(il).LT.5.) THEN |
---|
| 103 | temp(il)=180. |
---|
| 104 | ELSE |
---|
| 105 | temp(il)=AMAX1(180.-2.*(zkm(il)-5.),130.) |
---|
| 106 | ENDIF |
---|
| 107 | ENDDO |
---|
| 108 | |
---|
| 109 | c----------------------------------------------------------------------- |
---|
| 110 | c ichoice=4 Inversion pour Francois: |
---|
| 111 | c ------------------ |
---|
| 112 | |
---|
| 113 | ELSE IF(ichoice.EQ.4) THEN |
---|
| 114 | DO il=1,nlev |
---|
| 115 | IF(zkm(il).LT.20.) THEN |
---|
| 116 | temp(il)=135. |
---|
| 117 | ELSE |
---|
| 118 | temp(il)=AMIN1(135.+5.*(zkm(il)-20.),200.) |
---|
| 119 | ENDIF |
---|
| 120 | ENDDO |
---|
| 121 | |
---|
| 122 | |
---|
| 123 | c----------------------------------------------------------------------- |
---|
| 124 | c ichoice=5 Seiff: |
---|
| 125 | c ---------------- |
---|
| 126 | |
---|
| 127 | ELSE IF(ichoice.EQ.5) THEN |
---|
| 128 | DO il=1,nlev |
---|
| 129 | iseiff=INT(zkm(il)/2.)+1 |
---|
| 130 | IF(iseiff.LT.nseiff-1) THEN |
---|
| 131 | temp(il)=tseiff(iseiff)+(zkm(il)-2.*(iseiff-1))* |
---|
| 132 | $ (tseiff(iseiff+1)-tseiff(iseiff))/2. |
---|
| 133 | ELSE |
---|
| 134 | temp(il)=tseiff(nseiff) |
---|
| 135 | ENDIF |
---|
| 136 | ENDDO |
---|
| 137 | c IF(ichoice.EQ.6) THEN |
---|
| 138 | c DO iter=1,6 |
---|
| 139 | c t2=temp(1) |
---|
| 140 | c t3=temp(2) |
---|
| 141 | c DO il=2,nlev-1 |
---|
| 142 | c t1=t2 |
---|
| 143 | c t2=t3 |
---|
| 144 | c t3=temp(il+1) |
---|
| 145 | c ww=tanh(zkm(il)/20.) |
---|
| 146 | c ww=ww*ww*ww |
---|
| 147 | c temp(il)=t2+ww*.5*(t1-2.*t2+t3) |
---|
| 148 | c ENDDO |
---|
| 149 | c ENDDO |
---|
| 150 | c ENDIF |
---|
| 151 | |
---|
| 152 | c----------------------------------------------------------------------- |
---|
| 153 | c ichoice=6 |
---|
| 154 | c --------- |
---|
| 155 | |
---|
| 156 | ELSE IF(ichoice.EQ.6) THEN |
---|
| 157 | DO il=1,nlev |
---|
| 158 | tmp=il-pic |
---|
| 159 | temp(il)=tref + hauteur*exp(-tmp*tmp/largeur/largeur) |
---|
| 160 | ENDDO |
---|
| 161 | |
---|
| 162 | |
---|
| 163 | c----------------------------------------------------------------------- |
---|
| 164 | c ichoice=7 |
---|
| 165 | c --------- |
---|
| 166 | |
---|
| 167 | ELSE IF(ichoice.EQ.7) THEN |
---|
| 168 | DO il=1,nlev |
---|
| 169 | tmp=zkm(il)-pic |
---|
| 170 | temp(il)=tref + hauteur*exp(-tmp*tmp*4/largeur/largeur) |
---|
| 171 | ENDDO |
---|
| 172 | |
---|
| 173 | c----------------------------------------------------------------------- |
---|
| 174 | c ichoice=8 |
---|
| 175 | c --------- |
---|
| 176 | |
---|
[1150] | 177 | ! first value is surface temperature |
---|
| 178 | ! then profile of atmospheric temperature |
---|
[135] | 179 | ELSE IF(ichoice.GE.8) THEN |
---|
| 180 | OPEN(11,file='profile',status='old',form='formatted',err=101) |
---|
| 181 | DO il=1,nlev |
---|
| 182 | READ (11,*) temp(il) |
---|
| 183 | ENDDO |
---|
| 184 | |
---|
| 185 | GOTO 201 |
---|
| 186 | 101 STOP'fichier profile inexistant' |
---|
| 187 | 201 CONTINUE |
---|
| 188 | CLOSE(10) |
---|
| 189 | |
---|
| 190 | c----------------------------------------------------------------------- |
---|
| 191 | |
---|
| 192 | ENDIF |
---|
| 193 | |
---|
| 194 | c----------------------------------------------------------------------- |
---|
| 195 | c rajout eventuel d'une perturbation: |
---|
| 196 | c ----------------------------------- |
---|
| 197 | |
---|
| 198 | IF(isin.EQ.1) THEN |
---|
| 199 | pi=2.*ASIN(1.) |
---|
| 200 | DO il=1,nlev |
---|
| 201 | c if (nlev.EQ.501) then |
---|
| 202 | c if (zkm(il).LE.70.5) then |
---|
| 203 | c temp(il)=temp(il)+(1.-1000./(1000+zkm(il)*zkm(il)))*( |
---|
| 204 | c s 6.*SIN(zkm(il)*pi/6.)+9.*SIN(zkm(il)*pi/10.3) ) |
---|
| 205 | c endif |
---|
| 206 | c else |
---|
| 207 | temp(il)=temp(il)+(1.-1000./(1000+zkm(il)*zkm(il)))*( |
---|
| 208 | s 6.*SIN(zkm(il)*pi/6.)+9.*SIN(zkm(il)*pi/10.3) ) |
---|
| 209 | c endif |
---|
| 210 | ENDDO |
---|
| 211 | ENDIF |
---|
| 212 | |
---|
| 213 | |
---|
| 214 | c----------------------------------------------------------------------- |
---|
| 215 | c Ecriture du profil de temperature dans un fichier profile.out |
---|
| 216 | c ------------------------------------------------------------- |
---|
| 217 | |
---|
| 218 | |
---|
| 219 | OPEN(12,file='profile.out',form='formatted') |
---|
| 220 | DO il=1,nlev |
---|
| 221 | write(12,*) temp(il) |
---|
| 222 | ENDDO |
---|
| 223 | CLOSE(12) |
---|
| 224 | |
---|
| 225 | RETURN |
---|
| 226 | END |
---|