Skip to content

Commit 4b02236

Browse files
committed
wip
1 parent 72a7819 commit 4b02236

File tree

6 files changed

+182
-183
lines changed

6 files changed

+182
-183
lines changed

.buildkite/Manifest-v1.11.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file is machine-generated - editing it directly is not advised
22

3-
julia_version = "1.11.6"
3+
julia_version = "1.11.4"
44
manifest_format = "2.0"
55
project_hash = "12784bf0b21aee2b4075f2bb64383303b89e8560"
66

@@ -406,9 +406,9 @@ weakdeps = ["CUDA", "MPI"]
406406

407407
[[deps.ClimaCore]]
408408
deps = ["Adapt", "BandedMatrices", "BlockArrays", "ClimaComms", "CubedSphere", "DataStructures", "ForwardDiff", "GaussQuadrature", "GilbertCurves", "HDF5", "InteractiveUtils", "IntervalSets", "KrylovKit", "LazyBroadcast", "LinearAlgebra", "MultiBroadcastFusion", "NVTX", "PkgVersion", "RecursiveArrayTools", "RootSolvers", "SparseArrays", "StaticArrays", "Statistics", "UnrolledUtilities"]
409-
git-tree-sha1 = "ca717446978d2815b4fa23a62a2131861e44d1e8"
409+
git-tree-sha1 = "a2acae071e36c1c69c94a83d1fb74b25e8b0fde0"
410410
uuid = "d414da3d-4745-48bb-8d80-42e94e092884"
411-
version = "0.14.42"
411+
version = "0.14.43"
412412
weakdeps = ["CUDA", "Krylov"]
413413

414414
[deps.ClimaCore.extensions]
@@ -1864,7 +1864,7 @@ version = "2.5.5+0"
18641864
[[deps.OpenLibm_jll]]
18651865
deps = ["Artifacts", "Libdl"]
18661866
uuid = "05823500-19ac-5b8b-9628-191a04bc5112"
1867-
version = "0.8.5+0"
1867+
version = "0.8.1+4"
18681868

18691869
[[deps.OpenMPI_jll]]
18701870
deps = ["Artifacts", "CompilerSupportLibraries_jll", "Hwloc_jll", "JLLWrappers", "LazyArtifacts", "Libdl", "MPIPreferences", "TOML", "Zlib_jll"]

calibration/experiments/gcm_driven_scm/helper_funcs.jl

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,8 @@ CLIMADIAGNOSTICS_LES_NAME_MAP =
2323
"""Get z cell centers coordinates for CA run, given config. """
2424
function get_z_grid(atmos_config; z_max = nothing)
2525
params = CA.ClimaAtmosParameters(atmos_config)
26-
# TODO: Update this to use the new get_spaces function
27-
grid = get_grid(config.parsed_args, params, config.comms_ctx)
28-
spaces = get_spaces(grid, config.comms_ctx)
26+
grid = CA.get_grid(atmos_config.parsed_args, params, atmos_config.comms_ctx)
27+
spaces = CA.get_spaces(grid, atmos_config.comms_ctx)
2928
coord = CA.Fields.coordinate_field(spaces.center_space)
3029
z_vec = convert(Vector{Float64}, parent(coord.z)[:])
3130
if !isnothing(z_max)

docs/src/api.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ ClimaAtmos.InitialConditions.ColumnInterpolatableField
5353

5454
```@docs
5555
ClimaAtmos.ColGrid
56-
ClimaAtmos.SphereGrid
56+
ClimaAtmos.SphereGrid
5757
ClimaAtmos.PlaneGrid
5858
ClimaAtmos.BoxGrid
5959
```
@@ -77,6 +77,8 @@ ClimaAtmos.ScharTopography
7777
ClimaAtmos.EarthTopography
7878
ClimaAtmos.DCMIP200Topography
7979
ClimaAtmos.Hughes2023Topography
80+
ClimaAtmos.SLEVEWarp
81+
ClimaAtmos.LinearWarp
8082
```
8183

8284
### Internals

0 commit comments

Comments
 (0)