opensurgsim
FemElementStructs.h
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 
53  virtual ~FemElementParameter(){}
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;
69  bool enableShear;
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
Wraps glewInit() to separate the glew opengl definitions from the osg opengl definitions only imgui n...
Definition: AddRandomSphereBehavior.cpp:36
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
FemElement1DParameter is a FemElementParameter structure specialized for 1D element.
Definition: FemElementStructs.h:62
FemElement3DParameter is a FemElementParameter structure specialized for 3D element.
Definition: FemElementStructs.h:83