version 0.4
Ikarus::MaterialParameterTuple Concept Reference

Concept for checking if a type is a valid material parameter tuple. More...

#include <ikarus/finiteelements/physicshelper.hh>

Concept definition

template<typename MaterialParameter>
concept Ikarus::MaterialParameterTuple = std::is_same_v<MaterialParameter, YoungsModulusAndPoissonsRatio> or std::is_same_v<
MaterialParameter, YoungsModulusAndBulkModulus> or std::is_same_v<MaterialParameter,
YoungsModulusAndLamesFirstParameter> or std::
is_same_v<MaterialParameter, BulkModulusAndLamesFirstParameter> or std::is_same_v<
MaterialParameter, LamesFirstParameterAndShearModulus> or std::is_same_v<MaterialParameter,
YoungsModulusAndShearModulus>
Concept for checking if a type is a valid material parameter tuple.
Definition: physicshelper.hh:154

Detailed Description

Template Parameters
MaterialParameterType to check.