source: LMDZ4/trunk/libf/phylmd/cv3_mixscale.F @ 950

Last change on this file since 950 was 879, checked in by Laurent Fairhead, 16 years ago

Suite de la bascule vers une physique avec thermiques, nouvelle convection, poche froide ...
LF

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 869 bytes
Line 
1        SUBROUTINE cv3_mixscale(nloc,ncum,na,ment,m)
2***************************************************************
3*                                                             *
4* CV3_MIXSCALE                                                *
5*                                                             *
6*                                                             *
7* written by   : Jean-Yves Grandpeix, 30/05/2003, 16.34.37    *
8* modified by :                                               *
9***************************************************************
10*
11      implicit none
12      integer nloc,ncum,na
13      integer i,j,il
14      real ment(nloc,na,na),m(nloc,na)
15c
16      do 100 j=1,na
17        do 101 i=1,na
18          do 102 il=1,ncum
19             ment(il,i,j) = m(il,i)*ment(il,i,j)
20102      continue
21101    continue
22100   continue
23
24c
25      return
26      end
Note: See TracBrowser for help on using the repository browser.