|
Last change
on this file since 2629 was
1397,
checked in by milmd, 11 years ago
|
|
In LMDZ.GENERIC replacement of all phystd .h files by module files.
|
|
File size:
757 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 CO2 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.