For preparations and running the simulation needed for this tutorial click here ...
To start this tutorial please enter folder 'forward'.
The total column integrated mass is not an output of FLEXPART so we need to compute it. The macro to do the computation and plot the resulting fields is 'plot_total.mv'.
In the macro first we call flexpart_total_column() to compute the "tcmd" fields:
dIn="result_fwd/" inFile=dIn & "conc_s001.grib" #Compute the total column integrated mass g=flexpart_total_column(source: inFile, param: "mdc")
Next, we define the contouring. The "tcmd" fields have the units of "kg m**-2" but with the current value range "g m**-2" units would better fit for contouring. To achieve it we simply multiply the "tcmd" fieldset with 1000:
g=g*1000
The contour definition itself goes like this:
Next, we build the title with flexpart_build_title(). Please note that we need to explicitly specify the plotting units!
title=flexpart_build_title(data: g,fontsize: 0.3,units: "g m**-2")
Finally we define the map view:
and generate the plot:
plot(view,g,conc_shade,title)
Having run the macro we will get a plot like this (after navigating to step 39h):