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 trunk/UTIL – NEMO

source: trunk/UTIL/fait_config @ 1528

Last change on this file since 1528 was 1440, checked in by rblod, 15 years ago

Add a specific configuration for IPSL climate model

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