source: trunk/MESOSCALE/PLOT/SPEC/LES/scr @ 205

Last change on this file since 205 was 85, checked in by aslmd, 14 years ago

LMD_MM_MARS et LMD_LES_MARS: ajout des routines IDL pour tracer les sorties --> voir mesoscale/PLOT

  • Property svn:executable set to *
File size: 647 bytes
Line 
1#! /bin/bash
2
3## use: scr U V W
4## les fichiers deja crees ne sont pas recrees
5
6## IDL remplit la memoire et devient plus lent...
7
8mean='1'
9mean='[1,2]'
10
11count='[1,1,0,0]'
12offset='[20,20,0,0]'
13
14count='0'
15offset='0'
16
17\rm log 2> /dev/null
18touch log
19
20for fich in $(ls wrfout*) ; do
21 for param in "$@" ; do
22
23  echo $param $fich
24  unset limits
25#  echo "ye = getget('"${fich}"', '"${param}"',coordmean="$mean") & DELVAR, ye & exit" | /distrib/local/rsi/idl_6.1/bin/idl >> log 2>> log
26  echo "ye = getget('"${fich}"', '"${param}"',count="$count",offset="$offset") & DELVAR, ye & exit" | /distrib/local/rsi/idl_6.1/bin/idl >> log 2>> log
27
28 done
29done
30
31
32
Note: See TracBrowser for help on using the repository browser.