/[lmdze]/trunk/Sources/phylmd/FCTTRE.f
ViewVC logotype

Diff of /trunk/Sources/phylmd/FCTTRE.f

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

trunk/libf/phylmd/FCTTRE.f90 revision 3 by guez, Wed Feb 27 13:16:39 2008 UTC trunk/Sources/phylmd/FCTTRE.f revision 134 by guez, Wed Apr 29 15:47:56 2015 UTC
# Line 1  Line 1 
1  module FCTTRE  module FCTTRE
2    
3    ! From phylmd/FCTTRE.inc,v 1.2 2004/06/22 11:45:32    ! From phylmd/FCTTRE.inc, version 1.2, 2004/06/22 11:45:32
4    
5    !      This COMDECK includes the Thermodynamical functions for the cy39    ! This module includes the thermodynamical functions for the cycle
6    !       ECMWF Physics package.    ! 39 ECMWF physics package. Consistent with "SUPHEC_M" basic
7    !       Consistent with YOMCST Basic physics constants, assuming the    ! physical constants, assuming the partial pressure of water vapour
8    !       partial pressure of water vapour is given by a first order    ! is given by a first order Taylor expansion of "Qs(T)" with respect
9    !       Taylor expansion of Qs(T) w.r.t. to Temperature, using constants    ! to temperature, using constants in "yoethf_m".
10    !       in YOETHF  
11      ! Probably from Buck, 1981, Journal of Applied Meteorology, volume
12      ! 20, number 12, page 1527.
13    
14    implicit none    implicit none
15    
16    LOGICAL, PARAMETER:: thermcep=.TRUE.    LOGICAL, PARAMETER:: thermcep = .TRUE.
17    
18  contains  contains
19    
20    REAL function FOEEW ( PTARG,PDELARG )    elemental REAL function FOEEW(T, ICE)
21    
22      use yoethf, only: R3LES, R3IES, R4LES, R4IES      use yoethf_m, only: R3LES, R3IES, R4LES, R4IES
23      use YOMCST, only: rtt      use SUPHEC_M, only: rtt
24    
25      REAL, intent(in):: PTARG, PDELARG      REAL, intent(in):: T
26        logical, intent(in):: ICE ! else liquid
27    
28      !-----------------------      !-----------------------
29    
30      FOEEW = EXP ((R3LES*(1.-PDELARG)+R3IES*PDELARG) * (PTARG-RTT) &      FOEEW = exp(merge(R3IES / (T - R4IES), R3lES / (T - R4lES), ice) &
31           / (PTARG-(R4LES*(1.-PDELARG)+R4IES*PDELARG)) )           * (T - RTT))
32    
33    end function FOEEW    end function FOEEW
34    
35    !******************************************    !******************************************
36    
37    REAL function FOEDE(PTARG,PDELARG,P5ARG,PQSARG,PCOARG)    REAL function FOEDE(T, ICE, P5ARG, QS, PCOARG)
38    
39      use yoethf, only: R4LES, R4IES      use yoethf_m, only: R4LES, R4IES
40    
41      REAL, intent(in):: PTARG, PDELARG      REAL, intent(in):: T
42      real, intent(in):: P5ARG, PQSARG, PCOARG      logical, intent(in):: ICE ! else liquid
43        real, intent(in):: P5ARG, QS, PCOARG
44    
45      !-----------------------      !-----------------------
46    
47      FOEDE = PQSARG*PCOARG*P5ARG / (PTARG-(R4LES*(1.-PDELARG)+R4IES*PDELARG))**2      FOEDE = QS * PCOARG * P5ARG / (T - merge(R4IES, R4lES, ice))**2
48    
49    end function FOEDE    end function FOEDE
50    
51    !******************************************    !******************************************
52    
53    REAL function qsats(ptarg)    elemental REAL function qsats(t)
54    
55      REAL, intent(in):: PTARG      REAL, intent(in):: T
56    
57      !-----------------------      !-----------------------
58    
59      qsats = 100.0 * 0.622 * 10.0 &      qsats = 100. * 0.622 &
60           ** (2.07023 - 0.00320991 * ptarg &           * 10.**(2.07023 - 0.00320991 * t - 2484.896 / t + 3.56654 * LOG10(t))
          - 2484.896 / ptarg + 3.56654 * LOG10(ptarg))  
61    
62    end function qsats    end function qsats
63    
64    !******************************************    !******************************************
65    
66    REAL function qsatl(ptarg)    elemental REAL function qsatl(t)
67    
68      REAL, intent(in):: PTARG      REAL, intent(in):: T
69    
70      !-----------------------      !-----------------------
71    
72      qsatl = 100.0 * 0.622 * 10.0 &      qsatl = 100. * 0.622 * 10.**(23.8319 - 2948.964 / t &
73           ** (23.8319 - 2948.964 / ptarg &           - 5.028 * LOG10(t) - 29810.16 * EXP(- 0.0699382 * t) &
74           - 5.028 * LOG10(ptarg) &           + 25.21935 * EXP(- 2999.924 / t))
          - 29810.16 * EXP( - 0.0699382 * ptarg) &  
          + 25.21935 * EXP( - 2999.924 / ptarg))  
75    
76    end function qsatl    end function qsatl
77    
78    !******************************************    !******************************************
79    
80    REAL function dqsats(ptarg,pqsarg)    REAL function dqsats(t, qs)
81    
82      use YOMCST, only: RLVTT, rcpd      use SUPHEC_M, only: RLVTT, rcpd
83    
84      REAL, intent(in):: PTARG, pqsarg      REAL, intent(in):: T, qs
85    
86      !-----------------------      !-----------------------
87    
88      dqsats = RLVTT/RCPD*pqsarg * (3.56654/ptarg &      dqsats = RLVTT / RCPD * qs * (3.56654/t &
89           +2484.896*LOG(10.)/ptarg**2 &           +2484.896*LOG(10.)/t**2 - 0.00320991*LOG(10.))
          -0.00320991*LOG(10.))  
90    
91    end function dqsats    end function dqsats
92    
93    !******************************************    !******************************************
94    
95    REAL function dqsatl(ptarg,pqsarg)    REAL function dqsatl(t, qs)
96    
97      use YOMCST, only: RLVTT, rcpd      use SUPHEC_M, only: RLVTT, rcpd
98    
99      REAL, intent(in):: PTARG, pqsarg      REAL, intent(in):: T, qs
100    
101      !-----------------------      !-----------------------
102    
103      dqsatl = RLVTT/RCPD*pqsarg*LOG(10.)* &      dqsatl = RLVTT / RCPD * qs * LOG(10.) * (2948.964 / t**2 - 5.028 &
104           (2948.964/ptarg**2-5.028/LOG(10.)/ptarg &           / LOG(10.) / t + 25.21935 * 2999.924 / t**2 * EXP(- 2999.924 / t) &
105           +25.21935*2999.924/ptarg**2*EXP(-2999.924/ptarg) &           + 29810.16 * 0.0699382 * EXP(- 0.0699382 * t))
          +29810.16*0.0699382*EXP(-0.0699382*ptarg))  
106    
107    end function dqsatl    end function dqsatl
108    

Legend:
Removed from v.3  
changed lines
  Added in v.134

  ViewVC Help
Powered by ViewVC 1.1.21