source: trunk/LMDZ.COMMON/libf/dyn3d_common/comvert_mod.F90 @ 1575

Last change on this file since 1575 was 1422, checked in by milmd, 10 years ago

In GENERIC, MARS and COMMON models replace some include files by modules (usefull for decoupling physics with dynamics).

File size: 765 bytes
Line 
1MODULE comvert_mod
2
3IMPLICIT NONE 
4
5include "dimensions.h"
6include "paramet.h"
7
8REAL ap(llm+1),bp(llm+1),presnivs(llm),dpres(llm),pa,preff,     &
9        nivsigs(llm),nivsig(llm+1),scaleheight
10! Mars Ce qui suit vient de gcm
11REAL sig(llm+1),ds(llm),aps(llm),bps(llm),pseudoalt(llm)
12INTEGER disvert_type ! type of vertical discretization:
13                           ! 1: Earth (default for planet_type==earth),
14                           !     automatic generation
15                           ! 2: Planets (default for planet_type!=earth),
16                           !     using 'z2sig.def' (or 'esasig.def) file
17LOGICAL pressure_exner
18!     compute pressure inside layers using Exner function, else use mean
19!     of pressure values at interfaces
20
21END MODULE comvert_mod
Note: See TracBrowser for help on using the repository browser.