Refactoring itk::FEM framework - V4

From KitwarePublic
Jump to navigationJump to search

This page outlines the proposed changes to the itk::FEM framework. A number of these changes will break backwards compatibility.

Submission Of Code

http://review.source.kitware.com/#change,1993


Authors

The proposed changes for the itk::FEM framework are being proposed by the University of Iowa. This group is made up of investigators from the Departments of Radiology, Biomedical Engineering, and Psychiatry. Questions and comments regarding these changes should be sent to

  • Vincent Magnotta (vincent-magnotta -at- uiowa.edu) - Radiology

Other team members include

Changes to the FEM Framework Classes

itk::fem::FEMLightObject

This class has been updated to remove public access to the class variables. All fem classes derive from this class. This class was also converted to support smart pointers. Support for the old method where the pointers were not smart pointers has been removed. The ITK framework should now behave similar to the rest of ITK in regards to object pointers. Public access to class member variables has been eliminated in this and all derived classes. The use should now use public membership functions to get or set the value of internal class member variables. These are major changes to the class are outlined here:

  • Moved the following class variables from public to protected:
    • GN - This variable was renamed to m_GlobalNumber
  • The following member functions were added to support setting the global number for fem objects
    • void SetGlobalNumber(int)
    • int GetGlobalNumber()

In addition, we have removed all of the graphics capabilities from the fem classes. In addition, I/O was removed from the classes as well. The user must now use the Spatial Objects to support I/O for FEM.

itk::FEMObject

Currently the itk::fem framework offers a complicated interface for specifying mesh to be used for analysis. We will create a new ITK object called itk::FEMObject which will define the entire FE model. The itk::FEMObject will inherit from itk::DataObject. This object will allow the user to completely specify the Nodes, Elements, Loads, and Materials for the problem. This decision was based on the decision to make a parallel structure to itk::Mesh without a complete refactoring of the mesh data structure. This also removes the specification of the FE simulation from the solver.

In order to support input/output, we have decided to use SpatialObjects. To support the new FEMObject, a new FEMSpatialObject was created. This also required that additions be added to the metaIO library to support this new spatial object type. The minor disadvantage of this implementation is that new element, load, and material types will require additions in multiple locations. We have decided to use the same FEM model specification that was used previously, but it is now encoded in a spatial object.


Migration Guide

The itk::fem::FEMObject was created to provide support for a first class object in ITK that will define the finite element problem being used for analysis. This used to be defined only in the itk::fem::Solver. All support for file I/O was removed from this class. The user would now define a FEMObject object and use this an input into the solver. Here is an outline on how to define a new problem.

<source lang="cpp">

 itk::fem::FEMObject::Pointer fem = itk::fem::FEMObject::New();
 .
 .
 .
 itk::fem::Solver::Pointer solver = itk::fem::Solver::New();
 solver->SetInput( fem );
 solver->Update( );
 
 itk::fem::FEMObject::Pointer result = solver->GetOutput();

</source>


The FEMObject has interfaces to define the nodes, elements, materials, and loads used to define the finite element problem. Here are the public member functions used to manipulate the various portions of the FEM problem.

  • Loads:
    1. AddNextLoad() - Add another load to the FEM problem. This will be added as the last load in the load container
    2. InsertLoad() - Add another load at the specified position in the load container
    3. GetNumberOfLoads() - Get number of loads in the FEM problem
    4. GetLoadContainer() - Get the entire load container
    5. GetLoadWithGlobalNumber() - Get the load with the specified global number. This is independent of the order in the load container, and is defined by the user when defining the FEM problem.
    6. GetLoad() - Get the load at the specified index in the load container.

itk::fem::Node

This class is defined in itkFEMElementBase.h and defines the degree of freedom and coordinate for the node. A node is essentially a point in space.

  • Public Member Functions:
    • VectorType & GetCoordinates(void) - get the spatial coordinates for the node
    • void SetCoordinates(const VectorType & coords) - Set the spatial coordinates of the node
    • DegreeOfFreedomIDType GetDegreeOfFreedom(unsigned int i) - Get the degree of freedom for the spatial coordinate (x,y,z)
    • void SetDegreeOfFreedom(unsigned int i, DegreeOfFreedomIDType dof) - Set the degree of freedom for the spatial coordinate
    • void ClearDegreesOfFreedom(void) - Remove all of the degrees of freedom


