Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F122159884
Element.h
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Jul 16, 06:14
Size
1 KB
Mime Type
text/x-c
Expires
Fri, Jul 18, 06:14 (2 d)
Engine
blob
Format
Raw Data
Handle
27424648
Attached To
rGOOSEFEM GooseFEM
Element.h
View Options
/* =================================================================================================
(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
Log In to Comment