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.
Developers/Validation/trunk_perfs (diff) – NEMO

Changes between Version 2 and Version 3 of Developers/Validation/trunk_perfs


Ignore:
Timestamp:
2020-11-23T15:20:16+01:00 (4 years ago)
Author:
smasson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Developers/Validation/trunk_perfs

    v2 v3  
    9999 
    100100== Cleaning of 2 context_nemo.xml files  == 
     101 
    101102{{{#!sh 
    102103ff=cfgs/ORCA2_ICE_XIOSAT/EXP00/context_nemo.xml 
     
    109110}}} 
    110111 
     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 
     118dirdata=... 
     119 
     120# add the new Ice_initialization file to this directory 
     121mv Ice_initialization.nc $dirdata 
     122 
     123# link the input files 
     124for dd in cfgs/ORCA2_*/EXP00 
     125do 
     126    cd $dd 
     127    ln -sf $dirdata/* . 
     128    cd - 
     129done 
     130}}} 
     131 
     132== Run!  == 
     133 
     134{{{#!sh 
     135for dd in cfgs/ORCA2_*/EXP00 
     136do 
     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 - 
     141done 
     142}}} 
     143 
     144== Check the runs did 5840 time steps  == 
     145 
     146{{{#!sh 
     147for ff in cfgs/ORCA2_*/EXP00/time.step 
     148do 
     149    echo "$ff: $( cat $ff)" 
     150done 
     151}}} 
     152 
     153== Create aps reports  == 
     154 
     155{{{#!sh 
     156for dd in cfgs/ORCA2_*/EXP00 
     157do 
     158    cd $dd 
     159    aps-report aps_result_$( date +%Y%m%d ) 
     160    cd - 
     161done 
     162}}} 
     163 
     164 
     165 
     166