Skip to content

Commit

Permalink
Merge pull request #1164 from CliMA/zs/land_albedo
Browse files Browse the repository at this point in the history
use ceres clear-sky albedo for bucket
  • Loading branch information
szy21 authored Feb 1, 2025
2 parents 9dd0d31 + fd97c22 commit 30c7357
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions config/ci_configs/amip_albedo_temporal_map.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ moist: "equil"
precip_model: "0M"
rad: "gray"
rayleigh_sponge: true
start_date: "20100101"
t_end: "300secs"
vert_diff: "true"
z_elem: 50
Expand Down
1 change: 1 addition & 0 deletions config/ci_configs/amip_albedo_temporal_map_1M.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ moist: "equil"
precip_model: "1M"
rad: "gray"
rayleigh_sponge: true
start_date: "20100101"
t_end: "300secs"
vert_diff: "true"
z_elem: 50
Expand Down
7 changes: 6 additions & 1 deletion experiments/ClimaEarth/components/land/climaland_bucket.jl
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,12 @@ function BucketSimulation(
if pkgversion(CL) < v"0.15"
albedo = CL.Bucket.PrescribedSurfaceAlbedo{FT}(date_ref, t_start, space)
else
albedo = CL.Bucket.PrescribedSurfaceAlbedo{FT}(date_ref, space)
albedo = CL.Bucket.PrescribedSurfaceAlbedo{FT}(
date_ref,
space;
albedo_file_path = CL.Artifacts.ceres_albedo_dataset_path(),
varname = "sw_alb_clr",
)
end
elseif albedo_type == "function" # Use prescribed function of lat/lon for surface albedo
function α_bareground(coordinate_point)
Expand Down

0 comments on commit 30c7357

Please sign in to comment.