source: trunk/LMDZ.VENUS/libf/phyvenus/inifis.F @ 777

Last change on this file since 777 was 101, checked in by slebonnois, 14 years ago

SL: modifications pour arriver a compiler le gcm VENUS !
Ca marche !
A noter: modifs de makelmdz

File size: 1.9 KB
Line 
1!
2! $Header: /home/cvsroot/LMDZ4/libf/phylmd/inifis.F,v 1.1.1.1 2004/05/19 12:53:08 lmdzadmin Exp $
3!
4      SUBROUTINE inifis(ngrid,nlayer,
5     $           punjours,
6     $           pdayref,ptimestep,
7     $           plat,plon,parea,
8     $           prad,pg,pr,pcpp)
9
10      use dimphy
11      IMPLICIT NONE
12c
13c=======================================================================
14c
15c   subject:
16c   --------
17c
18c   Initialisation for the physical parametrisations of the LMD
19c   martian atmospheric general circulation modele.
20c
21c   author: Frederic Hourdin 15 / 10 /93
22c   -------
23c
24c   arguments:
25c   ----------
26c
27c   input:
28c   ------
29c
30c    ngrid                 Size of the horizontal grid.
31c                          All internal loops are performed on that grid.
32c    nlayer                Number of vertical layers.
33c    pdayref               Day of reference for the simulation
34c    firstcall             True at the first call
35c    lastcall              True at the last call
36c    pday                  Number of days counted from the North. Spring
37c                          equinoxe.
38c
39c=======================================================================
40c
41c-----------------------------------------------------------------------
42c   declarations:
43c   -------------
44 
45#include "dimensions.h"
46
47      REAL prad,pg,pr,pcpp,punjours
48 
49      INTEGER ngrid,nlayer
50      REAL plat(ngrid),plon(ngrid),parea(klon)
51      INTEGER pdayref
52 
53      REAL ptimestep
54 
55      IF (nlayer.NE.klev) THEN
56         PRINT*,'STOP in inifis'
57         PRINT*,'Probleme de dimensions :'
58         PRINT*,'nlayer     = ',nlayer
59         PRINT*,'klev   = ',klev
60         STOP
61      ENDIF
62
63      IF (ngrid.NE.klon) THEN
64         PRINT*,'STOP in inifis'
65         PRINT*,'Probleme de dimensions :'
66         PRINT*,'ngrid     = ',ngrid
67         PRINT*,'klon   = ',klon
68         STOP
69      ENDIF
70
71      RETURN
729999  STOP'Cette version demande les fichier rnatur.dat et surf.def'
73      END
Note: See TracBrowser for help on using the repository browser.