Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90813343
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
Tue, Nov 5, 00:11
Size
1 KB
Mime Type
text/x-c
Expires
Thu, Nov 7, 00:11 (2 d)
Engine
blob
Format
Raw Data
Handle
22139241
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