FemElementStructs.h
Go to the documentation of this file.
1 // This file is a part of the OpenSurgSim project.
2 // Copyright 2015, SimQuest Solutions Inc.
3 //
4 // Licensed under the Apache License, Version 2.0 (the "License");
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 // http://www.apache.org/licenses/LICENSE-2.0
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 
16 #ifndef SURGSIM_PHYSICS_FEMELEMENTSTRUCTS_H
17 #define SURGSIM_PHYSICS_FEMELEMENTSTRUCTS_H
18 
19 namespace SurgSim
20 {
21 namespace Physics
22 {
23 namespace FemElementStructs
24 {
25 
30 {
31  RotationVectorData() : thetaX(0.0), thetaY(0.0), thetaZ(0.0)
32  {
33  }
34 
35  bool operator==(const RotationVectorData& rhs) const
36  {
37  return (thetaX == rhs.thetaX && thetaY == rhs.thetaY && thetaZ == rhs.thetaZ);
38  }
39 
40  double thetaX;
41  double thetaY;
42  double thetaZ;
43 };
44 
48 {
49  FemElementParameter() : youngModulus(0.0), poissonRatio(0.0), massDensity(0.0)
50  {
51  }
52 
54 
55  std::vector<size_t> nodeIds;
56  double youngModulus;
57  double poissonRatio;
58  double massDensity;
59 };
60 
63 {
64  FemElement1DParameter() : radius(0.0), enableShear(false)
65  {
66  }
67 
68  double radius;
70 };
71 
74 {
75  FemElement2DParameter() : thickness(0.0)
76  {
77  }
78 
79  double thickness;
80 };
81 
84 
85 } // namespace FemElementStructs
86 } // namespace Physics
87 } // namespace SurgSim
88 
89 #endif // SURGSIM_PHYSICS_FEMELEMENTSTRUCTS_H
Definition: CompoundShapeToGraphics.cpp:29
double poissonRatio
Definition: FemElementStructs.h:57
RotationVectorData is a structure containing the rotational dof per vertex The nature of the rotation...
Definition: FemElementStructs.h:29
FemElement2DParameter is a FemElementParameter structure specialized for 2D element.
Definition: FemElementStructs.h:73
FemElementParameter is a structure containing the parameters of an fem element following the Hooke&#39;s ...
Definition: FemElementStructs.h:47
double radius
Definition: FemElementStructs.h:68
double thickness
Definition: FemElementStructs.h:79
RotationVectorData()
Definition: FemElementStructs.h:31
virtual ~FemElementParameter()
Definition: FemElementStructs.h:53
FemElementParameter()
Definition: FemElementStructs.h:49
bool operator==(const RotationVectorData &rhs) const
Definition: FemElementStructs.h:35
double youngModulus
Definition: FemElementStructs.h:56
FemElement1DParameter is a FemElementParameter structure specialized for 1D element.
Definition: FemElementStructs.h:62
double massDensity
Definition: FemElementStructs.h:58
double thetaX
Definition: FemElementStructs.h:40
FemElement3DParameter is a FemElementParameter structure specialized for 3D element.
Definition: FemElementStructs.h:83
bool enableShear
Definition: FemElementStructs.h:69
std::vector< size_t > nodeIds
Definition: FemElementStructs.h:55
double thetaZ
Definition: FemElementStructs.h:42
double thetaY
Definition: FemElementStructs.h:41
FemElement1DParameter()
Definition: FemElementStructs.h:64
FemElement2DParameter()
Definition: FemElementStructs.h:75