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
|
# Copyright (C) 2013 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/>.
import pytest
import numpy
from dolfin import *
import os
from dolfin_utils.test import fixture, cd_tempdir
def test_save_mesh1D(cd_tempdir):
mesh = UnitIntervalMesh(16)
file = File("mesh1D.x3d")
#self.assertRaises(RuntimeError, file << mesh)
def test_save_mesh2D(cd_tempdir):
mesh = UnitSquareMesh(16, 16)
file = File("mesh2D.x3d")
file << mesh
def test_save_mesh3D(cd_tempdir):
mesh = UnitCubeMesh(16, 16, 16)
file = File("mesh3D.x3d")
file << mesh
def test_save_cell_meshfunction2D(cd_tempdir):
mesh = UnitSquareMesh(16, 16)
mf = MeshFunction("size_t", mesh, mesh.topology().dim(), 12)
file = File("cell_mf2D.x3d")
file << mf
def test_save_facet_meshfunction2D(cd_tempdir):
mesh = UnitSquareMesh(16, 16)
mf = MeshFunction("size_t", mesh, mesh.topology().dim()-1, 12)
file = File("facet_mf2D.x3d")
#with pytest.raises(RuntimeError):
# file << mf
def test_save_cell_meshfunctio22D(cd_tempdir):
mesh = UnitCubeMesh(16, 16, 16)
mf = MeshFunction("size_t", mesh, mesh.topology().dim(), 12)
file = File("cell_mf3D.x3d")
file << mf
def test_save_facet_meshfunction3D(cd_tempdir):
mesh = UnitCubeMesh(16, 16, 16)
mf = MeshFunction("size_t", mesh, mesh.topology().dim()-1, 12)
file = File("facet_mf3D.x3d")
#with pytest.raises(RuntimeError):
# file << mf
def test_mesh_str():
mesh = UnitCubeMesh(2, 2, 2)
str = X3DOM.str(mesh)
mesh = UnitSquareMesh(5, 3)
str = X3DOM.str(mesh)
def test_mesh_html():
mesh = UnitCubeMesh(2, 2, 2)
str = X3DOM.html(mesh)
mesh = UnitSquareMesh(5, 3)
str = X3DOM.html(mesh)
# test IPython display hook:
html = mesh._repr_html_()
def test_x3dom_parameters():
p = X3DOMParameters()
# Test Representation
# Get colour
c0 = p.get_diffuse_color()
# Set colour
c0 = [0.1, 0.2, 0.1]
p.set_diffuse_color(c0)
c1 = p.get_diffuse_color()
assert numpy.array_equal(c0, c1)
c0 = (0.1, 0.2, 0.1)
p.set_diffuse_color(c0)
c1 = p.get_diffuse_color()
assert numpy.array_equal(c0, c1)
c0 = numpy.array([0.1, 0.2, 0.1])
p.set_diffuse_color(c0)
c1 = p.get_diffuse_color()
assert numpy.array_equal(c0, c1)
# Test wrong length color sequences
with pytest.raises(TypeError):
c0 = [0.1, 0.2, 0.1, 0.2]
p.set_diffuse_color(c0)
with pytest.raises(TypeError):
c0 = [0.1, 0.2]
p.set_diffuse_color(c0)
# Test invalid RGB value
with pytest.raises(RuntimeError):
c0 = [0.1, 0.2, 1.2]
p.set_diffuse_color(c0)
|