Scheduled Downtime
On Friday 21 April 2023 @ 5pm MT, this website will be down for maintenance and expected to return online the morning of 24 April 2023 at the latest

Flash count value

kumarjit saha

New member
Hi,
I have a query about the CG lightning flash count. I observed that the value shows decimal but I have a doubt if it is a flash count then its value may be a whole number. Please suggest to me why the flash count value shows in decimal.
 
Hi,
The variable "cg_flashcount" is listed as a "real" variable in the Registry.EM_COMMON file, so it allows for a decimal.

Code:
state    real    cg_flashcount     ij     misc    1   -   rh    "cg_flashcount"      "Accumulated CG flash count"     "#"


In the phys/module_lightning_driver.F file, it is calculated as follows.

Code:
cg_flashcount(its:ite,jts:jte) = cg_flashcount(its:ite,jts:jte) + cg_flashrate(its:ite,jts:jte) * lightning_dt

which you can see can result in a decimal.
 
Top