Skip to content

Commit

Permalink
Merge #115
Browse files Browse the repository at this point in the history
115: Add held-suarez equator-pole temperature gradient r=nefrathenrici a=nefrathenrici

This pair of parameters is currently hardcoded in ClimaAtmos, but we will need to calibrate it soon. It would be nice to add this to the ClimaParameters defaults so I don't need to add an override TOML file in ClimaAtmos just for calibration.

Co-authored-by: nefrathenrici <nat.henrici@gmail.com>
  • Loading branch information
bors[bot] and nefrathenrici authored Jul 21, 2023
2 parents dd38cdb + 1b17a63 commit 79a4252
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "CLIMAParameters"
uuid = "6eacf6c3-8458-43b9-ae03-caf5306d3d53"
authors = ["Climate Modeling Alliance"]
version = "0.7.5"
version = "0.7.6"

[deps]
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
Expand Down
14 changes: 13 additions & 1 deletion src/parameters.toml
Original file line number Diff line number Diff line change
Expand Up @@ -1553,9 +1553,21 @@ alias = "avogad"
value = 6.02214076e23
type = "float"

# Held-Suarez

# EDMF
[equator_pole_temperature_gradient_dry]
alias = "ΔT_y_dry"
value = 60
type = "float"
description = "Temperature gradient between equator and pole for dry adiabatic atmosphere. See Held and Suarez (1994) https://doi.org/10.1175/1520-0477(1994)075%3C1825:APFTIO%3E2.0.CO;2"

[equator_pole_temperature_gradient_wet]
alias = "ΔT_y_wet"
value = 65
type = "float"
description = "Temperature gradient between equator and pole for moist adiabatic atmosphere. See Held and Suarez (1994) https://doi.org/10.1175/1520-0477(1994)075%3C1825:APFTIO%3E2.0.CO;2"

# EDMF

[EDMF_surface_area]
alias = "surface_area"
Expand Down

2 comments on commit 79a4252

@nefrathenrici
Copy link
Member

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

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.7.6 -m "<description of version>" 79a42521ba68b78115543e0cb1f15e858bd1df7d
git push origin v0.7.6

Please sign in to comment.