version 0.4.1
Ikarus::MPTuple Concept Reference

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

#include <ikarus/finiteelements/physicshelper.hh>

Concept definition

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

Detailed Description

Template Parameters
MPType to check.