source: CONFIG/UNIFORM/v6/LMDZORINCA_v6.2/compile_lmdzorinca.sh @ 6427

Last change on this file since 6427 was 6427, checked in by acosce, 15 months ago

update compile_lmdzorinca.sh, remove tests done on svn lmdz version. Now we always are using a version with ecrad

  • Property svn:executable set to *
File size: 12.7 KB
Line 
1#!/bin/bash
2#set -vx
3# Default options
4#
5#
6#
7date
8#### 1  Set up the compiling options
9#### Define some directories
10submitdir=$( pwd )
11modipsl=$submitdir/../..
12arch_path=$submitdir/ARCH
13
14#### Set default options
15# Optimization mode
16# optmode=prod/dev/debug
17optmode=prod
18# Resolution of LMDZ in regular mode
19regular_latlon=yes
20resol_atm_3d=144x142x79
21# Also compile ce0l subprogram to LMDZ (y/n)
22ce0l=n
23
24optchimie=NMHC_AER_S
25#recompilation de inca seul ou de tous les modeles
26clean_inca=""
27full_flag=""
28
29# choose radiative code compilation option
30rad=rrtm
31opt_rad=""
32
33
34# fcm_arch
35fcm_arch=default
36# Default values to be overritten
37parallel=mpi_omp
38export fcm_arch parallel xios
39
40# Default netcdf_lib is used for XIOS but can be change by argument
41netcdf_lib=""
42
43# Output text file for compilation of each component
44datestr=`LC_ALL=C date +"%Y%m%dT%H%M"`
45outfile=$submitdir/out_compile_lmdzorinca.$datestr
46echo > $outfile
47echo; echo "Text output from compilation will be stored in file out_compile_lmdzorinca.$datestr"; echo 
48
49#### Read arguments
50# Loop over all arguments to modify default set up
51while (($# > 0)) ; do
52    case $1 in
53        "-h") cat <<fin
54
55########################################################################
56# Usage of the script compile_lmdzorinca.sh
57#
58########################################################################
59
60./compile_config [Options]
61
62Options: -full, -regular_latlon, -chimie, -clean_inca, -debug, -dev, -prod(default)
63
64Example 1: Default compilation of LMDZ-ORCHIDEE-INCA  with XIOS and IOIPSL - NMHC_AER_S / 96x95x39
65./compile_lmdzorinca.sh
66
67Example 2: Compilation with a chosen chemistry, for example DUSS  (default: NMHC_AER_S)
68./compile_lmdzorinca.sh -chimie DUSS
69
70Example 3: Compile in debug mode  - in this case you need to modify Optmode in config.card
71./compile_lmdzorinca.sh -debug
72
73Example 4: Default compilation with full recompilation of all components
74./compile_lmdzorinca.sh -full
75
76Example 5: Default compilation with recompilation of inca model only
77./compile_lmdzorinca.sh -clean_inca
78
79Example 6: Compilation of LMDZ in regular lat-lon for other dimensions (default: 96x95x39)
80The dimension can be changed to any other 3d dimension.
81./compile_lmdzorinca.sh -regular_latlon 144x142x79
82
83Example 7: choose radiative schema for LMDZ (oldrad/rrtm/ecrad). Default is rrtm
84./compile_lmdzorinca.sh -rad ecrad
85
86
87fin
88            exit;;
89
90        "-parallel")
91            parallel=$2 ; shift ; shift ;;
92       
93        "-arch")
94            fcm_arch="$2" ; shift ; shift ;;
95       
96        "-xios")
97            xios="$2" ; shift ; shift ;;
98       
99        "-optmode")
100            optmode=$2 ; shift ; shift ;;
101
102        "-debug")
103            optmode=debug ; shift ;;
104
105        "-dev")
106            optmode=dev ; shift ;;
107
108        "-prod")
109            optmode=prod ; shift ;;
110
111        "-ce0l")             
112            ce0l=y ; shift ;;
113
114        "-rad")       
115            rad=$2; shift ; shift;;
116
117        "-regular_latlon")
118            regular_latlon=yes ;
119            resol_atm_3d=$2 ; shift ; shift ;;
120       
121        "-full")
122            full_flag="-full"; shift ;;
123
124        "-clean_inca")
125            clean_inca="-clean"; shift ;;
126       
127        "-netcdf_lib_seq")
128            netcdf_lib="--netcdf_lib netcdf4_seq"; shift ;;
129
130        "-chimie") 
131            echo $2;
132            optchimie=$2; shift ; shift;;
133
134        *)
135            echo "unknown option "$2" , exiting..."
136            exit
137    esac
138done
139
140echo "Following arguments are set in current compiling:" >> $outfile 
141echo "   optmode = $optmode, parallel = $parallel, fcm_arch = $fcm_arch, full_flag=$full_flag regular_latlon=$regular_latlon" >> $outfile 
142echo "   ce0l=${ce0l}" >> $outfile 
143echo "   chimie = $optchimie, clean_inca = ${clean_inca}" 
144echo >> $outfile
145
146### Read host dependent default values
147### These variables will not be changed if they were set as argument
148###./host.sh $host
149# Later : Following lines should be set in host.sh file
150# begin host.sh
151if [ $fcm_arch == default ] ; then
152    # Find out current host and source specific paths and commands for the host
153    case $( hostname -s ) in
154        jean-zay*)
155            fcm_arch=X64_JEANZAY;;
156        irene170|irene171|irene190|irene191|irene192|irene193)
157            fcm_arch=X64_IRENE;;
158        irene172|irene173|irene194|irene195)
159            fcm_arch=X64_IRENE-AMD;;
160        asterix*|obelix*)
161            fcm_arch=ifort_LSCE;;
162        ciclad*|climserv*)
163            fcm_arch=ifort_CICLAD;;
164        *)
165            echo Current host is not known. You must use option -arch to specify which architecuture files to use.
166            echo Exit now.
167            exit
168    esac
169fi
170
171# Set a link to arch.env if arch-${fcm_arch}.env file exist for current fcm_arch.
172# The link arch.env is also set in config.card and will be used by libIGCM to ensure the same running environnement.
173if [ -f ARCH/arch-${fcm_arch}.env ] ; then
174    echo >> $outfile
175    echo "The file ARCH/arch-${fcm_arch}.env will now be sourced with modules needed for compilation for all components."
176    echo "Note that this new environement might be kept after compilation." 
177    echo "If this is the case, source again your personal environment after compilation. "
178    echo " Personal module list before sourcing of ARCH/arch.env file:"    >> $outfile 
179    module list   >> $outfile 2>&1
180   
181    # Make a link to this file, to be used also in config.card
182    rm -f ARCH/arch.env
183    ln -s arch-${fcm_arch}.env ARCH/arch.env
184
185    # Source the file
186    source ARCH/arch.env   >> $outfile 2>&1
187
188    echo >> $outfile 
189    echo " New module list after sourcing of ARCH/arch.env file:"    >> $outfile 
190    module list   >> $outfile 2>&1
191fi
192
193#### 2 Do the compilation
194## 2.1 Compile ioipsl
195cd $modipsl/modeles/IOIPSL
196echo; echo "NOW COMPILE IOIPSL"
197echo >> $outfile ; echo " NOW COMPILE IOIPSL"   >> $outfile 
198
199# Check if compilation with fcm is included in IOIPSL
200if [ ! -f makeioipsl_fcm ] ; then
201  echo "The file makeiopsl_fcm do not exist. Probably this is not the right version of IOIPSL."
202  echo "Version of IOIPSL with fcm compilation is needed to compile with this script. Stop now."
203  exit
204fi
205
206echo ./makeioipsl_fcm -$optmode -parallel -arch ${fcm_arch} -arch_path $arch_path -j 8 $full_flag   >> $outfile 
207     ./makeioipsl_fcm -$optmode -parallel -arch ${fcm_arch} -arch_path $arch_path -j 8 $full_flag   >> $outfile 2>&1
208# Test if compiling succeded
209if [[ $? != 0 ]] ; then
210    echo "THERE IS A PROBLEM IN IOIPSL COMPILATION - STOP"
211    exit
212fi
213
214## 2.2 Compile xios
215cd $modipsl/modeles/XIOS
216echo; echo "NOW COMPILE XIOS"
217echo >> $outfile ; echo " NOW COMPILE XIOS"   >> $outfile 
218echo ./make_xios --$optmode --arch $fcm_arch --arch_path $arch_path ${netcdf_lib} --job 4 $full_flag   >> $outfile 
219     ./make_xios --$optmode --arch $fcm_arch --arch_path $arch_path ${netcdf_lib} --job 4 $full_flag   >> $outfile 2>&1
220# Test if compiling succeded
221if [[ $? != 0 ]] ; then
222    echo "THERE IS A PROBLEM IN XIOS COMPILATION - STOP"
223    exit
224fi
225# Move executables to modipsl/bin
226if [ -f $modipsl/modeles/XIOS/bin/xios_server.exe ] ; then
227    mv $modipsl/modeles/XIOS/bin/xios_server.exe $modipsl/bin/xios_server_${optmode}.exe
228else
229    echo "THERE IS A PROBLEM IN XIOS COMPILATION EXECUTABLE MISSING - STOP"
230    exit
231fi
232
233
234## 2.3 Compile orchidee
235cd $modipsl/modeles/ORCHIDEE
236echo; echo "NOW COMPILE ORCHIDEE"
237echo >> $outfile ; echo " NOW COMPILE ORCHIDEE"   >> $outfile 
238
239echo    ./makeorchidee_fcm -j 8 -xios -parallel $parallel -$optmode -arch ${fcm_arch} -arch_path $arch_path $full_flag -driver   >> $outfile 
240        ./makeorchidee_fcm -j 8 -xios -parallel $parallel -$optmode -arch ${fcm_arch} -arch_path $arch_path $full_flag -driver    >> $outfile 2>&1
241# Test if compiling finished
242if [[ $? != 0 ]] ; then
243    echo "THERE IS A PROBLEM IN ORCHIDEE COMPILATION - STOP"
244    exit
245fi
246
247
248## 2.4 Compile LMDZ and INCA for regular latlon configuration
249if [ $regular_latlon = yes ] ; then
250
251    cd $modipsl/modeles/INCA
252    #compile INCA regulat lat_lon chimie librairy
253    echo; echo "NOW COMPILE INCA ${optchimie} on resolution = ${resol_atm_3d}"
254    echo ./makeinca_fcm -chimie ${optchimie} -$optmode -xios -parallel mpi_omp  -j 8 -arch ${fcm_arch}  -arch_path $arch_path $full_flag $clean_inca >> $outfile 
255         ./makeinca_fcm -chimie ${optchimie} -$optmode -xios -parallel mpi_omp  -j 8 -arch ${fcm_arch} -arch_path $arch_path  $full_flag $clean_inca >> $outfile 2>&1
256
257    # Test if compiling finished
258    if [[ $? != 0 ]] ; then
259        echo "THERE IS A PROBLEM IN INCA COMPILATION - STOP"
260        exit
261    fi
262
263    echo "Move inca.dat modipsl/bin"
264    if [[ -f $modipsl/modeles/INCA/SIMULATIONS/$optchimie/inca.dat ]] ;  then 
265        mv $modipsl/modeles/INCA/SIMULATIONS/$optchimie/inca.dat $modipsl/bin/inca_${resol_atm_3d}_${optmode}_${optchimie}.dat ;
266#       cp $modipsl/bin/inca_${resol_atm_3d}.dat inca.dat;
267    else
268        echo "THERE IS A PROBLEM IN INCA COMPILATION - STOP"
269        exit   
270    fi
271
272
273    cd $modipsl/modeles/LMDZ
274    # Compile LMDZ regular lat-lon exectuable
275    echo; echo "NOW COMPILE LMDZ REGULAR LAT-LON MODE. Resolution = ${resol_atm_3d}"
276    echo >> $outfile ; echo " NOW COMPILE LMDZ REGULAR LAT-LON MODE. Resolution = ${resol_atm_3d}"   >> $outfile 
277
278
279    # Check if the compilation of LMDZ was previsouly interupted prematured.
280    # In that case, the files dimension.h and .lock exist. If the files exist, they are here removed to avoid makelmdz_fcm
281    # to ask question and wait for interactivly answer from the user.
282    if [ -f libf/grid/dimensions.h ] || [ -f .lock ] ; then
283        echo >> $outfile
284        echo " WARNING!! The file LMDZ/libf/grid/dimension.h and/or the LMDZ/.lock exist. "   >> $outfile
285        echo "           This means that the compilation is either currently on going in another terminal was previous interupted before the end."   >> $outfile
286        echo "           The files dimension.h and .lock will now be removed. "   >> $outfile
287        echo >> $outfile
288        rm -f libf/grid/dimensions.h
289        rm -f .lock
290    fi
291
292    # Need to define the proper option for radiative code compilation. By default, we use rrtm
293    case $rad in
294        oldrad) opt_rad="" ;;
295        rrtm)   opt_rad="-rad rrtm" ;;
296        ecrad)  opt_rad="-rad ecrad" ;;
297        *) echo Only oldrad rrtm ecrad for rad option ; exit
298    esac
299
300
301    echo ./makelmdz_fcm -d ${resol_atm_3d} -p lmd ${opt_rad} -$optmode -mem -parallel $parallel -io xios -v orchidee2.1 -chimie INCA -arch $fcm_arch -arch_path $arch_path -j 8 $full_flag gcm    >> $outfile 
302         ./makelmdz_fcm -d ${resol_atm_3d} -p lmd ${opt_rad} -$optmode -mem -parallel $parallel -io xios -v orchidee2.1 -chimie INCA -arch $fcm_arch -arch_path $arch_path -j 8 $full_flag gcm    >> $outfile 2>&1
303    # Test if compiling finished
304    if [[ $? != 0 ]] ; then
305        echo "THERE IS A PROBLEM IN LMDZ REGULAR LATLON COMPILATION - STOP"
306        exit
307    fi
308
309
310    suffix=_${resol_atm_3d}_phylmd
311    suffix=${suffix}_${rad} 
312
313    # Find executable suffix
314    if [ $parallel == seq ] || [ $parallel == none ] ; then
315        suffix=${suffix}_seq_orch_inca
316    else
317        suffix=${suffix}_para_mem_orch_inca
318    fi
319    echo suffix = $suffix
320   
321    # Move executables to modipsl/bin folder
322    echo "Move gcm.e and ce0l executable to modipsl/bin"
323    if [ -f $modipsl/modeles/LMDZ/bin/gcm${suffix}.e ] ;  then
324         mv $modipsl/modeles/LMDZ/bin/gcm${suffix}.e $modipsl/bin/gcm_${resol_atm_3d}_${optmode}_${optchimie}.e ;
325   
326    else
327        echo "THERE IS A PROBLEM IN EXECUTABLE CREATION - STOP"
328        exit
329
330    fi
331
332# Compile ce0l initialization program for LMDZ regular lat-lon exectuable
333if [ $ce0l == y ] ; then
334    echo; echo "NOW COMPILE CE0L OF LMDZ. Resolution = ${resol_atm}"
335    echo >> $outfile ; echo " NOW COMPILE CE0L OF LMDZ. Resolution = ${resol_atm}"   >> $outfile 
336   
337
338    echo ./makelmdz_fcm -d ${resol_atm_3d} -p lmd ${opt_rad} -$optmode  -arch $fcm_arch -chimie INCA -arch_path $arch_path -j 8 $full_lmdz ce0l    >> $outfile 
339         ./makelmdz_fcm -d ${resol_atm_3d} -p lmd ${opt_rad} -$optmode  -arch $fcm_arch -chimie INCA -arch_path $arch_path -j 8 $full_lmdz ce0l    >> $outfile 2>&1
340    # Test if compiling finished
341    if [[ $? != 0 ]] ; then
342        echo "THERE IS A PROBLEM IN CE0L (LMDZ) REGULAR LATLON COMPILATION - STOP"
343        exit
344    fi
345
346   
347    # Move executables to modipsl/bin folder
348    echo >> $outfile
349    echo "Move ce0l.e executable to modipsl/bin" >> $outfile
350    echo ls -lrt $modipsl/modeles/LMDZ/bin   >> $outfile
351    ls -lrt $modipsl/modeles/LMDZ/bin  >> $outfile
352    echo >> $outfile
353    suffix=_${resol_atm_3d}_phylmd_seq.e
354    echo ce0l suffix = $suffix
355
356    if [ -f $modipsl/modeles/LMDZ/bin/ce0l${suffix} ] ;  then
357        mv $modipsl/modeles/LMDZ/bin/ce0l${suffix} $modipsl/bin/ce0l_${resol_atm}_${optmode}_${optchimie}.e
358    else
359        echo "ERROR ce0l${suffix} executable does not exist." 
360        echo "THERE IS A PROBLEM IN CE0L (LMDZ) REGULAR LATLON COMPILATION - STOP"
361        exit
362    fi 
363fi
364
365
366
367fi
368
369
370echo >>$outfile ; echo "ALL COMPILING FINISHED" >> $outfile
371echo; echo "ALL COMPILING FINISHED"
372
373if [ $optmode == 'debug' ] || [ $optmode == 'dev' ]; then
374    echo; echo "===================================================="
375    echo; echo "DON'\T FORGET TO MODIFY Optmode IN cconfig.card" 
376    echo; echo "Optmode="$optmode
377    echo; echo "===================================================="
378fi
379
380date
381exit
382
383
Note: See TracBrowser for help on using the repository browser.