forked from ledm/bgc-val
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sci4.sh
87 lines (76 loc) · 3.77 KB
/
sci4.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
module load jaspy/2.7
x=0
#while [ 1 -eq 1 ];
while [ $x -le 20 ]
do
# fast:
./analysis_timeseries.py u-by230 fast #' : 'black', #standard UKESM1.1
./analysis_timeseries.py u-ck416 fast #' : 'black', #standard UKESM1.1
# ./analysis_timeseries.py u-by230 fast #' : 'black', #standard UKESM1.1
# ./analysis_timeseries.py u-cf927 fast #' : 'green', #CN-fast standard radiation
# ./analysis_timeseries.py u-cg799 fast #' : 'red', #CN-fast rad=3h, two_fsd=1.7
# ./analysis_timeseries.py u-cg843 fast #' : 'blue', #CN-fast, rad=3h, two_fsd=1.65
# ./analysis_timeseries.py u-bz321 fast
# ./analysis_timeseries.py u-bz360 fast
# ./analysis_timeseries.py u-bz361 fast
# ./analysis_timeseries.py u-bz362 fast
# ./analysis_timeseries.py u-bz363 fast
# ./analysis_timeseries.py u-bz364 fast
# ./analysis_timeseries.py u-bz385 fast
# ./analysis_timeseries.py u-bz393 fast
# ./analysis_timeseries.py u-bz705 fast
#
# UKESM1.1
# ./analysis_timeseries.py u-cb737 level1;
# ./analysis_timeseries.py u-cb375 level1;
# ./analysis_timeseries.py u-bz866 level1;
# ./analysis_timeseries.py u-by791 level1;
# ./analysis_timeseries.py u-bz502 level1;
# ./analysis_timeseries.py u-bz897 level1;
# ./analysis_timeseries.py u-ca306 level1;
# ./analysis_timeseries.py u-ca811 level1;
# ./analysis_timeseries.py u-ca730 level1;
# ./analysis_timeseries.py u-cb799 level1;
# ./analysis_timeseries.py u-by230 level1;
# ./analysis_timeseries.py u-bx499 level1;
# ./analysis_timeseries.py u-bw717 physics
# ./analysis_timeseries.py u-bx082 physics
# UKESM1.1 scenarios
# ./analysis_timeseries.py u-cb261 level1; # : UKESM1.1 ScenarioMIP ssp126 1
# ./analysis_timeseries.py u-cb584 level1; # : UKESM1.1 ScenarioMIP ssp126 2
# ./analysis_timeseries.py u-cb586 level1; # : UKESM1.1 ScenarioMIP ssp126 3
# ./analysis_timeseries.py u-cb180 level1; # : UKESM1.1 ScenarioMIP ssp370 1
# ./analysis_timeseries.py u-cb581 level1; # : UKESM1.1 ScenarioMIP ssp370 2
# ./analysis_timeseries.py u-cb585 level1; # : UKESM1.1 ScenarioMIP ssp370 3
# ./analysis_timeseries.py u-bx188 level1;
#./analysis_timeseries.py u-bw837 level1;
# ./analysis_timeseries.py u-bv936 level1;
# ./analysis_timeseries.py u-bw462 level1;
#./analysis_timeseries.py u-bv270 physics;
#/./analysis_timeseries.py u-bv334 level1;
# ./analysis_timeseries.py u-bu847 level1;
# ./analysis_timeseries.py u-bu794 level1;
#./analysis_timeseries.py u-bu737 level1;
# ./analysis_timeseries.py u-bu504 level1;
# ./analysis_timeseries.py u-bg555 physics;
# ./analysis_timeseries.py u-ar766 physics;
#/ ./analysis_timeseries.py u-bt931 level1;
# ./analysis_timeseries.py u-bt670 physics
#/; ./analysis_timeseries.py u-bt320 level1;
# ./analysis_timeseries.py u-bt233 level1;
# ./analysis_timeseries.py u-bt089 physics;
#/ ./analysis_timeseries.py u-bk093 physics;
# ./analysis_timeseries.py u-bs733 physics;
# ./analysis_timeseries.py u-bs704 level1;
# ./analysis_timeseries.py u-bs522 level1;
# These are in sci4_pi.sh
# ./analysis_timeseries.py u-bb446 level1;
# ./analysis_timeseries.py u-aw310 level1;
./analysis_compare.py
# rsync -av /home/users/ldemora/workspace/ukesm-validation/CompareReports2 /group_workspaces/jasmin4/esmeval/public/.
#rsync -av /home/users/ldemora/workspace/ukesm-validation/CompareReports2 /group_workspaces/jasmin4/esmeval/public/CompareReports/v2/.
rsync -av /home/users/ldemora/workspace/ukesm-validation/CompareReports2 /gws/nopw/j04/esmeval/public/CompareReports/v2/.
echo "sleeping" $x
x=$(( $x + 1 ))
sleep $((($(date -f - +%s- <<<$'03:00 tomorrow\nnow')0)%86400))
done