File: BiharmonicRegge.py

package info (click to toggle)
fenics-ffcx 1%3A0.9.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 948 kB
  • sloc: python: 8,246; ansic: 109; makefile: 58
file content (54 lines) | stat: -rw-r--r-- 1,193 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Copyright (C) 2016 Lizao Li
"""Biharmonic Regge demo.

The bilinear form a(u, v) and linear form L(v) for Biharmonic equation in Regge formulation.
"""

import basix.ufl
from ufl import (
    Coefficient,
    FacetNormal,
    FunctionSpace,
    Identity,
    Mesh,
    TestFunctions,
    TrialFunctions,
    dot,
    dS,
    ds,
    dx,
    grad,
    inner,
    jump,
    tr,
)

REG = basix.ufl.element("Regge", "tetrahedron", 1)
P = basix.ufl.element("Lagrange", "tetrahedron", 2)
mixed_element = basix.ufl.mixed_element([REG, P])
domain = Mesh(basix.ufl.element("P", "tetrahedron", 1, shape=(3,)))
mixed_space = FunctionSpace(domain, mixed_element)
p_space = FunctionSpace(domain, P)

(sigma, u) = TrialFunctions(mixed_space)
(tau, v) = TestFunctions(mixed_space)
f = Coefficient(p_space)


def S(mu):
    """The form S."""
    return mu - Identity(3) * tr(mu)


def b(mu, v):
    """The form b."""
    n = FacetNormal(domain)
    return (
        inner(S(mu), grad(grad(v))) * dx
        - dot(dot(S(mu("+")), n("+")), n("+")) * jump(grad(v), n) * dS
        - dot(dot(S(mu), n), n) * dot(grad(v), n) * ds
    )


a = inner(S(sigma), S(tau)) * dx - b(tau, u) + b(sigma, v)
L = f * v * dx