[524] | 1 | ! |
---|
[1999] | 2 | ! $Id: caldyn.F 1999 2014-03-20 09:57:19Z fhourdin $ |
---|
[524] | 3 | ! |
---|
| 4 | SUBROUTINE caldyn |
---|
| 5 | $ (itau,ucov,vcov,teta,ps,masse,pk,pkf,phis , |
---|
| 6 | $ phi,conser,du,dv,dteta,dp,w,pbaru,pbarv,time ) |
---|
| 7 | |
---|
| 8 | IMPLICIT NONE |
---|
| 9 | |
---|
[1999] | 10 | !======================================================================= |
---|
| 11 | ! |
---|
| 12 | ! Auteur : P. Le Van |
---|
| 13 | ! |
---|
| 14 | ! Objet: |
---|
| 15 | ! ------ |
---|
| 16 | ! |
---|
| 17 | ! Calcul des tendances dynamiques. |
---|
| 18 | ! |
---|
| 19 | ! Modif 04/93 F.Forget |
---|
| 20 | !======================================================================= |
---|
[524] | 21 | |
---|
[1999] | 22 | !----------------------------------------------------------------------- |
---|
| 23 | ! 0. Declarations: |
---|
| 24 | ! ---------------- |
---|
[524] | 25 | |
---|
| 26 | #include "dimensions.h" |
---|
| 27 | #include "paramet.h" |
---|
| 28 | #include "comconst.h" |
---|
| 29 | #include "comvert.h" |
---|
| 30 | #include "comgeom.h" |
---|
| 31 | |
---|
[1999] | 32 | ! Arguments: |
---|
| 33 | ! ---------- |
---|
[524] | 34 | |
---|
[1999] | 35 | LOGICAL,INTENT(IN) :: conser ! triggers printing some diagnostics |
---|
| 36 | INTEGER,INTENT(IN) :: itau ! time step index |
---|
| 37 | REAL,INTENT(IN) :: vcov(ip1jm,llm) ! covariant meridional wind |
---|
| 38 | REAL,INTENT(IN) :: ucov(ip1jmp1,llm) ! covariant zonal wind |
---|
| 39 | REAL,INTENT(IN) :: teta(ip1jmp1,llm) ! potential temperature |
---|
| 40 | REAL,INTENT(IN) :: ps(ip1jmp1) ! surface pressure |
---|
| 41 | REAL,INTENT(IN) :: phis(ip1jmp1) ! geopotential at the surface |
---|
| 42 | REAL,INTENT(IN) :: pk(ip1jmp1,llm) ! Exner at mid-layer |
---|
| 43 | REAL,INTENT(IN) :: pkf(ip1jmp1,llm) ! filtered Exner |
---|
| 44 | REAL,INTENT(IN) :: phi(ip1jmp1,llm) ! geopotential |
---|
| 45 | REAL,INTENT(OUT) :: masse(ip1jmp1,llm) ! air mass |
---|
| 46 | REAL,INTENT(OUT) :: dv(ip1jm,llm) ! tendency on vcov |
---|
| 47 | REAL,INTENT(OUT) :: du(ip1jmp1,llm) ! tendency on ucov |
---|
| 48 | REAL,INTENT(OUT) :: dteta(ip1jmp1,llm) ! tenddency on teta |
---|
| 49 | REAL,INTENT(OUT) :: dp(ip1jmp1) ! tendency on ps |
---|
| 50 | REAL,INTENT(OUT) :: w(ip1jmp1,llm) ! vertical velocity |
---|
| 51 | REAL,INTENT(OUT) :: pbaru(ip1jmp1,llm) ! mass flux in the zonal direction |
---|
| 52 | REAL,INTENT(OUT) :: pbarv(ip1jm,llm) ! mass flux in the meridional direction |
---|
| 53 | REAL,INTENT(IN) :: time ! current time |
---|
[524] | 54 | |
---|
[1999] | 55 | ! Local: |
---|
| 56 | ! ------ |
---|
| 57 | |
---|
[524] | 58 | REAL vcont(ip1jm,llm),ucont(ip1jmp1,llm) |
---|
| 59 | REAL ang(ip1jmp1,llm),p(ip1jmp1,llmp1) |
---|
| 60 | REAL massebx(ip1jmp1,llm),masseby(ip1jm,llm),psexbarxy(ip1jm) |
---|
| 61 | REAL vorpot(ip1jm,llm) |
---|
[1999] | 62 | REAL ecin(ip1jmp1,llm),convm(ip1jmp1,llm) |
---|
[524] | 63 | REAL bern(ip1jmp1,llm) |
---|
| 64 | REAL massebxy(ip1jm,llm) |
---|
| 65 | |
---|
| 66 | |
---|
| 67 | INTEGER ij,l |
---|
| 68 | |
---|
[1999] | 69 | !----------------------------------------------------------------------- |
---|
| 70 | ! Compute dynamical tendencies: |
---|
| 71 | !-------------------------------- |
---|
[524] | 72 | |
---|
[1999] | 73 | ! compute contravariant winds ucont() and vcont |
---|
[524] | 74 | CALL covcont ( llm , ucov , vcov , ucont, vcont ) |
---|
[1999] | 75 | ! compute pressure p() |
---|
[524] | 76 | CALL pression ( ip1jmp1, ap , bp , ps , p ) |
---|
[1999] | 77 | ! compute psexbarxy() XY-area weighted-averaged surface pressure (what for?) |
---|
[524] | 78 | CALL psextbar ( ps , psexbarxy ) |
---|
[1999] | 79 | ! compute mass in each atmospheric mesh: masse() |
---|
[524] | 80 | CALL massdair ( p , masse ) |
---|
[1999] | 81 | ! compute X and Y-averages of mass, massebx() and masseby() |
---|
[524] | 82 | CALL massbar ( masse, massebx , masseby ) |
---|
[1999] | 83 | ! compute XY-average of mass, massebxy() |
---|
[524] | 84 | call massbarxy( masse, massebxy ) |
---|
[1999] | 85 | ! compute mass fluxes pbaru() and pbarv() |
---|
[524] | 86 | CALL flumass ( massebx, masseby , vcont, ucont ,pbaru, pbarv ) |
---|
[1999] | 87 | ! compute dteta() , horizontal converging flux of theta |
---|
[524] | 88 | CALL dteta1 ( teta , pbaru , pbarv, dteta ) |
---|
[1999] | 89 | ! compute convm(), horizontal converging flux of mass |
---|
[524] | 90 | CALL convmas ( pbaru, pbarv , convm ) |
---|
| 91 | |
---|
[1999] | 92 | ! compute pressure variation due to mass convergence |
---|
[524] | 93 | DO ij =1, ip1jmp1 |
---|
| 94 | dp( ij ) = convm( ij,1 ) / airesurg( ij ) |
---|
| 95 | ENDDO |
---|
| 96 | |
---|
[1999] | 97 | ! compute vertical velocity w() |
---|
[524] | 98 | CALL vitvert ( convm , w ) |
---|
[1999] | 99 | ! compute potential vorticity vorpot() |
---|
[524] | 100 | CALL tourpot ( vcov , ucov , massebxy , vorpot ) |
---|
[1999] | 101 | ! compute rotation induced du() and dv() |
---|
[524] | 102 | CALL dudv1 ( vorpot , pbaru , pbarv , du , dv ) |
---|
[1999] | 103 | ! compute kinetic energy ecin() |
---|
[524] | 104 | CALL enercin ( vcov , ucov , vcont , ucont , ecin ) |
---|
[1999] | 105 | ! compute Bernouilli function bern() |
---|
[524] | 106 | CALL bernoui ( ip1jmp1, llm , phi , ecin , bern ) |
---|
[1999] | 107 | ! compute and add du() and dv() contributions from Bernouilli and pressure |
---|
[524] | 108 | CALL dudv2 ( teta , pkf , bern , du , dv ) |
---|
| 109 | |
---|
| 110 | |
---|
| 111 | DO l=1,llm |
---|
| 112 | DO ij=1,ip1jmp1 |
---|
| 113 | ang(ij,l) = ucov(ij,l) + constang(ij) |
---|
[1999] | 114 | ENDDO |
---|
[524] | 115 | ENDDO |
---|
| 116 | |
---|
[1999] | 117 | ! compute vertical advection contributions to du(), dv() and dteta() |
---|
[524] | 118 | CALL advect( ang, vcov, teta, w, massebx, masseby, du, dv,dteta ) |
---|
| 119 | |
---|
[1999] | 120 | ! WARNING probleme de peridocite de dv sur les PC/linux. Pb d'arrondi |
---|
| 121 | ! probablement. Observe sur le code compile avec pgf90 3.0-1 |
---|
[524] | 122 | |
---|
| 123 | DO l = 1, llm |
---|
| 124 | DO ij = 1, ip1jm, iip1 |
---|
| 125 | IF( dv(ij,l).NE.dv(ij+iim,l) ) THEN |
---|
[1999] | 126 | ! PRINT *,'!!!ATTENTION!!! probleme de periodicite sur vcov', |
---|
| 127 | ! , ' dans caldyn' |
---|
| 128 | ! PRINT *,' l, ij = ', l, ij, ij+iim,dv(ij+iim,l),dv(ij,l) |
---|
[524] | 129 | dv(ij+iim,l) = dv(ij,l) |
---|
[1999] | 130 | ENDIF |
---|
| 131 | ENDDO |
---|
| 132 | ENDDO |
---|
[524] | 133 | |
---|
[1999] | 134 | !----------------------------------------------------------------------- |
---|
| 135 | ! Output some control variables: |
---|
| 136 | !--------------------------------- |
---|
| 137 | |
---|
[524] | 138 | IF( conser ) THEN |
---|
| 139 | CALL sortvarc |
---|
[1999] | 140 | & ( itau,ucov,teta,ps,masse,pk,phis,vorpot,phi,bern,dp,time,vcov ) |
---|
[524] | 141 | ENDIF |
---|
| 142 | |
---|
| 143 | END |
---|