[3] | 1 | SUBROUTINE profile(unit,nlev,dzst,temp) |
---|
| 2 | IMPLICIT NONE |
---|
| 3 | c======================================================================= |
---|
[887] | 4 | c Subroutine utilisee dans le modele 1-D "rcm1d" |
---|
[3] | 5 | c pour l'initialisation du profil atmospherique |
---|
| 6 | c======================================================================= |
---|
| 7 | c |
---|
[887] | 8 | c VERSION VENUS |
---|
| 9 | c |
---|
[3] | 10 | c differents profils d'atmospheres. T=f(z) |
---|
| 11 | c entree: |
---|
[894] | 12 | c unit unite de lecture de "rcm1d.def" |
---|
[3] | 13 | c nlev nombre de niveaux (nlev=llm+1, surf + couches 1 a llm) |
---|
| 14 | c dzst dz/T (avec dz = epaisseur de la couche en m) |
---|
| 15 | c ichoice choix de l'atmosphere: |
---|
| 16 | c 1 Temperature constante |
---|
| 17 | c 2 profil VIRA lisse |
---|
| 18 | c 3 |
---|
| 19 | c 4 |
---|
| 20 | c 5 |
---|
| 21 | c 6 T constante + perturbation gauss (level) (christophe 10/98) |
---|
| 22 | c 7 T constante + perturbation gauss (km) (christophe 10/98) |
---|
| 23 | c 8 Lecture du profile dans un fichier ASCII (profile) |
---|
| 24 | c tref temperature de reference |
---|
| 25 | c isin ajout d'une perturbation (isin=1) |
---|
| 26 | c pic pic perturbation gauss pour ichoice = 6 ou 7 |
---|
| 27 | c largeur largeur de la perturbation gauss pour ichoice = 6 ou 7 |
---|
| 28 | c hauteur hauteur de la perturbation gauss pour ichoice = 6 ou 7 |
---|
| 29 | c |
---|
| 30 | c sortie: |
---|
| 31 | c temp temperatures en K |
---|
| 32 | c |
---|
| 33 | c======================================================================= |
---|
| 34 | c----------------------------------------------------------------------- |
---|
| 35 | c declarations: |
---|
| 36 | c ------------- |
---|
| 37 | |
---|
| 38 | c arguments: |
---|
| 39 | c ---------- |
---|
| 40 | |
---|
| 41 | INTEGER nlev, unit |
---|
| 42 | REAL dzst(nlev),temp(nlev) |
---|
| 43 | |
---|
| 44 | c local: |
---|
| 45 | c ------ |
---|
| 46 | |
---|
| 47 | INTEGER il,ichoice,isin,iter |
---|
| 48 | REAL pi |
---|
| 49 | REAL tref,t1,t2,t3,ww |
---|
| 50 | REAL pic,largeur |
---|
| 51 | REAL hauteur,tmp |
---|
| 52 | REAL zkm(nlev) ! altitude en km |
---|
| 53 | |
---|
| 54 | isin = 0 |
---|
| 55 | |
---|
| 56 | c----------------------------------------------------------------------- |
---|
| 57 | c choix du profil: |
---|
| 58 | c ---------------- |
---|
| 59 | |
---|
[887] | 60 | c la lecture se fait dans le rcm1d.def, ouvert par rcm1d.F |
---|
[3] | 61 | READ(unit,*) |
---|
| 62 | READ(unit,*) |
---|
| 63 | READ(unit,*) |
---|
| 64 | READ(unit,*) ichoice |
---|
| 65 | READ(unit,*) tref |
---|
| 66 | READ(unit,*) isin |
---|
| 67 | READ(unit,*) pic |
---|
| 68 | READ(unit,*) largeur |
---|
| 69 | READ(unit,*) hauteur |
---|
| 70 | |
---|
| 71 | c----------------------------------------------------------------------- |
---|
| 72 | c ichoice=1 temperature constante: |
---|
| 73 | c -------------------------------- |
---|
| 74 | |
---|
| 75 | IF(ichoice.EQ.1) THEN |
---|
| 76 | temp(1) = tref |
---|
| 77 | zkm(1) = 0.0 |
---|
| 78 | DO il=2,nlev |
---|
| 79 | temp(il)= tref |
---|
| 80 | zkm(il) = zkm(il-1)+temp(il)*dzst(il)/1000. |
---|
| 81 | ENDDO |
---|
| 82 | |
---|
| 83 | c----------------------------------------------------------------------- |
---|
| 84 | c ichoice=2 VIRA lisse: |
---|
| 85 | c --------------------- |
---|
| 86 | |
---|
| 87 | ELSE IF(ichoice.EQ.2) THEN |
---|
| 88 | temp(1) = 735. |
---|
| 89 | zkm(1) = 0.0 |
---|
| 90 | DO il=2,nlev |
---|
| 91 | zkm(il) = zkm(il-1)+temp(il-1)*dzst(il)/1000. ! approx avec T(l-1) |
---|
| 92 | if(zkm(il).lt.60.) then |
---|
| 93 | temp(il)=735.-7.95*zkm(il) |
---|
| 94 | else |
---|
| 95 | temp(il)=AMAX1(258.-3.*(zkm(il)-60.),168.) |
---|
| 96 | endif |
---|
| 97 | zkm(il) = zkm(il-1)+(temp(il-1)+temp(il))/2.*dzst(il)/1000. |
---|
| 98 | ENDDO |
---|
| 99 | |
---|
| 100 | c----------------------------------------------------------------------- |
---|
| 101 | c ichoice=3 VIRA lisse - 135K: |
---|
| 102 | c ---------------------------- |
---|
| 103 | |
---|
| 104 | ELSE IF(ichoice.EQ.3) THEN |
---|
| 105 | temp(1) = 600. |
---|
| 106 | zkm(1) = 0.0 |
---|
| 107 | DO il=2,nlev |
---|
| 108 | zkm(il) = zkm(il-1)+temp(il-1)*dzst(il)/1000. ! approx avec T(l-1) |
---|
| 109 | temp(il)=AMAX1(600.-7.95*zkm(il),168.) |
---|
| 110 | zkm(il) = zkm(il-1)+(temp(il-1)+temp(il))/2.*dzst(il)/1000. |
---|
| 111 | ENDDO |
---|
| 112 | |
---|
| 113 | c----------------------------------------------------------------------- |
---|
| 114 | c ichoice=4 : |
---|
| 115 | c ------------------ |
---|
| 116 | |
---|
| 117 | ELSE IF(ichoice.EQ.4) THEN |
---|
| 118 | print*,"Cas non defini..." |
---|
| 119 | print*,"Stop dans profile.F" |
---|
| 120 | STOP |
---|
| 121 | |
---|
| 122 | c----------------------------------------------------------------------- |
---|
| 123 | c ichoice=5 : |
---|
| 124 | c ---------------- |
---|
| 125 | |
---|
| 126 | ELSE IF(ichoice.EQ.5) THEN |
---|
| 127 | print*,"Cas non defini..." |
---|
| 128 | print*,"Stop dans profile.F" |
---|
| 129 | STOP |
---|
| 130 | |
---|
| 131 | c----------------------------------------------------------------------- |
---|
| 132 | c ichoice=6 |
---|
| 133 | c --------- |
---|
| 134 | |
---|
| 135 | ELSE IF(ichoice.EQ.6) THEN |
---|
| 136 | temp(1) = tref |
---|
| 137 | zkm(1) = 0.0 |
---|
| 138 | DO il=2,nlev |
---|
| 139 | tmp=il-pic |
---|
| 140 | temp(il)= tref + hauteur*exp(-tmp*tmp/largeur/largeur) |
---|
| 141 | zkm(il) = zkm(il-1)+temp(il)*dzst(il)/1000. |
---|
| 142 | ENDDO |
---|
| 143 | |
---|
| 144 | |
---|
| 145 | c----------------------------------------------------------------------- |
---|
| 146 | c ichoice=7 |
---|
| 147 | c --------- |
---|
| 148 | |
---|
| 149 | ELSE IF(ichoice.EQ.7) THEN |
---|
| 150 | temp(1) = tref |
---|
| 151 | zkm(1) = 0.0 |
---|
| 152 | DO il=2,nlev |
---|
| 153 | zkm(il) = zkm(il-1)+tref*dzst(il)/1000. ! approx |
---|
| 154 | tmp=zkm(il)-pic |
---|
| 155 | temp(il)= tref + hauteur*exp(-tmp*tmp*4/largeur/largeur) |
---|
| 156 | zkm(il) = zkm(il-1)+(temp(il-1)+temp(il))/2.*dzst(il)/1000. |
---|
| 157 | ENDDO |
---|
| 158 | |
---|
| 159 | c----------------------------------------------------------------------- |
---|
| 160 | c ichoice=8 |
---|
| 161 | c --------- |
---|
| 162 | |
---|
| 163 | ELSE IF(ichoice.GE.8) THEN |
---|
| 164 | OPEN(11,file='profile',status='old',form='formatted',err=101) |
---|
| 165 | DO il=1,nlev |
---|
| 166 | READ (11,*) temp(il) |
---|
| 167 | ENDDO |
---|
| 168 | zkm(1) = 0.0 |
---|
| 169 | DO il=2,nlev |
---|
| 170 | zkm(il) = zkm(il-1)+(temp(il-1)+temp(il))/2.*dzst(il)/1000. |
---|
| 171 | ENDDO |
---|
| 172 | |
---|
| 173 | GOTO 201 |
---|
| 174 | 101 STOP'fichier profile inexistant' |
---|
| 175 | 201 CONTINUE |
---|
| 176 | CLOSE(10) |
---|
| 177 | |
---|
| 178 | c----------------------------------------------------------------------- |
---|
| 179 | |
---|
| 180 | ENDIF |
---|
| 181 | |
---|
| 182 | c----------------------------------------------------------------------- |
---|
| 183 | c rajout eventuel d'une perturbation: |
---|
| 184 | c ----------------------------------- |
---|
| 185 | |
---|
| 186 | IF(isin.EQ.1) THEN |
---|
| 187 | pi=2.*ASIN(1.) |
---|
| 188 | DO il=1,nlev |
---|
| 189 | temp(il)=temp(il)+(1.-1000./(1000+zkm(il)*zkm(il)))*( |
---|
| 190 | s 6.*SIN(zkm(il)*pi/6.)+9.*SIN(zkm(il)*pi/10.3) ) |
---|
| 191 | ENDDO |
---|
| 192 | ENDIF |
---|
| 193 | |
---|
| 194 | |
---|
| 195 | c----------------------------------------------------------------------- |
---|
| 196 | c Ecriture du profil de temperature dans un fichier profile.out |
---|
| 197 | c ------------------------------------------------------------- |
---|
| 198 | |
---|
| 199 | |
---|
| 200 | c OPEN(12,file='profile.out') |
---|
| 201 | c DO il=1,nlev |
---|
| 202 | c write(12,*) temp(il) |
---|
| 203 | c write(12,*) temp(il),zkm(il) |
---|
| 204 | c ENDDO |
---|
| 205 | c CLOSE(12) |
---|
| 206 | |
---|
| 207 | RETURN |
---|
| 208 | END |
---|