Last change
on this file since 5119 was
5099,
checked in by abarral, 4 months ago
|
Replace most uses of CPP_DUST by the corresponding logical defined in lmdz_cppkeys_wrapper.F90
Convert several files from .F to .f90 to allow Dust to compile w/o rrtm/ecrad
Create lmdz_yoerad.f90
(lint) Remove "!" on otherwise empty line
|
File size:
519 bytes
|
Line | |
---|
1 | SUBROUTINE cm3_to_kg(pplay, t_seri, tr_seri) |
---|
2 | |
---|
3 | USE dimphy |
---|
4 | USE infotrac |
---|
5 | USE indice_sol_mod |
---|
6 | |
---|
7 | IMPLICIT NONE |
---|
8 | |
---|
9 | INCLUDE "dimensions.h" |
---|
10 | INCLUDE "YOMCST.h" |
---|
11 | |
---|
12 | REAL :: t_seri(klon, klev), pplay(klon, klev) |
---|
13 | REAL :: tr_seri(klon, klev) |
---|
14 | REAL :: zrho |
---|
15 | INTEGER :: i, k |
---|
16 | |
---|
17 | !JE20150707 RD = 1000.0 * 1.380658E-23 * 6.0221367E+23 / 28.9644 |
---|
18 | DO k = 1, klev |
---|
19 | DO i = 1, klon |
---|
20 | zrho = pplay(i, k) / t_seri(i, k) / RD |
---|
21 | tr_seri(i, k) = tr_seri(i, k) * 1.e6 / zrho |
---|
22 | ENDDO |
---|
23 | ENDDO |
---|
24 | |
---|
25 | END SUBROUTINE cm3_to_kg |
---|
Note: See
TracBrowser
for help on using the repository browser.