source: LMDZ.3.3/trunk/initialisation

Last change on this file was 2, checked in by lmdz, 25 years ago

Initial revision

  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 1.6 KB
Line 
1#!/bin/csh -vx
2
3# en local
4
5set dir=~lmdz/DATA/Netcdf
6set cp="ln -s"
7setenv LIBOGCM /tmp2/fairhead
8
9#===================================================================
10# Fichiers necessaires a la creations des etats initiaux
11#===================================================================
12$cp $dir/ECDYN.nc .                         # Etat initial dynamique
13$cp $dir/ECPHY.nc .                         # Etat initial physique
14$cp $dir/Relief.nc .                        # Fichier de relief
15$cp $dir/Rugos.nc .                         # Fichier rugosite sur un an
16$cp $dir/AMIP.nc .                          # Fichier SST/Seaice sur un an
17$cp $dir/Albedo.nc .                        # Fichier albedo sur un an
18#===================================================================
19
20
21if ( ! -f run.def ) then
22echo Il faut avoir sur le repertoire courant un fichier run.def
23exit
24endif
25
26# Compilation etat0_netcdf.e
27# ==========================
28$LMDGCM/makegcm etat0
29
30# Creation des etats initiaux
31# ===========================
32echo "execution de etat0.e, sortie dans etat0.l"
33./etat0.e >! etat0.l
34
35# Compilation limit_netcdf.e
36# ==========================
37$LMDGCM/makegcm limit_netcdf
38
39# Creation des conditions aux limites
40# ===================================
41echo "execution de limit_lmd.e, sortie dans limit_lmd.l"
42./limit_netcdf.e >! limit_netcdf.l
43
44# Conditions aux limites pour les especes traces
45# ==============================================
46#if ( -f limit_tr.e ) then
47#$cp $dir/so2_1x1 so2_1x1
48#limit_tr.e > limit_tr.l
49#else
50#echo Vous n avez pas cree le fichier limit_tr utilise par les versions
51#echo du modele avec traceurs
52#endif
Note: See TracBrowser for help on using the repository browser.