Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The simulation itself is defined by the 'fwd_conc' FLEXPART Run icon and the 'rel_volcano' FLEXPART Release icon, respectively. Both these are encompassed in a single macro called 'fwd_condconc.mv'. For simplicity will use this macro to examine the settings in detail. 

...

Code Block
languagepy
#Run flexpart (asynchronous call!)
 
r = flexpart_run(
    output_path     	:   "result_fwd_conc",
    input_path      	:   "../data",
    starting_date   	:   20120517,
    starting_time   	:   12,
    ending_date     	:   20120519,
    ending_time     	:   12,
    output_field_type	:   "concentrationconc",
    output_flux     	:   "on",
    output_trajectory   :   "on",
    output_area     	:   [40,-25,66,10],
    output_grid     	:   [0.25,0.25],
    output_levels   	:   [500,1000,2000,3000,4000,5000,6000,7000,8000,9000,10000,11000,12000,13000,14000,15000],
    release_species 	:   8,
    releases        	:   rel_volcano
    )
 
print(r)

...

If we run this macro (or alternatively right-click execute the FLEXPART Run icon) the results (after a minute or so) will be available in folder 'result_fwd_conc'. The computations were actually taken place in a temporary folder then metview copied the results to the output folder. If we open this older we will see two files there:

...