source: trunk/MESOSCALE/LMDZ.MARS/libf_gcm/dyn3d/exner.F @ 3576

Last change on this file since 3576 was 57, checked in by aslmd, 14 years ago

mineur LMD_MM_MARS: ajout du GCM ancienne physique, systeme maintenant complet sur SVN (ne manque que la base de donnees d'etats initiaux)

File size: 664 bytes
Line 
1      SUBROUTINE exner(ngrid,pext,aire,pks,pksf)
2      IMPLICIT NONE
3
4c      .........    Version du 16/04/96     .........
5c
6c-----------------------------------------------------------------------
7c   declarations:
8c   -------------
9
10#include "comconst.h"
11
12      INTEGER ngrid
13      REAL pext(ngrid),aire(ngrid),pks(ngrid),pksf(ngrid)
14
15      INTEGER ig,iii
16
17      EXTERNAL filtreg
18
19c-----------------------------------------------------------------------
20
21      DO 3 ig = 1,ngrid
22         pks( ig )     = ( pext( ig )/ aire( ig ) ) ** kappa
23         pksf( ig )    = pks( ig )
24   3  CONTINUE
25
26      CALL filtreg (pksf,jmp1,1,2,1,.true.,1)
27
28      RETURN
29      END
Note: See TracBrowser for help on using the repository browser.