Quonux
Quonux

Reputation: 2991

Solve Poisson Equation for 3d mesh

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:

Upvotes: 1

Views: 570

Answers (1)

Chris Rackauckas
Chris Rackauckas

Reputation: 19152

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.

Upvotes: 1

Related Questions