[8] | 1 | ! ADAPTATION GCM POUR CP(T) |
---|
| 2 | c====================================================================== |
---|
| 3 | c S. Lebonnois, 10/2010 |
---|
| 4 | c |
---|
| 5 | c Cp doit être calculé par cpdet(t) pour être valable partout |
---|
| 6 | c |
---|
| 7 | c La fonction d'Exner reste pk = RCPD*(play/pref)**RKAPPA |
---|
| 8 | c (RCPD=cpp, RKAPPA=kappa) |
---|
| 9 | c |
---|
| 10 | c On passe de T a teta (temperature potentielle) par t2tpot(t,teta,pk) |
---|
| 11 | c On passe de teta a T par tpot2t(teta,t,pk) |
---|
| 12 | c |
---|
| 13 | c====================================================================== |
---|
| 14 | |
---|
| 15 | SUBROUTINE ini_cpdet |
---|
[37] | 16 | |
---|
| 17 | USE control_mod, ONLY: planet_type |
---|
[8] | 18 | IMPLICIT none |
---|
| 19 | c====================================================================== |
---|
| 20 | c Initialisation de nu_venus et t0_venus |
---|
| 21 | c====================================================================== |
---|
| 22 | |
---|
| 23 | ! for cpp, nu_venus and t0_venus: |
---|
| 24 | #include "comconst.h" |
---|
| 25 | |
---|
| 26 | if (planet_type.eq."venus") then |
---|
| 27 | nu_venus=0.35 |
---|
| 28 | t0_venus=460. |
---|
| 29 | else |
---|
| 30 | nu_venus=0. |
---|
| 31 | t0_venus=0. |
---|
| 32 | endif |
---|
| 33 | |
---|
| 34 | return |
---|
| 35 | end |
---|
| 36 | |
---|
| 37 | c====================================================================== |
---|
| 38 | c====================================================================== |
---|
| 39 | |
---|
| 40 | FUNCTION cpdet(t) |
---|
[37] | 41 | |
---|
| 42 | USE control_mod, ONLY: planet_type |
---|
[8] | 43 | IMPLICIT none |
---|
| 44 | |
---|
| 45 | ! for cpp, nu_venus and t0_venus: |
---|
| 46 | #include "comconst.h" |
---|
| 47 | |
---|
| 48 | real cpdet,t |
---|
| 49 | |
---|
| 50 | if (planet_type.eq."venus") then |
---|
| 51 | cpdet = cpp*(t/t0_venus)**nu_venus |
---|
| 52 | else |
---|
| 53 | cpdet = cpp |
---|
| 54 | endif |
---|
| 55 | |
---|
| 56 | return |
---|
| 57 | end |
---|
| 58 | |
---|
| 59 | c====================================================================== |
---|
| 60 | c====================================================================== |
---|
| 61 | |
---|
| 62 | SUBROUTINE t2tpot(npoints, yt, yteta, ypk) |
---|
| 63 | c====================================================================== |
---|
| 64 | c Arguments: |
---|
| 65 | c |
---|
| 66 | c yt --------input-R- Temperature |
---|
| 67 | c yteta-------output-R- Temperature potentielle |
---|
| 68 | c ypk --------input-R- Fonction d'Exner: RCPD*(pplay/pref)**RKAPPA |
---|
| 69 | c |
---|
| 70 | c====================================================================== |
---|
| 71 | |
---|
[37] | 72 | USE control_mod, ONLY: planet_type |
---|
| 73 | IMPLICIT NONE |
---|
| 74 | |
---|
[8] | 75 | ! for cpp, nu_venus and t0_venus: |
---|
| 76 | #include "comconst.h" |
---|
| 77 | |
---|
| 78 | integer npoints |
---|
| 79 | REAL yt(npoints), yteta(npoints), ypk(npoints) |
---|
| 80 | |
---|
| 81 | if (planet_type.eq."venus") then |
---|
| 82 | yteta = yt**nu_venus & |
---|
| 83 | & - nu_venus * t0_venus**nu_venus * log(ypk/cpp) |
---|
| 84 | yteta = yteta**(1./nu_venus) |
---|
| 85 | else |
---|
| 86 | yteta = yt * cpp/ypk |
---|
| 87 | endif |
---|
| 88 | |
---|
| 89 | return |
---|
| 90 | end |
---|
| 91 | |
---|
| 92 | c====================================================================== |
---|
| 93 | c====================================================================== |
---|
| 94 | |
---|
[953] | 95 | SUBROUTINE t2tpot_p(nlon,nlev, yt, yteta, ypk) |
---|
[8] | 96 | ! Parallel version of t2tpot |
---|
| 97 | USE parallel |
---|
| 98 | USE control_mod, only : planet_type |
---|
| 99 | IMPLICIT none |
---|
| 100 | |
---|
| 101 | ! for cpp, nu_venus and t0_venus: |
---|
| 102 | #include "comconst.h" |
---|
| 103 | |
---|
[953] | 104 | integer,intent(in) :: nlon,nlev |
---|
| 105 | real,intent(in) :: yt(nlon,nlev) |
---|
| 106 | real,intent(out) :: yteta(nlon,nlev) |
---|
| 107 | real,intent(in) :: ypk(nlon,nlev) |
---|
[8] | 108 | ! local variable: |
---|
[953] | 109 | integer :: l |
---|
[8] | 110 | |
---|
| 111 | if (planet_type.eq."venus") then |
---|
[953] | 112 | do l=1,nlev |
---|
| 113 | yteta(:,l)=yt(:,l)**nu_venus & |
---|
[8] | 114 | & -nu_venus*t0_venus**nu_venus* & |
---|
[953] | 115 | & log(ypk(:,l)/cpp) |
---|
| 116 | yteta(:,l)=yteta(:,l)**(1./nu_venus) |
---|
[8] | 117 | enddo |
---|
| 118 | else |
---|
[953] | 119 | do l=1,nlev |
---|
| 120 | yteta(:,l)=yt(:,l)*cpp/ypk(:,l) |
---|
[8] | 121 | enddo |
---|
| 122 | endif ! of if (planet_type.eq."venus") |
---|
| 123 | |
---|
| 124 | END |
---|
| 125 | |
---|
| 126 | c====================================================================== |
---|
| 127 | |
---|
| 128 | SUBROUTINE tpot2t(npoints,yteta, yt, ypk) |
---|
| 129 | c====================================================================== |
---|
| 130 | c Arguments: |
---|
| 131 | c |
---|
| 132 | c yteta--------input-R- Temperature potentielle |
---|
| 133 | c yt -------output-R- Temperature |
---|
| 134 | c ypk --------input-R- Fonction d'Exner: RCPD*(pplay/pref)**RKAPPA |
---|
| 135 | c |
---|
| 136 | c====================================================================== |
---|
| 137 | |
---|
[37] | 138 | USE control_mod, ONLY: planet_type |
---|
| 139 | IMPLICIT NONE |
---|
[8] | 140 | |
---|
| 141 | ! for cpp, nu_venus and t0_venus: |
---|
| 142 | #include "comconst.h" |
---|
| 143 | |
---|
| 144 | integer npoints |
---|
| 145 | REAL yt(npoints), yteta(npoints), ypk(npoints) |
---|
| 146 | |
---|
| 147 | if (planet_type.eq."venus") then |
---|
| 148 | yt = yteta**nu_venus & |
---|
| 149 | & + nu_venus * t0_venus**nu_venus * log(ypk/cpp) |
---|
| 150 | yt = yt**(1./nu_venus) |
---|
| 151 | else |
---|
| 152 | yt = yteta * ypk/cpp |
---|
| 153 | endif |
---|
| 154 | |
---|
| 155 | return |
---|
| 156 | end |
---|
| 157 | |
---|
| 158 | c====================================================================== |
---|
| 159 | c====================================================================== |
---|
[953] | 160 | SUBROUTINE tpot2t_p(nlon,nlev,yteta,yt,ypk) |
---|
[8] | 161 | ! Parallel version of tpot2t |
---|
| 162 | USE parallel |
---|
| 163 | USE control_mod, only : planet_type |
---|
| 164 | IMPLICIT none |
---|
| 165 | ! for cpp, nu_venus and t0_venus: |
---|
| 166 | #include "comconst.h" |
---|
| 167 | |
---|
[953] | 168 | integer,intent(in) :: nlon,nlev |
---|
| 169 | real,intent(out) :: yt(nlon,nlev) |
---|
| 170 | real,intent(in) :: yteta(nlon,nlev) |
---|
| 171 | real,intent(in) :: ypk(nlon,nlev) |
---|
[847] | 172 | |
---|
[8] | 173 | ! local variable: |
---|
[953] | 174 | integer :: l |
---|
[8] | 175 | |
---|
| 176 | if (planet_type.eq."venus") then |
---|
[953] | 177 | do l=1,nlev |
---|
| 178 | yt(:,l)=yteta(:,l)**nu_venus & |
---|
[8] | 179 | & +nu_venus*t0_venus**nu_venus* & |
---|
[953] | 180 | & log(ypk(:,l)/cpp) |
---|
| 181 | yt(:,l)=yt(:,l)**(1./nu_venus) |
---|
[8] | 182 | enddo |
---|
| 183 | else |
---|
[953] | 184 | do l=1,nlev |
---|
| 185 | yt(:,l)=yteta(:,l)*ypk(:,l)/cpp |
---|
[8] | 186 | enddo |
---|
| 187 | endif ! of if (planet_type.eq."venus") |
---|
| 188 | END |
---|
| 189 | |
---|
| 190 | c====================================================================== |
---|
| 191 | c====================================================================== |
---|
| 192 | c |
---|
| 193 | c ATTENTION |
---|
| 194 | c |
---|
| 195 | c Si un jour on a besoin, il faudra coder les routines |
---|
| 196 | c dt2dtpot / dtpto2dt |
---|
| 197 | c |
---|
| 198 | c====================================================================== |
---|
| 199 | c====================================================================== |
---|