Main Content

Minimal Surface Problem

This example shows how to solve the minimal surface equation

-(11+|u|2u)=0

on the unit disk Ω={(x,y)|x2+y21}, with u(x,y)=x2 on the boundary Ω. An elliptic equation in the toolbox form is

-(cu)+au=f.

Therefore, for the minimal surface problem, the coefficients are:

c=11+|u|2,a=0,f=0.

Because the coefficient c is a function of the solution u, the minimal surface problem is a nonlinear elliptic problem.

To solve the minimal surface problem using the programmatic workflow, first create a PDE model with a single dependent variable.

model = createpde;

Create the geometry and include it in the model. The circleg function represents this geometry.

geometryFromEdges(model,@circleg);

Plot the geometry with the edge labels.

pdegplot(model,EdgeLabels="on")
axis equal
title("Geometry with Edge Labels")

Figure contains an axes object. The axes object with title Geometry with Edge Labels contains 5 objects of type line, text.

Specify the coefficients.

a = 0;
f = 0;
cCoef = @(region,state) 1./sqrt(1+state.ux.^2 + state.uy.^2);
specifyCoefficients(model,m=0,d=0,c=cCoef,a=a,f=f);

Specify the boundary conditions using the function u(x,y)=x2.

bcMatrix = @(region,~)region.x.^2;
applyBoundaryCondition(model,"dirichlet", ...
                       Edge=1:model.Geometry.NumEdges, ...
                       u=bcMatrix);

Generate and plot a mesh.

generateMesh(model,Hmax=0.1);
figure; 
pdemesh(model); 
axis equal

Figure contains an axes object. The axes object contains 2 objects of type line.

Clear figure for future plots.

clf

Solve the problem by using the solvepde function.

result = solvepde(model);
u = result.NodalSolution;

Plot the solution by using the Visualize PDE Results Live Editor task. First, create a new live script by clicking the New Live Script button in the File section on the Home tab.

New Live Script button

On the Live Editor tab, select Task > Visualize PDE Results. This action inserts the task into your script.

Visualize PDE Results task on the Live Editor tab

To plot the solution, follow these steps.

  1. In the Select results section of the task, select result from the drop-down list.

  2. In the Specify data parameters section of the task, set Type to Nodal solution.

  3. In the Specify visualization parameters section of the task, select the Mesh check box.

Live Task

Figure contains an object of type pde.graphics.pdevisualization.

You also can plot the solution at the MATLAB® command line by using the pdeplot function. For example, plot the solution as a 3-D plot, using the solution values for plot heights.

figure; 
pdeplot(model,XYData=u,ZData=u);
xlabel x
ylabel y
zlabel u(x,y)
title("Minimal Surface")
colormap jet

Figure contains an axes object. The axes object with title Minimal Surface, xlabel x, ylabel y contains an object of type patch.