source: LMDZ6/trunk/libf/phylmd/Dust/cm3_to_kg.f90 @ 5267

Last change on this file since 5267 was 5246, checked in by abarral, 4 days ago

Convert fixed-form to free-form sources .F -> .{f,F}90
(WIP: some .F remain, will be handled in subsequent commits)

File size: 502 bytes
Line 
1SUBROUTINE 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  !
25END SUBROUTINE cm3_to_kg
Note: See TracBrowser for help on using the repository browser.