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
|
"""Unit tests for the refinement library"""
# Copyright (C) 2011 Garth N. Wells
#
# 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/>.
#
# First added: 2011-08-23
# Last changed:
import unittest
from dolfin import *
class MeshRefinement(unittest.TestCase):
@unittest.skipIf(MPI.size(mpi_comm_world()) > 1, "Skipping unit test(s) not working in parallel")
def test_uniform_refine1D(self):
mesh = UnitIntervalMesh(20)
mesh2 = refine(mesh)
self.assertAlmostEqual(mesh.hmax(), 0.05)
self.assertAlmostEqual(mesh2.hmax(), 0.025)
def test_uniform_refine2D(self):
mesh = UnitSquareMesh(4, 6)
mesh = refine(mesh)
def test_uniform_refine3D(self):
mesh = UnitCubeMesh(4, 4, 6)
mesh = refine(mesh)
if __name__ == "__main__":
unittest.main()
|