source: LMDZ6/trunk/libf/dyn3d_common/gr_u_scal.f90

Last change on this file was 5246, checked in by abarral, 25 hours ago

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

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