Skip to content

Commit 5c8d2e1

Browse files
committed
add readme
1 parent a8a1538 commit 5c8d2e1

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

NetworkDynamicsInspector/README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# NetworkDynamicsInspector.jl
2+
3+
`NetworkDynamicsInspector.jl` is an extension package to
4+
[NetworkDynamics.jl](https://github.com/JuliaDynamics/NetworkDynamics.jl)
5+
which provides a WebApp based on [`Bonito.jl`](https://github.com/SimonDanisch/Bonito.jl)
6+
and [`WGLMakie.jl`](https://github.com/MakieOrg/Makie.jl) for interactive visualization
7+
of solutions to systems based on network dynamics.
8+
9+
Its main entrypoint is the `inspect` function, which takes a solution from a `Network` problem.
10+
For more information visit [documentation of the main package](https://juliadynamics.github.io/NetworkDynamics.jl/dev/).
11+
12+
``` julia
13+
using NetworkDynamics, NetworkDynamicsInspector
14+
15+
nw = Network(...)
16+
prob = ODEProblem(nw, ...)
17+
sol = solve(prob, ...)
18+
19+
inspect(sol)
20+
```
21+
22+
![image](readme_screenshot.png)
356 KB
Loading

0 commit comments

Comments
 (0)