Last change
on this file since 2987 was
1397,
checked in by milmd, 10 years ago
|
In LMDZ.GENERIC replacement of all phystd .h files by module files.
|
File size:
757 bytes
|
Rev | Line | |
---|
[135] | 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 CO2 gas only) |
---|
| 8 | ! |
---|
| 9 | ! Authors |
---|
| 10 | ! ------- |
---|
| 11 | ! Robin Wordsworth (2009) |
---|
| 12 | ! |
---|
| 13 | !================================================================== |
---|
[1384] | 14 | use comcstfi_mod, only: cpp, r |
---|
[135] | 15 | implicit none |
---|
| 16 | |
---|
[253] | 17 | !real cp0, dB2dT2 |
---|
[135] | 18 | real cppNI ! specific heat capacity at const. pressure |
---|
| 19 | real rcpNI ! R / specific heat capacity |
---|
| 20 | real t |
---|
| 21 | real p |
---|
| 22 | |
---|
[253] | 23 | ! dummy function until I decide what to do! |
---|
[135] | 24 | |
---|
[253] | 25 | cppNI = cpp |
---|
[135] | 26 | rcpNI = R/cppNI |
---|
| 27 | |
---|
| 28 | return |
---|
| 29 | end subroutine calc_cpp3d |
---|
Note: See
TracBrowser
for help on using the repository browser.