FEDEM Solver  R8.0
Source code of the dynamics solver
FFaAlgebra.H
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: 2023 SAP SE
2 //
3 // SPDX-License-Identifier: Apache-2.0
4 //
5 // This file is part of FEDEM - https://openfedem.org
7 
8 #ifndef FFA_ALGEBRA_H
9 #define FFA_ALGEBRA_H
10 
11 class FaVec3;
12 class FaMat33;
13 
14 
19 namespace FFaAlgebra
20 {
21  void eccTransform6(double mat[6][6], const FaVec3& X);
22  bool congruenceTransform(double** mat, const FaMat33& T, int N, int node = 0);
23 }
24 
25 #endif
Definition: FFaMat33.H:15
Class for point vectors in 3D space.
Definition: FFaVec3.H:40
Namespace with matrix-vector function used by FE file parsers, etc.
Definition: FFaAlgebra.H:20
void eccTransform6(double mat[6][6], const FaVec3 &X)
Definition: FFaAlgebra.C:16
bool congruenceTransform(double **mat, const FaMat33 &T, int N, int node=0)
Definition: FFaAlgebra.C:49