source: LMDZ4/tags/V3_conv/libf/dyn3d/create_etat0_limit.F @ 756

Last change on this file since 756 was 756, checked in by (none), 17 years ago

This commit was manufactured by cvs2svn to create tag 'V3_conv'.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.4 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"
30cym#include "dimphy.h"
31      REAL :: masque(iip1,jjp1)
32      REAL :: pctsrf(iim*(jjm-1)+2, nbsrf)
33
34     
35      call InitDimphy
36      call init_phys_openmp
37      call InitComgeomphy
38     
39      WRITE(6,*) '  *********************  '
40      WRITE(6,*) ' interbar = ',interbar
41      CALL etat0_netcdf ( interbar, masque, pctsrf )
42c
43      WRITE(6,1)
44      WRITE(6,*) '  *********************  '
45      WRITE(6,*) '  ***  Limit_netcdf ***  '
46      WRITE(6,*) '  *********************  '
47      WRITE(6,1)
48     
49c     
50      CALL  limit_netcdf ( interbar, extrap , oldice, masque, pctsrf )
51
521     FORMAT(//)
53
54      STOP
55      END
Note: See TracBrowser for help on using the repository browser.