Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91075774
material_selector_tmpl.hh
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, Nov 7, 15:12
Size
2 KB
Mime Type
text/x-c++
Expires
Sat, Nov 9, 15:12 (2 d)
Engine
blob
Format
Raw Data
Handle
21324098
Attached To
rAKA akantu
material_selector_tmpl.hh
View Options
/**
* @file material_selector_tmpl.hh
*
* @author Lucas Frerot <lucas.frerot@epfl.ch>
* @author Nicolas Richart <nicolas.richart@epfl.ch>
*
* @date creation: Wed Nov 13 2013
* @date last modification: Tue Nov 07 2017
*
* @brief Implementation of the template MaterialSelector
*
* @section LICENSE
*
* Copyright (©) 2014-2018 EPFL (Ecole Polytechnique Fédérale de Lausanne)
* Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
*
* Akantu is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* Akantu is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Akantu. If not, see <http://www.gnu.org/licenses/>.
*
*/
/* -------------------------------------------------------------------------- */
#include "material_selector.hh"
/* -------------------------------------------------------------------------- */
#ifndef __AKANTU_MATERIAL_SELECTOR_TMPL_HH__
#define __AKANTU_MATERIAL_SELECTOR_TMPL_HH__
namespace akantu {
/* -------------------------------------------------------------------------- */
template <>
inline UInt ElementDataMaterialSelector<std::string>::
operator()(const Element & element) {
try {
std::string material_name = this->elementData(element);
return model.getMaterialIndex(material_name);
} catch (...) {
return MaterialSelector::operator()(element);
}
}
/* -------------------------------------------------------------------------- */
template <>
inline UInt ElementDataMaterialSelector<UInt>::
operator()(const Element & element) {
try {
return this->elementData(element) - first_index;
} catch (...) {
return MaterialSelector::operator()(element);
}
}
/* -------------------------------------------------------------------------- */
template <typename T>
MeshDataMaterialSelector<T>::MeshDataMaterialSelector(
const std::string & name, const SolidMechanicsModel & model,
UInt first_index)
: ElementDataMaterialSelector<T>(model.getMesh().getData<T>(name), model,
first_index) {}
} // namespace akantu
#endif /* __AKANTU_MATERIAL_SELECTOR_TMPL_HH__ */
Event Timeline
Log In to Comment