MOAB: Mesh Oriented datABase
(version 5.4.1)
|
#include "Mesquite.hpp"
#include "MappingFunction.hpp"
#include "LinearHexahedron.hpp"
#include "LinearQuadrilateral.hpp"
#include "LinearTetrahedron.hpp"
#include "LinearTriangle.hpp"
#include "LinearPrism.hpp"
#include "LinearPyramid.hpp"
#include "TopologyInfo.hpp"
#include "MsqError.hpp"
#include "JacobianCalculator.hpp"
#include "IdealElements.hpp"
#include "UnitUtil.hpp"
#include <vector>
#include <algorithm>
Go to the source code of this file.
Classes | |
class | LinearMappingFunctionTest |
Functions | |
CPPUNIT_TEST_SUITE_NAMED_REGISTRATION (LinearMappingFunctionTest,"LinearMappingFunctionTest") | |
CPPUNIT_TEST_SUITE_NAMED_REGISTRATION (LinearMappingFunctionTest,"Unit") | |
static string | itostr (int i) |
static string | dtostr (double i) |
Variables | |
const int | HexCorners [8][3] |
const int | QuadCorners [4][2] = { { 0, 0 }, { 1, 0 }, { 1, 1 }, { 0, 1 } } |
const int | TetCorners [12] = { 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1 } |
const int | TriCorners [6] = { 0, 0, 1, 0, 0, 1 } |
const int | PrismCorners [18] = { 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 1 } |
Definition in file LinearMappingFunctionTest.cpp.
CPPUNIT_TEST_SUITE_NAMED_REGISTRATION | ( | LinearMappingFunctionTest | , |
"LinearMappingFunctionTest" | |||
) |
static string dtostr | ( | double | i | ) | [static] |
Definition at line 823 of file LinearMappingFunctionTest.cpp.
References buffer.
Referenced by LinearMappingFunctionTest::do_coeff_test(), and LinearMappingFunctionTest::do_deriv_test().
static string itostr | ( | int | i | ) | [static] |
Definition at line 816 of file LinearMappingFunctionTest.cpp.
References buffer.
Referenced by LinearMappingFunctionTest::do_coeff_test(), and LinearMappingFunctionTest::do_deriv_test().
const int HexCorners[8][3] |
{ { 0, 0, 0 }, { 1, 0, 0 }, { 1, 1, 0 }, { 0, 1, 0 }, { 0, 0, 1 }, { 1, 0, 1 }, { 1, 1, 1 }, { 0, 1, 1 } }
Definition at line 259 of file LinearMappingFunctionTest.cpp.
Referenced by LinearMappingFunctionTest::test_linear_hex_coeff_corners(), LinearMappingFunctionTest::test_linear_hex_coeff_edges(), LinearMappingFunctionTest::test_linear_hex_coeff_faces(), LinearMappingFunctionTest::test_linear_hex_deriv_corners(), LinearMappingFunctionTest::test_linear_hex_deriv_edges(), and LinearMappingFunctionTest::test_linear_hex_deriv_faces().
const int PrismCorners[18] = { 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 1 } |
Definition at line 268 of file LinearMappingFunctionTest.cpp.
Referenced by LinearMappingFunctionTest::test_linear_prism_coeff_corners(), LinearMappingFunctionTest::test_linear_prism_coeff_edges(), LinearMappingFunctionTest::test_linear_prism_coeff_faces(), LinearMappingFunctionTest::test_linear_prism_deriv_corners(), LinearMappingFunctionTest::test_linear_prism_deriv_edges(), and LinearMappingFunctionTest::test_linear_prism_deriv_faces().
const int QuadCorners[4][2] = { { 0, 0 }, { 1, 0 }, { 1, 1 }, { 0, 1 } } |
Definition at line 262 of file LinearMappingFunctionTest.cpp.
Referenced by LinearMappingFunctionTest::test_linear_quad_coeff_corners(), LinearMappingFunctionTest::test_linear_quad_coeff_edges(), LinearMappingFunctionTest::test_linear_quad_deriv_corners(), and LinearMappingFunctionTest::test_linear_quad_deriv_edges().
const int TetCorners[12] = { 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1 } |
Definition at line 264 of file LinearMappingFunctionTest.cpp.
Referenced by LinearMappingFunctionTest::test_linear_tet_coeff_corners(), LinearMappingFunctionTest::test_linear_tet_coeff_edges(), LinearMappingFunctionTest::test_linear_tet_coeff_faces(), LinearMappingFunctionTest::test_linear_tet_deriv_corners(), LinearMappingFunctionTest::test_linear_tet_deriv_edges(), and LinearMappingFunctionTest::test_linear_tet_deriv_faces().
const int TriCorners[6] = { 0, 0, 1, 0, 0, 1 } |
Definition at line 266 of file LinearMappingFunctionTest.cpp.
Referenced by LinearMappingFunctionTest::test_linear_tri_coeff_corners(), LinearMappingFunctionTest::test_linear_tri_coeff_edges(), LinearMappingFunctionTest::test_linear_tri_deriv_corners(), and LinearMappingFunctionTest::test_linear_tri_deriv_edges().