differentialequations.jl Questions
1
Solved
I am trying to implement to Swing equation for a n-Machine system using Julia.
When i run the following code I get this Error Message:
LoadError: InexactError: Float64(0.0 + 1.0im)
in expression s...
Shorthanded asked 23/1, 2020 at 9:17
1
Solved
Many users have asked how to solve the Heat Equation, u_t = u_xx, with non-zero Dirichlet BCs and with conjugate gradients for the internal linear solver. This is a common simplified PDE problem be...
Runlet asked 6/2, 2019 at 2:13
1
Solved
I am trying to solve a parabolic partial differential equation numerically using Julia, but I cannot find any accessible documentation that can help.
Here is an example: t, x are 1 dimensional re...
Lamentation asked 17/1, 2018 at 23:17
1
Solved
I am trying to test the speed of Julia ODE solvers. I used the Lorenz equation in the tutorial:
using DifferentialEquations
using Plots
function lorenz(t,u,du)
du[1] = 10.0*(u[2]-u[1])
du[2] = u[1]...
Zircon asked 26/11, 2017 at 22:50
1
© 2022 - 2024 — McMap. All rights reserved.