Skip to content

Commit

Permalink
adds scm relaxation timescale parameters
Browse files Browse the repository at this point in the history
end -> maximum

start -> minimum
  • Loading branch information
Julians42 committed Oct 11, 2024
1 parent 64914a0 commit 1a1f8cd
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 1 deletion.
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

0 comments on commit 1a1f8cd

Please sign in to comment.