Page MenuHomec4science

Element.h
No OneTemporary

File Metadata

Created
Sat, May 11, 15:38

Element.h

/* =================================================================================================
(c - GPLv3) T.W.J. de Geus (Tom) | tom@geus.me | www.geus.me | github.com/tdegeus/GooseFEM
================================================================================================= */
#ifndef GOOSEFEM_ELEMENT_H
#define GOOSEFEM_ELEMENT_H
// -------------------------------------------------------------------------------------------------
#include "GooseFEM.h"
// ======================================= GooseFEM::Element =======================================
namespace GooseFEM {
namespace Element {
// -------------------------------------------------------------------------------------------------
// convert nodal vector [nnode, ndim] to nodal vector stored per element [nelem, nne, ndim]
inline ArrD asElementVector(const MatS &conn, const MatD &nodevec);
// assemble nodal vector stored per element [nelem, nne, ndim] to nodal vector [nnode, ndim]
inline MatD assembleNodeVector(const MatS &conn, const ArrD &elemvec);
// -------------------------------------------------------------------------------------------------
}} // namespace ...
// =================================================================================================
#endif

Event Timeline