WRF | Predicting lightning activity using WRF-ELEC model
WRF-ELEC model
WRF-ELEC provides basic electrification and lightning using the NSSL microphysics scheme. The electrification parameterizations are based on past work in modeling. The basics of the charge separation schemes comes from Mansell et al. (2005). Their use in the NSSL 2-moment microphysics is shown in Mansell et al. 2010 and Mansell and Ziegler (2013). First implementation into WRF is described by Fierro et al. (2013), which includes details of the basic discharge scheme (cylindrical discharge regions centered on lightning initiation points).
- Mansell et al. 2005: Charge structure and lightning sensitivity in a simulated multicell thunderstorm. J. Geophys. Res., 110, D12101, doi:10.1029/2004JD005287
- Mansell, E. R., C. L. Ziegler, and E. C. Bruning, 2010: Simulated electrification of a small thunderstorm with two-moment bulk microphysics. J. Atmos. Sci., 67, 171-194, doi:10. 1175/2009JAS2965.1.
- Fierro, A. O., E.R. Mansell, C. Ziegler and D. R. MacGorman 2013: The implementation of an explicit charging and discharge lightning scheme within the WRF-ARW model: Benchmark simulations of a continental squall line, a tropical cyclone and a winter storm. Monthly Weather Review, Volume 141, 2390-2415 (see below)
If you have trouble with this option please contact the developers directly (i.e., not wrf_help):
Ted Mansell (Ted.Mansell at noaa.gov)
Alexandre Fierro (Alex.Fierro at noaa.gov)
BoxMG
- Black Box Multigrid (BoxMG) algorithm
The BoxMG elliptic equation solver is required for WRF-ELEC to calculate the 3D electric potential. This library is distributed at the moment as a source code archive at
The git repository is recommended as the most up-to-date. Note that the code has only been compiled for Intel/AMD (non-Itanium) architecture under Linux and OS X using either Intel Fortran or GNU compilers. (For problems, contact ted.mansell@noaa.gov)
BoxMG needs to be installed before configuring WRF.
Install the code where you want the libraries to be and then follow the instructions in the INSTALL document:
1 |
|
- https://sourceforge.net/p/boxmg4wrf/git/ci/main/tree/
- Branches: main, boxmg4wrf-0.1, master, release0.0
git logg (2024-09-24)
1 |
|
Compile:
- wrf_env.sh: go to https://waipangsze.github.io/2023/04/25/WRF_installation_on_a_Linux_based_machine/
To check environment variables,
- /ARCH/machine
1 |
|
- add these to Makefile to print variables,
1 |
|
- $ make
1 |
|
1 |
|
The libraries ( libboxmg_opt_sgl.a, libboxmg-extras_opt_sgl.a ) will be in ./lib.
install process:
1 |
|
Test BoxMG
- Go to /tests and make
1 |
|
it shows,
1 |
|
- boxmg-sym-std-3D/ex_direct_1_f90 is successful.
- All the rest fails. (why? related RKIND issue.)
Configure/compile WRF
Important note:
Compile WRF using only one core with BoxMG !!!
./compile -j 1 em_real 2>&1 | tee compile.log
To configure WRF, two environment variables must be set: WRF_ELEC and BOXMG
For bash:
1 |
|
For example, if the boxmg library directory is /home/wpsze/WRF/WRF4-elec/wrf_install/boxmg4wrf/lib, then (for bash)
1 |
|
Then run 'configure' in the WRF main directory and select an option for 'dmpar' (distributed memory parallel). The code is set up only to use the MPI parallel solver from BoxMG, so do not compile for serial mode. (It can still be run on a single processor, however.)
MicroTed/wrf4-elec
https://github.com/MicroTed/wrf4-elec
The impact of initial conditions in predicting lightning activity using the Weather Research and Forecasting (WRF) with the electrification (ELEC) extra package, known as WRF-ELEC model, has been investigated.
An example of namelist.input
1 |
|
README.electricity
wrf4-elec's registry.elec
https://github.com/MicroTed/wrf4-elec/blob/main/Registry/registry.elec
Look at namelist !!
1 |
|
here noted,
elec_physics | nssl_ipelec | nssl_idischarge | outputs |
---|---|---|---|
1 | 2 | 1 | ? |
1 | 3 | 1 | scalar:scr,scw,sci,scs,sch,schl,sciona; state:rscghis_2d,sctot,noninduc,induc,pot, elecmag,elecx,elecy,elecz,light,lightdens,lightdis |
1 | 3 | 2 | state:flshi,flshn,flshp,flshfedic, flshfedicp,flshfedicn,flshfedcg,flshfedcgp,flshfedcgn |
Specific namelist.input options
1 |
|
Output fields
1 |
|
sourceforege
https://sourceforge.net/projects/wrfelec/files/
Source: README.wrfelec, updated 2015-05-04
Compilation process details
- BoxMG directory: /home/wpsze/WRF/WRF4-elec/wrf_install/boxmg4wrf/
Important note:
Compile WRF using only one core with BoxMG !!!
./compile -j 1 em_real 2>&1 | tee compile.log
part of script is shown below,
1 |
|
1 |
|
there is an extra folder called "elec",
1 |
|
Compile Errors
- Error NoahMP submodule files not populating WRF directories.
- https://waipangsze.github.io/2024/06/04/WRF_install_Error_NoahMP_submodule_files/
- Download noahmp @ xxxx folder to your local /WRF/phys/
- wrf4-elec is noahmp @ 3be0b28
- time No such file or directory.
Done
1 |
|
WRF-ELEC outputs
It is important to note that the FOD and reflectivity are derived from ELEC, whereas the LPI originates from WRF-ARW simulations.
simulated radar reflectivity
radar reflectivity is diagnosed.
- https://wrf-python.readthedocs.io/en/latest/user_api/generated/wrf.dbz.html
- This function computes equivalent reflectivity factor [dBZ] at each model grid point assuming spherical particles of constant density, with exponential size distributions. This function is based on “dbzcalc.f” in RIP.
or on namelist,
1 |
|
with do_radar_reflectivity=1 and after running got the REFL_10cm variable. But this variable REFL_10cm is giving the estimated 10 cm wavelength (S-band) radar reflectivity in dB relative to reflectivity (dBZ) as produced by the WRF microphysics scheme.
but, above mp_physics = 17 or 18?
lightning_option (from WRF-ARW)
Lightning parameterization option to allow flash rate prediction without chemistry.
WRF-Chem Version 4.4 User's Guide: Appendix C: Using the Lightning-NOx Parameterization in WRF-Chem
(for convection resolved runs; must also use do_radar_ref = 1, and mp_physics = 2,4,6,7,8,10,14, or 16)
1 |
|
From WRF-MPAS-A forum,
- WRF lightning scheme only being run at model output times?
- Lightning option
- Large differences of simulated fields (U, V, W, T) with lightning_option = 3 (LPI) on and off
- An alternative is to calculate the LPI from the model output. This can be done quite simply using an NCL program.
From https://groups.google.com/a/ucar.edu/g/wrf-chem-lightning/c/v6nIeyL7G2g,
The lightning option = 1 you chose is appropriate for dx<5km because it relies on the maximum updraft speed in the storm updraft. You chose dx=10km which will not produce updraft speeds representative of thunderstorms, and in fact the storms are likely represented by the convective parameterization.
For dx=10 km, you should use lightning_option = 11.
light/lightdens/Electric POTential difference (POT) (From WRF-ELEC)
Starting with the electrification processes (inductive and non-inductive processes), calculation method of the electric field, along with the BoxMG mathematical software for computation of POT is described.

