Skip to content

Commit 7b6e13e

Browse files
authored
change start and end dates for "longer runs" (#1180)
1 parent 0a04724 commit 7b6e13e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

experiments/long_runs/snowy_land.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -335,12 +335,12 @@ end
335335

336336
function setup_simulation(; greet = false)
337337
# If not LONGER_RUN, run for 2 years; note that the forcing from 2008 is repeated.
338-
# If LONGER run, run for 10 years, with the correct forcing each year.
338+
# If LONGER run, run for 19 years, with the correct forcing each year.
339339
# Note that since the Northern hemisphere's winter season is defined as DJF,
340340
# we simulate from and until the beginning of
341341
# March so that a full season is included in seasonal metrics.
342-
start_date = LONGER_RUN ? DateTime("2004-03-01") : DateTime("2008-03-01")
343-
stop_date = LONGER_RUN ? DateTime("2014-03-01") : DateTime("2010-03-01")
342+
start_date = LONGER_RUN ? DateTime("2000-03-01") : DateTime("2008-03-01")
343+
stop_date = LONGER_RUN ? DateTime("2019-03-01") : DateTime("2010-03-01")
344344
Δt = 450.0
345345
nelements = (101, 15)
346346
if greet

experiments/long_runs/soil.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,8 @@ end
152152
function setup_simulation(; greet = false)
153153
# If not LONGER_RUN, run for 2 years; note that the forcing from 2008 is repeated.
154154
# If LONGER run, run for 10 years, with the correct forcing each year.
155-
start_date = LONGER_RUN ? DateTime(2004) : DateTime(2008)
156-
stop_date = LONGER_RUN ? DateTime(2014) : DateTime(2010)
155+
start_date = LONGER_RUN ? DateTime(2000) : DateTime(2008)
156+
stop_date = LONGER_RUN ? DateTime(2020) : DateTime(2010)
157157
Δt = 450.0
158158
nelements = (101, 15)
159159
if greet

0 commit comments

Comments
 (0)