source: trunk/LMDZ.COMMON/libf/grid/dimension/makdim

Last change on this file was 3915, checked in by vbelissa, 4 months ago

Fix mistaken commit in LMDZ.COMMON/libf/grid/dimension/makdim -- Victor Belissa

File size: 1.7 KB
RevLine 
[492]1#!/bin/bash
2#set -xv
3
4# sanity check: do we have the required argument ?
5if (( $# < 1 )) || (( $# > 3 ))
6then
7 echo "Wrong number of parameters in $0 !!!"
8 echo " Usage:"
9 echo $0 [im] [jm] lm"
10 echo " where im, jm and lm are the dimensions"
[1441]11 exit 1
[492]12fi
13
[1441]14if (($1 % 8 != 0)) && (( $# == 3 ))
15then
16    echo "The number of longitudes must be a multiple of 8."
17    echo "See the files dyn3d/groupe.F and dyn3dpar/groupe_p.F."
[3915]18exit 1
[1441]19fi
20
[492]21# build "fichnom", the relevant 'dimensions.im.jm.lm' file name
22for i in $*
23  do
24  list=$list.$i
[1]25done
26fichdim=dimensions${list}
27
[492]28if [ ! -f $fichdim ]
29    then
30#    echo "$fichdim does not exist"
[1]31
[492]32    # assign values of im, jm and lm
33    if [ $# -ge 3 ]
34        then
35        im=$1
36        jm=$2
37        lm=$3
38        ndm=1
39    elif [ $# -ge 2 ]
40        then
41        im=1
42        jm=$1
43        lm=$2
44        ndm=1
45    elif [ $# -ge 1 ]
46        then
47        im=1
48        jm=1
49        lm=$1
50        ndm=1
51    fi
[1]52
[492]53# since the file doesn't exist, we create it
[1]54cat << EOF > $fichdim
55!-----------------------------------------------------------------------
56!   INCLUDE 'dimensions.h'
57!
58!   dimensions.h contient les dimensions du modele
59!   ndm est tel que iim=2**ndm
60!-----------------------------------------------------------------------
61
62      INTEGER iim,jjm,llm,ndm
63
64      PARAMETER (iim= $im,jjm=$jm,llm=$lm,ndm=$ndm)
65
66!-----------------------------------------------------------------------
67EOF
68
69fi
70
[492]71# remove 'old' dimensions.h file (if any) and replace it with new one
72if [ -f ../dimensions.h ] ; then
[1]73\rm ../dimensions.h
[492]74fi
[1]75tar cf - $fichdim | ( cd .. ; tar xf - ; mv $fichdim dimensions.h )
[492]76# line above is a trick to preserve time of creation of dimensions.h files
Note: See TracBrowser for help on using the repository browser.