ITK  4.6.0
Insight Segmentation and Registration Toolkit
itkFEMLoadBC.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 #ifndef __itkFEMLoadBC_h
19 #define __itkFEMLoadBC_h
20 
21 #include "itkFEMLoadBase.h"
22 
23 namespace itk
24 {
25 namespace fem
26 {
34 class LoadBC : public Load
35 {
36 public:
37 
39  typedef LoadBC Self;
40  typedef Load Superclass;
43 
45  itkSimpleNewMacro(Self);
46 
48  itkTypeMacro(LoadBC, Load);
49 
52  virtual::itk::LightObject::Pointer CreateAnother(void) const ITK_OVERRIDE;
53 
56  {
57  }
58 
60  void SetDegreeOfFreedom(int dof);
61 
63  int GetDegreeOfFreedom() const;
64 
66  void SetValue(const vnl_vector<Element::Float> val);
67 
69  vnl_vector<Element::Float> GetValue() const;
70 
71 protected:
72  virtual void PrintSelf(std::ostream& os, Indent indent) const ITK_OVERRIDE;
73 
77  unsigned int m_DegreeOfFreedom;
78 
87  vnl_vector<Element::Float> m_Value;
88 };
89 
90 }
91 } // end namespace itk::fem
92 
93 #endif // #ifndef __itkFEMLoadBC_h
Light weight base class for most itk classes.
virtual void PrintSelf(std::ostream &os, Indent indent) const ITK_OVERRIDE
int GetDegreeOfFreedom() const
vnl_vector< Element::Float > GetValue() const
void SetDegreeOfFreedom(int dof)
Generic essential (Dirichlet) boundary conditions.
Definition: itkFEMLoadBC.h:34
virtual ::itk::LightObject::Pointer CreateAnother(void) const ITK_OVERRIDE
unsigned int m_DegreeOfFreedom
Definition: itkFEMLoadBC.h:77
vnl_vector< Element::Float > m_Value
Definition: itkFEMLoadBC.h:87
Control indentation during Print() invocation.
Definition: itkIndent.h:49
General abstract load base class.
SmartPointer< const Self > ConstPointer
Definition: itkFEMLoadBC.h:42
void SetValue(const vnl_vector< Element::Float > val)
SmartPointer< Self > Pointer
Definition: itkFEMLoadBC.h:41