itk::fem::Element

This is the base class and specific element types are defined below. This class did not change from its implementation in previous versions of ITK. The following changes were made to each of the specific element types.

  1. The following variables have been moved from public to protected:
    • mat - This variable is now called m_mat
  2. The following variables have been moved from public to protected:
    • Material::ConstPointer GetMaterial(void) - Get the material property used for the element
    • void SetMaterial(Material::ConstPointer mat_) - Set the material property for the element
  3. The following public membership functions have been removed:
    • void Read(std::istream &, void *info)
    • void Write(std::ostream & f)


The specific element types available are defined below:

  1. Element2DC1Beam
  2. Element2DC0LinearQuadrilateralStress
  3. Element2DC0LinearQuadrilateralStrain
  4. Element2DC0LinearQuadrilateralMembrane
  5. Element2DC0LinearTriangularStress
  6. Element2DC0LinearTriangularStrain
  7. Element2DC0LinearTriangularMembrane
  8. Element2DC0QuadraticTriangularStress
  9. Element2DC0QuadraticTriangularStrain
  10. Element3DC0LinearHexahedronMembrane
  11. Element3DC0LinearHexahedronStrain
  12. Element3DC0LinearTetrahedronMembrane
  13. Element3DC0LinearTetrahedronStrain
  14. Element3DC0LinearTriangularLaplaceBeltrami
  15. Element3DC0LinearTriangularMembrane

itk::fem::MaterialLinearElasticity

MaterialLinearElasticity is the only material type that currently exists in ITK. Several modifications were made to this class during the ITKv4 refactoring.

  1. Move the following class variables were moved from public to protected signatures:
    • A - renamed to m_CrossSectionalArea
    • E - renamed m_YoungModulus
    • h - renamed m_Thickness
    • I - renamed m_MomentOfInertia
    • nu - renamed m_PoissonRatio
    • RhoC - renamed m_DensityHeatCapacity
  2. Add the following public class member functions to get/set the class variables.
    • void SetCrossSectionalArea(double) – Set the cross sectional area
    • void SetYoungsModulus(double) – Set the Youngs Modulus
    • void SetThickness(double) – Set the cross sectional thickness
    • void SetMomentOfInertia(double) – Set the Moment of Inertia
    • void SetPoissonsRatio(double) – Set the Poisson’s ratio
    • void SetDensityHeatProduct(double) – Set the Density - Heat Capacity product
    • double GetCrossSectionalArea() – Get the cross sectional area
    • double GetYoungsModulus() – Get the Youngs Modulus
    • double GetThickness() – Get the cross sectional thickness
    • double GetMomentOfInertia() – Get the Moment of Inertia
    • double GetPoissonsRatio() – Get the Poisson’s ratio
    • double GetDensityHeatProduct() – Get the Density - Heat Capacity product


itk::fem::Load

This is the load base class for all specific implementations used in the itk::fem framework.


itk::fem::LoadBC

  1. The following class variables were from public to protected:
    • m_dof - renamed to m_DegreeOfFreedom
    • m_element - renamed to m_Element
    • m_value - renamed to m_Value
  2. The following class variable was removed
    • CLID
  3. The following class functions were added, allowing the user to get and set the class variables:
    • void SetDegreeOfFreedom(unsigned int dof) – Set the degree of freedom for the local element for which the boundary condition is being applied.
    • void SetElement(Element::ConstPointer element) – Set the element for which the boundary condition is being applied.
    • void SetValue(vnl_vector< Element::Float > value) – Set the boundary condition using a vector representation. This can be used to restrict motion of an element in a particular direction.
    • unsigned int GetDegreeOfFreedom() – Returns the local degree of freedom for the element on which the boundary condition is being applied.
    • Element::ConstPointer GetElement() – Returns the element on which the boundary condition is being applied.
    • vnl_vector< Element::Float > GetValue() – Returns the assigned boundary condition.

