DGtal 1.3.0
Loading...
Searching...
No Matches
testVectorsInHeat.cpp
Go to the documentation of this file.
1
31#include <iostream>
32#include "DGtal/base/Common.h"
33#include "ConfigTest.h"
34#include "DGtalCatch.h"
35#include "DGtal/helpers/StdDefs.h"
36
37#include "DGtal/dec/PolygonalCalculus.h"
38#include "DGtal/dec/VectorsInHeat.h"
39#include "DGtal/shapes/SurfaceMesh.h"
40#include "DGtal/shapes/MeshHelpers.h"
42
43using namespace std;
44using namespace DGtal;
45using namespace Z3i;
46
47TEST_CASE( "Testing VectorsInHeat" )
48{
50 std::vector<RealPoint> positions = { RealPoint( 0, 0, 0 ) ,
51 RealPoint( 1, 0, 0 ) ,
52 RealPoint( 0, 1, 0 ) ,
53 RealPoint( 1, 1, 0 ) ,
54 RealPoint( 0, 0, 1 ) ,
55 RealPoint( 1, 0, 1 ) ,
56 RealPoint( 0, 1, 1 ) ,
57 RealPoint( 1, 1, 1 ) ,
58 RealPoint( 1, 0, 2 ) ,
59 RealPoint( 0, 0, 2 ) };
60 std::vector<Mesh::Vertices> faces = { { 1, 0, 2, 3 },
61 { 0, 1, 5, 4 } ,
62 { 1, 3, 7, 5 } ,
63 { 3, 2, 6, 7 } ,
64 { 2, 0, 4, 6 } ,
65 { 4, 5, 8, 9 } };
66
67 Mesh box(positions.cbegin(), positions.cend(),
68 faces.cbegin(), faces.cend());
69
71
72
73 SECTION("Construction and basic operators")
74 {
76 REQUIRE( heat.isValid() == false );
77
78 trace.beginBlock("init solvers");
79 heat.init(0.1);
81 REQUIRE( heat.isValid() );
82
83 heat.addSource(0,Eigen::Vector3d(0.1,0.2,0.3));
84 std::vector<VectorsInHeat<PolygonalCalculus<RealPoint,RealVector>>::Vector> d = heat.compute();
85 REQUIRE( d.size() == positions.size() );
86 REQUIRE( d[5][0] == Approx(-0.111302) );
87
88 heat.clearSource();
90 REQUIRE( sources.sum() == 0);
91 }
92}
Aim: This class is defined to represent a surface mesh through a set of vertices and faces....
Definition: Mesh.h:92
Implements differential operators on polygonal surfaces from .
void beginBlock(const std::string &keyword="")
double endBlock()
This class implements on polygonal surfaces (using Discrete differential calculus on polygonal surfa...
Definition: VectorsInHeat.h:63
Space::RealPoint RealPoint
Definition: StdDefs.h:170
DGtal is the top-level namespace which contains all DGtal functions and types.
Trace trace
Definition: Common.h:154
STL namespace.
Aim: Represents an embedded mesh as faces and a list of vertices. Vertices may be shared among faces ...
Definition: SurfaceMesh.h:92
SECTION("Testing constant forward iterators")
REQUIRE(domain.isInside(aPoint))
TEST_CASE("Testing VectorsInHeat")