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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
|
"""Unit tests for coordinates interface"""
# Copyright (C) 2016 Jan Blechta
#
# This file is part of DOLFIN.
#
# DOLFIN is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# DOLFIN is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with DOLFIN. If not, see <http://www.gnu.org/licenses/>.
import pytest
import numpy as np
from dolfin import UnitIntervalMesh, UnitSquareMesh, UnitCubeMesh, UnitDiscMesh
from dolfin import FunctionSpace, VectorFunctionSpace, Function, MPI
from dolfin import UserExpression
from dolfin import get_coordinates, set_coordinates, Mesh
from dolfin import Expression, interpolate
from dolfin_utils.test import skip_in_parallel, fixture
@fixture
def meshes_p1():
return UnitIntervalMesh(10), UnitSquareMesh(3, 3), UnitCubeMesh(2, 2, 2)
@fixture
def meshes_p2():
return UnitDiscMesh.create(MPI.comm_world, 1, 2, 2), UnitDiscMesh.create(MPI.comm_world, 1, 2, 3)
def _test_get_set_coordinates(mesh):
# Get coords
V = FunctionSpace(mesh, mesh.ufl_coordinate_element())
c = Function(V)
get_coordinates(c, mesh.geometry())
# Check correctness of got coords
_check_coords(mesh, c)
# Backup and zero coords
coords = mesh.coordinates()
coords_old = coords.copy()
coords[:] = 0.0
assert np.all(mesh.coordinates() == 0.0)
# Set again to old value
set_coordinates(mesh.geometry(), c)
# Check
assert np.all(mesh.coordinates() == coords_old)
def _check_coords(mesh, c):
# FIXME: This does not work for higher-order geometries although it should
if mesh.geometry().degree() > 1:
return
# Compare supplied c with interpolation of x
class X(UserExpression):
def eval(self, values, x):
values[:] = x[:]
x = X(domain=mesh, element=mesh.ufl_coordinate_element())
x = interpolate(x, c.function_space())
x.vector()[:] -= c.vector()
assert np.isclose(x.vector().norm("l1"), 0.0)
def test_linear(meshes_p1):
for mesh in meshes_p1:
_test_get_set_coordinates(mesh)
@skip_in_parallel(reason="FunctionSpace(UnitDiscMesh) not working in parallel")
def test_higher_order(meshes_p2):
for mesh in meshes_p2:
_test_get_set_coordinates(mesh)
def test_raises(meshes_p1):
mesh1, mesh2 = meshes_p1[:2]
# Wrong FE family
V = VectorFunctionSpace(mesh2, "Discontinuous Lagrange", 1)
c = Function(V)
with pytest.raises(RuntimeError):
get_coordinates(c, mesh2.geometry())
with pytest.raises(RuntimeError):
set_coordinates(mesh2.geometry(), c)
# Wrong value rank
V = FunctionSpace(mesh2, "Lagrange", 1)
c = Function(V)
with pytest.raises(RuntimeError):
get_coordinates(c, mesh2.geometry())
with pytest.raises(RuntimeError):
set_coordinates(mesh2.geometry(), c)
# Wrong value shape
V = VectorFunctionSpace(mesh2, "Lagrange", mesh2.geometry().degree(),
dim=mesh2.geometry().dim() - 1)
c = Function(V)
with pytest.raises(RuntimeError):
get_coordinates(c, mesh2.geometry())
with pytest.raises(RuntimeError):
set_coordinates(mesh2.geometry(), c)
# Non-matching degree
V = VectorFunctionSpace(mesh2, "Lagrange", mesh2.geometry().degree() + 1)
c = Function(V)
with pytest.raises(RuntimeError):
get_coordinates(c, mesh2.geometry())
with pytest.raises(RuntimeError):
set_coordinates(mesh2.geometry(), c)
|