Skip to content

Commit f739f9e

Browse files
committed
Updated ref. temp. to reflect dycore manuscript
1 parent 0031b92 commit f739f9e

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

NEWS.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ ClimaParams.jl Release Notes
33
main
44
--------
55

6+
v1.1.0
7+
--------
8+
- Breaking: Changed the minimum and surface reference temperature to match the Dycore manuscript ([#253](https://github.com/CliMA/ClimaParams.jl/pull/253))
9+
- Added an exponent for the reference temperature profile `[reference_temperature_transition_exponent]` ([#253](https://github.com/CliMA/ClimaParams.jl/pull/253))
10+
11+
612
v1.0.1
713
--------
814
- Add parameters for cloud top height diagnostic ([#251](https://github.com/CliMA/ClimaParams.jl/pull/251))

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ClimaParams"
22
uuid = "5c42b081-d73a-476f-9059-fd94b934656c"
33
authors = ["Climate Modeling Alliance"]
4-
version = "1.0.1"
4+
version = "1.1.0"
55

66
[deps]
77
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"

src/parameters.toml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2375,15 +2375,20 @@ type = "float"
23752375
description = "Mean sea level pressure ($p_{MSL}$) (Pa)."
23762376

23772377
[temperature_surface_reference]
2378-
value = 290
2378+
value = 288
23792379
type = "float"
23802380
description = "Surface temperature in a reference temperature profile (K)."
23812381

23822382
[temperature_min_reference]
2383-
value = 220
2383+
value = 215
23842384
type = "float"
23852385
description = "Minimum temperature in a reference temperature profile (K)."
23862386

2387+
[reference_temperature_transition_exponent]
2388+
value = 7.0
2389+
type = "float"
2390+
description = "Non-dimensional exponent controlling the smoothness of the transition in the reference temperature profile between the surface and minimum temperatures."
2391+
23872392
[universal_gas_constant]
23882393
value = 8.3144598
23892394
type = "float"

test/test_map.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ import Thermodynamics.Parameters.ThermodynamicsParameters
8585
:gravitational_acceleration => :grav,
8686
:temperature_homogenous_nucleation => :T_icenuc,
8787
:potential_temperature_reference_pressure => :p_ref_theta,
88+
:reference_temperature_transition_exponent => :s_ref,
8889
)
8990

9091
# Example function for thermo params - essentially a specific constuctor of `create_parameter_struct`

0 commit comments

Comments
 (0)