Skip to content

Commit

Permalink
Update CS to 0.7 and GB to 0.5 (#300)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukem12345 authored Jan 30, 2025
1 parent d206261 commit 94c7a88
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ DecapodesCUDAExt = "CUDA"
ACSets = "0.2"
Aqua = "0.8"
CUDA = "5.2"
CombinatorialSpaces = "0.7"
ComponentArrays = "0.15"
CombinatorialSpaces = "0.6.8"
DiagrammaticEquations = "0.1.7"
Distributions = "0.25"
GeometryBasics = "0.4.2"
GeometryBasics = "0.5"
JSON = "0.21"
Krylov = "0.9.6"
LinearAlgebra = "1.9"
Expand Down
5 changes: 4 additions & 1 deletion docs/src/ebm_melt/ebm_melt.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ using DiagrammaticEquations
using Decapodes
# External Dependencies
using Artifacts
using ComponentArrays
using CoordRefSystems
using CairoMakie
Expand All @@ -41,8 +42,10 @@ wireframe(s_plots)
The data provided by the Polar Science Center is given as a NetCDF file. Ice thickness is a matrix with the same dimensions as a matrix provided Latitude and Longitude of the associated point on the Earth's surface. We need to convert between polar and Cartesian coordinates to use this data on our mesh.

``` @example DEC
# This data can be downloaded from source here:
# https://pscfiles.apl.uw.edu/axel/piomas20c/v1.0/monthly/piomas20c.heff.1901.2010.v1.0.nc
ice_thickness_file = "piomas20c.heff.1901.2010.v1.0.nc"
run(`curl -o $ice_thickness_file https://pscfiles.apl.uw.edu/axel/piomas20c/v1.0/monthly/piomas20c.heff.1901.2010.v1.0.nc`)
run(`curl -o $ice_thickness_file https://cise.ufl.edu/"~"luke.morris/piomas20c.heff.1901.2010.v1.0.nc`)
# Use ncinfo(ice_thickness_file) to interactively get information on variables.
# Sea ice thickness ("sit") has dimensions of [y, x, time].
Expand Down
2 changes: 1 addition & 1 deletion docs/src/nhs/nhs_lite.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ We execute these dynamics on the torus explicitly, instead of using a square wit
# used by Oceananigans (explicitly represented as a torus, not as a
# square with periodic boundary conditions!)
Downloads.download("https://cise.ufl.edu/~luke.morris/torus.obj", "torus.obj")
s = EmbeddedDeltaSet2D("torus.obj")
s = EmbeddedDeltaSet2D(joinpath(@__DIR__, "torus.obj"))
sd = EmbeddedDeltaDualComplex2D{Bool,Float64,Point3D}(s)
subdivide_duals!(sd, Barycenter())
fig = Figure() # hide
Expand Down

0 comments on commit 94c7a88

Please sign in to comment.