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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170 | /* *****************************************************************
MESQUITE -- The Mesh Quality Improvement Toolkit
Copyright 2006 Sandia National Laboratories. Developed at the
University of Wisconsin--Madison under SNL contract number
624796. The U.S. Government and the University of Wisconsin
retain certain rights to this software.
This library 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 2.1 of the License, or (at your option) any later version.
This library 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
(lgpl.txt) along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
(2006) [email protected]
***************************************************************** */
/** \file BCDTest.cpp
* \brief
* \author Jason Kraftcheck
*/
#include "Mesquite.hpp"
#include "LPtoPTemplate.hpp"
#include "PMeanPTemplate.hpp"
#include "IdealWeightInverseMeanRatio.hpp"
#include "InstructionQueue.hpp"
#include "FeasibleNewton.hpp"
#include "ConjugateGradient.hpp"
#include "MeshImpl.hpp"
#include "QualityAssessor.hpp"
#include "TerminationCriterion.hpp"
#include "UnitUtil.hpp"
#include "meshfiles.h"
#include "cppunit/extensions/HelperMacros.h"
#include <iostream>
#include <vector>
#include <string>
using namespace MBMesquite;
using namespace std;
const char HEX_MESH[] = MESH_FILES_DIR "3D/vtk/hexes/untangled/1000hex-block-internal-bias.vtk";
const char TET_MESH[] = MESH_FILES_DIR "3D/vtk/tets/untangled/tire.vtk";
typedef FeasibleNewton SolverType;
class BCDTest : public CppUnit::TestFixture
{
private:
CPPUNIT_TEST_SUITE( BCDTest );
CPPUNIT_TEST( test_lp_to_p_hex );
CPPUNIT_TEST( test_p_mean_p_hex );
CPPUNIT_TEST( test_lp_to_p_tet );
CPPUNIT_TEST( test_p_mean_p_tet );
CPPUNIT_TEST_SUITE_END();
IdealWeightInverseMeanRatio mMetric;
void compare_bcd( ObjectiveFunction* of, string name, const char* file );
public:
void test_lp_to_p_hex()
{
LPtoPTemplate OF( 1, &mMetric );
compare_bcd( &OF, "LPtoP-hex", HEX_MESH );
}
void test_p_mean_p_hex()
{
PMeanPTemplate OF( 1.0, &mMetric );
compare_bcd( &OF, "PMeanP-hex", HEX_MESH );
}
void test_lp_to_p_tet()
{
LPtoPTemplate OF( 1, &mMetric );
compare_bcd( &OF, "LPtoP-tet", TET_MESH );
}
void test_p_mean_p_tet()
{
PMeanPTemplate OF( 1.0, &mMetric );
compare_bcd( &OF, "PMeanP-tet", TET_MESH );
}
};
CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( BCDTest, "BCDTest" );
CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( BCDTest, "Regression" );
void BCDTest::compare_bcd( ObjectiveFunction* OF, string name, const char* mesh_file )<--- Function parameter 'name' should be passed by const reference. [+]Parameter 'name' is passed by value. It could be passed as a const reference which is usually faster and recommended in C++.
{
MsqPrintError err( cout );
size_t i;
vector< MsqVertex > initial_coords, global_coords, bcd_coords;
vector< Mesh::VertexHandle > vertex_list;
// set up a smoother
TerminationCriterion iterations, vertex_movement;
iterations.add_iteration_limit( 2 );
vertex_movement.add_absolute_vertex_movement( 1e-3 );
SolverType global_solver( OF );
SolverType bcd_solver( OF );
global_solver.use_global_patch();
bcd_solver.use_element_on_vertex_patch();
bcd_solver.do_block_coordinate_descent_optimization();
global_solver.set_inner_termination_criterion( &vertex_movement );
bcd_solver.set_inner_termination_criterion( &iterations );
bcd_solver.set_outer_termination_criterion( &vertex_movement );
QualityAssessor qa;
qa.add_quality_assessment( &mMetric );
InstructionQueue global_q, bcd_q;
global_q.add_quality_assessor( &qa, err );
global_q.set_master_quality_improver( &global_solver, err );
global_q.add_quality_assessor( &qa, err );
bcd_q.set_master_quality_improver( &bcd_solver, err );
bcd_q.add_quality_assessor( &qa, err );
// read mesh
MeshImpl mesh;
mesh.read_vtk( mesh_file, err );
ASSERT_NO_ERROR( err );
mesh.get_all_vertices( vertex_list, err );
ASSERT_NO_ERROR( err );
CPPUNIT_ASSERT( !vertex_list.empty() );
initial_coords.resize( vertex_list.size() );
mesh.vertices_get_coordinates( arrptr( vertex_list ), arrptr( initial_coords ), vertex_list.size(), err );
ASSERT_NO_ERROR( err );
// run global smoother
global_q.run_instructions( &mesh, err );
ASSERT_NO_ERROR( err );
mesh.write_vtk( ( name + "-gbl.vtk" ).c_str(), err );
global_coords.resize( vertex_list.size() );
mesh.vertices_get_coordinates( arrptr( vertex_list ), arrptr( global_coords ), vertex_list.size(), err );
ASSERT_NO_ERROR( err );
// restore initial vertex positions
for( i = 0; i < vertex_list.size(); ++i )
{
mesh.vertex_set_coordinates( vertex_list[i], initial_coords[i], err );
ASSERT_NO_ERROR( err );
}
// run local smoother
bcd_q.run_instructions( &mesh, err );
ASSERT_NO_ERROR( err );
mesh.write_vtk( ( name + "-bcd.vtk" ).c_str(), err );
bcd_coords.resize( vertex_list.size() );
mesh.vertices_get_coordinates( arrptr( vertex_list ), arrptr( bcd_coords ), vertex_list.size(), err );
ASSERT_NO_ERROR( err );
// compare results
for( i = 0; i < bcd_coords.size(); ++i )
CPPUNIT_ASSERT_VECTORS_EQUAL( global_coords[i], bcd_coords[i], 1e-2 );
}
|