source: LMDZ.3.3/trunk/script/initialisation @ 2

Last change on this file since 2 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
2
3# en local
4
5set dir=~lmdz/DATA
6set cp="ln -s"
7
8#===================================================================
9# Fichiers necessaires a la creations des etats initiaux
10#===================================================================
11$cp $dir/albedo.g1x1.dat albed.dat          # Albedos de surface
12$cp $dir/albedo.g1x1.dic albed.dic         
13$cp $dir/amip88.g2x2.dat amip.dat           # SST
14$cp $dir/amip88.g2x2.dic amip.dic
15$cp $dir/ecdyn.d880701.h12.dat ecdyn.dat    # Etat initial dynamique
16$cp $dir/ecdyn.d880701.h12.dic ecdyn.dic
17$cp $dir/ecphy.d880701.h12.dat ecphy.dat    # Etat initial physique
18$cp $dir/ecphy.d880701.h12.dic ecphy.dic
19$cp $dir/relief.usnavy.dat relief.dat       # Fichier de relief
20$cp $dir/relief.usnavy.dic relief.dic
21$cp $dir/rugos.g1x1.dat rugos.dat           # Rugosite de la surface
22$cp $dir/rugos.g1x1.dic rugos.dic
23#===================================================================
24
25
26if ( ! -f run.def ) then
27echo Il faut avoir sur le repertoire courant un fichier run.def
28exit
29endif
30
31# Creation des etats initiaux
32# ===========================
33echo "execution de etat0_lmd.e, sortie dans etat0_lmd.l"
34./etat0_lmd.e << EoD >! etat0_lmd.l
35181
36EoD
37
38# Creation des conditions aux limites
39# ===================================
40echo "execution de limit_lmd.e, sortie dans limit_lmd.l"
41./limit_lmd.e >! limit_lmd.l
42
43# Conditions aux limites pour les especes traces
44# ==============================================
45if ( -f limit_tr.e ) then
46$cp $dir/so2_1x1 so2_1x1
47limit_tr.e > limit_tr.l
48else
49echo Vous n avez pas cree le fichier limit_tr utilise par les versions
50echo du modele avec traceurs
51endif
Note: See TracBrowser for help on using the repository browser.