Skip to content

Commit e182ae1

Browse files
Remove dependence on OrdinaryDiffEq in docs env
1 parent fde6717 commit e182ae1

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

docs/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ FFTW = "7a1cc6ca-52ef-59f5-83cd-3a7055c09341"
1212
IntervalSets = "8197267c-284f-5f27-9208-e0e47529a953"
1313
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
1414
Literate = "98b081ad-f1c9-55d3-8b20-4c87d4299306"
15-
OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed"
15+
OrdinaryDiffEqSSPRK = "669c94d9-1f4b-4b64-b377-1aa079aa2388"
1616
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"

docs/tutorials/introduction.jl

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,8 @@
1010
# - staggered finite difference in the vertical
1111
# - currently under development
1212

13-
using ClimaComms,
14-
ClimaCore,
15-
ClimaCorePlots,
16-
LinearAlgebra,
17-
IntervalSets,
18-
Plots,
19-
OrdinaryDiffEq
13+
using ClimaComms, ClimaCore, ClimaCorePlots, LinearAlgebra, IntervalSets, Plots
14+
2015
#----------------------------------------------------------------------------
2116

2217
# ## 1. Constructing a discretization
@@ -362,7 +357,7 @@ plot(∇∇sinz, ylim = (0, 10))
362357
#
363358
# ClimaCore can be used for spatial discretizations of PDEs. For temporal discretization, we can use the OrdinaryDiffEq package, which we aim to be compatibile with.
364359

365-
using OrdinaryDiffEq
360+
import OrdinaryDiffEqSSPRK: ODEProblem, solve, SSPRK33
366361
#----------------------------------------------------------------------------
367362

368363
# ### 3.1 Heat equation using finite differences

0 commit comments

Comments
 (0)