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