| 1 | /*
|
|---|
| 2 | * periodic_cs.cpp
|
|---|
| 3 | *
|
|---|
| 4 | * Created on: Oct 20, 2010
|
|---|
| 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 "samples/discretization_poisson_fd.hpp"
|
|---|
| 21 | #include "samples/techniques.hpp"
|
|---|
| 22 | #include "smoother/gs.hpp"
|
|---|
| 23 | #include "smoother/gsrb.hpp"
|
|---|
| 24 | #ifdef HAVE_LAPACK
|
|---|
| 25 | #include "solver/dsysv.hpp"
|
|---|
| 26 | #endif
|
|---|
| 27 | #include "solver/givens.hpp"
|
|---|
| 28 | #include "solver/solver_singular.hpp"
|
|---|
| 29 | #include "mg.hpp"
|
|---|
| 30 |
|
|---|
| 31 | #include "interface_sinus.hpp"
|
|---|
| 32 |
|
|---|
| 33 | using namespace VMG;
|
|---|
| 34 |
|
|---|
| 35 | const vmg_float sine_factor = static_cast<vmg_float>(2.0 * Math::pi);
|
|---|
| 36 |
|
|---|
| 37 | struct LibraryPeriodicCSFixture
|
|---|
| 38 | {
|
|---|
| 39 | LibraryPeriodicCSFixture()
|
|---|
| 40 | {
|
|---|
| 41 | Factory& factory = MG::GetFactory();
|
|---|
| 42 |
|
|---|
| 43 | Comm *comm = new CommSerial(Boundary(Periodic, Periodic, Periodic));
|
|---|
| 44 | comm->Register("COMM");
|
|---|
| 45 |
|
|---|
| 46 | Interface* interface = new VMGInterfaces::InterfaceSinus(sine_factor, comm->BoundaryConditions(), 2, 6, 0.0, 1.0);
|
|---|
| 47 | MG::SetInterface(interface, comm);
|
|---|
| 48 |
|
|---|
| 49 | Discretization* discretization = new DiscretizationPoissonFD(2);
|
|---|
| 50 | discretization->Register("DISCRETIZATION");
|
|---|
| 51 |
|
|---|
| 52 | LevelOperator* lop = new LevelOperatorCS(Stencils::RestrictionFullWeight, Stencils::InterpolationTrilinear);
|
|---|
| 53 | lop->Register("LEVEL_OPERATOR");
|
|---|
| 54 |
|
|---|
| 55 | Smoother* smoother = new GaussSeidelRB();
|
|---|
| 56 | smoother->Register("SMOOTHER");
|
|---|
| 57 |
|
|---|
| 58 | #ifdef HAVE_LAPACK
|
|---|
| 59 | Solver* solver = new DSYSV<SolverSingular>();
|
|---|
| 60 | #else
|
|---|
| 61 | Solver* solver = new Givens<SolverSingular>();
|
|---|
| 62 | #endif
|
|---|
| 63 | solver->Register("SOLVER");
|
|---|
| 64 |
|
|---|
| 65 | Techniques::SetCorrectionSchemePeriodic(interface->MinLevel(), interface->MaxLevel(), 2);
|
|---|
| 66 |
|
|---|
| 67 | factory.RegisterObjectStorage("PRESMOOTHSTEPS", 3);
|
|---|
| 68 | factory.RegisterObjectStorage("POSTSMOOTHSTEPS", 3);
|
|---|
| 69 | factory.RegisterObjectStorage("PRECISION", 1e-10);
|
|---|
| 70 | factory.RegisterObjectStorage("MAX_ITERATION", 7);
|
|---|
| 71 |
|
|---|
| 72 | MG::IsInitialized();
|
|---|
| 73 | }
|
|---|
| 74 |
|
|---|
| 75 | ~LibraryPeriodicCSFixture()
|
|---|
| 76 | {
|
|---|
| 77 | MG::Destroy();
|
|---|
| 78 | }
|
|---|
| 79 | };
|
|---|
| 80 |
|
|---|
| 81 | BOOST_FIXTURE_TEST_CASE(LibraryPeriodicCSTest, LibraryPeriodicCSFixture)
|
|---|
| 82 | {
|
|---|
| 83 | MG::Solve();
|
|---|
| 84 |
|
|---|
| 85 | double res_init = MG::GetFactory().Get("INITIAL_RESIDUAL")->Cast< ObjectStorage<double> >()->Val();
|
|---|
| 86 | double res = MG::GetComm()->ComputeResidualNorm(*MG::GetSol(), *MG::GetRhs());
|
|---|
| 87 |
|
|---|
| 88 | BOOST_CHECK_SMALL(res/res_init, 1e-10);
|
|---|
| 89 | }
|
|---|