Metview's documentation is now on readthedocs!

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 39 Next »


fieldset eqpott_m(...)

Computes the equivalent potential temperature from fieldsets on (hybrid) model levels. This is a Metview icon function, for detailed documentation please see Potential Temperature.


fieldset eqpott_pl(...)

Computes the equivalent potential temperature from fieldsets on pressure levels. This is a Metview icon function, for detailed documentation please see Potential Temperature.


definition lifted_condensation_level(t: number, td: number, p: number)

Computes the Lifted Condensation Level (LCL) of a parcel ascending from a given temperature, dewpoint and pressure, where

    • t: start temperature (K)
    • td: start dewpoint (K)
    • p: start pressure (Pa)

The LCL is the level where the parcel becomes saturated and it is computed with an iterative method along the dry adiabat of the ascending parcel.

The result is a definition with two members: t and p, containing the temperature and pressure of the LCL, in K and Pa units, respectively. On error or if the LCL does not exist nil is returned.


number mixing_ratio(q: number)

vector mixing_ratio(q: vector)

fieldset mixing_ratio(q: fieldset)

Computes the mixing ratio from the given specific humidity, where

    • q: specific humidity (kg/kg)

The result is the mixing ratio in kg/kg units. On error nil is returned. The computation is based on the following well known formula:

\[ w = \frac{q}{1 - q} \]


number potential_temperature(t: number, p: number)

Computes the potential temperature for a given temperature and pressure, where

    • t: the temperature (K)
    • p: the pressure (Pa)

The result is the potential temperature in K units. On error  nil is returned.


fieldset pott_m(...)

Computes the potential temperature from fieldsets on (hybrid) model levels. This is a Metview icon function, for detailed documentation please see Potential Temperature.


fieldset pott_pl(...)

Computes the potential temperature from fieldsets on pressure levels. This is a Metview icon function, for detailed documentation please see Potential Temperature.


fieldset relhum(...)

Computes the relative humidity from specific humidity fieldsets. This is a Metview icon function, for detailed documentation please see Relative Humidity.


number relative_humidity_from_dewpoint(t: number, td: number)

vector relative_humidity_from_dewpoint(t: vector, td: vector)

fieldset relative_humidity_from_dewpoint(t: fieldset, td: fieldset)

Computes the relative humidity from the given temperature and dewpoint temperature, where

    • t: temperature (K)
    • td: dewpoint temperature (K)

The result is the relative humidity in the range of [0, 1]. On error  nil is returned. The computation is based on the following formula:

\[ r = \frac{e_{wsat}(Td)}{e_{wsat}(T)} \]

where ewsat is the saturation vapour pressure over water.



number saturation_mixing_ratio(t: number, p: number)

number saturation_mixing_ratio(t: number, p: number, phase)

vector saturation_vmixing_ratio(t: vector, p: vector)

vector saturation_mixing_ratio(t: vector, p: vector, phase)

Computes the saturation mixing ratio for a given temperature, pressure and phase where

  • t: the temperature (K)
  • p: the pressure (Pa)
  • phase: is either "water", "ice" or "mixed". When it is not specified the "water" phase is used.

The result is the saturation mixing ratio in kg/kg units. On error nil is returned. The computation is implemented via the following function calls:

ws = mixing_ratio(p, saturation_vapour_pressure(t, phase))


number saturation_vapour_pressure(t: number)

number saturation_vapour_pressure(t: number, phase)

vector saturation_vapour_pressure(t: vector)

vector saturation_vapour_pressure(t: vector, phase)

fieldset saturation_vapour_pressure(t: fieldset)

fieldset saturation_vapour_pressure(t: fieldset, phase)

Computes the saturation vapour pressure for a given temperature and phase, where

    • t: the temperature (K)
    • phase: is either "water", "ice" or "mixed". When it is not specified the "water" phase is used.

The result is the saturation vapour pressure in Pa units. On error nil is returned. The computations for saturation over "water" and "ice" are based on the Tetens formula:

\[ e_{sat} = a_{1}\;exp \left(a_{3}\frac{T-273.16}{T-a_{4}}\right) \]

where the parameters are set as follows

    • "water": a1=611.21 Pa, a3=17.502 and a4=32.19 K
    • "ice": a1=611.21 Pa, a3=22.587 and a4=-0.7 K

For the "mixed" phase  the linear combination of the "water" and "ice" phases are used as described in the IFS documentation (see here on p116 for details for model cycle CY45R1).


fieldset seqpott_m(...)

Computes the saturation equivalent potential temperature from fieldsets on (hybrid) model levels. This is a Metview icon function, for detailed documentation please see Potential Temperature.


fieldset seqpott_pl(...)

