Skip to content

Commit

Permalink
fix buildkite [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
kmdeck committed Oct 24, 2024
1 parent 533eb7d commit 6395539
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions experiments/integrated/fluxnet/ozark_pft.jl
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,8 @@ set_initial_cache! = make_set_initial_cache(land)
set_initial_cache!(p, Y, t0);

# Simulation
saveat = Array(t0:3600:tf)
dt_save = 3600.0
saveat = Array(t0:dt_save:tf)
sv = (;
t = Array{Float64}(undef, length(saveat)),
saveval = Array{NamedTuple}(undef, length(saveat)),
Expand Down Expand Up @@ -342,7 +343,6 @@ end

# Number of days to plot
num_days = N_days - N_spinup_days

# Time series of model and data outputs
data_times = [0:DATA_DT:(num_days * S_PER_DAY);]
model_times = [0:dt_save:(num_days * S_PER_DAY);]
Expand Down
2 changes: 1 addition & 1 deletion experiments/integrated/fluxnet/run_fluxnet.jl
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ swc, soil_T, si = [
layer = 20,#surface
)[2][(N_spinup_days * 24):end] for diag_name in hourly_diag_name_2D
]
dt_save = 3600 # hourly diagnostics
dt_save = 3600.0 # hourly diagnostics
times_diag = Array(0:dt_save:(num_days * 24 * dt_save))

# convert units for GPP and ET
Expand Down

0 comments on commit 6395539

Please sign in to comment.