Get the minimal surface solution of a 3D contour

You can use FEniCS: from fenics import ( UnitSquareMesh, FunctionSpace, Expression, interpolate, assemble, sqrt, inner, grad, dx, TrialFunction, TestFunction, Function, solve, DirichletBC, DomainBoundary, MPI, XDMFFile, ) # Create mesh and define function space mesh = UnitSquareMesh(100, 100) V = FunctionSpace(mesh, “Lagrange”, 2) # initial guess (its boundary values specify the Dirichlet boundary conditions) # (larger … Read more