[630] | 1 | ! |
---|
| 2 | ! $Header$ |
---|
| 3 | ! |
---|
| 4 | c |
---|
| 5 | c |
---|
| 6 | SUBROUTINE iniacademic(nq,vcov,ucov,teta,q,masse,ps,phis,time_0) |
---|
| 7 | |
---|
| 8 | c%W% %G% |
---|
| 9 | c======================================================================= |
---|
| 10 | c |
---|
| 11 | c Author: Frederic Hourdin original: 15/01/93 |
---|
| 12 | c ------- |
---|
| 13 | c |
---|
| 14 | c Subject: |
---|
| 15 | c ------ |
---|
| 16 | c |
---|
| 17 | c Method: |
---|
| 18 | c -------- |
---|
| 19 | c |
---|
| 20 | c Interface: |
---|
| 21 | c ---------- |
---|
| 22 | c |
---|
| 23 | c Input: |
---|
| 24 | c ------ |
---|
| 25 | c |
---|
| 26 | c Output: |
---|
| 27 | c ------- |
---|
| 28 | c |
---|
| 29 | c======================================================================= |
---|
| 30 | IMPLICIT NONE |
---|
| 31 | c----------------------------------------------------------------------- |
---|
| 32 | c Declararations: |
---|
| 33 | c --------------- |
---|
| 34 | |
---|
| 35 | #include "dimensions.h" |
---|
| 36 | #include "paramet.h" |
---|
| 37 | #include "comvert.h" |
---|
| 38 | #include "comconst.h" |
---|
| 39 | #include "comgeom.h" |
---|
| 40 | #include "academic.h" |
---|
| 41 | #include "ener.h" |
---|
| 42 | #include "temps.h" |
---|
| 43 | #include "control.h" |
---|
| 44 | |
---|
| 45 | c Arguments: |
---|
| 46 | c ---------- |
---|
| 47 | |
---|
| 48 | integer nq |
---|
| 49 | real time_0 |
---|
| 50 | |
---|
| 51 | c variables dynamiques |
---|
| 52 | REAL vcov(ip1jm,llm),ucov(ip1jmp1,llm) ! vents covariants |
---|
| 53 | REAL teta(ip1jmp1,llm) ! temperature potentielle |
---|
| 54 | REAL q(ip1jmp1,llm,nq) ! champs advectes |
---|
| 55 | REAL ps(ip1jmp1) ! pression au sol |
---|
| 56 | REAL masse(ip1jmp1,llm) ! masse d'air |
---|
| 57 | REAL p (ip1jmp1,llmp1 ) ! pression aux interfac.des couches |
---|
| 58 | REAL pks(ip1jmp1) ! exner au sol |
---|
| 59 | REAL pk(ip1jmp1,llm) ! exner au milieu des couches |
---|
| 60 | REAL pkf(ip1jmp1,llm) ! exner filt.au milieu des couches |
---|
| 61 | REAL phis(ip1jmp1) ! geopotentiel au sol |
---|
| 62 | REAL phi(ip1jmp1,llm) ! geopotentiel |
---|
| 63 | |
---|
| 64 | |
---|
| 65 | |
---|
| 66 | |
---|
| 67 | |
---|
| 68 | c Local: |
---|
| 69 | c ------ |
---|
| 70 | |
---|
| 71 | REAL ddsin,tetarappelj,tetarappell,zsig |
---|
| 72 | real tetajl(jjp1,llm) |
---|
| 73 | INTEGER i,j,l,lsup,ij |
---|
| 74 | |
---|
| 75 | real zz,ran1 |
---|
| 76 | integer idum |
---|
| 77 | |
---|
| 78 | REAL alpha(ip1jmp1,llm),beta(ip1jmp1,llm),zdtvr |
---|
| 79 | |
---|
| 80 | c----------------------------------------------------------------------- |
---|
| 81 | |
---|
| 82 | c |
---|
| 83 | time_0=0. |
---|
| 84 | |
---|
| 85 | im = iim |
---|
| 86 | jm = jjm |
---|
| 87 | day_ini = 0 |
---|
| 88 | omeg = 4.*asin(1.)/86400. |
---|
| 89 | rad = 6371229. |
---|
| 90 | g = 9.8 |
---|
| 91 | daysec = 86400. |
---|
| 92 | dtvr = daysec/FLOAT(day_step) |
---|
| 93 | zdtvr=dtvr |
---|
| 94 | kappa = 0.2857143 |
---|
| 95 | cpp = 1004.70885 |
---|
| 96 | preff = 101325. |
---|
| 97 | pa = 50 000. |
---|
| 98 | etot0 = 0. |
---|
| 99 | ptot0 = 0. |
---|
| 100 | ztot0 = 0. |
---|
| 101 | stot0 = 0. |
---|
| 102 | ang0 = 0. |
---|
| 103 | pa = 0. |
---|
| 104 | |
---|
| 105 | CALL inicons0 |
---|
| 106 | CALL inigeom |
---|
| 107 | CALL inifilr |
---|
| 108 | |
---|
| 109 | ps=0. |
---|
| 110 | phis=0. |
---|
| 111 | c--------------------------------------------------------------------- |
---|
| 112 | |
---|
| 113 | taurappel=10.*daysec |
---|
| 114 | |
---|
| 115 | c--------------------------------------------------------------------- |
---|
| 116 | c Calcul de la temperature potentielle : |
---|
| 117 | c -------------------------------------- |
---|
| 118 | |
---|
| 119 | DO l=1,llm |
---|
| 120 | zsig=ap(l)/preff+bp(l) |
---|
| 121 | if (zsig.gt.0.3) then |
---|
| 122 | lsup=l |
---|
| 123 | tetarappell=1./8.*(-log(zsig)-.5) |
---|
| 124 | DO j=1,jjp1 |
---|
| 125 | ddsin=sin(rlatu(j))-sin(pi/20.) |
---|
| 126 | tetajl(j,l)=300.*(1+1./18.*(1.-3.*ddsin*ddsin)+tetarappell) |
---|
| 127 | ENDDO |
---|
| 128 | else |
---|
| 129 | c Choix isotherme au-dessus de 300 mbar |
---|
| 130 | do j=1,jjp1 |
---|
| 131 | tetajl(j,l)=tetajl(j,lsup)*(0.3/zsig)**kappa |
---|
| 132 | enddo |
---|
| 133 | endif |
---|
| 134 | ENDDO |
---|
| 135 | |
---|
| 136 | do l=1,llm |
---|
| 137 | do j=1,jjp1 |
---|
| 138 | do i=1,iip1 |
---|
| 139 | ij=(j-1)*iip1+i |
---|
| 140 | tetarappel(ij,l)=tetajl(j,l) |
---|
| 141 | enddo |
---|
| 142 | enddo |
---|
| 143 | enddo |
---|
| 144 | |
---|
| 145 | c call dump2d(jjp1,llm,tetajl,'TEQ ') |
---|
| 146 | |
---|
| 147 | ps=1.e5 |
---|
| 148 | phis=0. |
---|
| 149 | CALL pression ( ip1jmp1, ap, bp, ps, p ) |
---|
| 150 | CALL exner_hyb( ip1jmp1, ps, p,alpha,beta, pks, pk, pkf ) |
---|
| 151 | CALL massdair(p,masse) |
---|
| 152 | |
---|
| 153 | c intialisation du vent et de la temperature |
---|
| 154 | teta(:,:)=tetarappel(:,:) |
---|
| 155 | CALL geopot(ip1jmp1,teta,pk,pks,phis,phi) |
---|
| 156 | call ugeostr(phi,ucov) |
---|
| 157 | vcov=0. |
---|
| 158 | q(:,:,1 )=1.e-10 |
---|
| 159 | q(:,:,2 )=1.e-15 |
---|
| 160 | q(:,:,3:nq)=0. |
---|
| 161 | |
---|
| 162 | |
---|
| 163 | c perturbation al\351atoire sur la temp\351rature |
---|
| 164 | idum = -1 |
---|
| 165 | zz = ran1(idum) |
---|
| 166 | idum = 0 |
---|
| 167 | do l=1,llm |
---|
| 168 | do ij=iip2,ip1jm |
---|
| 169 | teta(ij,l)=teta(ij,l)*(1.+0.005*ran1(idum)) |
---|
| 170 | enddo |
---|
| 171 | enddo |
---|
| 172 | |
---|
| 173 | do l=1,llm |
---|
| 174 | do ij=1,ip1jmp1,iip1 |
---|
| 175 | teta(ij+iim,l)=teta(ij,l) |
---|
| 176 | enddo |
---|
| 177 | enddo |
---|
| 178 | |
---|
| 179 | |
---|
| 180 | |
---|
| 181 | c PRINT *,' Appel test_period avec tetarappel ' |
---|
| 182 | c CALL test_period ( ucov,vcov,tetarappel,q,p,phis ) |
---|
| 183 | c PRINT *,' Appel test_period avec teta ' |
---|
| 184 | c CALL test_period ( ucov,vcov,teta,q,p,phis ) |
---|
| 185 | |
---|
| 186 | c initialisation d'un traceur sur une colonne |
---|
| 187 | j=jjp1*3/4 |
---|
| 188 | i=iip1/2 |
---|
| 189 | ij=(j-1)*iip1+i |
---|
| 190 | q(ij,:,3)=1. |
---|
| 191 | |
---|
| 192 | return |
---|
| 193 | END |
---|
| 194 | c----------------------------------------------------------------------- |
---|