1

I am trying to solve the poisson-equation div v = -curl w to simulate Incompressible Flow of a mesh in 3 dimensional space.

What I did:

I found the ODE example and how to solve the Poisson Equation.

My problems/questions are:

  • How to define -curl w as the differential equation in julia with the help of DifferentialEquation.jl? How to specify the 3 dimensional cross product (curl)?
Chris Rackauckas
  • 18,645
  • 3
  • 50
  • 81
Quonux
  • 2,975
  • 1
  • 24
  • 32
  • nothing in https://www.youtube.com/watch?v=KPEqYtEd-zY either – Quonux Jul 01 '18 at 17:50
  • 1
    Those FEM tools in DifferentialEquations.jl have long since been removed. I'll be doing a workshop at the next JuliaCon describing how to do PDE solving in Julia though. In the meantime, there are discretization tools like JuliaFEM and JuAFEM which can help you get what you need. – Chris Rackauckas Jul 02 '18 at 13:07
  • Perhaps https://github.com/KristofferC/JuAFEM.jl/pull/220 might be useful. – fredrikekre Jul 05 '18 at 14:48

1 Answers1

1

Those FEM tools in DifferentialEquations.jl have long since been removed. I'll be doing a workshop at the next JuliaCon describing how to do PDE solving in Julia though. In the meantime, there are discretization tools like JuliaFEM and JuAFEM which can help you get what you need.

Chris Rackauckas
  • 18,645
  • 3
  • 50
  • 81