EOSIsValueView Concept Reference

Developer Documentation: MeltPoolDG::Flow::EOSIsValueView Concept Reference
Developer Documentation
MeltPoolDG::Flow::EOSIsValueView Concept Reference

#include <equation_of_state.hpp>

Concept definition

template<typename T>
concept MeltPoolDG::Flow::EOSIsValueView = requires(const T v) {
{
v.density()
};
{
v.velocity()
};
{
v.total_energy()
};
}
Definition equation_of_state.hpp:23

Detailed Description

Concept defining the specific requirements for a value view to be used with any equation of state.