Skip to content

Commit 395c379

Browse files
committed
run integrated land without canopy
1 parent 5f79625 commit 395c379

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

experiments/ClimaEarth/components/land/climaland_integrated.jl

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -131,12 +131,15 @@ function ClimaLandSimulation(
131131

132132
# Set up leaf area index (LAI)
133133
stop_date = start_date + Dates.Second(float(tspan[2] - tspan[1]))
134-
LAI = CL.prescribed_lai_modis(
135-
surface_space,
136-
start_date,
137-
stop_date;
138-
time_interpolation_method = LinearInterpolation(),
139-
)
134+
# LAI = CL.prescribed_lai_modis(
135+
# surface_space,
136+
# start_date,
137+
# stop_date;
138+
# time_interpolation_method = LinearInterpolation(),
139+
# )
140+
# For now we run without canopy by setting LAI to 0.
141+
# We can add canopy back once it is treated implicitly.
142+
LAI = TimeVaryingInput((t) -> 0)
140143

141144
model = CL.LandModel{FT}(forcing, LAI, toml_dict, domain, dt)
142145

0 commit comments

Comments
 (0)