Last change
on this file since 1985 was
1907,
checked in by lguez, 11 years ago
|
Added a copyright property to every file of the distribution, except
for the fcm files (which have their own copyright). Use svn propget on
a file to see the copyright. For instance:
$ svn propget copyright libf/phylmd/physiq.F90
Name of program: LMDZ
Creation date: 1984
Version: LMDZ5
License: CeCILL version 2
Holder: Laboratoire de m\'et\'eorologie dynamique, CNRS, UMR 8539
See the license file in the root directory
Also added the files defining the CeCILL version 2 license, in French
and English, at the top of the LMDZ tree.
|
-
Property copyright set to
Name of program: LMDZ Creation date: 1984 Version: LMDZ5 License: CeCILL version 2 Holder: Laboratoire de m\'et\'eorologie dynamique, CNRS, UMR 8539 See the license file in the root directory
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
893 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 | |
---|
13 | #include "cv3param.h" |
---|
14 | |
---|
15 | integer nloc,ncum,na |
---|
16 | integer i,j,il |
---|
17 | real ment(nloc,na,na),m(nloc,na) |
---|
18 | c |
---|
19 | do 100 j=1,nl |
---|
20 | do 101 i=1,nl |
---|
21 | do 102 il=1,ncum |
---|
22 | ment(il,i,j) = m(il,i)*ment(il,i,j) |
---|
23 | 102 continue |
---|
24 | 101 continue |
---|
25 | 100 continue |
---|
26 | |
---|
27 | c |
---|
28 | return |
---|
29 | end |
---|
Note: See
TracBrowser
for help on using the repository browser.