itk::fem::LoadBCMFC

  1. The following class variables were from public to protected:
    • Index - renamed to m_Index
    • lhs - renamed to m_LeftHandSide
    • rhs - renamed to m_RightHandSide
  2. Add class methods to get and set the class variables.
    • void SetIndex(int) – Set the index variable for the multi freedom displacement constraint. This is used internally by the itk::Fem::Solver.
    • void AddLeftHandSideTerm(LoadBCMFC::MFCTerm) – Add terms to the right hand side of the multi freedom displacement constraint. Used to replace loadBCMFC.lhs.push_back().
    • void AddRightHandSideTerm(vnl_vector< Element::Float >) – Set the right hand side of the linear equation that defines the constraints. Replaces loadBCMFC.rhs = a;
    • int GetIndex – Get the index variable for the multi freedom displacement constraint.
    • int GetNumberOfLeftHandSideTerms() – Returns the number of terms used to define the left hand side of the multi freedom displacement constraint.
    • itk::LoadBFMC GetLeftHandSideTerm(int index) – Returns the specified left hand side term.
    • int GetNumberOfRightHandSideTerms()– Returns the number of terms used to define the left hand side of the multi freedom displacement constraint.
    • Element::Float GetRightHandSideTerm(int index) – Returns the specified right hand side term.
    • std::vector< MFCTerm >& GetLeftHandSideArray() - Get the left hand side of the FEM system
    • vnl_vector< Element::Float >& GetRightHandSideArray() - Get the right hand side of the FEM system

itk::fem::LoadEdge

  1. The following member variables were moved from public to protected signatures:
    • m_Edge
    • m_Force
  2. The following public membership functions are now provided to get/set class variables
    • void SetEdge(int) – Set the edge to apply the desired force.
    • void SetForce(vnl_matrix< Float >) – Set the force to be applied to an edge.
    • int GetEdge() – Get the edge for the applied force.
    • vnl_matrix< Float > GetForce() – Get the force applied.
    • void ApplyLoad(Element::ConstPointer element, Element::VectorType & Fe) - Apply the load to the elements on which it is applied.

itk::fem::LoadGravConst

  1. The following member variables were moved from public to protected signatures:
    • Fg_value - renamed m_GravityForce
  2. The following public membership functions are now provided to get/set class variables:
    • void SetForce(vnl_vector< Float >) – Set the constant force vector that exists for every point in space.
    • vnl_vector< Float > GetForce() – Return the constant force vector that exists for every point in space.
    • vnl_vector< Float > GetGravitationalForceAtPoint(vnl_vector< Float > ) - Return the force at the specified location. The same value is returned at every point.
    • void ApplyLoad(Element::ConstPointer element, Element::VectorType & Fe) - Apply the load to the specified element.

itk::fem::LoadLandmark

  1. The following member variables were moved from public to protected signatures:
    • eta - renamed to m_Eta
    • m_force - renamed to m_Force
    • m_pt - renamed to m_Point
    • m_Solution
    • m_Source
    • m_Target
  2. The following public membership functions are now provided to get/set class variables:
    • void SetEta(double) – Set the square root of the variance.
    • double GetEta(double) – Get the square root of the variance.
    • void ApplyLoad(Element::ConstPointer element, Element::VectorType & Fe) - Apply load the specified element
    • itk::LightObject::Pointer CreateAnother(void) - Create a copy of the load

itk::fem::LoadNode

  1. The following member variables were moved from public to protected signatures:
    • F - renamed m_Force
    • m_element - renamed m_Element
    • m_pt - renamed m_Point
  2. The following public membership functions are now provided to get/set class variables:
    • void SetForce(vnl_vector< Float >) – Set the applied force to the node.
    • void SetElement(Element::ConstPointer) – Set the element in the system that contains the degrees of freedom on which the force is applied.
    • void SetNode(unsigned int) – Set the point on which the force is being applied.
    • vnl_vector< Float > &GetForce() – Get the applied force.
    • Element::ConstPointer GetElement() – Get the element in the system that contains the degrees of freedom on which the force is applied.
    • Unsigned int GetNode() – Get the point on which the force is being applied.
    • itk::LightObject::Pointer CreateAnother(void) - Create a copy of the load
    • void ApplyLoad(Element::ConstPointer element, Element::VectorType & Fe) - Apply load the specified element

