WRF-Fire development notes

From openwfm
Jump to navigation Jump to search

This page tracks activity in the WRF-Fire software development.

Wish list

  • Get rid of the ugly includes in the argument lists to get the coefficients down the call chain to the spread rate calculations. Pass the coefficients by pointers defined in a module instead. Declare the pointers in the module, or pass them around in a single derived type argument.
  • A standalone driver for the fire code that is independent of WRF.
    • This is how WRF-Fire was originally developed and the driver was available as phys/model_test_main.F until deleted in November 2008. But, by then it already fell into disuse and the Fire had grown into the WRF. It should be resurrected now after we clean up the argument lists.
  • Merge with WRF 3.2
  • Gradual ignition from a point or a line, without limitation on the initial radius.
    • The current scheme requires that the ignition area is several fire mesh steps large. When such area ignites all at once, all the heat is output to the atmosphere at once, instead of being output gradually and allowing ground layer circulation to develop over time.
  • Canopy fire
    • Canopy fire collocated with ground fire is easy. A separate canopy fire would be harder.
  • Output to WRF-Chem
    • Output of the combustion products into WRF is also needed to visualize smoke.

In progress

  • Better quadrature for fuel left
    • The quadrature is done separately on 4 smaller cells per fire cell. The interpolation of time from ignition to the smaller cells should take into consideration the case when some of the nodes interpolated from are ignited and some are not. Volodymyr Kondratenko, branch jm2/fuel
    • The current scheme is second order accurate when all 4 corners of a fire mesh cell are on fire, and exact when all 4 corners are not on fire. In the case when only some of the 4 corners are on fire, the only requirements are that the transition when nodes ignite is continuous and monotonous. In that case, the scheme may not be very accurate. A better scheme would be accurate in more cases and have natural invariance properties. Minjeong Kim, branch jm2/mkim commit
This affects the amount of heat output from the cell in the timesteps when the fireline crosses the cell.
  • Input to the fire model the gradient rather than terrain height. This will allow the gradient to be smoothly interpolated in preprocessing in the WPS or in setting up ideal cases. No artificial terrain smoothing is needed. The current scheme interpolates terrain height linearly, and if the mesh the terrain is interpolated from is much coarser than the fire mesh, this results in gradient jumps along the terrain mesh lines. Then, the fire spread rate jumps along the terrain mesh lines. See discussion. Branch jm2/grad.
  • Read the topography from a file in an ideal run. Fix/extend surface initialization in ideal cases to allow for defining surface properties like roughness, ground temperature, albedo etc., required by soil models and radiation codes. See discussion. Adam Kochanski, branch adamko/surface
  • Support hyperbolic vertical mesh grading in ideal run not only exponential. Adam Kochanski, branch adamko/surface

Done

  • Restart commit
  • Walking line ignition (as the fireman walks igniting the fire) commit
  • Remove (by default) the warm perturbation (bubble) from atmospheric initializations in idealized case. Modify the code and add namelist variables allowing for ingesting the cold/warm perturbation of a specified size (for people interested in fire propagation in downburst/convective environments) (Adam Kochanski) commit

External links