/*========================================================================= * * 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 "itkFEMMaterialLinearElasticity.h" namespace itk { namespace fem { // Overload the CreateAnother() method itk::LightObject::Pointer MaterialLinearElasticity::CreateAnother() const { itk::LightObject::Pointer smartPtr; Pointer copyPtr = Self::New(); copyPtr->SetYoungsModulus(this->GetYoungsModulus()); copyPtr->SetCrossSectionalArea(this->GetCrossSectionalArea()); copyPtr->SetMomentOfInertia(this->GetMomentOfInertia()); copyPtr->SetPoissonsRatio(this->GetPoissonsRatio()); copyPtr->SetThickness(this->GetThickness()); copyPtr->SetDensityHeatProduct(this->GetDensityHeatProduct()); copyPtr->SetGlobalNumber(this->GetGlobalNumber()); smartPtr = static_cast(copyPtr); return smartPtr; } /** * Default constructor */ MaterialLinearElasticity::MaterialLinearElasticity() = default; void MaterialLinearElasticity::SetCrossSectionalArea(double a) { this->m_CrossSectionalArea = a; } double MaterialLinearElasticity::GetCrossSectionalArea() const { return this->m_CrossSectionalArea; } void MaterialLinearElasticity::SetYoungsModulus(double y) { this->m_YoungModulus = y; } double MaterialLinearElasticity::GetYoungsModulus() const { return this->m_YoungModulus; } void MaterialLinearElasticity::SetThickness(double t) { this->m_Thickness = t; } double MaterialLinearElasticity::GetThickness() const { return this->m_Thickness; } void MaterialLinearElasticity::SetMomentOfInertia(double i) { this->m_MomentOfInertia = i; } double MaterialLinearElasticity::GetMomentOfInertia() const { return this->m_MomentOfInertia; } void MaterialLinearElasticity::SetPoissonsRatio(double pr) { this->m_PoissonRatio = pr; } double MaterialLinearElasticity::GetPoissonsRatio() const { return this->m_PoissonRatio; } void MaterialLinearElasticity::SetDensityHeatProduct(double dhp) { this->m_DensityHeatCapacity = dhp; } double MaterialLinearElasticity::GetDensityHeatProduct() const { return this->m_DensityHeatCapacity; } void MaterialLinearElasticity::PrintSelf(std::ostream & os, Indent indent) const { Superclass::PrintSelf(os, indent); os << indent << "Young Modulus: " << this->m_YoungModulus << std::endl; os << indent << "Cross Sectional Area: " << this->m_CrossSectionalArea << std::endl; os << indent << "Moment Of Inertia: " << this->m_MomentOfInertia << std::endl; os << indent << "Poisson Ratio: " << this->m_PoissonRatio << std::endl; os << indent << "Thickness: " << this->m_Thickness << std::endl; os << indent << "Density Heat Capacity: " << this->m_DensityHeatCapacity << std::endl; } } // end namespace fem } // end namespace itk