itk::fem::LoadPoint

  1. Move the following class variables from public to protected signatures:
    • Fp - renamed m_Point
    • point -renamed m_ForcePoint
  2. The following public membership functions are now provided to get/set class variables:
    • void SetForce(vnl_vector<Float>) – Set the force to be applied to the specified point location.
    • void SetPoint(vnl_vector<Float>) – Set the point where the force is applied in global coordinates.
    • vnl_vector<Float> & GetForce(vnl_vector<Float>) – Get the applied force.
    • vnl_vector<Float> & GetPoint (vnl_vector<Float>) – Get the point where the force is applied.
    • itk::LightObject::Pointer CreateAnother(void) - Create a copy of the load
    • void ApplyLoad(Element::ConstPointer element, Element::VectorType & Fe) - Apply load the specified element

itk::Solver

The itk::fem::Solver is a templated class over the problem dimension. This is now a proper ITK filter that inherits from ProcessObject. The filter takes as input a FEMObject and will generate an output FEMObject. To get the Solver to generate a solution, the RunSolver() method needs to be called.

  1. The following class variables were removed:
    • node
    • el
    • load
    • mat


itk::FEMObjectSpatialObject

To support I/O we have developed a new spatial object, FEMObjectSpatialObject, was created. A fairly simple conversion is used to convert a from FEMObjectSpatialObject to FEMObject and vice-versa. The public class methods provides this interface.

  1. void SetFEMObject( FEMObjectType * femobject )
  2. FEMObjectType * GetFEMObject( void )

The FEM objects can then be read and written using the itk::SpatialObjectReader and itk::SpatialObjectWriter respectively.

File Formats

The only file format that is currently supported for FEM objects is the MetaIO file format. This file format supports the Spatial Objects used in ITK and VTK. The complete information regarding this file format can be found on the VTK Wiki. We has extended the MetaIO format to support the FEM spatial objects that have been added to ITK. Here we outline some of the basic information regarding the file format and its extension to support FEM spatial objects.

