This page was generated from unit-2.1.3-bddc/bddc.ipynb.

2.1.3 Element-wise BDDC Preconditioner

The element-wise BDDC (Balancing Domain Decomposition preconditioner with Constraints) preconditioner in NGSolve is a good general purpose preconditioner that works well both in the shared memory parallel mode as well as in distributed memory mode. In this tutorial, we discuss this preconditioner, related built-in options, and customization from python.

Let us start with a simple description of the element-wise BDDC in the context of Lagrange finite element space \(V\). Here the BDDC preconditoner is constructed on an auxiliary space \(\widetilde{V}\) obtained by connecting only element vertices (leaving edge and face shape functions discontinuous). Although larger, the auxiliary space allows local elimination of edge and face variables. Hence an analogue of the original matrix \(A\) on this space, named \(\widetilde A\), is less expensive to invert. This inverse is used to construct a preconditioner for \(A\) as follows:

\[C_{BDDC}^{-1} = R {\,\widetilde{A}\,}^{-1}\, R^t\]

Here, \(R\) is the averaging operator for the discontinous edge and face variables.

To construct a general purpose BDDC preconditioner, NGSolve generalizes this idea to all its finite element spaces by a classification of degrees of freedom. Dofs are classified into (condensable) LOCAL_DOFs that we saw in 1.4 and a remainder that includes these types:

WIREBASKET_DOF
INTERFACE_DOF

The original finite element space \(V\) is obtained by requiring conformity of both the above types of dofs, while the auxiliary space \(\widetilde{V}\) is obtained by requiring conformity of WIREBASKET_DOFs only.

Here is a figure of a typical function in the default \(\widetilde{V}\) (and the code to generate this is at the end of this tutorial) when \(V\) is the Lagrange space:

title

[1]:
import netgen.gui
from ngsolve import *
from ngsolve.la import EigenValues_Preconditioner
from netgen.csg import unit_cube
from netgen.geom2d import unit_square
SetHeapSize(100*1000*1000)
[2]:
mesh = Mesh(unit_cube.GenerateMesh(maxh=0.5))
# mesh = Mesh(unit_square.GenerateMesh(maxh=0.5))

Built-in options

Let us define a simple function to study how the spectrum of the preconditioned matrix changes with various options.

Effect of condensation

[3]:
def TestPreconditioner (p, condense=False, **args):
    fes = H1(mesh, order=p, **args)
    u,v = fes.TnT()
    a = BilinearForm(fes, eliminate_internal=condense)
    a += grad(u)*grad(v)*dx + u*v*dx
    c = Preconditioner(a, "bddc")
    a.Assemble()
    return EigenValues_Preconditioner(a.mat, c.mat)
[4]:
lams = TestPreconditioner(5)
print (lams[0:3], "...\n", lams[-3:])
 1.00408
  1.1118
 1.34795
 ...
  33.7436
 35.2184
 38.0012

Here is the effect of static condensation on the BDDC preconditioner.

[5]:
lams = TestPreconditioner(5, condense=True)
print (lams[0:3], "...\n", lams[-3:])
 1.00139
 1.04212
 1.12173
 ...
  6.95459
 7.03965
  7.3257

Tuning the auxiliary space

Next, let us study the effect of a few built-in flags for finite element spaces that are useful for tweaking the behavior of the BDDC preconditioner. The effect of these flags varies in two (2D) and three dimensions (3D), e.g.,

  • wb_fulledges=True: This option keeps all edge-dofs conforming (i.e. they are marked WIREBASKET_DOFs). This option is only meaningful in 3D. If used in 2D, the preconditioner becomes a direct solver.

  • wb_withedges=True: This option keeps only the first edge-dof conforming (i.e., the first edge-dof is marked WIREBASKET_DOF and the remaining edge-dofs are marked INTERFACE_DOFs).

The complete situation is a bit more complex due to the fact these options can take the three values True, False, or Undefined, the two options can be combined, and the space dimension can be 2 or 3. The default value of these flags in NGSolve is Undefined. Here is a table with the summary of the effect of these options:

wb_fulledges

wb_withedges

2D

3D

True

any value

all

all

False/Undefined

Undefined

none

first

False/Undefined

False

none

none

False/Undefined

True

first

first

An entry \(X \in\) {all, none, first} of the last two columns is to be read as follows: \(X\) of the edge-dofs is(are) WIREBASKET_DOF(s).

Here is an example of the effect of one of these flag values.

[6]:
lams = TestPreconditioner(5, condense=True,
                          wb_withedges=False)
print (lams[0:3], "...\n", lams[-3:])
 1.00468
 1.09359
 1.32949
 ...
  31.1877
 33.3524
 34.3632

Clearly, when moving from the default case (where the first of the edge dofs are wire basket dofs) to the case (where none of the edge dofs are wire basket dofs), the conditioning became less favorable.

Customize

