source: TOOLS/MOSAIX/Setup.bash @ 3740

Last change on this file since 3740 was 3665, checked in by omamce, 6 years ago

O.M. : mise a jour des properties

  • Property svn:keywords set to Date Revision HeadURL Author Id
File size: 1.1 KB
Line 
1export Bold=$(    tput bold   ) 
2export Unde=$(    tput smul   ) ; export OffUnde=$( tput rmul )
3export Stou=$(    tput smso   ) ; export OffStou=$( tput rmso )
4export Reve=$(    tput rev    ) 
5
6export Black=$(   tput setf 0 )
7export Blue=$(    tput setf 1 )
8export Green=$(   tput setf 2 )
9export Cyan=$(    tput setf 3 )
10export Red=$(     tput setf 4 )
11export Magenta=$( tput setf 5 )
12export Yellow=$(  tput setf 6 )
13export White=$(   tput setf 7 )
14
15export Norm=$(    tput sgr0 )
16
17
18#
19# Defines computer
20# ================
21if [[ $(hostname) = curie* ]] ; then arch=curie ; center=tgcc ; fi
22if [[ $(hostname) = irene* ]] ; then arch=irene ; center=tgcc ; fi
23PROGRAM=$(basename ${0})
24
25case ${arch} in
26    ( curie | irene )
27    set +vx
28    module unload cdo nco ferret
29    module unload netcdf hdf5
30    module load python # /2.7.12
31    module load netcdf/4.3.3.1_hdf5_parallel # Version for XIOS
32    module load nco
33    R_IN=$(ccc_home -u igcmg --cccwork)/IGCM
34    TMPDIR=${SCRATCHDIR}/TMP
35    SUBMIT_DIR=${BRIDGE_MSUB_PWD:-${SUBMIT_DIR}}
36    PROGRAM=${BRIDGE_MSUB_REQNAME}
37    ;;
38    ( * )
39    exit -1
40    ;;
41esac
42
Note: See TracBrowser for help on using the repository browser.