31 double viscosity_parameter{};
32 double density_parameter{};
36 viscosity_parameter(v),
41 return this->viscosity_parameter == other.viscosity_parameter &&
42 this->density_parameter == other.density_parameter;
45 template<
class Serializer>
48 serializer(viscosity_parameter);
49 serializer(density_parameter);
58 static TLMixpar serializationTestObject();
59 std::size_t size()
const;
61 const TLMixRecord& operator[](
const std::size_t index)
const;
63 bool operator==(
const TLMixpar& other)
const {
64 return this->data == other.data;
67 template<
class Serializer>
74 std::vector<TLMixRecord> data;
Class for (de-)serializing.
Definition Serializer.hpp:94
Definition TLMixpar.hpp:54
This class implements a small container which holds the transmissibility mulitpliers for all the face...
Definition Exceptions.hpp:30
Definition TLMixpar.hpp:30