Page MenuHomec4science

ElementQuad4Planar.h
No OneTemporary

File Metadata

Created
Thu, Jun 20, 12:35

ElementQuad4Planar.h

/**
Quadrature for 4-noded quadrilateral element in 2d (GooseFEM::Mesh::ElementType::Quad4),
in a Cartesian coordinate system.
The different with ElementQuad4.h is that here the tensors live in 3d and are assumed plane strain.
\file ElementQuad4Planar.h
\copyright Copyright 2017. Tom de Geus. All rights reserved.
\license This project is released under the GNU Public License (GPLv3).
*/
#ifndef GOOSEFEM_ELEMENTQUAD4PLANAR_H
#define GOOSEFEM_ELEMENTQUAD4PLANAR_H
#include "config.h"
namespace GooseFEM {
namespace Element {
namespace Quad4 {
/**
Interpolation and quadrature.
Similar to Element::Quad4::Quadrature with the only different that quadrature point tensors
are 3d ("plane strain") while the mesh is 2d.
Fixed dimensions:
- ``ndim = 2``: number of dimensions.
- ``tdim = 3``: number of dimensions or tensor.
- ``nne = 4``: number of nodes per element.
Naming convention:
- ``elemmat``: matrices stored per element, [#nelem, #nne * #ndim, #nne * #ndim]
- ``elemvec``: nodal vectors stored per element, [#nelem, #nne, #ndim]
- ``qtensor``: integration point tensor, [#nelem, #nip, #tdim, #tdim]
- ``qscalar``: integration point scalar, [#nelem, #nip]
*/
class QuadraturePlanar : public QuadratureBaseCartesian<QuadraturePlanar> {
public:
QuadraturePlanar() = default;
/**
Constructor: use default Gauss integration.
The following is pre-computed during construction:
- the shape functions,
- the shape function gradients (in local and global) coordinates,
- the integration points volumes.
They can be reused without any cost.
They only have to be recomputed when the nodal position changes
(note that they are assumed to be constant under a small-strain assumption).
In that case use update_x() to update the nodal positions and
to recompute the above listed quantities.
\param x nodal coordinates (``elemvec``).
\param thick out-of-plane thickness (incorporated in the element volume).
*/
template <class T>
QuadraturePlanar(const T& x, double thick = 1.0);
/**
Constructor with custom integration.
The following is pre-computed during construction:
- the shape functions,
- the shape function gradients (in local and global) coordinates,
- the integration points volumes.
They can be reused without any cost.
They only have to be recomputed when the nodal position changes
(note that they are assumed to be constant under a small-strain assumption).
In that case use update_x() to update the nodal positions and
to recompute the above listed quantities.
\param x nodal coordinates (``elemvec``).
\param xi Integration point coordinates (local coordinates) [#nip].
\param w Integration point weights [#nip].
\param thick out-of-plane thickness (incorporated in the element volume).
*/
template <class T, class X, class W>
QuadraturePlanar(const T& x, const X& xi, const W& w, double thick = 1.0);
private:
friend QuadratureBase<QuadraturePlanar>;
friend QuadratureBaseCartesian<QuadraturePlanar>;
template <class T, class R>
void gradN_vector_impl(const T& elemvec, R& qtensor) const;
template <class T, class R>
void gradN_vector_T_impl(const T& elemvec, R& qtensor) const;
template <class T, class R>
void symGradN_vector_impl(const T& elemvec, R& qtensor) const;
template <class T, class R>
void int_N_scalar_NT_dV_impl(const T& qscalar, R& elemmat) const;
template <class T, class R>
void int_gradN_dot_tensor2_dV_impl(const T& qtensor, R& elemvec) const;
void compute_dN_impl();
constexpr static size_t s_nne = 4; ///< Number of nodes per element.
constexpr static size_t s_ndim = 2; ///< Number of dimensions for nodal vectors.
constexpr static size_t s_tdim = 3; ///< Dynamic alias of s_tdim (remove in C++17)
size_t m_tdim = 3; ///< Number of dimensions for tensors.
size_t m_nelem; ///< Number of elements.
size_t m_nip; ///< Number of integration points per element.
xt::xtensor<double, 3> m_x; ///< nodal positions stored per element [#nelem, #nne, #ndim]
xt::xtensor<double, 1> m_w; ///< weight of each integration point [nip]
xt::xtensor<double, 2> m_xi; ///< local coordinate of each integration point [#nip, #ndim]
xt::xtensor<double, 2> m_N; ///< shape functions [#nip, #nne]
xt::xtensor<double, 3> m_dNxi; ///< shape function grad. wrt local coor. [#nip, #nne, #ndim]
xt::xtensor<double, 4> m_dNx; ///< shape function grad. wrt global coor. [#nelem, #nip, #nne, #ndim]
xt::xtensor<double, 2> m_vol; ///< integration point volume [#nelem, #nip]
double m_thick; ///< out-of-plane thickness
};
} // namespace Quad4
} // namespace Element
} // namespace GooseFEM
#include "ElementQuad4Planar.hpp"
#endif

Event Timeline