Skip to content

Commit

Permalink
Merge pull request #201 from CliMA/as/add-gust
Browse files Browse the repository at this point in the history
Surface wind gust parameter
  • Loading branch information
akshaysridhar authored Jul 25, 2024
2 parents 09cb45c + 58c31aa commit c210b45
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
5 changes: 5 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ ClimaParams.jl Release Notes
main
------

v0.10.10
------
- Add parameters for surface wind gustiness ([#201](https://github.com/CliMA/ClimaParams.jl/pull/201))
- Update default values for edmf parameters ([#200](https://github.com/CliMA/ClimaParams.jl/pull/200))

v0.10.9
------
- Add parameters for RCEMIP surface temperature distribution ([#199](https://github.com/CliMA/ClimaParams.jl/pull/199))
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ClimaParams"
uuid = "5c42b081-d73a-476f-9059-fd94b934656c"
authors = ["Climate Modeling Alliance"]
version = "0.10.9"
version = "0.10.10"

[deps]
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
Expand Down
5 changes: 5 additions & 0 deletions src/parameters.toml
Original file line number Diff line number Diff line change
Expand Up @@ -395,6 +395,11 @@ value = 0.1
type = "float"
description = "Surface layer thickness as a fraction of the planetary boundary layer. Ref: Frierson et al (2006) https://doi.org/10.1175/JAS3753.1"

[gustiness]
value = 1.0
type = "float"
description = "Near-surface gustiness[m/s]."

# Businger

[prandtl_number_0_businger]
Expand Down

2 comments on commit c210b45

@akshaysridhar
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/111792

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.10.10 -m "<description of version>" c210b4576410667fa68b2e731eb8c34cfaf021c0
git push origin v0.10.10

Please sign in to comment.