Skip to content

Commit bb931f4

Browse files
committed
use branch ClimaLand#tr/add-energy_per_area-bucket
1 parent 00ac654 commit bb931f4

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.buildkite/pipeline.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ steps:
4343
- "julia --project=experiments/ClimaEarth/ -e 'using Pkg; Pkg.develop(path=\".\")'"
4444
- "julia --project=experiments/ClimaEarth/ -e 'using Pkg; Pkg.instantiate(;verbose=true)'"
4545
- "julia --project=experiments/ClimaEarth/ -e 'using Pkg; Pkg.add(\"MPI\"); Pkg.add(\"CUDA\");'"
46+
- "julia --project=experiments/ClimaEarth/ -e 'using Pkg; Pkg.add(Pkg.PackageSpec(;name=\"ClimaLand\", rev=\"tr/add-energy_per_area-bucket\"))'"
4647
- "julia --project=experiments/ClimaEarth/ -e 'using Pkg; Pkg.precompile()'"
4748
- "julia --project=experiments/ClimaEarth/ -e 'using Pkg; Pkg.status()'"
4849

experiments/ClimaEarth/Manifest-v1.11.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
julia_version = "1.11.4"
44
manifest_format = "2.0"
5-
project_hash = "b128b4b3c921eda6ebd10795a43db24e86ebb375"
5+
project_hash = "a6b727ee8a2506c47fabb82909c682490f07c2f7"
66

77
[[deps.ADTypes]]
88
git-tree-sha1 = "e2478490447631aedba0823d4d7a80b2cc8cdb32"
@@ -348,7 +348,9 @@ version = "0.2.13"
348348

349349
[[deps.ClimaLand]]
350350
deps = ["ClimaComms", "ClimaCore", "ClimaDiagnostics", "ClimaUtilities", "Dates", "DocStringExtensions", "Insolation", "Interpolations", "LazyArtifacts", "LinearAlgebra", "NCDatasets", "SciMLBase", "StaticArrays", "SurfaceFluxes", "Thermodynamics"]
351-
git-tree-sha1 = "08d08423e0a955180d3eea39c340b81603a00585"
351+
git-tree-sha1 = "d5ba1073aa5c015f6d25ee9ace265d63ac421197"
352+
repo-rev = "tr/add-energy_per_area-bucket"
353+
repo-url = "https://github.com/CliMA/ClimaLand.jl.git"
352354
uuid = "08f4d4ce-cf43-44bb-ad95-9d2d5f413532"
353355
version = "0.15.14"
354356

experiments/ClimaEarth/components/land/climaland_helpers.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ function make_land_domain(
5151
verttopology = CC.Topologies.IntervalTopology(vertmesh)
5252
vert_center_space = CC.Spaces.CenterFiniteDifferenceSpace(verttopology)
5353
subsurface_space = CC.Spaces.ExtrudedFiniteDifferenceSpace(atmos_boundary_space, vert_center_space)
54-
space = (; surface = atmos_boundary_space, subsurface = subsurface_space)
54+
subsurface_face = CL.Domains.obtain_face_space(subsurface_space)
55+
space = (; surface = atmos_boundary_space, subsurface = subsurface_space, subsurface_face)
5556

5657
fields = ClimaLand.Domains.get_additional_coordinate_field_data(subsurface_space)
5758

0 commit comments

Comments
 (0)