Skip to content
Marcelo Forets edited this page Aug 17, 2021 · 3 revisions

Welcome to the StructuralDynamicsODESolvers.jl wiki!

Plans

The following interface is planned:

using StructuralDynamicsODESolvers

prob = @ivp(x'' = -x, x(0) = 1.0, x'(0) = 0.0)

sol = solve(prob, tspan=(0.0, 4.0), alg=Bathe=0.05))

using Plots

plot(sol, vars=(0, 1), xlab="t", ylab="x(t)")

Example (not working yet)

For currently working examples see the [Example](@ref sec_example) section.

The following user interface is planned:

using StructuralDynamicsODESolvers

prob = @ivp(x'' = -x, x(0) = 1.0, x'(0) = 0.0)

sol = solve(prob, tspan=(0.0, 4.0), alg=Bathe=0.05))

using Plots

plot(sol, vars=(0, 1), xlab="t", ylab="x(t)")
Clone this wiki locally