Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adds scm relaxation timescale parameters #210

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
5 changes: 5 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
ClimaParams.jl Release Notes
========================

v0.10.15
------
- Adds 2 timescale parameters for relaxing forced single column model temperature, humidity, and wind velocity towards the forcing profile ([#209](https://github.com/CliMA/ClimaParams.jl/pull/209))
- Adds 2 parameters that describe the height at which the single column model profiles should be relaxed at ([#209](https://github.com/CliMA/ClimaParams.jl/pull/209))

v0.10.14
------
- Remove all dependencies ([#208](https://github.com/CliMA/ClimaParams.jl/pull/208))
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.14"
version = "0.10.15"

[deps]
TOML = "fa267f1f-6049-4f14-aa54-33bafae1ed76"
Expand Down
20 changes: 20 additions & 0 deletions src/parameters.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2498,6 +2498,26 @@ value = 1
type = "integer"
description = "Number of edmf updrafts."

[horizontal_wind_relaxation_timescale]
value = 21600.0
type = "float"
description = "Horizontal wind relaxation timescale toward forcing profile in SCM (in seconds). Parameter described in 2.2.3 of Shen et al. 2022 [https://doi.org/10.1029/2021MS002631]."

[scalar_relaxation_timescale]
value = 86400.0
type = "float"
description = "Scalar relaxation timescale used to relax temperature and humidities toward forcing profile in SCM (in seconds). Parameter described in 2.2.3 Eq 11 of Shen et al. 2022 [https://doi.org/10.1029/2021MS002631]."

[forcing_relaxation_minimum_height]
value = 3000.0
type = "float"
description = "Starting height for relaxation towards forcing profile in SCM (in meters). Parameter described in 2.2.3 Eq 11 of Shen et al. 2022 [https://doi.org/10.1029/2021MS002631]."

[forcing_relaxation_maximum_height]
value = 3500.0
type = "float"
description = "Height for relaxation towards forcing profile in SCM at which the relaxation timescale coefficient becomes 1 (in meters). Parameter described in 2.2.3 Eq 11 of Shen et al. 2022 [https://doi.org/10.1029/2021MS002631]."

[microphysics_model_precipitation_fraction]
value = "prescribed"
type = "string"
Expand Down
Loading