Changes between Version 2 and Version 3 of Developers/Validation/trunk_perfs
- Timestamp:
- 2020-11-23T15:20:16+01:00 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Developers/Validation/trunk_perfs
v2 v3 99 99 100 100 == Cleaning of 2 context_nemo.xml files == 101 101 102 {{{#!sh 102 103 ff=cfgs/ORCA2_ICE_XIOSAT/EXP00/context_nemo.xml … … 109 110 }}} 110 111 112 == link the input files files == 113 114 {{{#!sh 115 # define path to ORCA2_ICE_v4.x directory. For example: 116 #dirdata=/ccc/scratch/cont005/ra0542/massons/input_nemo_v4.0/ORCA2_ICE_v4.x 117 #dirdata=/gpfsscratch/rech/fqx/reee217/input_nemo_v4.0/ORCA2_ICE_v4.x 118 dirdata=... 119 120 # add the new Ice_initialization file to this directory 121 mv Ice_initialization.nc $dirdata 122 123 # link the input files 124 for dd in cfgs/ORCA2_*/EXP00 125 do 126 cd $dd 127 ln -sf $dirdata/* . 128 cd - 129 done 130 }}} 131 132 == Run! == 133 134 {{{#!sh 135 for dd in cfgs/ORCA2_*/EXP00 136 do 137 cp jobaps.sh $dd/. # get jobaps.sh from the attached files 138 cd $dd 139 qs jobaps.sh # define as alias is not already done... 140 cd - 141 done 142 }}} 143 144 == Check the runs did 5840 time steps == 145 146 {{{#!sh 147 for ff in cfgs/ORCA2_*/EXP00/time.step 148 do 149 echo "$ff: $( cat $ff)" 150 done 151 }}} 152 153 == Create aps reports == 154 155 {{{#!sh 156 for dd in cfgs/ORCA2_*/EXP00 157 do 158 cd $dd 159 aps-report aps_result_$( date +%Y%m%d ) 160 cd - 161 done 162 }}} 163 164 165 166