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.
launch_sasf.sh in NEMO/branches/2020/dev_r13648_ASINTER-04_laurent_bulk_ice/tests/STATION_ASF/EXPREF – NEMO

source: NEMO/branches/2020/dev_r13648_ASINTER-04_laurent_bulk_ice/tests/STATION_ASF/EXPREF/launch_sasf.sh @ 13830

Last change on this file since 13830 was 13830, checked in by laurent, 4 years ago

Sea-ice bulk algorithm "AN05" (Andreas et al. 2005) now operational!

  • Property svn:executable set to *
File size: 8.4 KB
RevLine 
[13675]1#!/bin/bash
2
3################################################################
4#
5# Script to launch a set of STATION_ASF simulations
6#
7#  Ocean-only version....
8#
9# L. Brodeau, 2020
10#
11################################################################
12
13CONFIG="STATION_ASF" ; # general name of the configuration
[13676]14CONFIG_BLD="STATION_ASF2" ; # name of config as build in NEMO... (directory inside "tests" actually contains the compiled test-case?)
[13675]15
[13690]16# Atmo + SSX forcing to use and sea-ice support?
[13719]17#     => FORCING: name of forcing
[13690]18#     => i_sea_ice: whether to compute fluxes over sea-ice as well
19#     => SFORC: string sufficient to copy relevant files as in "*${SFORC}*.nc"
[13781]20#FORCING="PAPA"         ; i_sea_ice=0 ; SFORC="Station_PAPA_50N-145W"
21FORCING="ERA5_arctic" ; i_sea_ice=1 ; SFORC="ERA5_arctic_surface_81N_36p75E_1h" ; # "ERA5_arctic" WITH ice/air flux computation
[13719]22#FORCING="ERA5_arctic" ; i_sea_ice=0 ; SFORC="ERA5_arctic_surface_81N_36p75E_1h" ; # "ERA5_arctic" WITHOUT ice/air flux computation
[13690]23
24
[13675]25# Root directory NEMOGCM reference depository where to fetch compiled STATION_ASF nemo.exe + default namelists:
[13682]26NEMO_REF_DIR="`dirname ${PWD} | sed -e 's|/tests/STATION_ASF||g'`" ; # that should normally do the trick!
[13675]27
28# NEMOGCM root directory where to fetch compiled STATION_ASF nemo.exe:
[13676]29SASF_WRK_DIR="${NEMO_REF_DIR}/tests/${CONFIG_BLD}"
[13675]30
[13676]31# DATA_IN_DIR => Directory containing sea-surface + atmospheric forcings:
32DATA_IN_DIR="${NEMO_REF_DIR}/tests/${CONFIG}/input_data"
33
[13675]34# Directory where to run the simulation:
35PROD_DIR="${HOME}/tmp/${CONFIG}"
36
[13733]37# MPI launch command for your system
[13806]38# Even though we are running on 1 proc here, NEMO has likely been compiled with MPI,
39# if it's not the case then just leave "MPI_LAUNCH" void...
[13733]40MPI_LAUNCH="mpirun -n 1"
[13675]41
42####### End of normal user configurable section #######
43#================================================================================
[13676]44
[13733]45iconv_1d=1
[13676]46if [ "`which ncks`" = "" ]; then
47    echo
48    echo "WARNING: you do not seem to have NCO installed here... You should!"
[13733]49    echo "      => anyway! will do without, but output netCDF files will remaine 3x3 in space :( "
[13676]50    echo
[13733]51    iconv_1d=0
52    sleep 3
[13676]53fi
54
[13675]55HERE=`pwd`
56
57echo
58
59# Is the nemo.exe of STATION_ASF compiled with sea-ice support (SI3) ?
60i_si3=0
61FCPP="${SASF_WRK_DIR}/cpp_${CONFIG_BLD}.fcm"
[13682]62if [ ! -f ${FCPP} ]; then echo " Mhhh, we could not find 'cpp_STATION_ASF.fcm' into `dirname ${FCPP}` !"; exit; fi
[13675]63ca=`cat ${FCPP} | grep 'key_si3'`
64
65if [ "${ca}" = "" ]; then
66    echo " *** NEMO was NOT compiled with sea-ice support (SI3) !" ; echo
67    if [ ${i_sea_ice} -eq 1 ]; then
68        echo " ===> so you cannot request ice-air flux computation !"
69        echo "     ===> please set i_sea_ice=0 or compile STATION_ASF with CPP key 'key_si3' !"
70        echo ; exit
71    fi
72else
73    echo " *** NEMO was apparently compiled with sea-ice support (SI3) !" ; echo
74    i_si3=1
75fi
76
77# Ok things are a bit different whether we compute fluxes over open ocean only or open ocean + sea-ice
78if [ ${i_sea_ice} -eq 1 ]; then
79    # OPEN-OCEAN/AIR + SEA-ICE/AIR flux computation
80    #   - simpler if we only use one Open-ocean/air algo (ECMWF)
81    LIST_OA_ALGOS="ECMWF" ;          # list of air-sea algorithms to test
[13830]82    LIST_IA_ALGOS="AN05 LG15 LU12 CSTC" ; # list of air-ice algorithms to test
[13719]83    DIR_NL=${FORCING}/oce+ice ; # where to fetch the namelists from...
[13675]84else
85    # Only OPEN-OCEAN/AIR flux computation
[13676]86    LIST_OA_ALGOS="NCAR ECMWF COARE3p6 ANDREAS"; # list of air-sea algorithms to test
[13675]87    LIST_IA_ALGOS=""
[13719]88    DIR_NL=${FORCING}/oce ; # where to fetch the namelists from...
[13675]89fi
[13719]90if [ ! -d ${DIR_NL} ]; then echo " Mhhh, seems like forcing ${FORCING} is not meant to be used with sea-ice/air flux computation !"; exit; fi
[13675]91
92
93
94# NEMO executable to use is:
95NEMO_EXE="${SASF_WRK_DIR}/BLD/bin/nemo.exe"
96if [ ! -f ${NEMO_EXE} ]; then echo " Mhhh, no compiled 'nemo.exe' found into `dirname ${NEMO_EXE}` !"; exit; fi
97
98SASF_EXPREF=`pwd`  ; # STATION_ASF EXPREF directory from which to use namelists and XIOS xml files...
99
[13682]100CFGS_SHARED="${NEMO_REF_DIR}/cfgs/SHARED"
101if [ ! -d ${CFGS_SHARED} ]; then echo "PROBLEM!!! => could not find directory ${CFGS_SHARED} !"; exit; fi
[13675]102
[13682]103if [ ! -d ${DATA_IN_DIR} ]; then echo "PROBLEM!!! => could not find directory 'input_data' with input forcing..."; exit; fi
104
[13675]105cdt_cmpl="`\ls -l ${NEMO_EXE} | cut -d' ' -f 6,7,8`"
106
107echo "###########################################################"
108echo "#        S T A T I O N   A i r  -  S e a   F l u x        #"
109echo "###########################################################"
110echo
111echo "  * NEMO reference root directory is: ${NEMO_REF_DIR}"
112echo "  * STATION_ASF work directory is: ${SASF_WRK_DIR}"
113echo "       ==> NEMO EXE to use: ${NEMO_EXE}"
114echo "           ==> compiled: ${cdt_cmpl} !"
115echo
116echo "  * Input forcing data into: ${DATA_IN_DIR}"
117echo "  * Production will be done into: ${PROD_DIR}"
118echo "  * Directory in which namelists and xml files are fetched:"
119echo "       ==> ${SASF_EXPREF}"
120echo
121sleep 2
122
123mkdir -p ${PROD_DIR}
124
125rsync -avP ${NEMO_EXE}          ${PROD_DIR}/
126ln -sf     ${NEMO_EXE}          ${PROD_DIR}/nemo.exe.lnk
127
128
129# XIOS xml file
130################
131
[13682]132list_xml_ref="field_def_nemo-oce.xml domain_def_nemo.xml grid_def_nemo.xml"
133list_xml_cfg="iodef.xml file_def_nemo-oce.xml"
[13675]134fcntxt="context_nemo_OCE.xml"
135if [ ${i_sea_ice} -eq 1 ]; then
[13682]136    list_xml_ref+=" field_def_nemo-ice.xml"
137    list_xml_cfg+=" file_def_nemo-ice.xml"
[13675]138    fcntxt="context_nemo_OCE+ICE.xml"
139fi
140
141# The "context_nemo.xml" file:
142if [ ! -f ${SASF_EXPREF}/${fcntxt} ]; then echo " Mhhh, ${fcntxt} not found into ${SASF_EXPREF} !"; exit; fi
143rsync -avPL ${SASF_EXPREF}/${fcntxt} ${PROD_DIR}/context_nemo.xml
144
145# All remaining "*.xml" files:
[13682]146for ff in ${list_xml_cfg} ; do
[13675]147    if [ ! -f ${SASF_EXPREF}/${ff} ]; then echo " Mhhh, ${ff} not found into ${SASF_EXPREF} !"; exit; fi
148    rsync -avPL ${SASF_EXPREF}/${ff} ${PROD_DIR}/
149done
[13682]150for ff in ${list_xml_ref} ; do
151    if [ ! -f ${CFGS_SHARED}/${ff} ]; then echo " Mhhh, ${ff} not found into ${CFGS_SHARED} !"; exit; fi
152    rsync -avPL ${CFGS_SHARED}/${ff} ${PROD_DIR}/
[13675]153done
154
155
156# Copy forcing to work directory:
157echo ; echo "Forcing files to use:"
[13690]158\ls -l ${DATA_IN_DIR}/*${SFORC}*.nc
[13675]159echo
[13690]160rsync -avP ${DATA_IN_DIR}/*${SFORC}*.nc ${PROD_DIR}/
[13675]161echo; echo
162
163
164if [ "${LIST_IA_ALGOS}" = "" ]; then LIST_IA_ALGOS="none"; fi
165
[13676]166echo
[13675]167
168for OA_A in ${LIST_OA_ALGOS}; do
169    for IA_A in ${LIST_IA_ALGOS}; do
[13676]170
171        echo       
[13675]172        CASE="${OA_A}"
173        if [ ${i_sea_ice} -eq 1 ] && [ "${IA_A}" != "none" ]; then CASE="${OA_A}-${IA_A}"; fi
174
175        echo ; echo
[13676]176        echo "======================================================================="
[13719]177        echo " Going for experiment: ${CASE} bulk param. with ${FORCING} forcing "
[13676]178        echo "======================================================================="
[13675]179        echo
180
181        scase=`echo "${CASE}" | tr '[:upper:]' '[:lower:]'`
182
183        rm -f ${PROD_DIR}/namelist_cfg
184        fnml="${SASF_EXPREF}/${DIR_NL}/namelist_${scase}_cfg"
185        if [ ! -f ${fnml} ]; then echo " Mhhh, test namelist ${fnml} not found !"; exit; fi
186
187        echo "   ===> namelist to use is: ${DIR_NL}/namelist_${scase}_cfg !"; echo
188       
189        # The namelists:
190        rsync -avPL ${SASF_EXPREF}/${DIR_NL}/namelist_${scase}_cfg ${PROD_DIR}/namelist_cfg
[13682]191        rsync -avPL ${CFGS_SHARED}/namelist_ref                    ${PROD_DIR}/namelist_ref
[13675]192        if [ ${i_sea_ice} -eq 1 ]; then
193            rsync -avPL ${SASF_EXPREF}/namelist_ice_cfg ${PROD_DIR}/namelist_ice_cfg
[13682]194            rsync -avPL ${CFGS_SHARED}/namelist_ice_ref ${PROD_DIR}/namelist_ice_ref
[13675]195        fi
[13733]196   
[13675]197        cd ${PROD_DIR}/
198        echo
[13733]199        echo "Launching NEMO ! (==> ${MPI_LAUNCH} ./nemo.exe)"
200        ${MPI_LAUNCH} ./nemo.exe 1>out_nemo.out 2>err_nemo.err
[13675]201        echo "Done!"
202        echo
203
204        # Moving output files:
205        mkdir -p output
[13719]206        mv -f ${CONFIG}-${CASE}_${FORCING}_*_grid*.nc output/
207        if [ ${i_sea_ice} -eq 1 ]; then mv -f ${CONFIG}-${CASE}_${FORCING}_*_icemod.nc output/; fi
[13675]208
209        # Saving logs:
[13719]210        mkdir -p ${CASE}_${FORCING}_log
211        mv -f *.out *.err ocean.output output.namelist.dyn ${CASE}_${FORCING}_log/
[13675]212
[13733]213        if [ ${iconv_1d} -eq 1 ]; then
[13675]214        # Making 3x3 to 1 !
215        cd output/
[13719]216        list=`\ls ${CONFIG}*${CASE}_${FORCING}_*.nc | grep -v '_restart_'| grep -v '_1p.nc'`
[13675]217        for ff in ${list}; do
218            echo
[13676]219            fn=`echo ${ff} | sed -e "s|.nc|_1p.nc|g"`
[13675]220            CMD="ncks -O -d x,1 -d y,1 ${ff} -o ${fn}"
221            echo " *** ${CMD}"; ${CMD}
222            echo
223        done
[13733]224        fi
[13675]225
226    done
227
228done
Note: See TracBrowser for help on using the repository browser.