Skip to content

Commit

Permalink
Merge pull request #198 from CliMA/zs/add_rad_params
Browse files Browse the repository at this point in the history
add some radiation parameters
  • Loading branch information
szy21 authored Jun 21, 2024
2 parents 220793c + ac3a04f commit 4affff9
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ ClimaParams.jl Release Notes

main
------

v0.10.8
------
- Add parameters for minimum and maximum temperature for the radiation lookup table ([#198](https://github.com/CliMA/ClimaParams.jl/pull/198))
- Add example of Oceananigans single column model using ClimaParams ([#151](https://github.com/CliMA/ClimaParams.jl/pull/151))

v0.10.7
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.7"
version = "0.10.8"

[deps]
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
Expand Down
10 changes: 10 additions & 0 deletions src/parameters.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2204,6 +2204,16 @@ value = 1.34
type = "float"
description = "The relative refractive index of water and air for broadband ocean surface albedo calculation. See Jin et al. (2011) [https://opg.optica.org/oe/fulltext.cfm?uri=oe-19-27-26429&id=225797]"

[optics_lookup_temperature_min]
value = 160
type = "float"
description = "Miminum temperature in the lookup table for optical properties in RRTMGP"

[optics_lookup_temperature_max]
value = 355
type = "float"
description = "Maximum temperature in the lookup table for optical properties in RRTMGP"

# EDMF

[entr_inv_tau]
Expand Down

2 comments on commit 4affff9

@szy21
Copy link
Member Author

@szy21 szy21 commented on 4affff9 Jun 21, 2024

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/109541

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.8 -m "<description of version>" 4affff9fd8912e78ed3d633513dbad2a1e4875a5
git push origin v0.10.8

Please sign in to comment.