6.25. urban.nml
¶
This file contains two namelists called JULES_URBAN_SWITCHES
and JULES_URBAN2T_PARAM
.
This section predominantly sets the options available for the two-tile urban scheme MORUSES. These namelists are only read if l_urban2t
, which requires both the urban_canyon
and urban_roof
surface types to be used. MORUSES provides parameters for: snow free canyon albedo (l_moruses_albedo
), canyon emissivity (l_moruses_emissivity
), roughness length for heat (l_moruses_rough
), roughness length for momentum (l_moruses_macdonald
) and thermal inertia (l_moruses_storage
). Ancillary data, predominantly required for MORUSES, is read in via URBAN_PROPERTIES
.
For all other parameters that MORUSES does not provide, and for any MORUSES parametrisations that are turned off, values from nveg_params.nml will be used instead. See the switches below for more information.
See also
References:
- Porson, A., et al. (2010), Implementation of a new urban energy budget scheme in the MetUM. Part I: Description and idealized simulations, Quarterly Journal of the Royal Meteorological Society, 136: 1514-1529. doi: 10.1002/qj.668
- Porson, A., et al. (2010), Implementation of a new urban energy budget scheme into MetUM. Part II: Validation against observations and model Intercomparison, Quarterly Journal of the Royal Meteorological Society, 136: 1530-1542. doi: 10.1002/qj.572
6.25.1. JULES_URBAN_SWITCHES
namelist members¶
-
JULES_URBAN_SWITCHES::
l_moruses_albedo
¶ Type: logical Default: F MORUSES switch for effective canyon albedo parameterisation (snow free).
- TRUE
- Use MORUSES parameterisation. Requires that
l_cosz
= TRUE. - FALSE
- The snow free canyon albedo is taken from
albsnf_nvg_io
.
In all cases the snow covered albedo is
albsnc_nvg_io
. MORUSES does not parameterise the roof albedo, so this is also taken fromalbsnf_nvg_io
.
-
JULES_URBAN_SWITCHES::
l_moruses_emissivity
¶ Type: logical Default: F MORUSES switch for effective canyon emissivity parameterisation.
- TRUE
- Use MORUSES parameterisation.
- FALSE
- The canyon emissivity is taken from
emis_nvg_io
.
In either case, the roof emissivity is taken from
emis_nvg_io
.
-
JULES_URBAN_SWITCHES::
l_moruses_rough
¶ Type: logical Default: F MORUSES switch for effective roughness length for heat parameterisation.
- TRUE
- Use MORUSES parameterisation for canyon and roof.
- FALSE
- Values for canyon and roof are taken from
z0_nvg_io
andz0hm_nvg_io
.
-
JULES_URBAN_SWITCHES::
l_moruses_storage
¶ Type: logical Default: F MORUSES switch for thermal inertia and coupling with the underlying soil for canyon and roof.
MORUSES consists of two surfaces; a canyon (
urban_canyon
) and a roof (urban_roof
). This MORUSES parametrisation calculates the heat capacity of each of these surface types and also modifies how they are coupled with the underlying soil. The heat capacities of the canyon and roof are calculated using the properties of the urban fabric and the geometry of the canyon. The roof has a lower thermal inertia and can respond more rapidly to changes in forcing. The nature of the coupling (radiative, conductive or none) is controlled viavf_nvg_io
as descibed below.The canyon: Consists of two walls and a road where the road only is coupled to the underlying soil. The walls are uncoupled and have a zero-flux boundary condition. The coupling of the road is therefore parametrised using a canyon scaling factor. The nature of the canyon (or road surface) coupling is specified as follows:
vf_nvg_io
(urban_canyon
):0 conductively coupled 1 radiatively coupled
The roof: As the roof is not in direct contact with the soil, it physically cannot be conductively coupled. It can either be radiatively coupled or uncoupled. To allow for no coupling, MORUSES modifies the code to change the meaning of conductively coupled to NOT coupled. The nature of the coupling is therefore specified as follows:
vf_nvg_io
(urban_roof
):0 NOT coupled 1 radiatively coupled - TRUE
- Use MORUSES parameterisation as described above.
- FALSE
- Values for canyon and roof are taken from
ch_nvg_io
andvf_nvg_io
(with no modifications to coupling).
-
JULES_URBAN_SWITCHES::
l_moruses_storage_thin
¶ Type: logical Default: F MORUSES switch to use a thin roof to simulate the effects of insulation.
Only used if
l_moruses_storage
= TRUE.- TRUE
- Use thin, insulated roof.
- FALSE
- Use damping depth diffusivity of roofing materials.
-
JULES_URBAN_SWITCHES::
l_moruses_macdonald
¶ Type: logical Default: F MORUSES switch for using MacDonald et al. (1998) to calculate effective roughness length of urban areas and displacement height from urban geometry.
- TRUE
- Use MacDonald et al. (1998) formulations.
- FALSE
- Appropriate data needs to be supplied instead.
Note
If
l_urban_empirical
= TRUE thenl_moruses_macdonald
should also be TRUE, to keep the roughness length and displacement height consistent with the morphology.See also
References:
- Macdonald RW, Griffiths RF, Hall D. 1998. An improved method for the estimation of surface roughness of obstacle arrays. Atmos. Env. 32: 1857-1864
-
JULES_URBAN_SWITCHES::
l_urban_empirical
¶ Type: logical Default: F Switch to use empirical relationships for urban geometry, based on total urban fraction. Dimensions calculated are W/R, H/W and H.
If no MORUSES parametrisations are used, i.e. the basic URBAN-2T, then only W/R is required.
If the roof fraction is not supplied i.e. canyon fraction = total urban fraction, then W/R will be used to calculate the canyon and roof fractions. W/R is also used to distribute anthropogenic heat between the roof and the canyon if
l_anthrop_heat_src
= TRUE.- TRUE
- Use empirical relationships for urban geometry.
- FALSE
- Appropriate data needs to be supplied instead.
Warning
These are only valid for high resolutions (~1 km).
See also
References:
- Bohnenstengel SI, Evans S, Clark P, Belcher SE (2010). Simulations of the London urban heat island, Quarterly Journal of the Royal Meteorological Society (submitted)
6.25.2. JULES_URBAN2T_PARAM
namelist members¶
-
JULES_URBAN2T_PARAM::
anthrop_heat_scale
¶ Type: real Default: 1.0 Distribution scaling factor, which allows the anthropogenic heat flux to be spread between the
urban_canyon
andurban_roof
tiles such that:H_roof = anthrop_heat_scale x H_canyon
H_canyon x (W/R) + H_roof x ( 1.0 - W/R ) = anthrop_heat
Has a value between 0.0 and 1.0 where the extremes correspond to:
- 0.0 = all released within the canyon.
- 1.0 = evenly spread between canyon and roof.
Only used if
l_anthrop_heat_src
= TRUE.