Computes the saturation equivalent potential temperature from fieldsets on pressure levels. This is a Metview icon function, for detailed documentation please see Potential Temperature.


number temperature_from_potential_temperature(th: number, p: number)

Computes the temperature for a given potential temperature and pressure, where

    • th:the potential temperature (K)
    • p: the pressure (Pa)

The result is the temperature in K units. On error nil is returned.


netcdf thermo_bufr(...)

Extracts vertical profiles from BUFR data in a suitable format suitable for thermodynamic diagrams (defined by Thermo View). This is a Metview icon function, for detailed documentation please see Thermo Data.


netcdf thermo_grib(...)

Extracts vertical profiles from GRIB data in a suitable format for thermodynamic diagrams (defined by Thermo View). This is a Metview icon function, for detailed documentation please see Thermo Data.


definition thermo_parcel_path(t: vector, td: vector, p: vector, options: definition)

definition thermo_parcel_path(profile: netcdf, options: definition)

Computes the path of an ascending thermodynamic parcel with the given start condition for the given vertical profile. It returns a definition containing all the data to plot the parcel path, buoyancy areas and related data into a thermodynamic diagram. The vertical profile is either specified as a set of vectors where:

    • t: the temperature profile (°C)
    • td: the dew point profile (°C)
    • p: the pressure profile (hPa)

or as a vertical profile where:

    • profile: the result of a vertical profile extraction from GRIB or BUFR with the thermo_grib() or thermo_bufr() functions (see Thermo Data ), respectively.

The function can take an optional options argument (it is a definition) to specify the various settings for the parcel computations. The members of this definition are as follows (temperature values are in °C and pressure values are in hPa):

    • mode: the start condition mode. The possible values are 'surface', 'custom', 'mean_layer' and 'most_unstable' (see  below for details)
    • start_t: the start temperature (see  below for details)
    • start_td: the start dewpoint (see  below for details)
    • start_p: the start pressure (see  below for details)
    • top_p: the top pressure of the start layer (see below for details)
    • bottom_p: the bottom pressure of the start layer (see below for details)
    • stop_at_el: if it is defined and set to 1 the parcel computations will stop at the Equilibrium Level.

There are four different modes available for the parcel start conditions:

Surface

The parcel ascends from the surface, i.e. the lowest point of the profile. The format is as follows:

(mode: 'surface')

Custom

The parcel ascends from a given temperature, dewpoint and pressure. The format is as follows:

(mode: 'custom', start_t: start_temperature, start_td: start_dewpoint, start_p: start_pressure)

Mean layer

The parcel ascends from the mean temperature, dew point and pressure of a given pressure layer. The format is as follows:

(mode: 'mean_layer', top_p: layer_top, bottom_p: layer_bottom )

Please note that when bottom_p is omitted the layer starts at the surface.

Most unstable

The parcel ascends from the most unstable condition. To determine this, a parcel is started from all the points along the profile in the specified pressure layer. The start level of the parcel that results in the highest CAPE value will define the most unstable start condition. The format is as follows:

(mode: 'most_unstable', top_p: layer_top, bottom_p: layer_bottom )

Please note that when bottom_p is omitted the pressure layer starts at the surface.


The function returns a definition to describe all the parameters related to the parcel's ascend. The members of this definition are as follows (temperature values are in °C and pressure values are in hPa) :

    • path: path of the parcel. It is itself a definition with two members: t and p, each containing a list of values.
    • area: positive and negative buoyancy areas between the parcel path and the profile. It is a list of definitions describing the areas.
    • cape: value of the CAPE (Convective Available Potential Energy)  (J/kg)
    • cin: value the CIN (Convective Inhibition) (J/kg)
    • lcl: Lifted Condensation Level. It is a definition with two members: t and p. If no LCL exists it is set to nil.
    • lfc: Level of Free Convention. It is a definition with two members: t and p. If no LFC exists it is set to nil.
    • el: Equilibrium Level. It is a definition with two members: t and p. If no EL exists it is set to nil.
    • top: Cloud Top Level. It is a definition with two members: t and p. If no TOP exists it is set to nil.
    • start: start conditions of the parcel with four members: mode, t, td and p.


number vapour_pressure(q: number, p: number)

vector vapour_pressure(q: vector, p: vector)

Computes the vapour pressure for a given specific humidity and pressure, where

    • q: specific humidity (kg/kg)
    • p: pressure (Pa)

The result is the vapour pressure in Pa units. On error  nil is returned. The computation is based on the following formula:

\[ \frac{p\;q}{\epsilon\; (1 + q(\frac{1}{\epsilon} -1 )} \]

with \( \epsilon = \frac{R_{dry}}{R_{vapour}} = 0.621981 \)


  • No labels