📄 itkfemelement2dc0quadratictriangularstrain.cxx
字号:
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkFEMElement2DC0QuadraticTriangularStrain.cxx,v $
Language: C++
Date: $Date: 2003-09-10 14:29:40 $
Version: $Revision: 1.2 $
Copyright (c) Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
// disable debug warnings in MS compiler
#ifdef _MSC_VER
#pragma warning(disable: 4786)
#endif
#include "itkFEMElement2DC0QuadraticTriangularStrain.h"
namespace itk {
namespace fem {
Element2DC0QuadraticTriangularStrain
::Element2DC0QuadraticTriangularStrain() : Superclass() {}
Element2DC0QuadraticTriangularStrain
::Element2DC0QuadraticTriangularStrain(
NodeIDType n1_,
NodeIDType n2_,
NodeIDType n3_,
NodeIDType n4_,
NodeIDType n5_,
NodeIDType n6_,
Material::ConstPointer m_) : Superclass()
{
// Set the geometrical points
this->SetNode( 0, n1_ );
this->SetNode( 1, n2_ );
this->SetNode( 2, n3_ );
this->SetNode( 3, n4_ );
this->SetNode( 4, n5_ );
this->SetNode( 5, n6_ );
/*
* Initialize the pointer to material object and check that
* we were given the pointer to the right class.
* If the material class was incorrect an exception is thrown.
*/
if( (m_mat=dynamic_cast<const MaterialLinearElasticity*>(&*m_)) == 0 )
{
throw FEMExceptionWrongClass(__FILE__,__LINE__,"Element2DC0QuadraticTriangularStrain::Element2DC0QuadraticTriangularStrain()");
}
}
FEM_CLASS_REGISTER(Element2DC0QuadraticTriangularStrain)
}} // end namespace itk::fem
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -