/*
* vmg - a versatile multigrid solver
* Copyright (C) 2012 Institute for Numerical Simulation, University of Bonn
*
* vmg is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* vmg 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
/*
* force_sinus.cpp
*
* Created on: 13.06.2012
* Author: Julian Iseringhausen
*/
#ifdef HAVE_CONFIG_H
#include
#endif
#include
#include
#ifdef HAVE_MPI
#include
#ifdef HAVE_MARMOT
#include
#include
#endif
#include
#include
#include "base/math.hpp"
#include "base/vector.hpp"
#include "comm/comm_mpi.hpp"
#include "comm/domain_decomposition_mpi.hpp"
#include "cycles/cycle_cs_periodic.hpp"
#include "level/level_operator_cs.hpp"
#include "level/level_operator.hpp"
#include "discretization/discretization_poisson_fd.hpp"
#include "smoother/gsrb.hpp"
#include "solver/givens.hpp"
#include "solver/solver_singular.hpp"
#include "units/particle/interpolation.hpp"
#include "units/particle/particle.hpp"
#include "mg.hpp"
#include "interface_sinus.hpp"
using namespace VMG;
const vmg_float sine_factor = static_cast(2.0 * Math::pi);
struct LibraryForceSinusFixture
{
LibraryForceSinusFixture()
{
const Boundary boundary(Periodic, Periodic, Periodic);
new CommMPI(boundary, new DomainDecompositionMPI());
new VMGInterfaces::InterfaceSinus(sine_factor, boundary, 2, 5, 0.0, 1.0);
new DiscretizationPoissonFD(2);
new LevelOperatorCS(Stencils::RestrictionFullWeight, Stencils::InterpolationTrilinear);
new GaussSeidelRB();
new Givens();
new CycleCSPeriodic(2);
new ObjectStorage("PRESMOOTHSTEPS", 3);
new ObjectStorage("POSTSMOOTHSTEPS", 3);
new ObjectStorage("MAX_ITERATION", 7);
new ObjectStorage("PRECISION", 1e-10);
MG::PostInit();
MG::IsInitialized();
}
~LibraryForceSinusFixture()
{
MG::Destroy();
}
};
BOOST_FIXTURE_TEST_CASE(LibraryForceSinusTest, LibraryForceSinusFixture)
{
Particle::Interpolation ip(5);
Particle::Particle p;
Vector pos;
MG::Solve();
const Grid& sol = (*MG::GetSol())(MG::GetSol()->MaxLevel());
for (pos.X()=0.25; pos.X()<=0.75; pos.X()+=0.01)
for (pos.Y()=0.25; pos.Y()<=0.75; pos.Y()+=0.01)
for (pos.Z()=0.25; pos.Z()<=0.75; pos.Z()+=0.01) {
p.Pos() = pos;
const Index index = (p.Pos()-sol.Extent().Begin())/sol.Extent().MeshWidth()-sol.Global().LocalBegin()+sol.Local().Begin();
ip.ComputeCoefficients(sol, index);
ip.Evaluate(p);
Vector ref = Vector(std::cos(sine_factor*p.Pos().X())*std::sin(sine_factor*p.Pos().Y())*std::sin(sine_factor*p.Pos().Z()),
std::sin(sine_factor*p.Pos().X())*std::cos(sine_factor*p.Pos().Y())*std::sin(sine_factor*p.Pos().Z()),
std::sin(sine_factor*p.Pos().X())*std::sin(sine_factor*p.Pos().Y())*std::cos(sine_factor*p.Pos().Z()));
ref *= -1.0 * sine_factor;
//for (int i=0; i<3; ++i)
//BOOST_CHECK_SMALL(p.Field()[i] - ref[i], vmg_float(0.01));
}
}
#endif /* HAVE_MPI */