ITK
4.2.0
Insight Segmentation and Registration Toolkit
Main Page
Related Pages
Modules
Namespaces
Classes
Files
Examples
File List
File Members
ITK
Modules
Numerics
FEM
include
itkFEMMaterialLinearElasticity.h
Go to the documentation of this file.
1
/*=========================================================================
2
*
3
* Copyright Insight Software Consortium
4
*
5
* Licensed under the Apache License, Version 2.0 (the "License");
6
* you may not use this file except in compliance with the License.
7
* You may obtain a copy of the License at
8
*
9
* http://www.apache.org/licenses/LICENSE-2.0.txt
10
*
11
* Unless required by applicable law or agreed to in writing, software
12
* distributed under the License is distributed on an "AS IS" BASIS,
13
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
* See the License for the specific language governing permissions and
15
* limitations under the License.
16
*
17
*=========================================================================*/
18
19
#ifndef __itkFEMMaterialLinearElasticity_h
20
#define __itkFEMMaterialLinearElasticity_h
21
22
#include "
itkFEMMaterialBase.h
"
23
24
namespace
itk
25
{
26
namespace
fem
27
{
37
class
MaterialLinearElasticity
:
public
Material
38
{
39
public
:
40
42
typedef
MaterialLinearElasticity
Self
;
43
typedef
Material
Superclass
;
44
typedef
SmartPointer<Self>
Pointer
;
45
typedef
SmartPointer<const Self>
ConstPointer
;
46
48
itkSimpleNewMacro(
Self
);
49
51
itkTypeMacro(
MaterialLinearElasticity
,
Material
);
52
55
virtual::itk::LightObject::Pointer
CreateAnother
(
void
)
const
;
56
60
MaterialLinearElasticity
();
61
65
void
SetCrossSectionalArea
(
double
area);
66
70
double
GetCrossSectionalArea
()
const
;
71
75
void
SetYoungsModulus
(
double
modulus);
76
80
double
GetYoungsModulus
()
const
;
81
85
void
SetThickness
(
double
t);
86
90
double
GetThickness
()
const
;
91
95
void
SetMomentOfInertia
(
double
iner);
96
100
double
GetMomentOfInertia
()
const
;
101
105
void
SetPoissonsRatio
(
double
poi);
106
110
double
GetPoissonsRatio
()
const
;
111
115
void
SetDensityHeatProduct
(
double
dhp);
116
120
double
GetDensityHeatProduct
()
const
;
121
122
protected
:
123
124
virtual
void
PrintSelf
(std::ostream& os,
Indent
indent)
const
;
125
126
/* Data members of MaterialLinearElasticity class */
127
131
double
m_YoungModulus
;
132
136
double
m_CrossSectionalArea
;
//
137
141
double
m_MomentOfInertia
;
142
146
double
m_PoissonRatio
;
147
151
double
m_Thickness
;
152
153
/*
154
* ... we can add properties here as required without the influence on the already defined elements
155
*/
156
160
double
m_DensityHeatCapacity
;
161
};
162
163
}
164
}
// end namespace itk::fem
165
166
#endif // #ifndef __itkFEMMaterialLinearElasticity_h
167
Generated on Tue Jul 10 2012 23:25:09 for ITK by
1.8.1