Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 5 additions & 10 deletions phys/module_cu_ntiedtke.F
Original file line number Diff line number Diff line change
Expand Up @@ -49,26 +49,21 @@ module module_cu_ntiedtke
#if defined(mpas)
use mpas_atmphys_constants, only: rd=>R_d, rv=>R_v, &
& cpd=>cp, alv=>xlv, als=>xls, alf=>xlf, g=>gravity
#elif defined(wrfmodel)
#else
use module_model_constants, only:rd=>r_d, rv=>r_v, &
& cpd=>cp, alv=>xlv, als=>xls, alf=>xlf, t13=>Prandtl, g
& cpd=>cp, alv=>xlv, als=>xls, alf=>xlf, g
#endif

implicit none
real,private :: rcpd,vtmpc1,tmelt, &
real,private :: t13,rcpd,vtmpc1,tmelt, &
c1es,c2es,c3les,c3ies,c4les,c4ies,c5les,c5ies,zrg
#if defined(mpas)
real,private :: t13
#endif

real,private :: r5alvcp,r5alscp,ralvdcp,ralsdcp,ralfdcp,rtwat,rtber,rtice
real,private :: entrdd,cmfcmax,cmfcmin,cmfdeps,zdnoprc,cprcon,pgcoef
integer,private :: momtrans

parameter( &
#if defined(mpas)
! parameter not present in mpas_atmphy_constants
t13=1.0/3.0, &
#endif
rcpd=1.0/cpd, &
tmelt=273.16, &
zrg=1.0/g, &
Expand Down Expand Up @@ -3885,4 +3880,4 @@ real function foeldcpm(tt)
end function foeldcpm

end module module_cu_ntiedtke