Skip to content

Commit a4cb4be

Browse files
committed
wip
1 parent 4a13078 commit a4cb4be

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

ext/fluxnet_simulations/initial_conditions.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,9 @@ function set_fluxnet_ic!(
9999
)
100100
FT = eltype(Y.soil.ρe_int)
101101
if isnothing(column_name_map["SWC_F_MDS_1"])
102-
θ_l_0 = model.parameters.ν / 2
102+
θ_l_0 = model.parameters.ν ./ 2
103103
elseif unique(data[:, column_name_map["SWC_F_MDS_1"]]) == val
104-
θ_l_0 = model.parameters.ν / 2
104+
θ_l_0 = model.parameters.ν ./ 2
105105
else
106106
θ_l_0 =
107107
min.(

src/Artifacts.jl

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -312,11 +312,7 @@ AmeriFlux CC-BY-4.0 License
312312
function experiment_fluxnet_data_path(site_ID; context = nothing)
313313
@assert site_ID ("US-MOz", "US-Var", "US-NR1", "US-Ha1","NEON-cper")
314314
if occursin("NEON", site_ID)
315-
#data_path = "/Users/evametz/Documents/PostDoc/Projekte/CliMA/Neon/CliMa_Input/dataframes_Neon/Neon_CliMA_Input_CPER_201701_201712.csv"
316-
#data_path = "/Users/evametz/Documents/PostDoc/Projekte/CliMA/Siteruns/NEON-CPER/USVal_param_adaptSlayer_1f8b301b70dc015194659380910d1147f81efba6/input/Neon_CliMA_Input_withERA_wCompData_wSoil_CPER_201701_201712.csv"
317-
#data_path = "/Users/evametz/Documents/PostDoc/Projekte/CliMA/Neon/CliMa_Input/dataframes_Neon/Neon_CliMA_Input_withERA_wCompData_wSoil_CPER_201705_201709.csv"
318-
data_path = "/home/alexisr/GitHub/ClimaLand.jl/experiments/integrated/fluxnet/Neon_CliMA_Input_withERA_wCompData_wSoil_CPER_201701_201712.csv"
319-
#data_path = "/Users/evametz/Documents/PostDoc/Projekte/CliMA/Siteruns/fluxnet_site_data/US-MOz.csv"
315+
data_path = "/home/alexis/GitHub/ClimaLand.jl/experiments/integrated/fluxnet/neon/Neon_CliMA_Input_withERA_wCompData_wSoil_CPER_201701_201712.csv"
320316
else
321317
folder_path = @clima_artifact("fluxnet_sites", context)
322318
data_path = joinpath(folder_path, "$(site_ID).csv")

0 commit comments

Comments
 (0)