From 0b2fa7306efb7941984874c9e3ba4d8ef0a475d8 Mon Sep 17 00:00:00 2001 From: Oliver Sander <sander@igpm.rwth-aachen.de> Date: Mon, 27 Oct 2014 16:22:43 +0000 Subject: [PATCH] St.Venant-Kirchhoff energy for a geometrically nonlinear material [[Imported from SVN: r9941]] --- dune/gfe/stvenantkirchhoffenergy.hh | 205 ++++++++++++++++++++++++++++ 1 file changed, 205 insertions(+) create mode 100644 dune/gfe/stvenantkirchhoffenergy.hh diff --git a/dune/gfe/stvenantkirchhoffenergy.hh b/dune/gfe/stvenantkirchhoffenergy.hh new file mode 100644 index 00000000..a3292313 --- /dev/null +++ b/dune/gfe/stvenantkirchhoffenergy.hh @@ -0,0 +1,205 @@ +#ifndef DUNE_GFE_STVENANTKIRCHHOFFENERGY_HH +#define DUNE_GFE_STVENANTKIRCHHOFFENERGY_HH + +#include <dune/common/fmatrix.hh> +#include <dune/geometry/quadraturerules.hh> + +#include <dune/fufem/functions/virtualgridfunction.hh> +#include <dune/fufem/boundarypatch.hh> + +#include <dune/gfe/localgeodesicfestiffness.hh> +#include <dune/gfe/localfestiffness.hh> +#include <dune/gfe/localgeodesicfefunction.hh> +#include <dune/gfe/realtuple.hh> +#include <dune/gfe/eigenvalues.hh> + +namespace Dune { + +template<class GridView, class LocalFiniteElement, class field_type=double> +class StVenantKirchhoffEnergy + : public LocalFEStiffness<GridView,LocalFiniteElement,std::vector<Dune::FieldVector<field_type,GridView::dimension> > > +{ + // grid types + typedef typename GridView::Grid::ctype DT; + typedef typename GridView::template Codim<0>::Entity Entity; + + // some other sizes + enum {gridDim=GridView::dimension}; + enum {dim=GridView::dimension}; + +public: + + /** \brief Constructor with a set of material parameters + * \param parameters The material parameters + */ + StVenantKirchhoffEnergy(const Dune::ParameterTree& parameters, + const BoundaryPatch<GridView>* neumannBoundary, + const Dune::VirtualFunction<Dune::FieldVector<double,gridDim>, Dune::FieldVector<double,3> >* neumannFunction) + : neumannBoundary_(neumannBoundary), + neumannFunction_(neumannFunction) + { + // Lame constants + mu_ = parameters.template get<double>("mu"); + lambda_ = parameters.template get<double>("lambda"); + } + + /** \brief Assemble the energy for a single element */ + field_type energy (const Entity& e, + const LocalFiniteElement& localFiniteElement, + const std::vector<Dune::FieldVector<field_type,gridDim> >& localConfiguration, + const std::vector<Dune::FieldVector<double,gridDim> >& localPointLoads) const; + + /** \brief Lame constants */ + double mu_, lambda_; + + /** \brief The Neumann boundary */ + const BoundaryPatch<GridView>* neumannBoundary_; + + /** \brief The function implementing the Neumann data */ + const Dune::VirtualFunction<Dune::FieldVector<double,gridDim>, Dune::FieldVector<double,3> >* neumannFunction_; +}; + +template <class GridView, class LocalFiniteElement, class field_type> +field_type +StVenantKirchhoffEnergy<GridView,LocalFiniteElement,field_type>:: +energy(const Entity& element, + const LocalFiniteElement& localFiniteElement, + const std::vector<Dune::FieldVector<field_type,gridDim> >& localConfiguration, + const std::vector<Dune::FieldVector<double,gridDim> >& localPointLoads) const +{ + assert(element.type() == localFiniteElement.type()); + typedef typename GridView::template Codim<0>::Entity::Geometry Geometry; + + field_type energy = 0; + + // store gradients of shape functions and base functions + std::vector<Dune::FieldMatrix<DT,1,gridDim> > referenceGradients(localFiniteElement.localBasis().size()); + std::vector<Dune::FieldVector<DT,gridDim> > gradients(localFiniteElement.localBasis().size()); + + int quadOrder = (element.type().isSimplex()) ? localFiniteElement.localBasis().order() + : localFiniteElement.localBasis().order() * gridDim; + + const Dune::QuadratureRule<DT, gridDim>& quad + = Dune::QuadratureRules<DT, gridDim>::rule(element.type(), quadOrder); + + for (size_t pt=0; pt<quad.size(); pt++) { + + // Local position of the quadrature point + const Dune::FieldVector<DT,gridDim>& quadPos = quad[pt].position(); + + const DT integrationElement = element.geometry().integrationElement(quadPos); + + const typename Geometry::JacobianInverseTransposed& jacobianInverseTransposed = element.geometry().jacobianInverseTransposed(quadPos); + + DT weight = quad[pt].weight() * integrationElement; + + // get gradients of shape functions + localFiniteElement.localBasis().evaluateJacobian(quadPos, referenceGradients); + + // compute gradients of base functions + for (size_t i=0; i<gradients.size(); ++i) { + + // transform gradients + jacobianInverseTransposed.mv(referenceGradients[i][0], gradients[i]); + + } + + Dune::FieldMatrix<field_type,gridDim,gridDim> derivative(0); + for (size_t i=0; i<gradients.size(); i++) + for (int j=0; j<gridDim; j++) + derivative[j].axpy(localConfiguration[i][j], gradients[i]); + + ///////////////////////////////////////////////////////// + // compute strain E = 1/2 *( F^T F - I) + ///////////////////////////////////////////////////////// + + Dune::FieldMatrix<field_type,gridDim,gridDim> FTF(0); + for (int i=0; i<gridDim; i++) + for (int j=0; j<gridDim; j++) + for (int k=0; k<gridDim; k++) + FTF[i][j] += derivative[k][i] * derivative[k][j]; + + Dune::FieldMatrix<field_type,dim,dim> E = FTF; + for (int i=0; i<dim; i++) + E[i][i] -= 1.0; + E *= 0.5; + + ///////////////////////////////////////////////////////// + // Compute energy + ///////////////////////////////////////////////////////// + + field_type trE = field_type(0); + for (int i=0; i<dim; i++) + trE += E[i][i]; + + // TODO Wasteful, we only need the trace, not the full product + Dune::FieldMatrix<field_type,dim,dim> ESquared = E*E; + + field_type trESquared = field_type(0); + for (int i=0; i<dim; i++) + trESquared += ESquared[i][i]; + + energy += weight * mu_ * trESquared + weight * 0.5 * lambda_ * trE * trE; + + } + + ////////////////////////////////////////////////////////////////////////////// + // Assemble boundary contributions + ////////////////////////////////////////////////////////////////////////////// + + for (size_t i=0; i<localPointLoads.size(); i++) + for (size_t j=0; j<dim; j++) + energy -= localConfiguration[i][j] * localPointLoads[i][j]; + + if (not neumannFunction_) + return energy; + + for (typename Entity::LeafIntersectionIterator it = element.ileafbegin(); it != element.ileafend(); ++it) { + + if (not neumannBoundary_ or not neumannBoundary_->contains(*it)) + continue; + + const Dune::QuadratureRule<DT, gridDim-1>& quad + = Dune::QuadratureRules<DT, gridDim-1>::rule(it->type(), quadOrder); + + for (size_t pt=0; pt<quad.size(); pt++) { + + // Local position of the quadrature point + const Dune::FieldVector<DT,gridDim>& quadPos = it->geometryInInside().global(quad[pt].position()); + + const DT integrationElement = it->geometry().integrationElement(quad[pt].position()); + + // The value of the local function + //RealTuple<field_type,dim> value = localGeodesicFEFunction.evaluate(quadPos); + // get gradients of shape functions + std::vector<Dune::FieldVector<DT,1> > shapeFunctionValues; + localFiniteElement.localBasis().evaluateFunction(quadPos, shapeFunctionValues); + Dune::FieldVector<field_type,dim> value(0); + for (int i=0; i<localFiniteElement.size(); i++) + for (int j=0; j<dim; j++) + value[j] += shapeFunctionValues[i] * localConfiguration[i][j]; + + // Value of the Neumann data at the current position + Dune::FieldVector<double,3> neumannValue; + + if (dynamic_cast<const VirtualGridViewFunction<GridView,Dune::FieldVector<double,3> >*>(neumannFunction_)) + dynamic_cast<const VirtualGridViewFunction<GridView,Dune::FieldVector<double,3> >*>(neumannFunction_)->evaluateLocal(element, quadPos, neumannValue); + else + neumannFunction_->evaluate(it->geometry().global(quad[pt].position()), neumannValue); + + // Only translational dofs are affected by the Neumann force + for (size_t i=0; i<neumannValue.size(); i++) + energy += (neumannValue[i] * value[i]) * quad[pt].weight() * integrationElement; + + } + + } + + return energy; +} + +} // namespace Dune + +#endif //#ifndef DUNE_GFE_STVENANTKIRCHHOFFENERGY_HH + + -- GitLab