|
UPP (upp-srw-2.2.0)
|
This file contains a collection of UPP modules used to calculate icing probability from the model. More...
Go to the source code of this file.
Data Types | |
| type | cloudlayers::clouds_t |
| type | severitymaps::scenarios_t |
Functions/Subroutines | |
| subroutine, public | derivedfields::derive_fields (imp_physics, t, rh, pres, hgt, totalwater, totalcond, nz, topok, hprcp, hcprcp, cin, cape, ept, wbt, twp, pc, kx, lx, tott, prcptype) |
| derive_fields() calculates several derived fields. | |
| integer function | gettopok (hgt, alt, nz) |
| getTopoK() Map the topography height to the model's vertical coordinate | |
Variables | |
| type(precipitations_t), parameter, public | precips = precipitations_t() |
| Type of precipitation. | |
| type(scenarios_t), parameter, public | scenarios = scenarios_t() |
| Precipitation scenarios. | |
This file contains a collection of UPP modules used to calculate icing probability from the model.
Definition in file GFIP3.f.
| subroutine, public derivedfields::derive_fields | ( | integer, intent(in) | imp_physics, |
| real, dimension(nz), intent(in) | t, | ||
| real, dimension(nz), intent(in) | rh, | ||
| real, dimension(nz), intent(in) | pres, | ||
| real, dimension(nz), intent(in) | hgt, | ||
| real, dimension(nz), intent(in) | totalwater, | ||
| real, dimension(nz), intent(in) | totalcond, | ||
| integer, intent(in) | nz, | ||
| integer, intent(in) | topok, | ||
| real, intent(in) | hprcp, | ||
| real, intent(in) | hcprcp, | ||
| real, intent(in) | cin, | ||
| real, intent(in) | cape, | ||
| real, dimension(nz), intent(out) | ept, | ||
| real, dimension(nz), intent(out) | wbt, | ||
| real, dimension(nz), intent(out) | twp, | ||
| real, intent(out) | pc, | ||
| real, intent(out) | kx, | ||
| real, intent(out) | lx, | ||
| real, intent(out) | tott, | ||
| integer, intent(out) | prcptype | ||
| ) |
derive_fields() calculates several derived fields.
| [in] | imp_physics | integer Microphysics option used in the model run. |
| [in] | t | real Temperature (K). |
| [in] | rh | real Relative humidity. |
| [in] | pres | real Pressure (Pa). |
| [in] | hgt | real Height. |
| [in] | totalWater | real |
| [in] | totalCond | real Precipitation Condensate in g/kg. |
| [in] | nz | integer Number of vertical levels. |
| [in] | topoK | integer |
| [in] | hprcp | real Hourly accumulated precipitation. |
| [in] | hcprcp | real Hourly accumulated convective precipitation. |
| [in] | cin | real Convective inhibition (CIN). |
| [in] | cape | real Convective Available Potential Energy (CAPE) |
3-D derived data:
| [out] | ept | real Equivalent potential temperature |
| [out] | wbt | real Wet bulb temperature |
| [out] | twp | real Total water path |
2-D derived data: (indice for convective icing severity)
| [out] | kx | real k index |
| [out] | lx | real Lifted index |
| [out] | tott | real Total totals |
2-D derived data:
| [out] | pc | real Precipitation condensate |
| [out] | prcpType | integer Surface precipitation type |
Definition at line 61 of file GFIP3.f.
References precips.
| integer function gettopok | ( | real, dimension(nz), intent(in) | hgt, |
| real, intent(in) | alt, | ||
| integer, intent(in) | nz | ||
| ) |
getTopoK() Map the topography height to the model's vertical coordinate
| [in] | hgt | real Geopotential height (m). |
| [in] | alt | real Topography height (m). |
| [in] | nz | integer Number of vertical levels. |
Definition at line 2404 of file GFIP3.f.
References gettopok().
Referenced by gettopok().
| type(precipitations_t), parameter, public precips = precipitations_t() |
Type of precipitation.
Definition at line 25 of file GFIP3.f.
Referenced by derivedfields::derive_fields().