compute_wind_speed_height.ksh
#!/bin/ksh # # Copyright 2015 ECMWF. # # This software is licensed under the terms of the Apache Licence Version 2.0 # which can be obtained at http://www.apache.org/licenses/LICENSE-2.0 # # In applying this licence, ECMWF does not waive the privileges and immunities granted to it by # virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. # # ************************************************************************** # Function : compute_wind_speed_height # # Author (date) : Cristian Simarro (20/11/2015) # # Category : COMPUTATION # # OneLineDesc : Retrieves the files from mars and computes the u/v components of the wind at certain height # # Description : This script will retrieve the necessary fields (t,q,u,v,z,lnsp) from MARS. Then it will # call the Python script compute_wind_speed_height.py to calculate the wind components # # Note : To get the same behaviour than IFS, you need to retrieve the data in the archived resolution # (N640, O1280 ...) # # Parameters : -w|--wind <wind> Wind in meters. Default = 100 # -d|--date <date> MARS formatted keyword. Default Yesterday (20151012) # Examples: 20100501, 20100501/20100502/20100503, 20100501/to/20100503 # -t|--time <time> MARS formatted keyword time. Default 0 # Examples: 00, 00/12 # -s|--step <step> MARS formatted keyword step (only valid if type=fc). Default 0 # Examples: 00, 00/03/06/09 # -c|--class <class> MARS formatted keyword class. Default od # Examples: od, ei # -g|--grid <grid> MARS formatted keyword grid. Default 1.5/1.5 # Examples: 0.75/0.75, 128, 640 # -y|--type <type> MARS formatted keyword type. Default an # Examples: fc, an # -r|--stream <stream> MARS formatted keyword stream. Default oper # Examples: oper, enfo # -a|--area <area> MARS formatted keyword area. Default global # Examples: europe, 75/60/10/-20 # # Return Value : tq_ml_[date]_[time].grib - with all the levelist of t and q # zlnsp_ml__[date]_[time].grib - levelist 1 for params z and lnsp # uv_ml_[date]_[time].grib - all the levelists of u/v # compute_wind_speed_height.ksh.log - the logs will be stored here unless (-v) # # Dependencies : compute_wind_speed_height.py to calculate the components at certain height # # Example Usage : # ./compute_wind_speed_height.ksh -y fc -s 12 -d 20151021 -g "N640" -k -w 100 # ./compute_wind_speed_height.ksh -t 00/12 -d 20150101/to/20150110 -g "N640" # usage(){ print " ./compute_wind_speed_height.ksh - Retrieves the files from mars and computes the u/v components of the wind at certaing height" print print " If you want to get more information about the format of the MARS keywords see:" print " https://confluence.ecmwf.int/display/UDOC/Keywords+in+MARS+and+Dissemination+requests" print print "Usage: ./compute_wind_speed_height.ksh [ options ]" print print "options" print " -v Enable verbose mode" print " -k Do not clean after retrieve" print print " -w|--wind <wind> wind value in meters. Default $WIND" print " -d|--date <date> MARS formatted keyword. Default Yesterday ($DATE)" print " Examples: 20100501, 20100501/20100502/20100503, 20100501/to/20100503" print " -t|--time <time> MARS formatted keyword time. Default $TIME" print " Examples: 00, 00/12" print " -s|--step <step> MARS formatted keyword step (only valid if type=fc). Default $STEP" print " Examples: 00, 00/03/06/09" print " -c|--class <class> MARS formatted keyword class. Default $CLASS" print " Examples: od, ei" print " -g|--grid <grid> MARS formatted keyword grid. Default $GRID" print " Examples: 0.75/0.75, 128, 640" print " -y|--type <type> MARS formatted keyword type. Default $TYPE" print " Examples: fc, an" print " -r|--stream <stream> MARS formatted keyword stream. Default $STREAM" print " Examples: oper, enfo" print " -a|--area <area> MARS formatted keyword area. Default $AREA" print " Examples: europe, 75/60/10/-20" print " -l|--levelist <levelist> Slash separated list of levels to write in the output file. Default $LEVELIST" print " Examples: 1, 91, 1/2/3/4" print " -e|--extra <extra> (special) Extra keyword that you want to append to the MARS request." print " Examples: \"expect=3\"" } VERBOSE=0 DATE=`date +%Y%m%d -d "-1 day"` TIME=0 CLASS="od" GRID="1.5/1.5" STEP=0 CLEAN=1 STREAM="oper" TYPE="an" LEVELIST="all" WIND=100 AREA="global" OPTS="h(help)v(verbose)k(keep)w:(wind)d:(date)t:(time)c:(class)g:(grid)y:(type)s:(step)r:(stream)a:(area)l:(levelist)e:(extra)" while getopts "$OPTS" optchar do case "$optchar" in w) WIND=$OPTARG;echo "wind set to $OPTARG";; d) DATE=$OPTARG;echo "date set to $OPTARG";; t) TIME=$OPTARG;echo "time set to $OPTARG";; c) CLASS=$OPTARG;echo "class set to $OPTARG";; g) GRID=$OPTARG;echo "grid set to $OPTARG";; y) TYPE=$OPTARG;echo "type set to $OPTARG";; s) STEP=$OPTARG;echo "step set to $OPTARG";; r) STREAM=$OPTARG;echo "stream set to $OPTARG";; a) AREA=$OPTARG;echo "area set to $OPTARG";; l) LEVELIST="$OPTARG";echo "levelist set to $OPTARG";; e) EXTRA="$OPTARG,";echo "extra set to $OPTARG";; v) VERBOSE=1;; k) CLEAN=0;; h) usage; exit 0;; ?) usage; exit 0;; esac done echo "[INFO] I will calculate u and v components of the wind on $WIND meters" EXECUTABLE=`basename $0` IFS="/" set -A DSTRING $DATE set -A TSTRING $TIME IFS="" FNAME="${DSTRING[0]}_${TSTRING[0]}" if [[ ! -f compute_wind_speed_height.py ]]; then echo "[ERROR] you need compute_wind_speed_height.py in the same directory" exit 1 fi if [[ $TYPE == "fc" ]]; then STEP="step=$STEP," else STEP="" fi cat << EOF1 > tq.req retrieve, date= $DATE, class = $CLASS, time= $TIME, stream = $STREAM, levtype= ml, grid= $GRID, $STEP $EXTRA type= $TYPE, area= $AREA, param= t/q, levelist= all, target="tq_ml_${FNAME}.grib" EOF1 cat << EOF2 > lnsp.req retrieve, date= $DATE, class = $CLASS, time= $TIME, stream = $STREAM, levtype= ml, grid= $GRID, $STEP $EXTRA type= $TYPE, area= $AREA, param=lnsp, levelist=1, target="lnsp_ml_${FNAME}.grib" EOF2 cat << EOF3 > z.req retrieve, date= $DATE, class = $CLASS, time= $TIME, stream = $STREAM, levtype= ml, grid= $GRID, $EXTRA area= $AREA, param=z, levelist=1, type=an, target="z_ml_${FNAME}.grib" EOF3 cat << EOF4 > uv.req retrieve, date= $DATE, class = $CLASS, time= $TIME, stream = $STREAM, levtype= ml, grid= $GRID, $STEP $EXTRA type= $TYPE, area= $AREA, param= u/v, levelist= all, target="uv_ml_${FNAME}.grib" EOF4 if [ $VERBOSE -eq 0 ]; then rm -f ${EXECUTABLE}.log fi for i in tq.req lnsp.req z.req uv.req; do echo "executing mars request for $i ..." if [ $VERBOSE -eq 1 ]; then cmnd="`which mars` $i" else cmnd="`which mars` $i >>${EXECUTABLE}.log" fi echo $cmnd eval $cmnd ret_code=$? if [ $ret_code != 0 ]; then printf "Error : [%d] when executing command: '$cmnd'\n" $ret_code exit $ret_code fi done if [[ -f "lnsp_ml_${FNAME}.grib" && -f "z_ml_${FNAME}.grib" ]]; then cat lnsp_ml_${FNAME}.grib z_ml_${FNAME}.grib > zlnsp_ml_${FNAME}.grib rm -f lnsp_ml_${FNAME}.grib z_ml_${FNAME}.grib if [ $CLEAN -eq 1 ]; then rm -f z.req tq.req lnsp.req uv.req fi fi cmnd="python compute_wind_speed_height.py tq_ml_${FNAME}.grib zlnsp_ml_${FNAME}.grib uv_ml_${FNAME}.grib -w \"$WIND\"" echo $cmnd eval $cmnd ret_code=$? if [ $ret_code != 0 ]; then printf "Error : [%d] when executing command: '$cmnd'\n" $ret_code exit $ret_code fi if [ $CLEAN -eq 1 ]; then rm -f z.req tq.req lnsp.req zlnsp_ml_${FNAME}.grib tq_ml_${FNAME}.grib uv_ml_${FNAME}.grib fi