Skip to content

Commit 16027ce

Browse files
committed
fix land interpolation method; increase longrun timeout
1 parent 40ce18b commit 16027ce

File tree

4 files changed

+6
-11
lines changed

4 files changed

+6
-11
lines changed

.buildkite/longruns/pipeline.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ env:
1313
SLURM_KILL_BAD_EXIT: 1
1414
CONFIG_PATH: "config/longrun_configs"
1515

16-
timeout_in_minutes: 1440 # 24 hours
16+
timeout_in_minutes: 1800 # 30 hours
1717

1818
steps:
1919
- label: "init :computer:"
@@ -196,7 +196,7 @@ steps:
196196
- group: "CMIP simulations"
197197

198198
steps:
199-
- label: "ClimaAtmos + ClimaLand + ClimaOcean + PrescribedSeaIce"
199+
- label: "GPU CMIP: ClimaAtmos + ClimaLand + ClimaOcean + PrescribedSeaIce"
200200
key: "cmip_edonly_land"
201201
command:
202202
- "julia --color=yes --project=experiments/ClimaEarth experiments/ClimaEarth/run_amip.jl --config_file $CONFIG_PATH/cmip_edonly_land.yml --job_id cmip_edonly_land"
@@ -210,7 +210,7 @@ steps:
210210
slurm_gpus: 1
211211
slurm_time: 12:00:00
212212

213-
- label: "ClimaAtmos + Bucket + ClimaOcean + PrescribedSeaIce"
213+
- label: "GPU CMIP: ClimaAtmos + Bucket + ClimaOcean + PrescribedSeaIce"
214214
key: "cmip_edonly_bucket"
215215
command:
216216
- "julia --color=yes --project=experiments/ClimaEarth experiments/ClimaEarth/run_amip.jl --config_file $CONFIG_PATH/cmip_edonly_bucket.yml --job_id cmip_edonly_bucket"

config/longrun_configs/cmip_edonly_bucket.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ prescribed_aerosols: ["CB1", "CB2", "DST01", "OC1", "OC2", "SO4", "SSLT01"]
1616
rmse_check: true
1717
start_date: "20100101"
1818
surface_setup: "PrescribedSurface"
19-
t_end: "93days"
19+
t_end: "186days"
2020
topo_smoothing: true
2121
topography: "Earth"

config/longrun_configs/cmip_edonly_land.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ prescribed_aerosols: ["CB1", "CB2", "DST01", "OC1", "OC2", "SO4", "SSLT01"]
1616
rmse_check: true
1717
start_date: "20100101"
1818
surface_setup: "PrescribedSurface"
19-
t_end: "93days"
19+
t_end: "186days"
2020
topo_smoothing: true
2121
topography: "Earth"

experiments/ClimaEarth/components/land/climaland_integrated.jl

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -321,12 +321,7 @@ function create_canopy_args(::Type{FT}, domain, earth_param_set, start_date, sto
321321
# Set up photosynthesis
322322
photosynthesis_args = (; parameters = CL.Canopy.FarquharParameters(FT, is_c3; Vcmax25 = Vcmax25))
323323
# Set up plant hydraulics
324-
LAIfunction = CL.prescribed_lai_modis(
325-
surface_space,
326-
start_date,
327-
stop_date;
328-
time_interpolation_method = LinearInterpolation(PeriodicCalendar()),
329-
)
324+
LAIfunction = CL.prescribed_lai_modis(surface_space, start_date, stop_date)
330325
ai_parameterization = CL.Canopy.PrescribedSiteAreaIndex{FT}(LAIfunction, SAI, RAI)
331326

332327
plant_hydraulics_ps = CL.Canopy.PlantHydraulics.PlantHydraulicsParameters(;

0 commit comments

Comments
 (0)