AdH Kraken 0.0.0
Next generation Adaptive Hydraulics
Loading...
Searching...
No Matches
stensor.h
1
2#ifndef H_STENSOR_
3#define H_STENSOR_
4
5/**************************************/
6/**************************************/
7typedef struct {
8 double xx, xy, xz, yy, yz, zz; /* the components of the tensor */
9} STENSOR;
10
11/**************************************/
12/**************************************/
13typedef struct{
14 double xx, xy, yy; /* the components of the tensor */
15} STENSOR2D;
16
17/**************************************/
18/**************************************/
19typedef struct{
20 double xx, xy, yx, yy; /* the components of the tensor */
22
23/**************************************/
24/**************************************/
25typedef struct{
26 double xx, xy, xz, yx, yy, yz, zx, zy, zz;
27} STENSOR3D;
28
29/*********************************************************/
30/* struct methods -------------------------------------- */
31
32void stensor_init(STENSOR *);
33void stensor2d_init(STENSOR2D *);
34void stensor3d_init(STENSOR3D *);
35double stensor3d_max(STENSOR3D tensor);
36void stensor2d_add(STENSOR2D *new_tensor, STENSOR2D d1, STENSOR2D d2);
37void stensor2d_add_replace(STENSOR2D *d1, STENSOR2D d2);
38void stensor2dai_init(STENSOR2DAI *);
39void stensor_copy(STENSOR *to, STENSOR from);
40void stensor2dai_printScreen(STENSOR2DAI t);
41
42#endif
Definition: stensor.h:19
Definition: stensor.h:13
Definition: stensor.h:25
Definition: stensor.h:7