source: LMDZ6/branches/Amaury_dev/libf/dyn3d_common/vitvert.F90 @ 5209

Last change on this file since 5209 was 5159, checked in by abarral, 7 weeks ago

Put dimensions.h and paramet.h into modules

  • 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 
1SUBROUTINE vitvert(convm, w)
2
3!-------------------------------------------------------------------------------
4! Authors: P. Le Van , Fr. Hourdin.
5!-------------------------------------------------------------------------------
6! Purpose: Compute vertical speed at sigma levels.
7  USE comvert_mod, ONLY: bp
8USE lmdz_dimensions, ONLY: iim, jjm, llm, ndm
9  USE lmdz_paramet
10  IMPLICIT NONE
11
12
13!===============================================================================
14! Arguments:
15  REAL, INTENT(IN)  :: convm(ip1jmp1,llm)
16  REAL, INTENT(OUT) :: w    (ip1jmp1,llm)
17!===============================================================================
18! Notes: Vertical speed is oriented from bottom to top.
19!   * At ground - level sigma(1):     w(i,j,1) = 0.
20!   * At top    - level sigma(llm+1): w(i,j,l) = 0. (not stored in w)
21!===============================================================================
22! Local variables:
23  INTEGER :: l
24!===============================================================================
25  DO l=1,llmm1; w(:,l+1)=convm(:,l+1)-bp(l+1)*convm(:,1); END DO
26  w(:,1)=0.
27
28END SUBROUTINE vitvert
29
Note: See TracBrowser for help on using the repository browser.