From within python, we can change the types of degrees of freedom of finite element spaces, thus affecting the behavior of the BDDC preconditioner.

To depart from the default and commit the first two edge dofs to wire basket, we perform the next steps:

[7]:
fes = H1(mesh, order=10)
u,v = fes.TnT()

for ed in mesh.edges:
    dofs = fes.GetDofNrs(ed)
    for d in dofs:
        fes.SetCouplingType(d, COUPLING_TYPE.INTERFACE_DOF)

    # Set the first two edge dofs to be conforming
    fes.SetCouplingType(dofs[0], COUPLING_TYPE.WIREBASKET_DOF)
    fes.SetCouplingType(dofs[1], COUPLING_TYPE.WIREBASKET_DOF)

a = BilinearForm(fes, eliminate_internal=True)
a += grad(u)*grad(v)*dx + u*v*dx
c = Preconditioner(a, "bddc")
a.Assemble()

lams=EigenValues_Preconditioner(a.mat, c.mat)
max(lams)/min(lams)
[7]:
18.3102008313821

This is a slight improvement from the default.

[8]:
lams = TestPreconditioner (10, condense=True)
max(lams)/min(lams)
[8]:
27.550548160831816

Combine BDDC with AMG for large problems

The coarse inverse \({\,\widetilde{A}\,}^{-1}\) of BDDC is expensive on fine meshes. Using the option coarsetype=h1amg flag, we can ask BDDC to replace \({\,\widetilde{A}\,}^{-1}\) by an Algebraic MultiGrid (AMG) preconditioner. Since NGSolve’s h1amg is well-suited
for the lowest order Lagrange space, we use the option wb_withedges=False to ensure that \(\widetilde{A}\) is made solely with vertex unknowns.
[9]:
p = 5
mesh = Mesh(unit_cube.GenerateMesh(maxh=0.05))
fes = H1(mesh, order=p, dirichlet="left|bottom|back",
         wb_withedges=False)
print("NDOF = ", fes.ndof)
u,v = fes.TnT()
a = BilinearForm(fes)
a += grad(u)*grad(v)*dx
f = LinearForm(fes)
f += v*dx

with TaskManager():
    pre = Preconditioner(a, "bddc", coarsetype="h1amg")
    a.Assemble()
    f.Assemble()

    gfu = GridFunction(fes)
    solvers.CG(mat=a.mat, rhs=f.vec, sol=gfu.vec,
               pre=pre, maxsteps=500)
