1 | ! ADAPTATION GCM POUR CP(T) |
---|
2 | c====================================================================== |
---|
3 | c S. Lebonnois, 10/2007: |
---|
4 | c |
---|
5 | c VENUS: Cp(T) = cpp*(T/T0)^nu |
---|
6 | c avec T0=460. et nu=0.35 |
---|
7 | c cpp=RCPD=cp0 = 1000. |
---|
8 | c R/RCPD = RKAPPA |
---|
9 | c |
---|
10 | c La fonction d'Exner reste pk = RCPD*(play/pref)**RKAPPA |
---|
11 | c |
---|
12 | c T et teta (temperature potentielle) sont liees par: |
---|
13 | c |
---|
14 | c integrale[teta a T](cp/T dT) = integrale[pref a p](R/p dp) |
---|
15 | c |
---|
16 | c Dans le cas de l'expression pour Venus, ca donne: |
---|
17 | c |
---|
18 | c teta**nu = T**nu - nu * T0**nu * ln[ (p/pref)**RKAPPA ] |
---|
19 | c ou |
---|
20 | c teta**nu = T**nu - nu * T0**nu * ln[pk/RCPD] |
---|
21 | c |
---|
22 | c On passe de T a teta par t2tpot(t,teta,pk) |
---|
23 | c On passe de teta a T par tpot2t(teta,t,pk) |
---|
24 | c |
---|
25 | c Pour DT <-> Dteta, on utilise: dteta = dT *(T/teta)**(nu-1) |
---|
26 | c -> routine dt2dtpot(dt,dteta,t,teta) |
---|
27 | c (utilisee seulement pour le contregradient) |
---|
28 | c |
---|
29 | c====================================================================== |
---|
30 | |
---|
31 | FUNCTION cpdet(t) |
---|
32 | IMPLICIT none |
---|
33 | #include "cpdet.h" |
---|
34 | |
---|
35 | real cpdet,t |
---|
36 | |
---|
37 | cpdet = cp0*(t/t0)**nu |
---|
38 | |
---|
39 | return |
---|
40 | end |
---|
41 | |
---|
42 | c====================================================================== |
---|
43 | c====================================================================== |
---|
44 | |
---|
45 | SUBROUTINE t2tpot(npoints,yt, yteta, ypk) |
---|
46 | IMPLICIT none |
---|
47 | c====================================================================== |
---|
48 | c Arguments: |
---|
49 | c |
---|
50 | c yt --------input-R- Temperature |
---|
51 | c yteta-------output-R- Temperature potentielle |
---|
52 | c ypk --------input-R- Fonction d'Exner: RCPD*(pplay/pref)**RKAPPA |
---|
53 | c |
---|
54 | c====================================================================== |
---|
55 | #include "cpdet.h" |
---|
56 | |
---|
57 | integer npoints |
---|
58 | REAL yt(npoints), yteta(npoints), ypk(npoints) |
---|
59 | |
---|
60 | yteta = yt**nu - nu * t0**nu * log(ypk/cp0) |
---|
61 | yteta = yteta**(1./nu) |
---|
62 | |
---|
63 | |
---|
64 | !yteta = yt/ypk |
---|
65 | |
---|
66 | |
---|
67 | return |
---|
68 | end |
---|
69 | |
---|
70 | c====================================================================== |
---|
71 | c====================================================================== |
---|
72 | |
---|
73 | SUBROUTINE tpot2t(npoints,yteta, yt, ypk) |
---|
74 | IMPLICIT none |
---|
75 | c====================================================================== |
---|
76 | c Arguments: |
---|
77 | c |
---|
78 | c yteta--------input-R- Temperature potentielle |
---|
79 | c yt -------output-R- Temperature |
---|
80 | c ypk --------input-R- Fonction d'Exner: RCPD*(pplay/pref)**RKAPPA |
---|
81 | c |
---|
82 | c====================================================================== |
---|
83 | #include "cpdet.h" |
---|
84 | |
---|
85 | integer npoints |
---|
86 | REAL yt(npoints), yteta(npoints), ypk(npoints) |
---|
87 | |
---|
88 | yt = yteta**nu + nu * t0**nu * log(ypk/cp0) |
---|
89 | yt = yt**(1./nu) |
---|
90 | |
---|
91 | !yt = yteta*ypk |
---|
92 | |
---|
93 | return |
---|
94 | end |
---|
95 | |
---|
96 | c$$$c====================================================================== |
---|
97 | c$$$c====================================================================== |
---|
98 | c$$$ |
---|
99 | c$$$ SUBROUTINE dt2dtpot(npoints,ydt, ydteta, yt, yteta, ypk, ydpk) |
---|
100 | c$$$ IMPLICIT none |
---|
101 | c$$$c====================================================================== |
---|
102 | c$$$c Arguments: |
---|
103 | c$$$c |
---|
104 | c$$$c ydt --------input-R- D Temperature |
---|
105 | c$$$c ydteta------output-R- D Temperature potentielle |
---|
106 | c$$$c yt --------input-R- Temperature |
---|
107 | c$$$c yteta--------input-R- Temperature potentielle |
---|
108 | c$$$c ypk --------input-R- Fonction d'Exner: RCPD*(pplay/pref)**RKAPPA |
---|
109 | c$$$c ydpk -------input-R- D Fonction d'Exner |
---|
110 | c$$$c |
---|
111 | c$$$c====================================================================== |
---|
112 | c$$$#include "cpdet.h" |
---|
113 | c$$$ |
---|
114 | c$$$ integer npoints |
---|
115 | c$$$ REAL ydt(npoints), ydteta(npoints), ydpk(npoints) |
---|
116 | c$$$ REAL yt(npoints), yteta(npoints), ypk(npoints) |
---|
117 | c$$$ |
---|
118 | c$$$ ydteta = yteta**(1.-nu)* (ydt * yt**(nu-1.) |
---|
119 | c$$$ . - t0**nu * ydpk / ypk) |
---|
120 | c$$$ |
---|
121 | c$$$ return |
---|
122 | c$$$ end |
---|
123 | |
---|