The file format has header information that defines the object(s) stored within the file as well as other information such as the dimension, how the data is stored, etc. Comments are allowed in the file format. Any characters that follow a % symbol are defined as comments. The header contains the following elements:

  • ObjectType = %Defines the type of object stored (e.g. Scene or FEMObject)
  • NDims = %Defines the dimension for the stored object
  • NObjects = %Defines the number of objects if the object is a Scene
  • BinaryData = %Defines if the data is binary or not. Binary data is not yet supported
  • Offset = %Defines the position offset - Currently ignored for FEMObject
  • CenterOfRotation = %Defines center of rotation - Currently ignored for FEMObject
  • ElementSpacing = %Defines element spacing - Currently ignored for FEMObject
  • ElementDataFile = %Defines where the data is stored (LOCAL means the data is stored within the same file.


Below the header the user defines the FEM Object using the following format. Typically the user will define the Nodes, followed by Materials, Elements, and Loads.

Nodes

Each node is denoted with a <Node> marker and then the global node number is specified followed by its position. The dimension of the position is defined by the Ndims field in the META spatial object header. After all of the nodes are defined there should be a <END> marker. Here is an example.

<Node>
 0	% Global node number
 2 0 0 % Nodal coordinates
<Node>
 1	% Global node number
 2 1 0	% Nodal coordinates
<Node>
 2	% Global node number
 2 1 2	% Nodal coordinates
<END>	% End of nodes

Materials

Similar to Nodes, Materials are specified by a maker that defines the type of material being defined. Presently, there is only one material property type, MaterialLinearElasticity. The material marker is followed by all of the parameters that are used to define the material (Global Number, Young modulus, Cross-sectional area, Moment of inertia, Poisson's ratio, thickness, and Density Heat Capacity). Here is an example

<MaterialLinearElasticity>
 0	% Global material number
 E  : 30000000	% Young modulus
 A  : 0	% Crossection area
 I  : 0	% Moment of inertia
 nu : 0.3	% Poisson's ratio
 h  : 1	% Thickness
 RhoC : 1	% Density Heat Capacity
END:	% End of current material definition
<END>  % End of materials

Elements

Elements define the type of element, the global number, the global number of the nodes used to define the element, and the global number for the material. The following element types are supported

  • Element2DC1Beam
  • Element2DC0LinearQuadrilateralStress
  • Element2DC0LinearQuadrilateralStrain
  • Element2DC0LinearQuadrilateralMembrane
  • Element2DC0LinearTriangularStress
  • Element2DC0LinearTriangularStrain
  • Element2DC0LinearTriangularMembrane
  • Element2DC0QuadraticTriangularStress
  • Element2DC0QuadraticTriangularStrain
  • Element3DC0LinearHexahedronMembrane
  • Element3DC0LinearHexahedronStrain
  • Element3DC0LinearTetrahedronMembrane
  • Element3DC0LinearTetrahedronStrain
  • Element3DC0LinearTriangularLaplaceBeltrami
  • Element3DC0LinearTriangularMembrane


Here is an example definition of two elements.

<Element2DC0LinearTriangularStress>
 0	% Global element number
 0	% Node 1 ID
 1	% Node 2 ID
 2	% Node 3 ID
 0	% MaterialLinearElasticity ID
<Element2DC0LinearTriangularStress>
 1	% Global element number
 0	% Node 1 ID
 2	% Node 2 ID
 3	% Node 3 ID
 0	% MaterialLinearElasticity ID 
<END>	% End of elements

Loads

Similar structures are used for Loads. Each load definition is slightly different depending on the type of load. Here are examples that show how to define each of the Load types in the Meta file. AT the end of the load section there should be a <END> marker to signal the end of loads.

<LoadNode>
 0	% Global load number
 1	% GN of the element on which the load acts
 2	% Point number within the element
 2 0 -1000	% Force vector
<LoadBC>
 1	% Global load number
 0	% GN of element
 0	% DOF# in element
 1 0	% rhs of MFC
<LoadBCMFC>
 5	% Global object number
 2	% Number of DOFs in this MFC
 %==>
 0	% GN of element
 1	% DOF# in element
 1	% weight
 %==>
 1	% GN of element
 3	% DOF# in element
 -1	% weight
 %==>
 1 0	% rhs of MFC
<LoadEdge>
 0	% Global load number
 0	% GN of the element on which the load acts
 1	% Edge number
 2 2 	% # Rows and Columns in force matrix
 10 0	% Force Matrix - Row 1
 5 0   % Force Matrix - Row 2
<LoadGravConst>
 1	% Global load number
 1	% Number of elements on which the load acts
 1	% GN of the element on which the load acts
 2  0 -12.762	% Force vector	
<LoadLandmark>
 0  % Global load number
 2 0. 0.   % Original point location
 2 0. 1.   % Deformed point location
 1.e-2     % Square root of landmark variance

NOTE: LoadPoint needs to be added

Other Formats

  • Netgen supports gmsh format
  • tetgen supports VTK
  • VTK supports several additional formats

Assembling and Solving FEM in ITK

There are three ways to define a FEMObject in ITK. The first is to read the object as a spatial object, the second is to manually assemble the FEM object, and the third is to create the FEMObject based upon an image. Once the FEMObject is defined the object can be used as input for the Solver and a solution generated.


Loading a FEMObject as a SpatialObject

Here is an example of how to load a FEMOBject from a SpatialObject file. This example defines a 3D problem.

<source lang="cpp">

 //Need to register default FEM object types,
 //and setup SpatialReader to recognize FEM types
 //which is all currently done as a HACK in
 //the initializaiton of the itk::FEMFactoryBase::GetFactory()
 itk::FEMFactoryBase::GetFactory()->RegisterDefaultTypes();
 
 
 typedef itk::FEMSpatialObjectReader<3>      FEMSpatialObjectReaderType;
 typedef FEMSpatialObjectReaderType::Pointer FEMSpatialObjectReaderPointer;
 FEMSpatialObjectReaderPointer SpatialReader = FEMSpatialObjectReaderType::New();
 SpatialReader->SetFileName( argv[1] );
 SpatialReader->Update();

 FEMSpatialObjectReaderType::ScenePointer myScene = SpatialReader->GetScene();


 typedef itk::FEMObjectSpatialObject<3>      FEMObjectSpatialObjectType;
 typedef FEMObjectSpatialObjectType::Pointer FEMObjectSpatialObjectPointer;
 FEMObjectSpatialObjectType::ChildrenListType* children = SpatialReader->GetGroup()->GetChildren();
 
 //Verify that the Spatial Object contains a FEMObjectSpatialObject. If not then exit
 if( strcmp( (*(children->begin() ) )->GetTypeName(), "FEMObjectSpatialObject") )
   {
   return EXIT_FAILURE;
   }

 // Get the Spatial Object and cast appropriately
 FEMObjectSpatialObjectType::Pointer femSO =
   dynamic_cast<FEMObjectSpatialObjectType *>( (*(children->begin() ) ).GetPointer() );

 // Get the FEMObject from the Spatial Object 
 typedef itk::fem::FEMObject<3>      FEMObjectType;
 FEMObjectType::Pointer femObject = femSO->GetFEMObject();
 femObject->FinalizeMesh();

</source>


Manually defining a FEMObject

Here is an example how to manually define a FEMObject directly in C++. This is a 2D example.


<source lang="cpp">

 /* Create a FEMObject for storing the FEM problem */
 typedef itk::fem::FEMObject<2> FEMObjectType;
 FEMObjectType::Pointer femObject = FEMObjectType::New();


 /* First define nodes - Here we define 5 nodes */
 itk::fem::Node::Pointer n1;
 itk::fem::Element::VectorType pt(2);
 // Node 0
 n1 = itk::fem::Node::New();
 pt[0] = 0.0;
 pt[1] = 0.0;
 n1->SetCoordinates(pt);
 n1->SetGlobalNumber(0);
 femObject->AddNextNode(&*n1);
 // Node 1
 n1 = itk::fem::Node::New();
 pt[0] = 1500.0;
 pt[1] = 0.0;
 n1->SetCoordinates(pt);
 n1->SetGlobalNumber(1);
 femObject->AddNextNode(&*n1);
 // Node 2
 n1 = itk::fem::Node::New();
 pt[0] = 3000.0;
 pt[1] = 0.0;
 n1->SetCoordinates(pt);
 n1->SetGlobalNumber(2);
 femObject->AddNextNode(&*n1);
 // Node 3
 n1 = itk::fem::Node::New();
 pt[0] = 3000.0;
 pt[1] = 3000.0;
 n1->SetCoordinates(pt);
 n1->SetGlobalNumber(3);
 femObject->AddNextNode(&*n1);
 // Node 4
 n1 = itk::fem::Node::New();
 pt[0] = 0.0;
 pt[1] = 4500.0;
 n1->SetCoordinates(pt);
 n1->SetGlobalNumber(4);
 femObject->AddNextNode(&*n1);
 /* Define the Element Material properties */
 itk::fem::MaterialLinearElasticity::Pointer m;
 // Material 0
 m = itk::fem::MaterialLinearElasticity::New();
 m->SetGlobalNumber(0);               /* Global number of the material */
 m->SetYoungsModulus(200000000000.0); /* Young modulus */
 m->SetPoissonsRatio(0.3);            /* Poissons Ratio */
 m->SetCrossSectionalArea(2000.0);    /* Crossection area */
 m->SetMomentOfInertia(1.0);          /* Moment of inertia */
 femObject->AddNextMaterial(&*m);
 m = itk::fem::MaterialLinearElasticity::New();
 // Material 1
 m->SetGlobalNumber(1);            /* Global number of the material */
 m->SetYoungsModulus(200000.0);    /* Young modulus */
 m->SetPoissonsRatio(0.3);         /* Poissons Ratio */
 m->SetCrossSectionalArea(1200.0); /* Crossection area */
 m->SetMomentOfInertia(1.0);       /* Moment of inertia */
 femObject->AddNextMaterial(&*m);
 m = itk::fem::MaterialLinearElasticity::New();
 // Material 2
 m->SetGlobalNumber(2);           /* Global number of the material */
 m->SetYoungsModulus(70000.0);    /* Young modulus */
 m->SetPoissonsRatio(0.3);        /* Poissons Ratio */
 m->SetCrossSectionalArea(900.0); /* Crossection area */
 m->SetMomentOfInertia(1.0);      /* Momemt of inertia */
 femObject->AddNextMaterial(&*m);


 /* Define the Elements */
 itk::fem::Element2DC0LinearLineStress::Pointer e1;
 // Element 0
 e1 = itk::fem::Element2DC0LinearLineStress::New();
 e1->SetGlobalNumber(0);
 e1->SetNode( 0, &*femObject->GetNode(0) );
 e1->SetNode( 1, &*femObject->GetNode(1) );
 e1->SetMaterial( dynamic_cast< itk::fem::MaterialLinearElasticity * >( &*femObject->GetMaterial(0) ) );
 femObject->AddNextElement( &*e1);
 e1 = itk::fem::Element2DC0LinearLineStress::New();
 // Element 1
 e1->SetGlobalNumber(1);
 e1->SetNode( 0, &*femObject->GetNode(1) );
 e1->SetNode( 1, &*femObject->GetNode(2) );
 e1->SetMaterial( dynamic_cast< itk::fem::MaterialLinearElasticity * >( &*femObject->GetMaterial(0) ) );
 femObject->AddNextElement( &*e1);
 e1 = itk::fem::Element2DC0LinearLineStress::New();
 // Element 2
 e1->SetGlobalNumber(2);
 e1->SetNode( 0, &*femObject->GetNode(1) );
 e1->SetNode( 1, &*femObject->GetNode(3) );
 e1->SetMaterial( dynamic_cast< itk::fem::MaterialLinearElasticity * >( &*femObject->GetMaterial(2) ) );
 femObject->AddNextElement( &*e1);
 e1 = itk::fem::Element2DC0LinearLineStress::New();
 // Element 3
 e1->SetGlobalNumber(3);
 e1->SetNode( 0, &*femObject->GetNode(0) );
 e1->SetNode( 1, &*femObject->GetNode(4) );
 e1->SetMaterial( dynamic_cast< itk::fem::MaterialLinearElasticity * >( &*femObject->GetMaterial(1) ) );
 femObject->AddNextElement( &*e1);
 /* Define the Loads */
 itk::fem::LoadBC::Pointer l1;
 // Load 0
 l1 = itk::fem::LoadBC::New();
 l1->SetGlobalNumber(0);
 l1->SetElement( &*femObject->GetElement(2) );
 l1->SetDegreeOfFreedom(2);
 l1->SetValue( vnl_vector< double >(1, 0.0) );
 femObject->AddNextLoad( &*l1);
 // Load 1
 l1 = itk::fem::LoadBC::New();
 l1->SetGlobalNumber(1);
 l1->SetElement( &*femObject->GetElement(2) );
 l1->SetDegreeOfFreedom(3);
 l1->SetValue( vnl_vector< double >(1, 0.0) );
 femObject->AddNextLoad( &*l1);
 // Load 2
 l1 = itk::fem::LoadBC::New();
 l1->SetGlobalNumber(2);
 l1->SetElement( &*femObject->GetElement(3) );
 l1->SetDegreeOfFreedom(2);
 l1->SetValue( vnl_vector< double >(1, 0.0) );
 femObject->AddNextLoad( &*l1);
 // Load 3
 l1 = itk::fem::LoadBC::New();
 l1->SetGlobalNumber(3);
 l1->SetElement( &*femObject->GetElement(3) );
 l1->SetDegreeOfFreedom(3);
 l1->SetValue( vnl_vector< double >(1, 0.0) );
 femObject->AddNextLoad( &*l1);
 // Load 4
 itk::fem::LoadNode::Pointer l2;
 l2 = itk::fem::LoadNode::New();
 l2->SetGlobalNumber(4);
 l2->SetElement( femObject->GetElement(1) );
 l2->SetNode(0);
 vnl_vector< double > F(2);
 F[0] = 0;
 F[1] = 30000;
 l2->SetForce(F);
 femObject->AddNextLoad( &*l2 );
 // Load 5
 itk::fem::LoadBCMFC::Pointer bcmfc = itk::fem::LoadBCMFC::New();
 bcmfc->SetGlobalNumber(5);
 bcmfc->AddLeftHandSideTerm( itk::fem::LoadBCMFC::MFCTerm(femObject->GetElement(0), 1, 1) );
 bcmfc->AddLeftHandSideTerm( itk::fem::LoadBCMFC::MFCTerm(femObject->GetElement(1), 3, -1) );
 bcmfc->AddRightHandSideTerm(0.0);
 femObject->AddNextLoad( &*bcmfc );

</source>


Define a FEMObject from an image

This example shows the user how to convert an image into a FEMObject. This will define nodes, elements, and materials for the FEMObject. A constant material property will be used in this conversion. No loads are defined in the resulting FEMObject. The user will have to add the loads to be applied to the FEMObject.

<source lang="cpp">

 //Need to register default FEM object types,
 //and setup SpatialReader to recognize FEM types
 //which is all currently done as a HACK in
 //the initializaiton of the itk::FEMFactoryBase::GetFactory()
 itk::FEMFactoryBase::GetFactory()->RegisterDefaultTypes();
 // Define the image
 typedef itk::Image<unsigned char, 2>    ImageType;
 typedef itk::ImageFileReader<ImageType> ImageFileReaderType;
 vnl_vector<unsigned int> pixelsPerElement;
 pixelsPerElement.set_size(2);
 pixelsPerElement[0] = 1;
 pixelsPerElement[1] = 1;
 ImageFileReaderType::Pointer reader = ImageFileReaderType::New();
 reader->SetFileName(argv[1]);
 reader->Update();
 /* Define the Material and Element Type to be used */
 typedef itk::fem::MaterialLinearElasticity ElasticityType;
 ElasticityType::Pointer m;
 m = ElasticityType::New();
 m->SetGlobalNumber(0);
 m->SetYoungsModulus(3000.0);
 m->SetCrossSectionalArea(0.02);
 m->SetMomentOfInertia(0.004);
 typedef itk::fem::Element2DC0LinearQuadrilateralMembrane MembraneElementType;
 MembraneElementType::Pointer e0 = MembraneElementType::New();
 e0->SetGlobalNumber(0);
 e0->SetMaterial( dynamic_cast<ElasticityType *>( m.GetPointer() ) );
 /* Convert the image to FEMObject */
 typedef itk::fem::ImageToRectilinearFEMObjectFilter<ImageType> MeshFilterType;
 MeshFilterType::Pointer meshFilter = MeshFilterType::New();
 meshFilter->SetInput( reader->GetOutput() );
 meshFilter->SetPixelsPerElement( pixelsPerElement );
 meshFilter->SetElement( e0.GetPointer() );
 meshFilter->Update();
 typedef itk::fem::FEMObject<2> FEMObjectType;
 FEMObjectType::Pointer femObject = meshFilter->GetOutput();

</source>

Solving a FEM problem

Once a FEMObject is created to define the FEM problem, the itk::fem::Solver is then used to solve the FEM problem and create the deformed FEMObject. The solver provides a generic interface for providing the actual numeric solver used to generate the results. All of the numeric solvers are derived from the LinearSystemWrapper class and support linear solutions to the set of linear equations. Presently three numeric solvers are supported:

  1. Itpack
  2. DenseVNL
  3. VNL

Additional numeric solutions can be defined using this generic interface.

Update the itk::FEMRegistrationFilter

To make the FEMRegistrationFilter similar to the other registration filters the following changes will be made

  1. Remove these public member functions. The application programmer will be responsible for loading the images and setting the parameters for the filter. The configuration file will be removed.
    • GetConfigFileName ()
    • GetFixedFile ()
    • GetMovingFile ()
    • GetResultsFileName ()
    • GetWriteDisplacements ()
    • ReadConfigFile (const char *)
    • SetConfigFileName (const char *f)
    • SetDisplacementsFile (const char *r)
    • SetFixedFile (const char *t)
    • SetLandmarkFile (const char *l)
    • SetMovingFile (const char *r)
    • SetResultsFile (const char *r)
    • SetResultsFileName (const char *f)
    • WriteDisplacementField (unsigned int index)
    • WriteDisplacementFieldMultiComponent ()
    • WriteWarpedImage (const char *fn)
  2. Add these new public member functions
    • bool AddNextMovingLandmark(PointType) – Add another point for the moving image to the registration.
    • bool AddNextFixedLandmark(PointType) – Add another point from the fixed image to the registration.
    • void ClearMovingLandmarks() – Remove all of the existing landmarks for the moving image.
    • void ClearFixedLandmarks() – Remove all of the existing landmarks for the fixed image.
    • bool InsertMovingLandmark(PointType p, int index) – Insert the moving landmark at the specified index.
    • bool InsertFixedLandmark(PointType p, int index) – Insert the fixed landmark at the specified index.
    • bool RemoveMovingLandmark(int index)
    • bool RemoveFixedLandmark(int index)
    • void SetFEMesh() – Set the mesh to be used for the registration.
    • void GetFEMesh() – Get the mesh used in the registration.
    • void SetUserDefinedMesh(bool) – Specifies if the user will provide a custom mesh or if it will be generated based on the image.

Data Structure

  • Spatial Objects -
  • ITK::Mesh -
  • VTK Unstructured Grids -


Solvers

  • SuperLU
  • PETSc