source: CONFIG_DEVT/ORCHIDEE_OL_TP/ENSEMBLE/atlas_FLUXNET_taylor.cfg @ 6327

Last change on this file since 6327 was 5570, checked in by aclsce, 3 years ago

Created ORCHIDEE_OL_TP configuration : temporary configuration to be used during prectical session.

File size: 8.3 KB
Line 
1#!/bin/ksh
2#set -vx
3
4#**************************************************************
5# Author: Nicolas Vuichard
6# Contact: Nioclas.Vuichard@lsce.jussieu.fr
7# $Date: July 2011
8# $Name$
9# $Revision: 1 $
10# History:
11# Modification:
12#
13#**************************************************************
14
15
16
17input=$@
18paper=-p
19quality=cx1800
20debug=
21flag_reference_file=0
22group=GRA
23config_ref=
24config_eval=
25
26
27mv ../stat_${config_eval}_${config_ref}_${group}_GPP_hour.csv .
28mv ../stat_${config_eval}_${config_ref}_${group}_GPP_day.csv .
29mv ../stat_${config_eval}_${config_ref}_${group}_GPP_month.csv .
30mv ../stat_${config_eval}_${config_ref}_${group}_GPP_year.csv .
31
32mv ../stat_${config_eval}_${config_ref}_${group}_TER_hour.csv .
33mv ../stat_${config_eval}_${config_ref}_${group}_TER_day.csv .
34mv ../stat_${config_eval}_${config_ref}_${group}_TER_month.csv .
35mv ../stat_${config_eval}_${config_ref}_${group}_TER_year.csv .
36
37mv ../stat_${config_eval}_${config_ref}_${group}_NEE_hour.csv .
38mv ../stat_${config_eval}_${config_ref}_${group}_NEE_day.csv .
39mv ../stat_${config_eval}_${config_ref}_${group}_NEE_month.csv .
40mv ../stat_${config_eval}_${config_ref}_${group}_NEE_year.csv .
41
42mv ../stat_${config_eval}_${config_ref}_${group}_SH_hour.csv .
43mv ../stat_${config_eval}_${config_ref}_${group}_SH_day.csv .
44mv ../stat_${config_eval}_${config_ref}_${group}_SH_month.csv .
45mv ../stat_${config_eval}_${config_ref}_${group}_SH_year.csv .
46
47mv ../stat_${config_eval}_${config_ref}_${group}_LH_hour.csv .
48mv ../stat_${config_eval}_${config_ref}_${group}_LH_day.csv .
49mv ../stat_${config_eval}_${config_ref}_${group}_LH_month.csv .
50mv ../stat_${config_eval}_${config_ref}_${group}_LH_year.csv .
51
52
53cp ../taylor_arrow_fluxnet_final_2.jnl .
54
55
56
57# Ratio one day over time step
58one_day=86400
59ratio=$(( one_day/1800 ))
60
61NumSites=`wc -l stat_${config_eval}_${config_ref}_${group}_GPP_hour.csv | sed -e "s/\([0-9]*\).*/\1/g"`
62echo ${input} | ferretloop - ${debug} --ps2gif_option "-g $quality" -p -i "hour-to-hour GPP variability" -o  gpp_hour taylor_arrow_fluxnet_final_2.jnl "${NumSites} hour $flag_reference_file GPP ${config_eval} ${config_ref} ${group}"
63
64NumSites=`wc -l stat_${config_eval}_${config_ref}_${group}_GPP_day.csv | sed -e "s/\([0-9]*\).*/\1/g"`
65echo ${input} | ferretloop - ${debug} --ps2gif_option "-g $quality" -p -i "day-to-day GPP variability" -o  gpp_day taylor_arrow_fluxnet_final_2.jnl "${NumSites} day $flag_reference_file GPP ${config_eval} ${config_ref} ${group}"
66
67NumSites=`wc -l stat_${config_eval}_${config_ref}_${group}_GPP_month.csv | sed -e "s/\([0-9]*\).*/\1/g"`
68echo ${input} | ferretloop - ${debug} --ps2gif_option "-g $quality" -p -i "month-to-month GPP variability" -o  gpp_month taylor_arrow_fluxnet_final_2.jnl "${NumSites} month $flag_reference_file GPP ${config_eval} ${config_ref} ${group}"
69
70NumSites=`wc -l stat_${config_eval}_${config_ref}_${group}_GPP_year.csv | sed -e "s/\([0-9]*\).*/\1/g"`
71echo ${input} | ferretloop - ${debug} --ps2gif_option "-g $quality" -p -i "year-to-year GPP variability" -o  gpp_year taylor_arrow_fluxnet_final_2.jnl "${NumSites} year $flag_reference_file GPP ${config_eval} ${config_ref} ${group}"
72
73NumSites=`wc -l stat_${config_eval}_${config_ref}_${group}_TER_hour.csv | sed -e "s/\([0-9]*\).*/\1/g"`
74echo ${input} | ferretloop - ${debug} --ps2gif_option "-g $quality" -p -i "hour-to-hour TER variability" -o  ter_hour taylor_arrow_fluxnet_final_2.jnl "${NumSites} hour $flag_reference_file TER ${config_eval} ${config_ref} ${group}"
75
76NumSites=`wc -l stat_${config_eval}_${config_ref}_${group}_TER_day.csv | sed -e "s/\([0-9]*\).*/\1/g"`
77echo ${input} | ferretloop - ${debug} --ps2gif_option "-g $quality" -p -i "day-to-day TER variability" -o  ter_day taylor_arrow_fluxnet_final_2.jnl "${NumSites} day $flag_reference_file TER ${config_eval} ${config_ref} ${group}"
78
79NumSites=`wc -l stat_${config_eval}_${config_ref}_${group}_TER_month.csv | sed -e "s/\([0-9]*\).*/\1/g"`
80echo ${input} | ferretloop - ${debug} --ps2gif_option "-g $quality" -p -i "month-to-month TER variability" -o  ter_month taylor_arrow_fluxnet_final_2.jnl "${NumSites} month $flag_reference_file TER ${config_eval} ${config_ref} ${group}"
81
82NumSites=`wc -l stat_${config_eval}_${config_ref}_${group}_TER_year.csv | sed -e "s/\([0-9]*\).*/\1/g"`
83echo ${input} | ferretloop - ${debug} --ps2gif_option "-g $quality" -p -i "year-to-year TER variability" -o  ter_year taylor_arrow_fluxnet_final_2.jnl "${NumSites} year $flag_reference_file TER ${config_eval} ${config_ref} ${group}"
84
85NumSites=`wc -l stat_${config_eval}_${config_ref}_${group}_NEE_hour.csv | sed -e "s/\([0-9]*\).*/\1/g"`
86echo ${input} | ferretloop - ${debug} --ps2gif_option "-g $quality" -p -i "hour-to-hour NEE variability" -o  nee_hour taylor_arrow_fluxnet_final_2.jnl "${NumSites} hour $flag_reference_file NEE ${config_eval} ${config_ref} ${group}"
87
88NumSites=`wc -l stat_${config_eval}_${config_ref}_${group}_NEE_day.csv | sed -e "s/\([0-9]*\).*/\1/g"`
89echo ${input} | ferretloop - ${debug} --ps2gif_option "-g $quality" -p -i "day-to-day NEE variability" -o  nee_day taylor_arrow_fluxnet_final_2.jnl "${NumSites} day $flag_reference_file NEE ${config_eval} ${config_ref} ${group}"
90
91NumSites=`wc -l stat_${config_eval}_${config_ref}_${group}_NEE_month.csv | sed -e "s/\([0-9]*\).*/\1/g"`
92echo ${input} | ferretloop - ${debug} --ps2gif_option "-g $quality" -p -i "month-to-month NEE variability" -o  nee_month taylor_arrow_fluxnet_final_2.jnl "${NumSites} month $flag_reference_file NEE ${config_eval} ${config_ref} ${group}"
93
94NumSites=`wc -l stat_${config_eval}_${config_ref}_${group}_NEE_year.csv | sed -e "s/\([0-9]*\).*/\1/g"`
95echo ${input} | ferretloop - ${debug} --ps2gif_option "-g $quality" -p -i "year-to-year NEE variability" -o  nee_year taylor_arrow_fluxnet_final_2.jnl "${NumSites} year $flag_reference_file NEE ${config_eval} ${config_ref} ${group}"
96
97NumSites=`wc -l stat_${config_eval}_${config_ref}_${group}_SH_hour.csv | sed -e "s/\([0-9]*\).*/\1/g"`
98echo ${input} | ferretloop - ${debug} --ps2gif_option "-g $quality" -p -i "hour-to-hour SH variability" -o  sh_hour taylor_arrow_fluxnet_final_2.jnl "${NumSites} hour $flag_reference_file SH ${config_eval} ${config_ref} ${group}"
99
100NumSites=`wc -l stat_${config_eval}_${config_ref}_${group}_SH_day.csv | sed -e "s/\([0-9]*\).*/\1/g"`
101echo ${input} | ferretloop - ${debug} --ps2gif_option "-g $quality" -p -i "day-to-day SH variability" -o  sh_day taylor_arrow_fluxnet_final_2.jnl "${NumSites} day $flag_reference_file SH ${config_eval} ${config_ref} ${group}"
102
103NumSites=`wc -l stat_${config_eval}_${config_ref}_${group}_SH_month.csv | sed -e "s/\([0-9]*\).*/\1/g"`
104echo ${input} | ferretloop - ${debug} --ps2gif_option "-g $quality" -p -i "month-to-month SH variability" -o  sh_month taylor_arrow_fluxnet_final_2.jnl "${NumSites} month $flag_reference_file SH ${config_eval} ${config_ref} ${group}"
105
106NumSites=`wc -l stat_${config_eval}_${config_ref}_${group}_SH_year.csv | sed -e "s/\([0-9]*\).*/\1/g"`
107echo ${input} | ferretloop - ${debug} --ps2gif_option "-g $quality" -p -i "year-to-year SH variability" -o  sh_year taylor_arrow_fluxnet_final_2.jnl "${NumSites} year $flag_reference_file SH ${config_eval} ${config_ref} ${group}"
108
109NumSites=`wc -l stat_${config_eval}_${config_ref}_${group}_LH_hour.csv | sed -e "s/\([0-9]*\).*/\1/g"`
110echo ${input} | ferretloop - ${debug} --ps2gif_option "-g $quality" -p -i "hour-to-hour LH variability" -o  lh_hour taylor_arrow_fluxnet_final_2.jnl "${NumSites} hour $flag_reference_file LH ${config_eval} ${config_ref} ${group}"
111
112NumSites=`wc -l stat_${config_eval}_${config_ref}_${group}_LH_day.csv | sed -e "s/\([0-9]*\).*/\1/g"`
113echo ${input} | ferretloop - ${debug} --ps2gif_option "-g $quality" -p -i "day-to-day LH variability" -o  lh_day taylor_arrow_fluxnet_final_2.jnl "${NumSites} day $flag_reference_file LH ${config_eval} ${config_ref} ${group}"
114
115NumSites=`wc -l stat_${config_eval}_${config_ref}_${group}_LH_month.csv | sed -e "s/\([0-9]*\).*/\1/g"`
116echo ${input} | ferretloop - ${debug} --ps2gif_option "-g $quality" -p -i "month-to-month LH variability" -o  lh_month taylor_arrow_fluxnet_final_2.jnl "${NumSites} month $flag_reference_file LH ${config_eval} ${config_ref} ${group}"
117
118NumSites=`wc -l stat_${config_eval}_${config_ref}_${group}_LH_year.csv | sed -e "s/\([0-9]*\).*/\1/g"`
119echo ${input} | ferretloop - ${debug} --ps2gif_option "-g $quality" -p -i "year-to-year LH variability" -o  lh_year taylor_arrow_fluxnet_final_2.jnl "${NumSites} year $flag_reference_file LH ${config_eval} ${config_ref} ${group}"
Note: See TracBrowser for help on using the repository browser.