Versions Compared

Key

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

Description

Metview Macro Library function. Computes the total column mass for the "mdc" (mass density concentration) fields in a FLEXPART output GRIB file.

Usage

**************************************************************************

# Function : mvl_flexpart_total_column

#

# Syntax : fieldset mvl_flexpart_total_column(infile: string, # ageclass: number)

#

# Category : FLEXPART

#

...

Parameter infile  is a FLEXPART output GRIB file

...

; ageclass is the FLEXPART ageclass. If ageclass is set to -1 all the ageclasses are used.

Example

# to compute the total column integrated mass for all the ageclasses

g=mvl_flexpart_total_column("my_flexpart_output.grib",-1)

#

# Description :

#

# Parameters : infile - the FLEXPART output GRIB file

# ageclass - the ageclass. -1 means all ageclasses.

#

#

# Return Value : fieldset

#

# Dependencies : none

#

# Example Usage :

#

#

...