WRF | MPAS | UCM and LCZs
WRF-UCM
WRF-UCM refers to the Weather Research and Forecasting model (WRF) integrated with an Urban Canopy Model (UCM). This framework is designed to enhance the simulation of urban environments within meteorological models, allowing for more accurate predictions of weather patterns in urban areas.
Urban Canopy Model (UCM):
A single-layer model designed to represent urban environments. It incorporates simplified urban geometries and features such as building shadowing and heat exchange processes, improving the representation of lower boundary conditions in urban areas
BEP+BEM
The Building Effect Parameterization (BEP) and Building Energy Model (BEM) scheme is an advanced modeling framework integrated within the Weather Research and Forecasting (WRF) model, designed to improve the simulation of urban climates.
- The BEM aspect incorporates building energy consumption factors, accounting for heating and cooling needs. This integration helps in assessing the urban heat budget more accurately by considering how energy use impacts local temperatures and climate conditions.
WRF Bug-fix/updated UCM
New features in WRFV4.6
- Add two options (slucm_distributed_drag and distributed_ahe_opt) to WRF SLUCM (sf_urban_physics = 1) so that spatially varying urban morphological parameters (building height, plan area index, frontal area index, roughness length for momentum, and displacement height) can be considered. Detail
- SOURCE: Do Ngoc Khanh (Tokyo Institute of Technology)
- This PR adds a new feature to WRF SLUCM by allowing consideration of spatially varying global distributed urban parameters and spatially hourly monthly varying anthropogenic heat.
Bug fixes and enhancement in WRFV4.6
- Correct net long wave fluxes for application in modeling urban climate using Single Layer Urban Canopy Model (SLUCM). It slightly improved 2-m temperature in urban area. Details
WRF Bug-fix/updated LCZs
Bug fixes and enhancement in WRFV4.6
- Fix a bug in Noah-MP for uninitialized leaf mass when LCZ is used. Detail
- Update urban LCZ parameter table (URBPARM_LCZ.TBL) with more reasonable values. Detail
- Make the Pleim-Xiu LSM compatible with MODIS LCZ. Also, effects of evaporation from transpiration, soil in both vegetated and non-veg parts and wet leaves on ground temperature all are considered. Previously only the effect from transpiration and evaporation from non-veg soil are considered. Detail
WRF Version 4.5.1 (Bug-fix Release)
- Fix a bug in building height specification in the LCZ urban parameter table. Details
WRF Version v4.4.2 (Bug-fix Release)
- Update urban local climate zone (LCZ) numbers in parameter tables to avoid overlap with existing NLCD land types. This update affects VEGPARM.TBL, LANDUSE.TBL, and MPTABLE.TBL. The LCZ numbers in WRF-urban are changed from 31-41 to 51-61. Details
- Fix the units and unit conversions of several variables in subroutines CARBON and CARBON_CROP (NoahMP scheme); update urban pixel identification by including LCZ urban types in module_sf_noahmpdrv.F for surface variable initialization. Details
WRF Version v4.3.1 Release
- Some of the urban parameter values for LCZ are changed to make them more generic.
WRF Version 4.3
- Implementation of Local Climate Zone (LCZ using WUDAPT (31-41) landuse classes, along with standard urban classes (31-33). (Ref: Stewart, I.D. and Oke, T.R. (2012) Local Climate Zones for Urban Temperature Studies. Bulletin of the American Meteorological Society, 93, 1879-1900. http://dx.doi.org/10.1175/BAMS-D-11-00019.1). More information can be found at https://ral.ucar.edu/sites/default/files/public/product-tool/urban-canopy-model/WRF_urban_update_Readme_file_WRF4.3.pdf. Data from https://www.wudapt.org/ is required. Note that the parameters in the new urban table, URBPARM_LCZ.TBL, may vary greatly from city to city. The default values are probably not appropriate for any given city. Users should adapt these values based on the city they are working with.
W2W
- Demuzere, M., Argüeso, D., Zonato, A., & Kittner, J. (2022). W2W: A Python package that injects WUDAPT's Local Climate Zone information in WRF. Journal of Open Source Software, 7(76), 4432.
- The Python-based WUDAPT-to-WRF (W2W) package is developed to translate Local Climate Zone (LCZ) maps into urban canopy parameters readable by WRF
1 |
|
Steps to Run UCM on WRF
1. Prepare the Environment
- Ensure you have the WRF model installed and configured properly on your system.
- Download or prepare an urban land-use dataset if you want to use a specific urban area map. If not, you can use the default land-use map.
2. Modify the Configuration Files
- Namelist Configuration:
- Open the
namelist.input
file in your WRF directory. - Set the
sf_urban_physics
option to1
to enable UCM:1
sf_urban_physics = 1
- For LCZs,
“& physics”
section of WRF namelist.input:use_wudapt_lcz =1
(set to 0 by default).
- For LCZs,
- Ensure that you set this option for every domain you plan to run.
- Open the
- Registry Modifications:
- Edit the
Registry.EM
file located in theRegistry/
directory. Add an 'h' in the appropriate column to enable output of urban canopy variables in your output files.
- Edit the
3. Prepare Urban Parameters
- Modify the
URBPARM.TBL
file located in therun/
directory to adjust urban parameters according to your study area. This includes parameters like building height, surface albedo, and anthropogenic heat emissions.
ERROR: Warning: too many input landuse types
1 |
|
- Renew your
*.TBL
for different version of WRF.
URBPARM.TBL
- The appropriate urban parameters are highly variable from city to city (e.g., some cities may have wide roads and short buildings, other cities may have narrow roads and tall buildings). For best use of the urban canopy models, these parameters should be tuned specifically for the city of interest.
- https://ral.ucar.edu/sites/default/files/public/images/product_tool/urbparm.html
- https://github.com/wrf-model/WRF/blob/master/run/URBPARM.TBL
- https://github.com/wrf-model/WRF/blob/master/run/URBPARM_LCZ.TBL
URBPARM.TBL | |
---|---|
ZR | Roof level (building height) [m] |
ROOF_WIDTH | Roof (i.e., building) width [m] |
ROAD_WIDTH | Road width [m] |
AH | Anthropogenic heat [W m-2] |
FRC_URB | Fraction of the urban landscape which does not have natural vegetation. [Fraction] |
CAPR | Heat capacity of roof [J m-3 K-1] |
CAPB | Heat capacity of building wall [ J m-3 K-1] |
CAPG | Heat capacity of ground (road) [J m-3 K-1] |
AKSR | Thermal conductivity of roof [J m-1 s-1 K-1] |
AKSB | Thermal conductivity of building wall [J m-1 s-1 K-1] |
AKSG | Thermal conductivity of ground (road) [J m-1 s-1 K-1] |
ALBR | Surface albedo of roof [fraction] |
ALBB | Surface albedo of building wall [fraction] |
ALBG | Surface albedo of ground (road) [fraction] |
EPSR | Surface emissivity of roof [-] |
EPSB | Surface emissivity of building wall [-] |
EPSG | Surface emissivity of ground (road) [-] |
Z0R | Roughness length for momentum, over roof [m] |
Z0B | Roughness length for momentum, over building wall [m] Only active for CH_SCHEME == 1 |
Z0G | Roughness length for momentum, over ground (road) [m] Only active for CH_SCHEME == 1 |
CH_SCHEME | Ch of Wall and Road [1: M-O Similarity Theory, 2: Empirical Form of Narita et al., 1997 (recommended)] |
TS_SCHEME | Surface and Layer Temperatures [1: 4-layer model, 2: Force-Restore method] |
AHOPTION | [0: No anthropogenic heating, 1: Anthropogenic heating will be added to sensible heat flux term] |
AHDIUPRF | Anthropogenic Heating diurnal profile. Multiplication factor applied to AH (as defined in the table above) Hourly values ( 24 of them ), starting at 01 hours Local Time. For sub-hourly model time steps, value changes on the hour and is held constant until the next hour. |
Anthropogenic Heating (AH)
The parameters for urban land surface are highly case-dependent. The default values given in WRF are based on a few observations and I don't think they are representative. One must adjust these values based on one's specific case. However, we don't have more information about how to specify the values. there is little publications discussing this issue. So they are more empirical. It is needed to set AHOPTION and ALHOPTION to 1
if you want to activate anthropogenic heating. Again, note that these values are also case-dependent. They may not well apply to your case. You probably need to do lots of tuning.
Roughness length
The roughness length is a crucial parameter that influences the simulation of wind profiles and heat exchange in urban areas.
1 |
|
Set Roughness length
Only active for CH_SCHEME == 1
,
1 |
|
- The surface roughness issue in UCM
- Why roughness(ZNT) of Urban is lower than Croplands in UCM?
- I have tried to modify
module_sf_urban.F
to change the calculation of Z0C to find whether the calculation of surface roughness in the Urban Canopy Model would influence the output of ZNT from wrfout files. But I find that the change in Z0C will not impact the output of ZNT that ZNT in wrfout files kept about 0.12 no matter how Z0C change.
- I have tried to modify




In above Figure 2,
- left is theta level is 83m, and 1st level is 166m
- right is theta level is ~23m, and 1st level is ~46m
Papars
ZDC + Z0C + 2m is larger than the 1st WRF level Stop in subroutine urban - change ZDC and Z0C
1 |
|
- Calculate the following urban canyon geometry parameters following Macdonald's (1998) formulations, Macdonald, R. W., Griffiths, R. F., & Hall, D. J. (1998). An improved method for the estimation of surface roughness of obstacle arrays. Atmospheric environment, 32(11), 1857-1864.
1 |
|
How is 10m wind speed computed?
Generally 10m wind is computed based on the Monin-Obukhov similarity theory
; however, please see phys/module_sf_myjsfc.F
regarding the MYJ PBL. For the MM5 surface layer option, see module_sf_sfclay.F
. The ARW Technical Note lists published papers that discuss this, if you are interested in reading more.
Applications (papers)
- Chen, Fei, et al. "Utilizing the coupled WRF/LSM/Urban modeling system with detailed urban classification to simulate the urban heat island phenomena over the Greater Houston area." Fifth Symposium on the Urban Environment. Vol. 25. American Meteorological Society Vancouver, BC, Canada, 2004.
- Kusaka, Hiroyuki, and Fujio Kimura. "Coupling a single-layer urban canopy model with a simple atmospheric model: Impact on urban heat island simulation for an idealized case." Journal of the Meteorological Society of Japan. Ser. II 82.1 (2004): 67-80.
- Chen, Fei, et al. "The integrated WRF/urban modeling system: development, evaluation, and applications to urban environmental problems." (2011).
- Kusaka, Hiroyuki, et al. "Numerical simulation of urban heat island effect by the WRF model with 4-km grid increment: An inter-comparison study between the urban canopy model and slab model." 気象集誌. 第 2 輯 90.0 (2012): 33-45.
- 利用 WRF/Urban Canopy Model 模擬探討台灣北部都市地區之熱島效應. 2016. PhD Thesis. National Central University.
- Li, Huidong, et al. "Quantifying urban heat island intensity and its physical mechanism using WRF/UCM." Science of the total environment 650 (2019): 3110-3119.
- Wang, Yi, et al. "Impact of land surface heterogeneity on urban heat island circulation and sea‐land breeze circulation in Hong Kong." Journal of Geophysical Research: Atmospheres 122.8 (2017): 4332-4352.
- Kim, G., Cha, D. H., Song, C. K., & Kim, H. (2021). Impacts of anthropogenic heat and building height on urban precipitation over the Seoul metropolitan area in regional climate modeling. Journal of Geophysical Research: Atmospheres, 126(23), e2021JD035348.
CUHK
- Hu, C., C.-Y. Tam, Z. Li, J. Chen, Y. Li, K.K.W. Cheung, Z.-L. Yang, J.-E. Chu and T. N. Chow, 2024: Impacts of Urban Heat and Surface Roughness on Landfalling Tropical Cyclone Intensity: A Case Study based on TC Victor (1997) in Coastal South China, J. Geophys. Res., 129, e2024JD040915.
- urban surface roughness contributes to a decrease in postlandfall storm intensity through frictional energy dissipation
- the roughness of the city's surface also helped to weaken the storm because of the friction.
- Hu, C., C.-Y. Tam and Z. Wang, 2024: Urbanization Impacts on South China Greater Bay Area Extreme Rainfall - Sensitivity to Synoptic Systems during Pre-monsoon Period Climate Dynamics, Adv. Atmos. Sci., https://doi.org/10.1007/s00376-024-4114-x
- Hu, C., C.-Y. Tam, Z.-L. Yang and Z. Wang, 2024: Analyzing Urban Influence on Extreme Winter Precipitation through Observations and Numerical Simulation of Two South China Case Studies, Scientific Reports, https://www.nature.com/articles/s41598-024-52193-2q
HKO
- Mok, Hing Yim, Man Chi Wu, and Cheuk Yin Cheng. "Spatial variation of the characteristics of urban heat island effect in Hong Kong." Journal of Civil Engineering and Architecture 5.9 (2011): 779-786.
- 城市發展如何影響香港的氣候 | 城市熱島效應
- 全球暖化及本地城市發展皆會影響香港的氣候,根據天文台的研究,城市發展對香港長期暖化趨勢的貢獻估計可達百分之五十。
- 在香港,熱島效應基本上是夜間現象,它在冬季時較為顯著,尤其是在大氣穩定、微風及天朗氣清的日子最為明顯。
- 香港的高樓建築及高密度城市發展增加了地面的磨擦力及阻擋空氣流動,降低市區內部風速。圖3.7顯示1968至2015年間横瀾島的年均風速無明顯的趨勢,而位於市區的京士柏年均風速則明顯下降。
- 微氣候
HK Planning Department
References
- Tewari, M., Chen, F., Kusaka, H., & Miao, S. (2007). Coupled WRF/Unified Noah/urban-canopy modeling system. Ncar WRF Documentation, NCAR, Boulder, 122, 1-22.
- Barlage, Michael, Shiguang Miao, and Fei Chen. "Impact of physics parameterizations on high‐resolution weather prediction over two Chinese megacities." Journal of Geophysical Research: Atmospheres 121.9 (2016): 4487-4498.
- Smithson, C. L., White, N. J., Klomp, H. R., Monson, E. C., & Adams, B. R. (2023). User Guide for Urban Canopy Modeling in WRF. Version 1.0.
- Updates of WRF-urban in WRF 4.3: Local Climate Zones, Mitigation Strategies, building materials permeability and new buildings drag coefficient | March 24, 2021
- implemented in WRF, allows now to incorporate 11 urban classes corresponding to the WUDAPT(http://www.wudapt.org/) Local Climate Zones (LCZ)
“& physics”
section of WRF namelist.input:use_wudapt_lcz =1
(set to 0 by default).
- The new version of the BEP+BEM scheme in WRF 4.3: Local Climate Zones, Mitigation Strategies, building materials permeability and new buildings drag coefficient | February 10, 2021
- The new version of the BEP+BEM urban multilayer scheme, implemented in WRF, allows now to incorporate 10 urban classes corresponding to the WUDAPT (http://www.wudapt.org/) Local Climate Zones (LCZ).
- 城市气象模拟的1、2、3(上)| 朱浩楠 | 2016年09月30日