1 | ### ASCII file to manage `model_graphics.bash' from different models and experiments |
---|
2 | # from each one |
---|
3 | # |
---|
4 | # 1: Variables choice using its CF name |
---|
5 | # 2: Kind of statisitcs to apply to the variable |
---|
6 | # 3: Kind of plot for the variable |
---|
7 | # 4: Kind of difference among models/experiments |
---|
8 | # |
---|
9 | # Different assumptions are made: |
---|
10 | # - model outputs are organized as ${ifold}/${model}/${exp} |
---|
11 | # - script outputs will be organized as ${ofold}/${model}/${exp} |
---|
12 | # - when diagnostic might be required a new file will be created |
---|
13 | # - WRF outputs will have added 'WRFtime' variable |
---|
14 | # |
---|
15 | # NOTE: in this file all the values are ':' separated lists without ' |
---|
16 | |
---|
17 | # python HOME |
---|
18 | HOMEpy = ${HOME}/etudes/WRF_LMDZ/svn/LMDZ_WRF/tools |
---|
19 | |
---|
20 | # Srcatch |
---|
21 | srcatch=false |
---|
22 | |
---|
23 | # Folder with the files |
---|
24 | ##ifold = /bdd/PCER/workspace/lfita/etudes/WRF_LMDZ/WaquaL/WRF_LMDZ |
---|
25 | ifold = /home/lluis/etudes/WRF_LMDZ/WaquaL_highres/tests/model_graphics |
---|
26 | |
---|
27 | # Output folder |
---|
28 | ##ofold = /bdd/PCER/workspace/lfita/etudes/WRF_LMDZ/WaquaL/WRF_LMDZ |
---|
29 | ofold = /home/lluis/etudes/WRF_LMDZ/WaquaL_highres/tests/model_graphics |
---|
30 | |
---|
31 | # Experiments (model runs) |
---|
32 | # WRF: WRF |
---|
33 | # LMDZ: LMDZ model |
---|
34 | # WRF_LMDZ: LMDZ physics coupled to WRF |
---|
35 | #models=WRF:WRF_LMDZ:LMDZ |
---|
36 | models=WRF |
---|
37 | |
---|
38 | # Experiments (labels of each experiment) |
---|
39 | WRFexps = control:pbl1 |
---|
40 | LMDZexps = AR40:NPv31 |
---|
41 | WRF_LMDZexps = AR40:NPv31 |
---|
42 | |
---|
43 | # Headers of the files to use |
---|
44 | WRFheaders = wrfout |
---|
45 | WRF_LMDZheaders = wrfout |
---|
46 | LMDZheaders = histins |
---|
47 | |
---|
48 | # Kind of calculations (adding the euiqvalent `surname' to each variable) |
---|
49 | # acc: temporal accumulated values |
---|
50 | # diff: differences between models |
---|
51 | # direct: no statistics |
---|
52 | # Lmean: latitudinal mean values |
---|
53 | # Lsec: latitudinal section (latitudinal value must be given, [var]@[lat]) |
---|
54 | # lmean: longitudinal mean values |
---|
55 | # lsec: longitudinal section (longitudinal value must be given, [var]@[lat]) |
---|
56 | # tmean: temporal mean values |
---|
57 | # xmean: x-axis mean values |
---|
58 | # ymean: y-axis mean values |
---|
59 | # zsum: vertical aggregated values |
---|
60 | varkinds = direct:tmean:xmean:diff |
---|
61 | |
---|
62 | # variables (providing CF-name, script must provide equivalent variable for each model) |
---|
63 | # in foudre values from: ${HOME}/UNSW-CCRC-WRF/tools/postprocess/GMS-UC/WRF4G/util/postprocess/wrfncxnj/wrfncxnj.table |
---|
64 | # must exist on the table $pyHOME/variables_values.dat |
---|
65 | vardirect = tas:uas:vas:ps:pr:pracc:rsds:prw:evspsbl:hfss:hfls:hurs:huss:zmla:hufs:wakes:lwakeh:stherm:zmaxth:clt:cll:clm:clh:prc:prls:bils |
---|
66 | vartmean = prc:prls:zmla:hfss:hfls:evspsbl:bils:uas:vas:tas:ps:clt:cll:clm:clh:prw:huss:pr:wakes:wakeh:stherm:zmaxth |
---|
67 | varxmean = ta:ua:va:hur |
---|
68 | vardiff = ualmean:valmean:talmean:huslmean:uas:vas:ps:pr |
---|
69 | |
---|
70 | # Kind of plots |
---|
71 | # diffmap2Dsfc: 2D map of surface differences values of 1 variable |
---|
72 | # diffmap2Dz: 2D map of 3D differences values of 1 variable |
---|
73 | # hovm: Hovmoeller diagrams of 1 variable |
---|
74 | # map2Dsfc: 2D map of surface values of 1 variable |
---|
75 | # map3D: 2D map of 3D values of 1 variable |
---|
76 | # shadcount2D: 2D map of shadow (1st variable) and countour (2nd variable) [var1]@[var2] (no `surname' = 'direct') |
---|
77 | shadcount2D = huslmean@talmean:valmean@ualmean:tas@ps:uas@vas:pr@rsds:prw@huss:prls@prc:hfls@hfss:evspsbl@bils:zmaxth@stherm:wakeh@wakes:zmaxth@stherm:prls@prc:clt@cll:clh@clm |
---|
78 | diffmap2Dsfc = uas:vas:ps:pr |
---|
79 | diffmap2Dz = ualmean:valmean:talmean:huslmean |
---|
80 | |
---|
81 | # Pressure levels |
---|
82 | # Common vertical pressure levels to compute vertical differences |
---|
83 | plevels = 100000.,97500.,95000.,92500.,90000.,85000.,80000.,75000.,70000.,65000.,60000.,55000.,50000.,45000.,40000.,35000.,30000.,25000.,20000.,15000.,10000.,5000.,2500.,1000.,500.,250. |
---|
84 | |
---|
85 | # Figures output |
---|
86 | kindfig = pdf |
---|
87 | |
---|
88 | # Generic |
---|
89 | errmsg = ERROR--error--ERROR--error |
---|
90 | warnmsg = WARNING--warning--WARNING--warning |
---|
91 | |
---|