/*========================================================================= * * Copyright NumFOCUS * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0.txt * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * *=========================================================================*/ #include "itkFEMElement3DC0LinearHexahedronMembrane.h" namespace itk { namespace fem { // Overload the CreateAnother() method itk::LightObject::Pointer Element3DC0LinearHexahedronMembrane::CreateAnother() const { itk::LightObject::Pointer smartPtr; Pointer copyPtr = Self::New(); copyPtr->SetNode(0, this->GetNode(0)); copyPtr->SetNode(1, this->GetNode(1)); copyPtr->SetNode(2, this->GetNode(2)); copyPtr->SetNode(3, this->GetNode(3)); copyPtr->SetNode(4, this->GetNode(4)); copyPtr->SetNode(5, this->GetNode(5)); copyPtr->SetNode(6, this->GetNode(6)); copyPtr->SetNode(7, this->GetNode(7)); copyPtr->SetMaterial(this->GetMaterial()); copyPtr->SetGlobalNumber(this->GetGlobalNumber()); smartPtr = static_cast(copyPtr); return smartPtr; } Element3DC0LinearHexahedronMembrane::Element3DC0LinearHexahedronMembrane() : Superclass() {} Element3DC0LinearHexahedronMembrane::Element3DC0LinearHexahedronMembrane(NodeIDType ns_[], Material::ConstPointer m_) : Superclass() { // Set the geometrical points for (int k = 0; k < 8; ++k) { this->SetNode(k, ns_[k]); } /* * 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. */ m_mat = dynamic_cast(m_.GetPointer()); if (!m_mat) { throw FEMExceptionWrongClass( __FILE__, __LINE__, "Element3DC0LinearHexahedronMembrane::Element3DC0LinearHexahedronMembrane()"); } } void Element3DC0LinearHexahedronMembrane::PrintSelf(std::ostream & os, Indent indent) const { Superclass::PrintSelf(os, indent); } } // end namespace fem } // end namespace itk