Draw(gfu)
NDOF =  1165206
iteration 0 error = 0.7073079321639637
iteration 1 error = 0.2923489925962691
iteration 2 error = 0.28504235907491193
iteration 3 error = 0.29099858582201815
iteration 4 error = 0.3196033806324109
iteration 5 error = 0.2548899214031633
iteration 6 error = 0.19211663159074444
iteration 7 error = 0.15448092069205724
iteration 8 error = 0.12629396108308236
iteration 9 error = 0.10147830081475619
iteration 10 error = 0.07424583493548191
iteration 11 error = 0.056624349933461646
iteration 12 error = 0.045016614644206726
iteration 13 error = 0.038222441472400656
iteration 14 error = 0.031683415376181565
iteration 15 error = 0.025172956992234964
iteration 16 error = 0.01931192775828383
iteration 17 error = 0.015540050652096534
iteration 18 error = 0.012426984200611823
iteration 19 error = 0.00998869960934953
iteration 20 error = 0.0077720965317935355
iteration 21 error = 0.006098988979459708
iteration 22 error = 0.00484502344349209
iteration 23 error = 0.0038936689458989415
iteration 24 error = 0.003121178650821568
iteration 25 error = 0.0025146830624793357
iteration 26 error = 0.0020184587220798402
iteration 27 error = 0.0016178291793917015
iteration 28 error = 0.0012923972201624504
iteration 29 error = 0.001042447001729877
iteration 30 error = 0.0008356482973016198
iteration 31 error = 0.0006714480065978797
iteration 32 error = 0.0005352623318995786
iteration 33 error = 0.0004215503628216215
iteration 34 error = 0.00033333058146812355
iteration 35 error = 0.0002673703978420655
iteration 36 error = 0.00021292667233359112
iteration 37 error = 0.00016781697413274874
iteration 38 error = 0.00013450312384210252
iteration 39 error = 0.00010875174584049291
iteration 40 error = 8.771907984041174e-05
iteration 41 error = 7.041354864256078e-05
iteration 42 error = 5.698975226821479e-05
iteration 43 error = 4.549968019506684e-05
iteration 44 error = 3.6588074469708235e-05
iteration 45 error = 2.9152587032894173e-05
iteration 46 error = 2.308079317500727e-05
iteration 47 error = 1.8700945504578623e-05
iteration 48 error = 1.5030440049793832e-05
iteration 49 error = 1.2051856509027955e-05
iteration 50 error = 9.778231424356995e-06
iteration 51 error = 7.826482451346283e-06
iteration 52 error = 6.201639849639291e-06
iteration 53 error = 4.939636623333359e-06
iteration 54 error = 3.914819687502327e-06
iteration 55 error = 3.1363011982839177e-06
iteration 56 error = 2.5271403018431848e-06
iteration 57 error = 2.04107756775699e-06
iteration 58 error = 1.6311701124297904e-06
iteration 59 error = 1.284598461759014e-06
iteration 60 error = 1.0402375507474192e-06
iteration 61 error = 8.352505853161187e-07
iteration 62 error = 6.684146548752856e-07
iteration 63 error = 5.326854521153781e-07
iteration 64 error = 4.261471708832348e-07
iteration 65 error = 3.405062250143842e-07
iteration 66 error = 2.7074679823130447e-07
iteration 67 error = 2.1748059050050548e-07
iteration 68 error = 1.7486873256179525e-07
iteration 69 error = 1.405904819632806e-07
iteration 70 error = 1.1189128086618332e-07
iteration 71 error = 8.936904174008847e-08
iteration 72 error = 7.124603202903364e-08
iteration 73 error = 5.6448862389465816e-08
iteration 74 error = 4.5591970792481206e-08
iteration 75 error = 3.624258140488451e-08
iteration 76 error = 2.929752191780438e-08
iteration 77 error = 2.3413924807781612e-08
iteration 78 error = 1.8469239930775884e-08
iteration 79 error = 1.4926276604710026e-08
iteration 80 error = 1.2078327737162885e-08
iteration 81 error = 9.739945783139373e-09
iteration 82 error = 7.978070974497165e-09
iteration 83 error = 6.511874259718847e-09
iteration 84 error = 5.226262370137907e-09
iteration 85 error = 4.22952889632865e-09
iteration 86 error = 3.3973160617528435e-09
iteration 87 error = 2.7562523319443564e-09
iteration 88 error = 2.1753382139370742e-09
iteration 89 error = 1.7384003837756365e-09
iteration 90 error = 1.3897547299039166e-09
iteration 91 error = 1.1169250419572845e-09
iteration 92 error = 8.947131320331107e-10
iteration 93 error = 7.209521168746232e-10
iteration 94 error = 5.787654750840831e-10
iteration 95 error = 4.5710881736711663e-10
iteration 96 error = 3.664242465742395e-10
iteration 97 error = 2.9453376514790655e-10
iteration 98 error = 2.3408148841836734e-10
iteration 99 error = 1.888014510928021e-10
iteration 100 error = 1.5109575701193818e-10
iteration 101 error = 1.208861975888772e-10
iteration 102 error = 9.86076185743217e-11
iteration 103 error = 8.117748774857673e-11
iteration 104 error = 6.575351279792122e-11
iteration 105 error = 5.2753759857687167e-11
iteration 106 error = 4.1874815207964716e-11
iteration 107 error = 3.3351781529977734e-11
iteration 108 error = 2.6427408639744083e-11
iteration 109 error = 2.131596222369894e-11
iteration 110 error = 1.716781750571615e-11
iteration 111 error = 1.3753210818667051e-11
iteration 112 error = 1.1160959423844185e-11
iteration 113 error = 8.89880854639232e-12
iteration 114 error = 7.041268073847235e-12
iteration 115 error = 5.652364111295183e-12
iteration 116 error = 4.500599157168462e-12
iteration 117 error = 3.57721890675873e-12
iteration 118 error = 2.885275907697273e-12
iteration 119 error = 2.3039407443061225e-12
iteration 120 error = 1.8192750368337127e-12
iteration 121 error = 1.4527984269709892e-12
iteration 122 error = 1.1752986576272316e-12
iteration 123 error = 9.43674708975864e-13
iteration 124 error = 7.569339590051927e-13
iteration 125 error = 6.074734051799271e-13

Postscript

By popular demand, here is the code to draw the figure found at the beginning of this tutorial:

[10]:
from netgen.geom2d import unit_square
mesh = Mesh(unit_square.GenerateMesh(maxh=0.1))
fes_ho = Discontinuous(H1(mesh, order=10))
fes_lo = H1(mesh, order=1, dirichlet=".*")
fes_lam = Discontinuous(H1(mesh, order=1))
fes = FESpace([fes_ho, fes_lo, fes_lam])
uho, ulo, lam = fes.TrialFunction()

a = BilinearForm(fes)
a += Variation(0.5 * grad(uho)*grad(uho)*dx
               - 1*uho*dx
               + (uho-ulo)*lam*dx(element_vb=BBND))
gfu = GridFunction(fes)
solvers.Newton(a=a, u=gfu)
Draw(gfu.components[0])
Newton iteration  0
err =  0.3937351156371161
Newton iteration  1
err =  3.874027236775335e-15