Skip to content
Snippets Groups Projects
Commit 1fcd5b5b authored by Timo Koch's avatar Timo Koch
Browse files

[components] Derive Air component from base and gas

parent 2c725f9a
No related branches found
No related tags found
1 merge request!899Feature/component traits
...@@ -40,7 +40,8 @@ namespace Components { ...@@ -40,7 +40,8 @@ namespace Components {
* \tparam Scalar The type used for scalar values * \tparam Scalar The type used for scalar values
*/ */
template <class Scalar> template <class Scalar>
class Air : public Component<Scalar, Air<Scalar> > class Air : public Components::Base<Scalar, Air<Scalar> >,
public Components::Gas<Scalar, Air<Scalar> >
{ {
using IdealGas = Dumux::IdealGas<Scalar>; using IdealGas = Dumux::IdealGas<Scalar>;
......
dune_add_test(SOURCES test_componenttraits.cc) dune_add_test(SOURCES test_componenttraits.cc
COMPILE_ONLY)
add_executable(plot_component plotproperties.cc) add_executable(plot_component plotproperties.cc)
......
...@@ -35,6 +35,7 @@ int main(int argc, char *argv[]) ...@@ -35,6 +35,7 @@ int main(int argc, char *argv[])
using Traits = ComponentTraits<Components::Air<double>>; using Traits = ComponentTraits<Components::Air<double>>;
static_assert(Traits::hasGasState, "Air component is reported to have no gas state?!"); static_assert(Traits::hasGasState, "Air component is reported to have no gas state?!");
// static_assert(!Traits::hasSolidState, "Air component is reported to implement a solid state?!"); static_assert(!Traits::hasSolidState, "Air component is reported to implement a solid state?!");
static_assert(!Traits::hasLiquidState, "Air component is reported to implement a liquid state?!");
static_assert(std::is_same<double, Traits::Scalar>::value, "Scalar type not correctly reported!"); static_assert(std::is_same<double, Traits::Scalar>::value, "Scalar type not correctly reported!");
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment