Skip to content
Snippets Groups Projects
Commit d9ff403f authored by Felix Schindler's avatar Felix Schindler
Browse files

added DiscreteFucntional::Local::Codim0Integration

git-svn-id: https://dune.mathematik.uni-freiburg.de/svn/dune-fem-functionals/trunk@168 4028485c-44d9-4cde-a312-5a4635ee2db9
parent dac37372
No related branches found
No related tags found
No related merge requests found
/**
\file integration.hh
**/
#ifndef DUNE_FEM_FUNCTIONALS_DISCRETEFUNCTIONAL_LOCAL_INTEGRATION_HH
#define DUNE_FEM_FUNCTIONALS_DISCRETEFUNCTIONAL_LOCAL_INTEGRATION_HH
// dune fem includes
#include <dune/fem/quadrature/cachingquadrature.hh>
// dune-functionals includes
#include <dune/functionals/common/localvector.hh>
namespace Dune {
namespace Functionals {
namespace DiscreteFunctional {
namespace Local {
template <class LocalEvaluationImp>
class Codim0Integration
{
public:
typedef LocalEvaluationImp LocalEvaluationType;
typedef LocalEvaluationType FunctionSpaceType;
typedef typename FunctionSpaceType::RangeFieldType RangeFieldType;
typedef typename FunctionSpaceType::DomainType DomainType;
typedef Dune::Functionals::Common::LocalVector<RangeFieldType> LocalVectorType;
Codim0Integration(const LocalEvaluationType& localEvaluation)
: localEvaluation_(localEvaluation)
{
}
const LocalEvaluationType localEvaluation() const
{
return localEvaluation_;
}
template <class LocalTestBaseFunctionSetType>
void applyLocal(const LocalTestBaseFunctionSetType& localTestBaseFunctionSet, LocalVectorType& localVector) const
{
// some types
typedef typename LocalTestBaseFunctionSetType::DiscreteFunctionSpaceType DiscreteFunctionSpaceType;
typedef typename DiscreteFunctionSpaceType::GridPartType GridPartType;
typedef Dune::CachingQuadrature<GridPartType, 0> VolumeQuadratureType;
typedef typename LocalTestBaseFunctionSetType::LocalBaseFunctionType LocalTestBaseFunctionType;
// some stuff
const unsigned numberOfLocalTestDoFs = localTestBaseFunctionSet.numBaseFunctions();
const unsigned int quadratureOrder = 1 + localTestBaseFunctionSet.order();
const VolumeQuadratureType volumeQuadrature(localTestBaseFunctionSet.entity(), quadratureOrder);
const unsigned int numberOfQuadraturePoints = volumeQuadrature.nop();
// do loop over all local test DoFs
for (unsigned int j = 0; j < numberOfLocalTestDoFs; ++j) {
const LocalTestBaseFunctionType localTestBaseFunction_j = localTestBaseFunctionSet.baseFunction(j);
// do loop over all quadrature points
RangeFieldType functional_j(0.0);
for (unsigned int q = 0; q < numberOfQuadraturePoints; ++q) {
// local coordinate
const DomainType x = volumeQuadrature.point(q);
// integration factors
const double integrationFactor = localTestBaseFunctionSet.entity().geometry().integrationElement(x);
const double quadratureWeight = volumeQuadrature.weight(q);
// evaluate the local operation
const RangeFieldType localOperationEvalauted = localEvaluation_.evaluate(localTestBaseFunction_j, x);
// compute integral
functional_j += integrationFactor * quadratureWeight * localOperationEvalauted;
} // done loop over all quadrature points
// set local vector (the = is important, since we dont assume a clean vector)
localVector[j] = functional_j;
} // done loop over all local test DoFs
} // end method applyLocal
private:
const LocalEvaluationType& localEvaluation_;
}; // end class Codim0Integration
} // end namespace Local
} // end namespace DiscreteFunctional
} // end namespace Functionals
} // end namespace Dune
#endif // end DUNE_FEM_FUNCTIONALS_DISCRETEFUNCTIONAL_LOCAL_INTEGRATION_HH
...@@ -35,6 +35,7 @@ ...@@ -35,6 +35,7 @@
#include <dune/functionals/discretefunctionspace/subspace/linear.hh> #include <dune/functionals/discretefunctionspace/subspace/linear.hh>
#include <dune/functionals/discretefunctionspace/subspace/affine.hh> #include <dune/functionals/discretefunctionspace/subspace/affine.hh>
#include <dune/functionals/discreteoperator/local/integration.hh> #include <dune/functionals/discreteoperator/local/integration.hh>
#include <dune/functionals/discretefunctional/local/integration.hh>
#include <dune/functionals/container/factory.hh> #include <dune/functionals/container/factory.hh>
#include <dune/functionals/assembler/local/finiteelement.hh> #include <dune/functionals/assembler/local/finiteelement.hh>
#include <dune/functionals/assembler/generic.hh> #include <dune/functionals/assembler/generic.hh>
...@@ -278,13 +279,10 @@ int main(int argc, char** argv) ...@@ -278,13 +279,10 @@ int main(int argc, char** argv)
const LocalEllipticOperatorType localEllipticOperator(ellipticEvaluation); const LocalEllipticOperatorType localEllipticOperator(ellipticEvaluation);
typedef Dune::Functionals::DiscreteFunctional::Local::Codim0Integration<ProductEvaluationType>
LocalL2FunctionalType;
// FEMellipticOperatorType femEllipticOperator( ellipticIntegrator, discreteH1 ); const LocalL2FunctionalType localL2Functional(productEvaluation);
// typedef Functional::FiniteElementLOP< DiscreteH1Type, ProductIntegratorType >
// FEMrhsFunctionalType;
// FEMrhsFunctionalType femRhsFunctional( discreteH1, productIntegrator );
// matrix, rhs and solution storage // matrix, rhs and solution storage
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment