| 1 | /*
|
|---|
| 2 | * dirichlet_cs_mpi.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 | #ifdef HAVE_MPI
|
|---|
| 16 | #include <mpi.h>
|
|---|
| 17 | #ifdef HAVE_MARMOT
|
|---|
| 18 | #include <enhancempicalls.h>
|
|---|
| 19 | #include <sourceinfompicalls.h>
|
|---|
| 20 | #endif
|
|---|
| 21 |
|
|---|
| 22 | #include "base/factory.hpp"
|
|---|
| 23 | #include "base/math.hpp"
|
|---|
| 24 | #include "base/vector.hpp"
|
|---|
| 25 | #include "comm/comm_mpi.cpp"
|
|---|
| 26 | #include "comm/domain_decomposition_mpi.hpp"
|
|---|
| 27 | #include "level/level_operator_cs.hpp"
|
|---|
| 28 | #include "level/level_operator.hpp"
|
|---|
| 29 | #include "samples/discretization_poisson_fd.hpp"
|
|---|
| 30 | #include "samples/stencils.hpp"
|
|---|
| 31 | #include "samples/techniques.hpp"
|
|---|
| 32 | #include "smoother/gsrb.hpp"
|
|---|
| 33 | #ifdef HAVE_LAPACK
|
|---|
| 34 | #include "solver/dgesv.hpp"
|
|---|
| 35 | #endif
|
|---|
| 36 | #include "solver/givens.hpp"
|
|---|
| 37 | #include "solver/solver_regular.hpp"
|
|---|
| 38 | #include "mg.hpp"
|
|---|
| 39 |
|
|---|
| 40 | #include "interface_sinus.hpp"
|
|---|
| 41 |
|
|---|
| 42 | using namespace VMG;
|
|---|
| 43 |
|
|---|
| 44 | const vmg_float sine_factor = static_cast<vmg_float>(2.0 * Math::pi);
|
|---|
| 45 |
|
|---|
| 46 | struct LibraryDirichletCSMPIFixture
|
|---|
| 47 | {
|
|---|
| 48 | LibraryDirichletCSMPIFixture()
|
|---|
| 49 | {
|
|---|
| 50 | Factory& factory = MG::GetFactory();
|
|---|
| 51 |
|
|---|
| 52 | Comm* comm = new CommMPI(Boundary(Dirichlet, Dirichlet, Dirichlet), new DomainDecompositionMPI());
|
|---|
| 53 | comm->Register("COMM");
|
|---|
| 54 |
|
|---|
| 55 | Interface* interface = new VMGInterfaces::InterfaceSinus(sine_factor, comm->BoundaryConditions(), 2, 6, 0.0, 1.0);
|
|---|
| 56 | MG::SetInterface(interface, comm);
|
|---|
| 57 |
|
|---|
| 58 | Discretization* discretization = new DiscretizationPoissonFD(2);
|
|---|
| 59 | discretization->Register("DISCRETIZATION");
|
|---|
| 60 |
|
|---|
| 61 | LevelOperator* lop = new LevelOperatorCS(Stencils::RestrictionFullWeight, Stencils::InterpolationTrilinear);
|
|---|
| 62 | lop->Register("LEVEL_OPERATOR");
|
|---|
| 63 |
|
|---|
| 64 | Smoother* smoother = new GaussSeidelRB();
|
|---|
| 65 | smoother->Register("SMOOTHER");
|
|---|
| 66 |
|
|---|
| 67 | #ifdef HAVE_LAPACK
|
|---|
| 68 | Solver* solver = new DGESV<SolverRegular>();
|
|---|
| 69 | #else
|
|---|
| 70 | Solver* solver = new Givens<SolverRegular>();
|
|---|
| 71 | #endif
|
|---|
| 72 | solver->Register("SOLVER");
|
|---|
| 73 |
|
|---|
| 74 | Techniques::SetCorrectionSchemeDirichlet(interface->MinLevel(), interface->MaxLevel(), 2);
|
|---|
| 75 |
|
|---|
| 76 | factory.RegisterObjectStorage("PRESMOOTHSTEPS", 3);
|
|---|
| 77 | factory.RegisterObjectStorage("POSTSMOOTHSTEPS", 3);
|
|---|
| 78 | factory.RegisterObjectStorage("PRECISION", 1e-10);
|
|---|
| 79 | factory.RegisterObjectStorage("MAX_ITERATION", 7);
|
|---|
| 80 |
|
|---|
| 81 | MG::IsInitialized();
|
|---|
| 82 |
|
|---|
| 83 | MG::PostInit();
|
|---|
| 84 | }
|
|---|
| 85 |
|
|---|
| 86 | ~LibraryDirichletCSMPIFixture()
|
|---|
| 87 | {
|
|---|
| 88 | MG::Destroy();
|
|---|
| 89 | }
|
|---|
| 90 | };
|
|---|
| 91 |
|
|---|
| 92 | BOOST_FIXTURE_TEST_CASE(LibraryDirichletCSMPITest, LibraryDirichletCSMPIFixture)
|
|---|
| 93 | {
|
|---|
| 94 | MG::Solve();
|
|---|
| 95 |
|
|---|
| 96 | double res_init = MG::GetFactory().Get("INITIAL_RESIDUAL")->Cast< ObjectStorage<double> >()->Val();
|
|---|
| 97 | double res = MG::GetComm()->ComputeResidualNorm(*MG::GetSol(), *MG::GetRhs());
|
|---|
| 98 |
|
|---|
| 99 | BOOST_CHECK_SMALL(res/res_init, 1e-10);
|
|---|
| 100 | }
|
|---|
| 101 |
|
|---|
| 102 | #endif /* HAVE_MPI */
|
|---|