source: LMDZ6/trunk/libf/dyn3d_common/vitvert.f90 @ 5348

Last change on this file since 5348 was 5285, checked in by abarral, 5 weeks ago

As discussed internally, remove generic ONLY: ... for new _mod_h 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
8  USE dimensions_mod, ONLY: iim, jjm, llm, ndm
9USE paramet_mod_h
10IMPLICIT 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.