1 | nqmx=$1 |
---|
2 | shift |
---|
3 | for i in $* ; do |
---|
4 | list=$list.$i |
---|
5 | done |
---|
6 | fichdim=dimensions${list}.t${nqmx} |
---|
7 | |
---|
8 | if [ ! -f $fichdim -o ! -f ${fichdim}_90 ] ; then |
---|
9 | # si le fichier de dimensions n'existe pas, on le cree |
---|
10 | |
---|
11 | if [ $# -ge 3 ] ; then |
---|
12 | im=$1 |
---|
13 | jm=$2 |
---|
14 | lm=$3 |
---|
15 | n2=$1 |
---|
16 | ndm=1 |
---|
17 | |
---|
18 | # Le test suivant est commente car il est inutile avec le nouveau |
---|
19 | # filtre filtrez. Attention avec le "vieux" filtre (F. Forget,11/1994) |
---|
20 | # |
---|
21 | # while [ "$n2" -gt 2 ]; do |
---|
22 | # n2=`expr $n2 / 2` |
---|
23 | # ndm=`expr $ndm + 1` |
---|
24 | # echo $n2 |
---|
25 | # done |
---|
26 | # if [ "$n2" != 2 ] ; then |
---|
27 | # echo le nombre de longitude doit etre une puissance de 2 |
---|
28 | # exit |
---|
29 | # fi |
---|
30 | |
---|
31 | |
---|
32 | else if [ $# -ge 2 ] ; then |
---|
33 | im=1 |
---|
34 | jm=$1 |
---|
35 | lm=$2 |
---|
36 | ndm=1 |
---|
37 | else if [ $# -ge 1 ] ; then |
---|
38 | im=1 |
---|
39 | jm=1 |
---|
40 | lm=$1 |
---|
41 | ndm=1 |
---|
42 | else |
---|
43 | echo il faut au moins une dimension |
---|
44 | exit |
---|
45 | fi |
---|
46 | fi |
---|
47 | fi |
---|
48 | |
---|
49 | cat << EOF > $fichdim |
---|
50 | c----------------------------------------------------------------------- |
---|
51 | c INCLUDE 'dimensions.h' |
---|
52 | c |
---|
53 | c dimensions.h contient les dimensions du modele |
---|
54 | c ndm est tel que iim=2**ndm |
---|
55 | c nqmx est la dimension de la variable traceur q |
---|
56 | c----------------------------------------------------------------------- |
---|
57 | |
---|
58 | INTEGER iim,jjm,llm,ndm |
---|
59 | |
---|
60 | PARAMETER (iim= $im,jjm=$jm,llm=$lm,ndm=$ndm) |
---|
61 | |
---|
62 | integer nqmx |
---|
63 | parameter (nqmx=$nqmx) |
---|
64 | |
---|
65 | c----------------------------------------------------------------------- |
---|
66 | EOF |
---|
67 | |
---|
68 | cat << EOF > ${fichdim}_90 |
---|
69 | !----------------------------------------------------------------------- |
---|
70 | ! INCLUDE 'dimensions90.h' |
---|
71 | ! |
---|
72 | ! dimensions90.h contient les dimensions du modele |
---|
73 | ! ndm est tel que iim=2**ndm |
---|
74 | ! nqmx est la dimension de la variable traceur q |
---|
75 | !----------------------------------------------------------------------- |
---|
76 | |
---|
77 | INTEGER iim,jjm,llm,ndm |
---|
78 | |
---|
79 | PARAMETER (iim= $im,jjm=$jm,llm=$lm,ndm=$ndm) |
---|
80 | |
---|
81 | integer nqmx |
---|
82 | parameter (nqmx=$nqmx) |
---|
83 | |
---|
84 | !----------------------------------------------------------------------- |
---|
85 | EOF |
---|
86 | fi |
---|
87 | |
---|
88 | \rm ../dimensions.h |
---|
89 | \rm ../dimensions90.h |
---|
90 | tar cf - $fichdim | ( cd .. ; tar xf - ; mv $fichdim dimensions.h ) |
---|
91 | tar cf - ${fichdim}_90 | ( cd .. ; tar xf - ; mv ${fichdim}_90 dimensions90.h ) |
---|