New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
fait_config in branches/CMIP5_IPSL/UTIL – NEMO

source: branches/CMIP5_IPSL/UTIL/fait_config @ 2449

Last change on this file since 2449 was 2449, checked in by mafoipsl, 13 years ago

Add IPSLCM5B configuration.

  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 5.6 KB
Line 
1#!/bin/ksh
2######################################################
3# Author : Rachid benshila for ESOPA
4# Contact : opatlod@lodyc.jussieu.fr
5#
6# This script aims to create the OPA/WORK directory
7# with links to target directories for the sources
8# and to link in the WORK the BB_make and BB_make.ldef
9# associated  to a chosen configuration
10#
11######################################################
12
13###################################
14#                                 #
15# Beginning of user modifications #
16#                                 #
17###################################
18#- Config name ---
19# To add a new configuration called NAME you have to change this script
20# 1. Add your configuration in LIST
21# 2. Add the directories needed for this config : set -A DIR_NAME DIR1 DIR2 ...
22# 3. Run fait_config NAME
23# If there is no directory config/NAME/scripts, and in this no BB_make.ldef,
24# the config/ORCA2_LIM directory is copied under NAME
25#
26# Example 1 : in order to create a GYRE_TRC configuration :
27# 1. In this script, change LIST to LIST="ORCA2_LIM \nGYRE \nGYRE_TRC"
28# 2. In this script, add set -A DIR_GYRE_TRC OPA_SRC LIM_SRC_3 TOP_SRC C1D_SRC, take care of the syntax
29# 3. Run fait_config GYRE_TRC
30# Example 2 : in order to create an OFFLINE_TRC configuration :
31# 1. In this script, change LIST to LIST="ORCA2_LIM \nGYRE \nOFFLINE_TRC"
32# 2. In this script, add set -A DIR_OFFLINE_TRC OFF_SRC TOP_SRC, take care of the syntax
33# 3. Run fait_config OFFLINE_TRC
34# Example 2 : in order to use LIM3, just change LIM_SRC_2 in LIM_SRC_3
35
36LIST="ORCA2_LIM \nGYRE \nGYRE_LOBSTER \nORCA2_LIM_PISCES \nORCA2_OFF_PISCES \nPOMME \nIPSLCM5 \nIPSLCM5A \nIPSLCM5_v3 \nIPSLCM5_LOOP \nIPSLCM5B"
37set -A DIR_ORCA2_LIM OPA_SRC LIM_SRC_2 C1D_SRC NST_SRC
38set -A DIR_GYRE OPA_SRC LIM_SRC_2 C1D_SRC
39set -A DIR_GYRE_LOBSTER OPA_SRC LIM_SRC_2 C1D_SRC TOP_SRC
40set -A DIR_ORCA2_LIM_PISCES OPA_SRC LIM_SRC_2 C1D_SRC TOP_SRC NST_SRC
41set -A DIR_ORCA2_OFF_PISCES OFF_SRC TOP_SRC
42set -A DIR_POMME OPA_SRC LIM_SRC_2 C1D_SRC
43set -A DIR_IPSLCM5 OPA_SRC LIM_SRC_2 C1D_SRC
44set -A DIR_IPSLCM5A OPA_SRC LIM_SRC_2 C1D_SRC TOP_SRC
45set -A DIR_IPSLCM5_v3 OPA_SRC LIM_SRC_2 C1D_SRC TOP_SRC
46set -A DIR_IPSLCM5_LOOP OPA_SRC LIM_SRC_2 C1D_SRC TOP_SRC
47set -A DIR_IPSLCM5B OPA_SRC LIM_SRC_2 C1D_SRC TOP_SRC
48set -A DIR_IPSL_ESM_v2 OPA_SRC LIM_SRC_2 C1D_SRC
49
50###################################
51#                                 #
52#    End of user modifications    #
53#                                 #
54###################################
55
56
57#- Some tests ---
58d_n=$(dirname $0); b_n=$(basename $0);
59
60if   [ ${#} -gt 1 ]; then
61    echo 'Only one configuration can be specified in:' 1>&2;
62    echo $LIST 1>&2;
63    exit 3;
64elif [ ${#} -eq 1 ]; then
65     m_n="${1}"
66elif [ ${#} -eq 0 ]; then
67    echo 'You must specify one configuration in :' 1>&2;
68    echo $LIST 1>&2;
69    echo 'You can also complete fait_config to add a new one'
70    exit 3;
71fi
72
73#- Create the WORK --
74d_m=`find ${d_n}/.. -name NEMO`  ;
75[ -d ${d_m}/WORK ] || mkdir ${d_m}/WORK;
76cd ${d_m}/WORK
77
78#- Clean links and librairies
79[ -f Makefile ] && gmake clean
80[ -n "`\ls`" ] && \rm -rf *
81
82#- Find the number of directories ---
83eval NDIR=\${#DIR_${m_n}[*]}
84
85#- Build a working array TAB containing the directories ---
86i=0
87while [ i -lt $NDIR ]
88do
89    eval  TAB[i]=\${DIR_${m_n}[i]}
90    let i=i+1
91done
92
93#- Creating the good links, at first on OPA_SRC ---
94if [ ${#TAB[*]} -ne 0 ] ; then
95    echo " Creating NEMO/WORK = ${TAB[*]} for ${m_n}"
96
97    i=0
98    while [ i -lt $NDIR ]
99    do
100   [ ${#TAB[i]} -ne 0 ] && [ "${TAB[i]}" = "OPA_SRC" ] && ln -sf ../OPA_SRC/*.[Ffh]90 .
101   [ ${#TAB[i]} -ne 0 ] && [ "${TAB[i]}" = "OPA_SRC" ] && ln -sf ../OPA_SRC/*/*.[Ffh]90 . && break
102   let i=$i+1
103    done
104
105    i=0
106    while [ i -lt $NDIR ]
107    do
108      if [ "${TAB[i]}" = "LIM_SRC_3" ]; then
109     ln -sf ../LIM_SRC_3/*.[Ffh]90 . 
110     
111      elif [ "${TAB[i]}" = "LIM_SRC_2" ]; then
112     ln -sf ../LIM_SRC_2/*.[Ffh]90 . 
113     
114      elif [ "${TAB[i]}" = "C1D_SRC" ]; then
115     ln -sf ../C1D_SRC/*.[Ffh]90 . 
116     
117      elif [ "${TAB[i]}" = "TOP_SRC" ]; then
118     ln -sf ../TOP_SRC/*.[Ffh]90 .       
119     ln -sf ../TOP_SRC/*/*.[Ffh]90 .
120     
121      elif [ "${TAB[i]}" = "NST_SRC" ]; then
122     [ -f  agrif_opa_interp.F90 ] && \rm agrif_opa_interp.F90                   
123     [ -f  agrif_opa_sponge.F90 ] && \rm agrif_opa_sponge.F90                   
124     [ -f  agrif_opa_update.F90 ] && \rm agrif_opa_update.F90                   
125     [ -f  agrif_top_interp.F90 ] && \rm agrif_top_interp.F90                   
126     [ -f  agrif_top_sponge.F90 ] && \rm agrif_top_sponge.F90                   
127     [ -f  agrif_top_update.F90 ] && \rm agrif_top_update.F90                   
128     ln -sf ../NST_SRC/*.[Ffh]90 .
129     
130      elif [ "${TAB[i]}" = "OFF_SRC" ]; then 
131     ln -sf ../OFF_SRC/*.[Ffh]90 .
132     ln -sf ../OFF_SRC/*/*.[Ffh]90 .
133      fi
134      let i=$i+1
135    done
136
137    [ ! -d ../../../config/${m_n} ] && \cp -R ../../../config/ORCA2_LIM ../../../config/${m_n} 
138    ln -sf ../../../*/${m_n}/scripts/BB_make AA_make ;
139    ln -sf ../../../*/${m_n}/scripts/BB_make.ldef AA_make.ldef ;
140
141else
142
143    echo "Configuration "${m_n}" not supported" 1>&2
144    echo 'Make your choice in :' 1>&2
145    echo $LIST 1>&2
146    echo 'You can also complete fait_config to add a new one'
147    exit 1
148
149fi 
150
151#- Building the standard list of source files ---
152cat >.patron <<"EOF" 
153CVS
154SRC_PARAM
155SRC_FILE_LIST
156tmplist
157AA_make
158KEY_CPP
159Makefile
160*?.o
161 i.?*
162*?.L
163.patron
164OPAFILES
165EOF
166ls -1 | fgrep -v -f .patron  >SRC_FILE_LIST ; cp SRC_FILE_LIST SRC_FILE_LIST.temp ;
167
168#- Writing KEY_CPP file ---
169sed -e /^P_P/\!d -e "s/P_P = //" AA_make.ldef > KEY_CPP;   
170
171#- Save new configuration an d directories names ---
172print ${m_n} ${TAB[*]} >.config
173
174exit 0;
Note: See TracBrowser for help on using the repository browser.