source: LMDZ5/branches/IPSLCM5A2.1_ISO/libf/phyiso/water_int.F90 @ 3331

Last change on this file since 3331 was 3331, checked in by acozic, 6 years ago

Add modification for isotopes

  • Property svn:executable set to *
File size: 527 bytes
Line 
1subroutine water_int(klon,klev,field3d,mass,field2d)
2
3!=============================================================
4! Compute the 2D burden from 3D mixing ratios
5!  OB (obolmd@lmd.jussieu.fr)
6!=============================================================
7
8IMPLICIT none
9
10! Arguments
11INTEGER, INTENT(IN) :: klon,klev
12REAL, DIMENSION(klon,klev),INTENT(IN)  :: field3d, mass
13REAL, DIMENSION(klon),     INTENT(OUT) :: field2d
14
15INTEGER k
16
17field2d(:)=0.0
18DO k=1, klev
19field2d(:)=field2d(:)+field3d(:,k)*mass(:,k)
20ENDDO
21
22RETURN
23END
Note: See TracBrowser for help on using the repository browser.