Skip to content

Commit

Permalink
Merge pull request #199 from CliMA/cs/rcemip_params
Browse files Browse the repository at this point in the history
Add RCEMIP surface temperature parameters
  • Loading branch information
akshaysridhar authored Jul 3, 2024
2 parents 4affff9 + a6be4ca commit eb5c1a6
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 1 deletion.
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ ClimaParams.jl Release Notes
main
------

v0.10.9
------
- Add parameters for RCEMIP surface temperature distribution ([#199](https://github.com/CliMA/ClimaParams.jl/pull/199))

v0.10.8
------
- Add parameters for minimum and maximum temperature for the radiation lookup table ([#198](https://github.com/CliMA/ClimaParams.jl/pull/198))
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.8"
version = "0.10.9"

[deps]
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
Expand Down
22 changes: 22 additions & 0 deletions src/parameters.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2214,6 +2214,28 @@ value = 355
type = "float"
description = "Maximum temperature in the lookup table for optical properties in RRTMGP"

# RCEMIP

[SST_mean]
value = 300
type = "float"
description = "Mean sea surface temperature for RCEMIPII surface conditions. See Wing et al. (2018) [https://gmd.copernicus.org/articles/11/793/2018/]"

[SST_delta]
value = 1.25
type = "float"
description = "Twice the amplitude of sea surface temperarture sinusoid for RCEMIPII surface conditions. See Wing et al. (2018) [https://gmd.copernicus.org/articles/11/793/2018/]"

[SST_wavelength]
value = 6000000
type = "float"
description = "Wavelength of the sea surface temperature sinusoid for RCEMIPII box models. See Wing et al. (2018) [https://gmd.copernicus.org/articles/11/793/2018/]"

[SST_wavelength_latitude]
value = 54
type = "float"
description = "Wavelength of the sea surface temperature sinusoid for RCEMIPII sphere models. See Wing et al. (2018) [https://gmd.copernicus.org/articles/11/793/2018/]"

# EDMF

[entr_inv_tau]
Expand Down

2 comments on commit eb5c1a6

@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/110376

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.9 -m "<description of version>" eb5c1a6009c3959040baf553084db7bfdaa1718f
git push origin v0.10.9

Please sign in to comment.