From 9a3d87e1a31c0fea9e76b74bc7cd90c5ccfbce2a Mon Sep 17 00:00:00 2001 From: nefrathenrici Date: Mon, 26 Feb 2024 10:20:31 -0800 Subject: [PATCH] Add EnergyHydrology Parameters --- src/parameters.toml | 52 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/src/parameters.toml b/src/parameters.toml index efe22c1c..04424036 100644 --- a/src/parameters.toml +++ b/src/parameters.toml @@ -186,6 +186,58 @@ value = 0.96 type = "float" description = "Emissivity of soil, approximated as context. Reference: CLM5 Documentation, 2020. " +# Energy Hydrology Parameters + +[soil_momentum_roughness_length] +value = 0.01 +type = "float" +description = "Source: CLM Tech note 5" + +[soil_scalar_roughness_length] +value = 0.007 +type = "float" +description = "Source: CLM Tech note 5, using u* of 5m/s" + +[snow_momentum_roughness_length] +value = 0.0024 +type = "float" +description = "Source: CLM Tech note 5" + +[snow_scalar_roughness_length] +value = 0.08 +type = "float" +description = "Source: CLM Tech note 5, using u* of 5m/s" + +[particle_density_quartz] +value = 2.66e3 +type = "float" +description = "Source: Hillel (1982), De Vries (1966)" + +[particle_density_minerals] +value = 2.65e3 +type = "float" +description = "Source: Hillel (1982)" + +[particle_density_organic_matter] +value = 1.3e3 +type = "float" +description = "Source: Hillel (1982)" + +[vol_heat_capacity_quartz] +value = 2.01e6 +type = "float" +description = "Source: Balland and Arp (2005)" + +[vol_heat_capacity_organic_matter] +value = 2.51e6 +type = "float" +description = "Source: Balland and Arp (2005)" + +[vol_heat_capacity_minerals] +value = 2.01e6 +type = "float" +description = "Source: Balland and Arp (2005)" + ## Surface Fluxes [richardson_critical]