From 5494cbc22152127986e4702ae092af4d9ccaf11b Mon Sep 17 00:00:00 2001 From: Joachim Meyer Date: Wed, 20 May 2026 10:43:37 -0600 Subject: [PATCH 1/2] Release 20260520 - Post Fire Albedo Decay Option --- NEWS.md | 29 +++++++++++++++++++++++++++++ conda/isnobal_linux.yaml | 2 +- conda/isnobal_macOS.yaml | 2 +- config/awsm.ini | 4 ++-- 4 files changed, 33 insertions(+), 4 deletions(-) diff --git a/NEWS.md b/NEWS.md index b8c6505..ac11ab3 100644 --- a/NEWS.md +++ b/NEWS.md @@ -2,6 +2,35 @@ Highlights model component changes per release. This is not a comprehensive list and each linked release note should be consulted for a full list of changes. +# 20260520 +## AWSM +_None_ + +## SMRF +* Add new albedo decay option to support post fire scenarios. [PR#27](https://github.com/iSnobal/smrf/pull/27) + +### Breaking changes +Renamed parameters in `[albedo]` section of the ini file. +``` +[albedo] +date_method_start_decay -> decay_start +date_method_end_decay -> decay_end +``` +### New ini file parameters +``` +[albedo] +post_fire: True|False +post_fire_k_burned: float +``` +### Release notes +https://github.com/iSnobal/smrf/releases/tag/20260520 + +## PySnobal +_None_ + +## TopoCalc +_None_ + # 20260309 ## AWSM * Updates test "gold" files with TopoCalc changes diff --git a/conda/isnobal_linux.yaml b/conda/isnobal_linux.yaml index 5b1fb0e..71d84b4 100644 --- a/conda/isnobal_linux.yaml +++ b/conda/isnobal_linux.yaml @@ -33,4 +33,4 @@ dependencies: - pip: - inicheck - spatialnc - - git+https://github.com/iSnobal/awsm.git@20260309 + - git+https://github.com/iSnobal/awsm.git@20260520 diff --git a/conda/isnobal_macOS.yaml b/conda/isnobal_macOS.yaml index 69dafda..e05ce2e 100644 --- a/conda/isnobal_macOS.yaml +++ b/conda/isnobal_macOS.yaml @@ -36,4 +36,4 @@ dependencies: - pip: - inicheck - spatialnc - - git+https://github.com/iSnobal/awsm.git@20260309 + - git+https://github.com/iSnobal/awsm.git@20260520 diff --git a/config/awsm.ini b/config/awsm.ini index d177821..154b4ae 100644 --- a/config/awsm.ini +++ b/config/awsm.ini @@ -124,8 +124,8 @@ max: 1.0 min: 0.0 decay_method: date_method grid_mask: True -date_method_start_decay: 2022-3-15 -date_method_end_decay: 2022-6-15 +start_decay: 2022-3-15 +end_decay: 2022-6-15 date_method_decay_power: 0.714 date_method_veg_default: 0.2 From 0c037221c27a8ce8b25d256d6b60d2273f1f4f5a Mon Sep 17 00:00:00 2001 From: Joachim Meyer Date: Thu, 21 May 2026 10:03:37 -0600 Subject: [PATCH 2/2] Config - Fix new albedo start and end decay parameter name Thanks @arobledano --- config/awsm.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/awsm.ini b/config/awsm.ini index 154b4ae..e02e212 100644 --- a/config/awsm.ini +++ b/config/awsm.ini @@ -124,8 +124,8 @@ max: 1.0 min: 0.0 decay_method: date_method grid_mask: True -start_decay: 2022-3-15 -end_decay: 2022-6-15 +decay_start: 2022-3-15 +decay_end: 2022-6-15 date_method_decay_power: 0.714 date_method_veg_default: 0.2