-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
59 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
|
||
# Define a test function | ||
# @testset "surface_temperature_jl tests" | ||
begin | ||
T_air = 2.0 # Air temperature in Celsius | ||
rh_air = 0.5 # Relative humidity | ||
depth_snow = 0.03 # Depth of snow in meters | ||
depth_water = 0.1 # Depth of water in meters | ||
cp_soil1 = 1000.0 # Heat capacity of soil layer 1 | ||
cp_soil0 = 800.0 # Heat capacity of soil layer 0 | ||
Gheat_g = 0.1 # Ground heat flux | ||
depth_soil1 = 0.5 # Depth of soil layer 1 in meters | ||
ρ_snow = 300.0 # Density of snow in kg/m^3 | ||
tempL_u = 0.0 # Temperature of the lower layer in Celsius | ||
Rn_g = 200.0 # Net radiation on the ground | ||
E_soil = 0.1 # Evaporation from soil | ||
E_water_g = 0.05 # Evaporation from water on the ground | ||
E_snow_g = 0.02 # Evaporation from snow on the ground | ||
λ_soil1 = 0.5 # Thermal conductivity of soil layer 1 | ||
perc_snow_g = 0.3 # Percentage of snow cover on the ground | ||
G_soil1 = 0.2 # Soil heat flux in layer 1 | ||
T_ground_last = 0.0 # Last ground temperature in Celsius | ||
T_soil1_last = 0.0 # Last soil layer 1 temperature in Celsius | ||
T_any0_last = 0.0 # Last temperature of any layer 0 in Celsius | ||
T_soil0_last = 0.0 # Last soil layer 0 temperature in Celsius | ||
T_snow_last = 0.0 # Last snow temperature in Celsius | ||
T_snow1_last = 0.0 # Last snow layer 1 temperature in Celsius | ||
T_snow2_last = 0.0 # Last snow layer 2 temperature in Celsius | ||
|
||
# T_ground, T_any0, T_soil0, T_snow, T_snow1, T_snow2, G | ||
r_jl = surface_temperature_jl( | ||
T_air, rh_air, | ||
depth_snow, depth_water, | ||
cp_soil1, cp_soil0, Gheat_g, | ||
depth_soil1, ρ_snow, tempL_u, Rn_g, E_soil, E_water_g, E_snow_g, λ_soil1, perc_snow_g, G_soil1, | ||
T_ground_last, T_soil1_last, T_any0_last, T_soil0_last, T_snow_last, T_snow1_last, T_snow2_last | ||
) | ||
|
||
r_c = clang.surface_temperature_c( | ||
T_air, rh_air, | ||
depth_snow, depth_water, | ||
cp_soil1, cp_soil0, Gheat_g, | ||
depth_soil1, ρ_snow, tempL_u, Rn_g, E_soil, E_water_g, E_snow_g, λ_soil1, perc_snow_g, G_soil1, | ||
T_ground_last, T_soil1_last, T_any0_last, T_soil0_last, T_snow_last, T_snow1_last, T_snow2_last | ||
) | ||
end | ||
|
||
println(r_jl) | ||
println(r_c) |