Skip to content

Commit

Permalink
fix buildkite run bug [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
kmdeck committed Jul 15, 2024
1 parent be0e1a0 commit 6cb1627
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions experiments/integrated/global/global_parameters.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ extrapolation_bc =
soil_params_mask = SpaceVaryingInput(
joinpath(
soil_params_artifact_path,
"vGalpha_map_gupta_etal2020_2.5x2.5x4.nc",
"vGalpha_map_gupta_etal2020_1.0x1.0x4.nc",
),
"α",
subsurface_space;
Expand All @@ -18,15 +18,15 @@ oceans_to_value(field, mask, value) = mask == 1.0 ? field : eltype(field)(value)
vg_α = SpaceVaryingInput(
joinpath(
soil_params_artifact_path,
"vGalpha_map_gupta_etal2020_2.5x2.5x4.nc",
"vGalpha_map_gupta_etal2020_1.0x1.0x4.nc",
),
"α",
subsurface_space;
regridder_type,
regridder_kwargs = (; extrapolation_bc,),
)
vg_n = SpaceVaryingInput(
joinpath(soil_params_artifact_path, "vGn_map_gupta_etal2020_2.5x2.5x4.nc"),
joinpath(soil_params_artifact_path, "vGn_map_gupta_etal2020_1.0x1.0x4.nc"),
"n",
subsurface_space;
regridder_type,
Expand All @@ -47,7 +47,7 @@ hydrology_cm = vg_fields_to_hcm_field.(vg_α, vg_n)
θ_r = SpaceVaryingInput(
joinpath(
soil_params_artifact_path,
"residual_map_gupta_etal2020_2.5x2.5x4.nc",
"residual_map_gupta_etal2020_1.0x1.0x4.nc",
),
"θ_r",
subsurface_space;
Expand All @@ -58,15 +58,15 @@ hydrology_cm = vg_fields_to_hcm_field.(vg_α, vg_n)
ν = SpaceVaryingInput(
joinpath(
soil_params_artifact_path,
"porosity_map_gupta_etal2020_2.5x2.5x4.nc",
"porosity_map_gupta_etal2020_1.0x1.0x4.nc",
),
"ν",
subsurface_space;
regridder_type,
regridder_kwargs = (; extrapolation_bc,),
)
K_sat = SpaceVaryingInput(
joinpath(soil_params_artifact_path, "ksat_map_gupta_etal2020_2.5x2.5x4.nc"),
joinpath(soil_params_artifact_path, "ksat_map_gupta_etal2020_1.0x1.0x4.nc"),
"Ksat",
subsurface_space;
regridder_type,
Expand Down

0 comments on commit 6cb1627

Please sign in to comment.