PhysicsBasedAnimationToolkit 0.0.10
Cross-platform C++20 library of algorithms and data structures commonly used in computer graphics research on physically-based simulation.
Loading...
Searching...
No Matches
Fem.h
Go to the documentation of this file.
1
9
10#ifndef PBAT_FEM_FEM_H
11#define PBAT_FEM_FEM_H
12
17namespace pbat::fem {
18} // namespace pbat::fem
19
20#include "Concepts.h"
21#include "DeformationGradient.h"
22#include "Gradient.h"
23#include "Hexahedron.h"
25#include "Jacobian.h"
26#include "LaplacianMatrix.h"
27#include "Line.h"
28#include "LoadVector.h"
29#include "MassMatrix.h"
30#include "Mesh.h"
31#include "MeshQuadrature.h"
32#include "QuadratureRules.h"
33#include "Quadrilateral.h"
34#include "ShapeFunctions.h"
35#include "Tetrahedron.h"
36#include "Triangle.h"
37
38#endif // PBAT_FEM_FEM_H
Functions to compute deformation gradient and its derivatives.
FEM gradient operator.
Hexahedron finite element.
Hyper elastic potential energy.
Functions to compute jacobians, their determinants, domain quadrature weights and mapping domain to r...
Line finite element.
Functions to compute load vectors for FEM elements.
Utility functions computing common mesh quadrature quantities.
Quadrilateral finite element.
FEM shape functions and gradients.
Tetrahedron finite element.
Triangle finite element.
Finite element mesh API and implementation.
Finite Element Method (FEM)
Definition Concepts.h:19