1 | #************************************************************** |
---|
2 | # Author: Patrick Brockmann |
---|
3 | # Contact: Patrick.Brockmann@cea.fr |
---|
4 | # $Date: 2009/05/14 15:09:35 $ |
---|
5 | # $Name: ATLAS_608_1_5 $ |
---|
6 | # $Revision: 1.1.1.2 $ |
---|
7 | # History: |
---|
8 | # Modification: |
---|
9 | #************************************************************** |
---|
10 | |
---|
11 | ################################################################################################################## |
---|
12 | #----------------------------------------------------------------------------------------------------------------- |
---|
13 | # field | files patterns | files additionnal | operations | title | units | calcul of area |
---|
14 | #----------------------------------------------------------------------------------------------------------------- |
---|
15 | # |
---|
16 | # field = name of the field to monitore |
---|
17 | # files patterns = pattern of the files used to monitore the field (must be discriminant) |
---|
18 | # files additionnal = additionnal files accessible by $FER_DATA |
---|
19 | # operations = operations to calculate the field |
---|
20 | # title = variable title |
---|
21 | # units = variable units |
---|
22 | # calcul of area = expression to use for the weight average |
---|
23 | # |
---|
24 | # Notes: |
---|
25 | # - Comment lines begin by # character. |
---|
26 | # - Separator between fields is | character. |
---|
27 | # - Operations must use the ferret syntax, if several files are used precise with the syntax d=x to refer to the x dataset. |
---|
28 | # They must be enclosed by parenthesis if more than one variable is used. |
---|
29 | # - files patterns,files additionnal,operations,title,units must be enclosed with character ". |
---|
30 | # Use "" if empty. |
---|
31 | # - Fields will be presented through an html page with thumbnails global, north, south, land, ocean. |
---|
32 | # Use a field name with one of these pattern to display it under the corresponding thumbnail. |
---|
33 | # |
---|
34 | ################################################################################################################## |
---|
35 | |
---|
36 | color=EEE8AA |
---|
37 | smooth=12 |
---|
38 | #------------------------------------------------------------------------------------------------------------------------------------------------------ |
---|
39 | # field | files patterns | files additionnal | operations | title | units | calcul of area |
---|
40 | #------------------------------------------------------------------------------------------------------------------------------------------------------ |
---|
41 | fLuc_fHarvest_lands | "CONVFLUX CFLUX_PROD10 CFLUX_PROD100 HARVEST_ABOVE CONTFRAC" | "" | "((CONVFLUX[d=1]+CFLUX_PROD10[d=2]+CFLUX_PROD100[d=3]+HARVEST_ABOVE[d=4])*AREAS[d=1]*CONTFRAC[d=5]*365/1e15)" | "CO2 flux from Land Use Change and Crop Harvesting" | "PgC/yr" | "2" |
---|
42 | fHarvest_lands | "HARVEST_ABOVE CONTFRAC" | "" | "((HARVEST_ABOVE[d=1])*AREAS[d=1]*CONTFRAC[d=2]*365/1e15)" | "CO2 flux from Land Use Change and Crop Harvesting" | "PgC/yr" | "2" |
---|
43 | nbp_lands | "CO2FLUX_MONTHLY VEGET_MAX CONVFLUX CFLUX_PROD10 CFLUX_PROD100 HARVEST_ABOVE CONTFRAC" | "" | "(((CO2FLUX_MONTHLY[d=1]*12*VEGET_MAX[d=2])+(CONVFLUX[d=3]+CFLUX_PROD10[d=4]+CFLUX_PROD100[d=5]+HARVEST_ABOVE[d=6]*365))*AREAS[d=1]*CONTFRAC[d=7]/1e15)" | "Net biospheric Production" | "PgC/yr" | "2" |
---|
44 | cSoil_lands | "TOTAL_SOIL_CARB VEGET_MAX CONTFRAC" | "" | "(TOTAL_SOIL_CARB[d=1]*VEGET_MAX[d=2]*AREAS[d=1]*CONTFRAC[d=3]/1e15)" | "Carbon Soil in Pool" | "PgC" | "2" |
---|
45 | cVeg_lands | "TOTAL_M VEGET_MAX CONTFRAC" | "" | "(TOTAL_M[d=1]*VEGET_MAX[d=2]*AREAS[d=1]*CONTFRAC[d=3]/1e15)" | "Carbon in vegetation" | "PgC" | "2" |
---|
46 | npp_lands | "NPP VEGET_MAX CONTFRAC" | "" | "(NPP[d=1]*365*VEGET_MAX[d=2]*AREAS[d=1]*CONTFRAC[d=3]/1e15)" | "Net Primary Production" | "PgC/yr" | "2" |
---|
47 | rh_lands | "HET_RESP VEGET_MAX CONTFRAC" | "" | "(HET_RESP[d=1]*365*VEGET_MAX[d=2]*AREAS[d=1]*CONTFRAC[d=3]/1e15)" | "Heterotrophic Respiration" | "PgC/yr" | "2" |
---|
48 | fFire_lands | "CO2_FIRE VEGET_MAX CONTFRAC" | "" | "(CO2_FIRE[d=1]*365*VEGET_MAX[d=2]*AREAS[d=1]*CONTFRAC[d=3]/1e15)" | "CO2 emission from fire" | "PgC/yr" | "2" |
---|
49 | #------------------------------------------------------------------------------------------------------------------------------------------------------ |
---|
50 | |
---|
51 | |
---|