Last change
on this file since 937 was
135,
checked in by aslmd, 14 years ago
|
CHANGEMENT ARBORESCENCE ETAPE 2 -- NON COMPLET
|
File size:
1.3 KB
|
Rev | Line | |
---|
[135] | 1 | for i in $* ; do |
---|
| 2 | list=$list.$i |
---|
| 3 | done |
---|
| 4 | fichdim=dimensions$list |
---|
| 5 | |
---|
| 6 | if [ ! -f $fichdim ] ; then |
---|
| 7 | # si le fichier de dimensions n'existe pas, on le cree |
---|
| 8 | |
---|
| 9 | if [ $# -ge 4 ] ; then |
---|
| 10 | nqmx=$1 |
---|
| 11 | im=$2 |
---|
| 12 | jm=$3 |
---|
| 13 | lm=$4 |
---|
| 14 | n2=$2 |
---|
| 15 | ndm=1 |
---|
| 16 | while [ "$n2" -gt 2 ]; do |
---|
| 17 | n2=`expr $n2 / 2` |
---|
| 18 | ndm=`expr $ndm + 1` |
---|
| 19 | done |
---|
| 20 | if [ "$n2" != 2 ] ; then |
---|
| 21 | echo le nombre de longitude doit etre une puissance de 2 |
---|
| 22 | exit |
---|
| 23 | fi |
---|
| 24 | else if [ $# -ge 3 ] ; then |
---|
| 25 | nqmx=$1 |
---|
| 26 | im=1 |
---|
| 27 | jm=$2 |
---|
| 28 | lm=$3 |
---|
| 29 | ndm=1 |
---|
| 30 | else if [ $# -ge 2 ] ; then |
---|
| 31 | nqmx=$1 |
---|
| 32 | im=1 |
---|
| 33 | jm=1 |
---|
| 34 | lm=$2 |
---|
| 35 | ndm=1 |
---|
| 36 | else |
---|
| 37 | echo il faut au moins une dimension |
---|
| 38 | exit |
---|
| 39 | fi |
---|
| 40 | fi |
---|
| 41 | |
---|
| 42 | fi |
---|
| 43 | |
---|
| 44 | cat << EOF > $fichdim |
---|
| 45 | c----------------------------------------------------------------------- |
---|
| 46 | c INCLUDE 'dimensions.h' |
---|
| 47 | c |
---|
| 48 | c dimensions.h continet les dimensions du modele |
---|
| 49 | c ndm est tel que iim=2**ndm |
---|
| 50 | c nqmx est la dimension de la variable traceur q |
---|
| 51 | c----------------------------------------------------------------------- |
---|
| 52 | |
---|
| 53 | INTEGER iim,jjm,llm,ndm |
---|
| 54 | |
---|
| 55 | PARAMETER (iim= $im,jjm=$jm,llm=$lm,ndm=$ndm) |
---|
| 56 | |
---|
| 57 | integer nqmx |
---|
| 58 | parameter (nqmx=$nqmx) |
---|
| 59 | |
---|
| 60 | c----------------------------------------------------------------------- |
---|
| 61 | EOF |
---|
| 62 | fi |
---|
| 63 | |
---|
| 64 | \rm ../dimensions.h |
---|
| 65 | tar cf - $fichdim | ( cd .. ; tar xf - ; mv $fichdim dimensions.h ) |
---|
Note: See
TracBrowser
for help on using the repository browser.