source: LMDZ5/trunk/libf/dyn3dpar/gr_u_scal.F @ 1907

Last change on this file since 1907 was 1907, checked in by lguez, 10 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: 1.1 KB
Line 
1!
2! $Header$
3!
4      SUBROUTINE gr_u_scal(nx,x_u,x_scal)
5c%W%    %G%
6c=======================================================================
7c
8c   Author:    Frederic Hourdin      original: 11/11/92
9c   -------
10c
11c   Subject:
12c   ------
13c
14c   Method:
15c   --------
16c
17c   Interface:
18c   ----------
19c
20c      Input:
21c      ------
22c
23c      Output:
24c      -------
25c
26c=======================================================================
27      IMPLICIT NONE
28c-----------------------------------------------------------------------
29c   Declararations:
30c   ---------------
31
32#include "dimensions.h"
33#include "paramet.h"
34#include "comgeom.h"
35
36c   Arguments:
37c   ----------
38
39      INTEGER nx
40      REAL x_u(ip1jmp1,nx),x_scal(ip1jmp1,nx)
41
42c   Local:
43c   ------
44
45      INTEGER l,ij
46
47c-----------------------------------------------------------------------
48
49      DO l=1,nx
50         DO ij=ip1jmp1,2,-1
51            x_scal(ij,l)=
52     s      (aireu(ij)*x_u(ij,l)+aireu(ij-1)*x_u(ij-1,l))
53     s      /(aireu(ij)+aireu(ij-1))
54         ENDDO
55      ENDDO
56
57      CALL SCOPY(nx*jjp1,x_scal(iip1,1),iip1,x_scal(1,1),iip1)
58
59      RETURN
60      END
Note: See TracBrowser for help on using the repository browser.