Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion conda/isnobal_linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ dependencies:
- pip:
- inicheck
- spatialnc
- git+https://github.com/iSnobal/awsm.git@20260309
- git+https://github.com/iSnobal/awsm.git@20260520
2 changes: 1 addition & 1 deletion conda/isnobal_macOS.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ dependencies:
- pip:
- inicheck
- spatialnc
- git+https://github.com/iSnobal/awsm.git@20260309
- git+https://github.com/iSnobal/awsm.git@20260520
4 changes: 2 additions & 2 deletions config/awsm.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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
decay_start: 2022-3-15
decay_end: 2022-6-15
date_method_decay_power: 0.714
date_method_veg_default: 0.2

Expand Down