Changeset 257


Ignore:
Timestamp:
Nov 14, 2020, 3:55:34 PM (5 years ago)
Author:
htune
Message:

Diagnostics
Fredho

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/models/LMDZ/serie_LMDZ.sh

    r242 r257  
    2222LMAX=79
    2323phys=NPv6.1
    24 LMDZdir=/home/hourdin/R241/HighTune/../LMDZtrunk
     24LMDZdir=/home/hourdin/R254/HighTune/../LMDZtrunk
    2525EXPE=$local/WAVE$WAVEN
    2626CTRL=$local/CTRL
     
    195195   # -- calendar issues --------------------------------------------------------
    196196   ncatted -a calendar,time,o,c,"standard" -O $name.nc
    197    if [ "$cas" =  "IHOP" ] ; then
     197   if [ "$cas" =  "IHOP/REF" ] ; then
    198198      ncatted -a units,time,o,c,"seconds since 2002-06-14 05:59:59" \
    199199      -a time_origin,time,o,c," 2002-JUN-14 05:59:59" -O $name.nc ; fi
    200    if [ "$cas" = "RICO" ] ; then
     200   if [ "$cas" = "RICO/REF" ] ; then
    201201      ncatted -a units,time,o,c,"seconds since 2004-12-27 00:00:00" \
    202202      -a time_origin,time,o,c," 2004-DEC-27 00:00:00" -O $name.nc ; fi
  • trunk/src/post_plots.sh

    r243 r257  
    55
    66wavemin=1
    7 wavemax=22
     7wavemax=`ls Remaining_space_after_wave_* | cut -d _ -f5 | cut -d. -f1 | sort -n | tail -1`
     8# wavemax can also be set manually
     9#wavemax=22
    810nwave=$(( $wavemax - $wavemin + 1))
    911
    1012##################################################################
    1113# Controle of a sublist for the waves shading on profiles
    12 wave_inc=1
    13 ListWaves=$( seq $wavemin $wave_inc $wavemax )
    14 # could be also
     14if [ $wavemax -le 3 ] ; then
     15  ListWaves=" `seq 1 $wavemax` "
     16else
     17  ListWaves=" 1 3 $wavemax "
     18fi
     19# could be also set manually
    1520# ListWaves=" 1 3 6 "
    16 ListWaves=" 1 3 22 "
     21# wave_inc=1
     22# ListWaves=$( seq $wavemin $wave_inc $wavemax )
    1723##################################################################
    1824
     
    2430# Some preliminary computations
    2531#------------------------------
     32#echo $wavemin $wavemax $(seq $wavemin $wavemax) ; exit
    2633for i in $(seq $wavemin $wavemax) ; do
    2734        echo $i
     
    147154
    148155for sim in $sims ; do
    149 w=`echo $sim | cut -d_ -f2 | cut -d\- -f1`
     156w=`echo $sim | cut -d\- -f2`
    150157echo $sim $w
    151158cat <<eod>> simus.py
     
    170177mv t.pdf Prof$iname.pdf
    171178
     179mkdir -p PROFILES/BEST$iname
     180mv profil*  PROFILES/BEST$iname
    172181
    173182
Note: See TracChangeset for help on using the changeset viewer.