What is the time interval in light(flash column-1)?
!--light 2D flash origin densities per output time !--lightdens 2D flash extent densities per output time !--lightdis 2D total number of discharge points per output time
- per output time?
- To find the number of flashes between output times, simply subtract the flashcount array from the previous output time from the current output time to get number of flashes per dt (where64dt = time between output files).
From solve_em.F, diag_flag and diag_flag_hist are
- Set diagnostic flag value history output time
1 |
|
- In include_microphysics_driver_elec.F,
- diag_flag_hist
- clear_history = .true.
- all set = 0.0
1 |
|
WRF practice
option | |
---|---|
elec_physics | = 0, electrification (and charge arrays) turned off (DEFAULT) = 1, electrification turned on (only works with mp_physics = 17, 18, or 22 i.e., 2-moment NSSL schemes) |
nssl_ipelec (max_dom) | ! NOTE: only set this to a nonzero value on the innermost domain = 0, charging turned off = 2, non-inductive charging only = 3, non-inductive + inductive charging = 1, not used (reserved for future use) |
nssl_idischarge | = 0, no discharge = 1, Cylindrical "1D" lightning scheme based on Ziegler and MacGorman (1994, JAS) = 2, 3D discrete discharge adapted from MacGorman et al. (2001) |
- The WRF-ELEC model outputs a variety of variables related to electrification processes and lightning activity in thunderstorms. Some of the key output variables include:
WRF-ELEC variables | Unit | Description |
---|---|---|
LIGHT(Time, south_north, west_east) | flash origin density | lightning flash initiations |
LIGHTDENS(Time, south_north, west_east) | flash column-1 | lightning flash density |
LIGHTFOD(Time, south_north, west_east) | flash column-1 | normalized lightning flash origin density |
LIGHTDIS(Time, south_north, west_east) | Source column-1 | lightning source density |
POT(Time, bottom_top, south_north, west_east) | V | POTENTIAL |
ELECMAG(Time, bottom_top, south_north, west_east) | V m-1 | EFIELD MAGNITUDE |
ELECX(Time, bottom_top, south_north, west_east) | V m-1 | EFIELD X-Component |
ELECY(Time, bottom_top, south_north, west_east) | V m-1 | EFIELD Y-Component |
ELECZ(Time, bottom_top, south_north, west_east) | V m-1 | EFIELD Z-Component |
SCTOT(Time, bottom_top, south_north, west_east) | C m-3 | Total Space Charge Density |
RSCGHIS_2D(Time, south_north, west_east) | C m-2 | MAX NONINDUCTIVE CHARGING 2D |
INDUC(Time, bottom_top, south_north, west_east) | C m-3 | TOTAL INDUCTIVE CHARGING |
NONINDUC(Time, bottom_top, south_north, west_east) | C m-3 | TOTAL NONINDUCTIVE CHARGING |
SCTOT(Time, bottom_top, south_north, west_east) | C m-3 | Total Space Charge Density |
- If the lightning discharge flag (nssl_idischarge = 2) that is lightning3d, More output variables include: (LIGHTFOD is not calculated)
WRF-ELEC variables | Unit | Description |
---|---|---|
FLSHFEDIC(Time, south_north, west_east) | flash column-1 | IC lightning flash extent density |
FLSHFEDICP(Time, south_north, west_east) | flash column-1 | IC pos lightning flash extent density |
FLSHFEDICN(Time, south_north, west_east) | flash column-1 | IC neg lightning flash extent density |
FLSHFEDCG(Time, south_north, west_east) | flash column-1 | CG lightning flash extent density |
FLSHFEDCGN(Time, south_north, west_east) | flash column-1 | CG neg lightning flash extent density |
FLSHFEDCGP(Time, south_north, west_east) | flash column-1 | CG pos lightning flash extent density |
FLSHI(Time, bottom_top, south_north, west_east) | count | Lightning init points |
FLSHN(Time, bottom_top, south_north, west_east) | count | Negative channels |
FLSHP(Time, bottom_top, south_north, west_east) | count | Positive channels |
Cost: Elapsed time
WRF-ELEC | mp | idischarge | Elapsed time |
---|---|---|---|
elec=0 | 17 | none | 4h49m |
elec=1 | 17 | 1 | 6h13m |
elec=1 | 17 | 2 | 9h1m |
WRFv4.5-ELEC.
Literature review
Lightning activity is related to two important factors: dynamic–thermodynamic and microphysical characteristics (e.g., Williams et al., 2005; Rosenfeld et al., 2008; Guo et al., 2016; Wang et al., 2018; Zhao et al., 2020). Since the dynamic–thermodynamic processes affect the development of thunderstorm significantly, lightning activity is influenced by various dynamic–thermodynamic variables: temperature (Price, 1993), relative humidity in the lower and middle troposphere (Xiong et al., 2006; Fan et al., 2007), convective available potential energy (Qie et al., 2004; Stolz et al., 2015), and many others.
(1992) PR92
Price, C., and D. Rind (1992), A Simple Lightning Parameterization for Calculating Global Lightning Distributions, J. Geophys. Res., 97(D9), 9919-9933, doi:10.1029/92JD00719.
Wong, J., M. Barth, and D. Noone, 2013: Evaluating a lightning parameterization based on cloud-top height for mesoscale numerical model simulations, Geosci. Model Dev., 6, 429–443, GMD - Evaluating a lightning parameterization based on cloud-top height for mesoscale numerical model simulations.
ref: WRF-Chem Version 4.4 User's Guide: Appendix C: Using the Lightning-NOx Parameterization in WRF-Chem
You may also find useful information in the actual code for the schemes:
- module_lightning_driver.F
- module_ltng_crmpr92.F
(2010) Prediction of lightning flash density with the WRF model
https://pdfs.semanticscholar.org/a206/1d033ccf90082c05a1514df4920005035c0b.pdf
Lynn, B., and Yoav Yair. "Prediction of lightning flash density with the WRF model." Advances in Geosciences 23 (2010): 11-16.
The Lightning Potential Index (LPI) is a measure of the potential for charge generation and separation that leads to lightning flashes in convective thunderstorms. It is calculated from model simulated updraft and microphysical fields. It was designed to predict the potential of lightning occurrence in operational weather forecasting models, but could possibly be used to improve short-range forecasts of heavy rain. The index is modified here to be model grid-scale transparent between 1 and 4 km (the approximate upper limit of explicit microphysical weather forecasts). Two case studies show that the modification appears to work quite well, and that LPI can be calculated on both an extremely high resolution research-grid (i.e., 1.33 km) and high resolution (i.e., 4 km) operationally compatible forecast grid. Analytical expressions are presented to use the LPI to predict the hourly lightning flash density.
1 |
|
(2013) Fierro et al.
Fierro, A. O., Mansell, E. R., MacGorman, D. R., & Ziegler, C. L. (2013). The implementation of an explicit charging and discharge lightning scheme within the WRF-ARW model: Benchmark simulations of a continental squall line, a tropical cyclone, and a winter storm. Monthly Weather Review, 141(7), 2390-2415.
This work describes the recent implementation of explicit lightning physics within the Weather Research and Forecasting (WRF) Model.
- Charging of hydrometeors consists of five distinct noninductive parameterizations, polarization of cloud water, and the exchange of charge during collisional mass transfer.
- The three components of the ambient electric field are explicitly solved for via the computationally efficient multigrid elliptic solver.
- The discharge process employs concepts adapted from two well-documented bulk lightning models, whereby charge reduction is imposed within a prescribed volume centered at grid points characterized by electric field magnitudes exceeding a given breakdown threshold.
This lightning model was evaluated through benchmark
- convection-allowing (3 km) model simulations of three contrasting convective systems: a continental squall line,
- a major hurricane (Rita 2005), and
- a winter storm.
The areal coverage and magnitude of the simulated hourly flash origin density (FOD) for the continental squall line are qualitatively comparable to that of the total lightning data observations from Earth Networks Total Lightning Network (ENTLN). In agreement with the ENTLN observations, no FOD are simulated for the winter storm case. The simulated spatial FOD pattern of the hurricane and the eyewall gross charge structure were both in reasonable agreement with observations. The simulated FOD for all three cases were also evaluated against those obtained with the recently developed McCaul diagnostic lightning prediction schemes and exhibited overall good qualitative agreement with each other for Rita and the continental squall line.
Thunderstorm Indices (LPI, Layrh, SCP)
Thunderstorm Indices (LPI, Layrh, SCP) obtained from IMD-WRF (3km) Hourly outputs.
- Model GEFS - WRF Description
- https://srf.tropmet.res.in/srf/ts_prediction_system/lpi_model.php
- Lightning Potential Index (LPI)
- Here, LPI has been calculated using IMD-WRF (3km) hourly model output. 24 Hour accumulated LPI has been generated by adding hourly LPI values. The threat of LPI has been categorized in Low, Moderate and High. LOW: LPI < 0.001 and >0.0005; Moderate: LPI :< 0.01 and > 0.001; Threat Level: High: LPI > 0.01.
- SuperCell Composite Parameter (SCP)
- SCP > 1 indicated that the environment is conducive for thunderstorm formation. The Threat Level of SCP has been categorized in Low, Moderate and High. LOW: 3 < SCP < 5; Moderate: 5 < SCP < 7; High: SCP > 7.
- Layer Relative Humidity (LAYRH)
- The threat level of Layrh has been categorized in Low, Moderate and High. LOW: 20 < LAYRH < 40; Moderate: 40 < LAYRH < 60; High : LAYRH > 60
(2019) Numerical study of performance of two lightning prediction methods based on: Lightning Potential Index (LPI) and electric POTential difference (POT) over Tehran area
Gharaylou, M., Farahani, M. M., Hosseini, M., & Mahmoudian, A. (2019). Numerical study of performance of two lightning prediction methods based on: Lightning Potential Index (LPI) and electric POTential difference (POT) over Tehran area. Journal of Atmospheric and Solar-Terrestrial Physics, 193, 105067.
The electric POTential difference (POT) and the Lightning Potential Index (LPI) performance in predicting the lightning activity is investigated and the probable relationship between them is examined. These two indices have a similar dependency on microphysical variables such as ice, graupel mixing ratios, and also updraft characteristics within the cloud. Regardless of this similarity, the LPI directly calculated from WRF model is a more favorable parameter for predicting the lightning events in comparison with the POT, which requires an extra package (ELEC) model. Ten years' available data over the Tehran area were reviewed and four thundercloud cases with distinct characteristics (CAPE, time-frequency, intensity) were selected. In order to acquire the associated physical properties, four simulations have been done using the WRF-ELEC model, which is initialized with ERA-Interim data.
**(2020) Prediction of lightning activity using WRF-ELEC model
Gharaylou, M., Farahani, M. M., Mahmoudian, A., & Hosseini, M. (2020). Prediction of lightning activity using WRF-ELEC model: Impact of initial and boundary conditions. Journal of Atmospheric and Solar-Terrestrial Physics, 210, 105438.
- The WRF model belongs to the first group in which lightning is predicted based on the Bulk Lightning Model (BLM). Ziegler and MacGorman (1994) have studied lightning flashes in a twoand three-dimensional cloud models using the WRF model.
- In the early 90s, Price and Rind (1992) developed a lightning parameterization scheme based on cloud-top height.
- Furthermore, another lightning flash parameterization scheme has been introduced by Allen and Pickering (2002) and Allan et al. (2010) based on the square of deep convective mass flux.
- Choi et al. (2005) and Zhao et al. (2009) incorporated the convective available potential energy (CAPE) in their comparative parameterizations.
- Yair et al. (2010) introduced Lightning Potential Index (LPI), an advanced index for evaluating the probability of lightning occurrence, incorporated the dynamic and microphysic concepts.
- Following, Lynn et al. (2012) introduced the potential electrical energy (Ep) parameter into the WRF model, which was used to predict both Cloud-to-Ground (CG) and Intra-Cloud (IC) lightning events.
- Afterwards, Wong et al. (2013) developed the lightning parameterization based on cloud-top height (Price and Rind, 1992).
- Gharaylou et al. (2019) examined 2 indices which are used in predicting the lightning activities both in time and location. They compared the electric potential difference (POT) and the LPI performance in predicting the lightning associated with four events over a domain located in the north of Iran.
- The LPI is computationally less expensive and is directly calculated by the WRF model with less computational cost in comparison with the POT which requires an extra package (ELEC model).
- LPI calculations have been discussed in our previous paper (Gharaylou et al., 2019)
Effect of Initial and boundary conditions (IBCs)
- The mesoscale models ordinarily obtain their initial and boundary conditions (IBCs) from large scale global models. Applying different initial conditions highly influences the accuracy of the model prediction in local areas (Zhang et al., 2002, 2006).
- A few works have been done to investigate the effect of initial conditions on lightning activity (Lynn et al., 2012).
- Zepka et al. (2014) studied the impact of the resolution of the NCEP operational Global Forecast System.
- As mentioned, there are very few works related to the assessment of IBC effects in the WRF-ELEC model for lightning prediction.
- WRF-ELEC model initialized with different datasets needs to be verified.
Case: Hong Kong Lightning
The "Hong Kong Observatory Lightning Statistics" refers to the detailed records of lightning activity in the Hong Kong region, primarily categorized into cloud-to-ground lightning and intra-cloud lightning. This data not only aids in understanding meteorological patterns but also enhances awareness of the safety risks associated with lightning strikes.


