source: LMDZ4/trunk/libf/dyn3d/create_etat0_limit.F @ 989

Last change on this file since 989 was 989, checked in by Laurent Fairhead, 16 years ago

Corrections suite a la re-ecriture de phyredem.F
Quelques initialisations de plus
LF

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.8 KB
Line 
1!
2! $Header$
3!
4       PROGRAM create_etat0_limit
5       USE dimphy
6       USE comgeomphy
7
8c
9c
10c     Programme d'appel a etat0, creation des etats initiaux et limit_netcdf
11c   
12c
13c     interbar = .T . si appel a  interpol. barycentrique inter_barxy
14c
15c     extrap   = .T . si on fait une extrapolation de donnees , comme pour
16c       les  SST  lorsque  le fichier ne contient pas uniquement  des points
17c     oceaniques .
18c
19c     oldice   = .T. si l'on veut garder les anciennes glaces , obtenues
20c     par  grille_m  ( grid_atob ) .
21c
22c     on cree le masque dans etat0 que l'on passe ensuite dans limit pour
23c     garder les coherences
24
25      LOGICAL interbar, extrap , oldice
26      PARAMETER ( interbar = .true. , extrap = .FALSE. , oldice=.false.)
27#include "dimensions.h"
28#include "paramet.h"
29#include "indicesol.h"
30#include "advtrac.h"
31#include  "control.h"
32      REAL :: masque(iip1,jjp1)
33!      REAL :: pctsrf(iim*(jjm-1)+2, nbsrf)
34
35c initialisation traceurs
36      hadv_flg(:) = 0.
37      vadv_flg(:) = 0.
38      conv_flg(:) = 0.
39      pbl_flg(:)  = 0.
40      tracnam(:)  = '        '
41      nprath = 1
42      nbtrac = 0
43      mmt_adj(:,:,:,:) = 1
44
45      IF (config_inca /= 'none') THEN
46#ifdef INCA
47         call init_const_lmdz(nbtrac,anneeref,dayref,iphysiq,day_step,nday)
48#endif
49         print *, 'nbtrac =' , nbtrac
50      END IF
51
52      CALL Init_Phys_lmdz(iim,jjp1,llm,nqmx-2,1,(jjm-1)*iim+2)
53      call InitComgeomphy
54
55      WRITE(6,*) '  *********************  '
56      WRITE(6,*) ' interbar = ',interbar
57      CALL etat0_netcdf ( interbar, masque, pctsrf )
58c
59      WRITE(6,1)
60      WRITE(6,*) '  *********************  '
61      WRITE(6,*) '  ***  Limit_netcdf ***  '
62      WRITE(6,*) '  *********************  '
63      WRITE(6,1)
64     
65c     
66      CALL  limit_netcdf ( interbar, extrap , oldice, masque)
67
681     FORMAT(//)
69
70      STOP
71      END
Note: See TracBrowser for help on using the repository browser.