source: test/unit_test/library/dirichlet_cs.cpp@ a40eea

Last change on this file since a40eea was ac6d04, checked in by Julian Iseringhausen <isering@…>, 14 years ago

Merge recent changes of the vmg library into ScaFaCos.

Includes a fix for the communication problems on Jugene.

git-svn-id: https://svn.version.fz-juelich.de/scafacos/trunk@1666 5161e1c8-67bf-11de-9fd5-51895aff932f

  • Property mode set to 100644
File size: 2.4 KB
Line 
1/*
2 * dirichlet_cs.cpp
3 *
4 * Created on: 25.01.2011
5 * Author: Julian Iseringhausen
6 */
7
8#ifdef HAVE_CONFIG_H
9#include <config.h>
10#endif
11
12#include <boost/test/unit_test.hpp>
13#include <boost/test/floating_point_comparison.hpp>
14
15#include "base/factory.hpp"
16#include "base/math.hpp"
17#include "base/vector.hpp"
18#include "comm/comm_serial.hpp"
19#include "level/level_operator_cs.hpp"
20#include "level/level_operator.hpp"
21#include "samples/discretization_poisson_fd.hpp"
22#include "samples/stencils.hpp"
23#include "samples/techniques.hpp"
24#include "smoother/gsrb.hpp"
25#ifdef HAVE_LAPACK
26#include "solver/dgesv.hpp"
27#endif
28#include "solver/givens.hpp"
29#include "solver/solver_regular.hpp"
30#include "mg.hpp"
31
32#include "interface_sinus.hpp"
33
34using namespace VMG;
35
36const vmg_float sine_factor = static_cast<vmg_float>(2.0 * Math::pi);
37
38struct LibraryDirichletCSFixture
39{
40 LibraryDirichletCSFixture()
41 {
42 Factory& factory = MG::GetFactory();
43
44 Comm *comm = new CommSerial(Boundary(Dirichlet, Dirichlet, Dirichlet));
45 comm->Register("COMM");
46
47 Interface* interface = new VMGInterfaces::InterfaceSinus(sine_factor, comm->BoundaryConditions(), 2, 6, 0.0, 1.0);
48 MG::SetInterface(interface, comm);
49
50 Discretization* discretization = new DiscretizationPoissonFD();
51 discretization->Register("DISCRETIZATION");
52
53 LevelOperator* lop = new LevelOperatorCS(Stencils::RestrictionFullWeight, Stencils::InterpolationTrilinear);
54 lop->Register("LEVEL_OPERATOR");
55
56 Smoother* smoother = new GaussSeidelRB();
57 smoother->Register("SMOOTHER");
58
59#ifdef HAVE_LAPACK
60 Solver* solver = new DGESV<SolverRegular>();
61#else
62 Solver* solver = new Givens<SolverRegular>();
63#endif
64 solver->Register("SOLVER");
65
66 Techniques::SetCorrectionSchemeDirichlet(interface->MinLevel(), interface->MaxLevel(), 2);
67
68 factory.RegisterObjectStorage("PRESMOOTHSTEPS", 3);
69 factory.RegisterObjectStorage("POSTSMOOTHSTEPS", 3);
70 factory.RegisterObjectStorage("PRECISION", 1e-10);
71 factory.RegisterObjectStorage("MAX_ITERATION", 7);
72
73 MG::IsInitialized();
74 }
75
76 ~LibraryDirichletCSFixture()
77 {
78 MG::Destroy();
79 }
80};
81
82BOOST_FIXTURE_TEST_CASE(LibraryDirichletCSTest, LibraryDirichletCSFixture)
83{
84 MG::Solve();
85
86 double res_init = MG::GetFactory().Get("INITIAL_RESIDUAL")->Cast< ObjectStorage<double> >()->Val();
87 double res = MG::GetComm()->ComputeResidualNorm(*MG::GetSol(), *MG::GetRhs());
88
89 BOOST_CHECK_SMALL(res/res_init, 1e-10);
90}
Note: See TracBrowser for help on using the repository browser.