Skip to content

Commit fc8d1b2

Browse files
Akshay SridharAkshay Sridhar
authored andcommitted
modified: .buildkite/Manifest-v1.11.toml
modified: docs/src/repl_scripts.md
1 parent 53b8dbb commit fc8d1b2

File tree

2 files changed

+24
-2
lines changed

2 files changed

+24
-2
lines changed

.buildkite/Manifest-v1.11.toml

Lines changed: 2 additions & 2 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.5"
3+
julia_version = "1.11.4"
44
manifest_format = "2.0"
55
project_hash = "04945e2a7116cfacb2d57340f477dbe23e208227"
66

@@ -1818,7 +1818,7 @@ version = "2.5.4+0"
18181818
[[deps.OpenLibm_jll]]
18191819
deps = ["Artifacts", "Libdl"]
18201820
uuid = "05823500-19ac-5b8b-9628-191a04bc5112"
1821-
version = "0.8.5+0"
1821+
version = "0.8.1+4"
18221822

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

docs/src/repl_scripts.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
# REPL script (debugging workflow example)
2+
3+
```@example
4+
] activate .buildkite
5+
using Revise # See also: Infiltrator.jl and Main.@infiltrate
6+
import ClimaAtmos as CA
7+
import SciMLBase: step!
8+
config_file = "../../config/model_configs/baroclinic_wave.yml"
9+
config = CA.AtmosConfig(config_file)
10+
simulation = CA.AtmosSimulation(config_file)
11+
12+
# Example: Advance a single timestep and explore the solution
13+
# stored in `simulation.integrator.u`
14+
step!(simulation.integrator)
15+
16+
# Example: Update command line argument, reset simulation, re-run to completion
17+
config.parsed_args["t_end"]="1000secs"
18+
simulation = CA.AtmosSimulation(config)
19+
CA.solve_atmos!(simulation)
20+
21+
```
22+
123
# Julia scripts per Buildkite job
224

325
```@example

0 commit comments

Comments
 (0)