Statistics of lightning days at the HKO Weather Station

All Weather Stations - Ranking of Highest Daily Total Lightning Counts in History
From i-lens.hk, Last updated: August 31, 2024
Ranking | Weather Station | Start observation year | Observation date | Total number of lightning strikes per day (times) |
---|---|---|---|---|
1 | Hong Kong Observatory | 2005 | 2020-06-06 | 47537 |
2 | Hong Kong Observatory | 2005 | 2020-06-07 | 41446 |
3 | Hong Kong Observatory | 2005 | 2019-04-20 | 36299 |
4 | Hong Kong Observatory | 2005 | 2023-06-01 | 36253 |
5 | Hong Kong Observatory | 2005 | 2024-04-30 | 32603 |
6 | Hong Kong Observatory | 2005 | 2021-06-28 | 31859 |
7 | Hong Kong Observatory | 2005 | 2019-08-25 | 24951 |
8 | Hong Kong Observatory | 2005 | 2019-04-19 | 22053 |
9 | Hong Kong Observatory | 2005 | 2018-08-22 | 21152 |
10 | Hong Kong Observatory | 2005 | 2022-07-30 | 20187 |
11 | Hong Kong Observatory | 2005 | 2019-06-13 | 19526 |
12 | Hong Kong Observatory | 2005 | 2010-09-09 | 18813 |
13 | Hong Kong Observatory | 2005 | 2013-05-22 | 18568 |
14 | Hong Kong Observatory | 2005 | 2020-09-15 | 17879 |
15 | Hong Kong Observatory | 2005 | 2020-05-30 | 17765 |
16 | Hong Kong Observatory | 2005 | 2006-06-09 | 17587 |
17 | Hong Kong Observatory | 2005 | 2014-03-30 | 16823 |
18 | Hong Kong Observatory | 2005 | 2024-04-26 | 16328 |
19 | Hong Kong Observatory | 2005 | 2010-09-08 | 14659 |
20 | Hong Kong Observatory | 2005 | 2023-04-21 | 14471 |
Overview of Climate Change Effects
Climate change, driven by the increase in greenhouse gases, has a profound impact on weather patterns. As global temperatures rise, more energy is available in the atmosphere, which intensifies convective storms. Since lightning is primarily a product of such storms, the increase in the frequency and intensity of these storms can lead to changes in lightning activity.
- Increase Per Degree of Warming: Across the continental United States (CONUS), the CAPE × P proxy predicts a 12 ± 5% rise in lightning strike rates for each 1°C increase in global mean temperature (Romps et al., 2014). This research suggests that as the planet warms, lightning frequency will likely increase. A 12% rise in lightning activity is anticipated for every degree of warming, which could result in a 50% increase in lightning strikes in regions like the U.S. by the end of the century (Romps et al., 2014; Romps, 2021).
- Specific Regional Studies: Focused on the South China Sea (SCS) and surrounding regions in Southeast Asia to analyze long-term trends and future projections of lightning activity using the longest available satellite-based lightning dataset and climate models. The projections indicate that lightning activity in the SCS region is expected to increase by 10% under SSP245 and by 12% under SSP370 by the end of the 21st century. (Xu et al., 2023; Xu et al., 2024)
- Impact of Global Warming on Future Lightning Events
- The IPCC AR6 defines several Shared Socioeconomic Pathways (SSPs) that describe possible future climate scenarios based on different levels of greenhouse gas emissions. (e.g., SSP5-8.5: Very high emissions, with warming over 4.4°C)
- Regional Studies on Future Lightning Events (e.g., South China Sea)
From these papers,
- Romps, D. M., Seeley, J. T., Vollaro, D., & Molinari, J. (2014). Projected increase in lightning strikes in the United States due to global warming. Science, 346(6211), 851-854.
- Romps, D. M. (2019). Evaluating the future of lightning in cloud‐resolving models. Geophysical Research Letters, 46(24), 14863-14871.
- Xu, L., Cao, X., Lan, X., Zhang, W., Sun, C., & Zhang, Y. (2024). Future increase in lightning around the South China Sea under climate change. Earth and Space Science, 11(6), e2023EA003356.
- Xu, Mingyi, et al. "Distribution of lightning spatial modes and climatic causes in China." Atmospheric and Oceanic Science Letters 16.2 (2023): 100338.
References
- 香港天文台
- 什麼是雷暴?
- 雷暴警告
- 為什麼總是先閃電後打雷?
- 甚麼是雲間閃電?
- 香港天文台閃電位置資訊系統
- 2012 | 閃電及其測量方法 | HKO
- 2006-Reprint 622-探討閃電位置數據應用在臨近預報的前景
- 2009-Reprint 817-香港一次夏季雹暴的天氣過程分析及臨近預報系統的應用
- 2012-Reprint 1035-利用閃電數據監測暴雨發展的個案分析
- 2017 天文台加強閃電定位資訊系統投入業務運作
- 2018-Reprint 1337-粵港澳閃電定位網絡的最新發展及與超強颱風天鴿相關之數據分析
- 2018-Reprint 1341-公眾定點閃電臨近預報服務
- 2019-Reprint 1358-區域與全球閃電定位資料於珠三角地區的精細化比對
- 2020-在珠三角一帶與大雨相關的閃電特徵分析
- 3025-空中對決:飛機與雷神的交鋒
- 世界气候“雷极”:印度尼西亚爪哇岛,平均年雷雨日数超过220天
- 徐良韬, 张义军, 王飞, 郑栋. 2012: 雷暴起电和放电物理过程在WRF模式中的耦合及初步检验. 大气科学, 36(5): 1041-1052. DOI: 10.3878/j.issn.1006-9895.2012.11235
- WRFv3.2.1
- 本文将雷暴云的起电、放电物理过程引入中尺度的WRF (Weather Research and Forecasting) 模式,并对超级单体和飑线过程进行了模拟研究.起电过程在Milbrandt双参数微物理方案中写入,包含霰、雹与冰晶、雪之间的非感应起电机制,以及霰、雹与云滴之间的感应起电机制.
- 徐良韬, 陈双, 姚雯, 等. 利用起放电模式开展闪电活动的直接预报试验. 应用气象学报, 2018, 29(5): 534-545. DOI: 10.11898/1001-7313.20180503.
- WRFv3.4.1
- 利用耦合有起电和放电物理过程的中尺度起电放电模式WRF-Electric
- Wasson, G., & Panda, S. K. (2024). Sensitivity of PBL parameterization schemes in simulating lightning and thunderstorm using WRF-ELEC model. Climate Dynamics, 1-23.
- The WRF-ELEC model, an auxiliary package integrated into WRF, is specifically designed to compute electric potential and overall lightning flash rate (source: https://sourceforge.net/projects/wrfelec).
- It incorporates explicit cloudresolving scale physics for lightning prediction (Fierro et al.2013). Detailed formulations can be found in Mansell et al.(2005) and Fierro et al. (2013).
- skill scores were calculated for each experiment.
- standard statistics and skill score analysis of CAPE (J/kg) and accumulated total precipitation (mm),
- Saleh, N., Gharaylou, M., Farahani,M. M., & Alizadeh, O. (2023).Performance of lightning potentialindex, lightning threat index, and theproduct of CAPE and precipitationin the WRF model. Earth and SpaceScience, 10, e2023EA003104. https://doi.org/10.1029/2023EA003104
- 2011: Lightning Forecast Algorithm (LFA) Overview