source: trunk/LMDZ.PLUTO/libf/phypluto/calc_cpp3d.F90 @ 3380

Last change on this file since 3380 was 3184, checked in by afalco, 10 months ago

Pluto PCM:
Added LMDZ.PLUTO, a copy of the generic model,
cleaned from some unnecessary modules (water, ...)
AF

File size: 756 bytes
Line 
1      subroutine calc_cpp3d(cppNI,rcpNI,t,p)
2
3!==================================================================
4!     Purpose
5!     -------
6!     Compute the atmospheric specific heat capacity as a
7!     function of pressure and temperature (for N2 gas only)
8!
9!     Authors
10!     -------
11!     Robin Wordsworth (2009)
12!
13!==================================================================
14      use comcstfi_mod, only: cpp, r
15      implicit none
16
17      !real cp0, dB2dT2
18      real cppNI      ! specific heat capacity at const. pressure
19      real rcpNI      ! R / specific heat capacity
20      real t
21      real p
22
23      ! dummy function until I decide what to do!
24
25      cppNI  = cpp
26      rcpNI  = R/cppNI
27
28      return
29    end subroutine calc_cpp3d
Note: See TracBrowser for help on using the repository browser.