-
Notifications
You must be signed in to change notification settings - Fork 1
Home
Marcelo Forets edited this page Aug 17, 2021
·
3 revisions
Welcome to the StructuralDynamicsODESolvers.jl wiki!
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)")
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)")