Line |
Branch |
Exec |
Source |
1 |
|
|
// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- |
2 |
|
|
// vi: set et ts=4 sw=4 sts=4: |
3 |
|
|
// |
4 |
|
|
// SPDX-FileCopyrightInfo: Copyright © DuMux Project contributors, see AUTHORS.md in root folder |
5 |
|
|
// SPDX-License-Identifier: GPL-3.0-or-later |
6 |
|
|
// |
7 |
|
|
|
8 |
|
|
/*! |
9 |
|
|
* \file |
10 |
|
|
* \ingroup Components |
11 |
|
|
* \brief A class for the Urea component properties |
12 |
|
|
*/ |
13 |
|
|
#ifndef DUMUX_MATERIAL_COMPONENTS_UREA_HH |
14 |
|
|
#define DUMUX_MATERIAL_COMPONENTS_UREA_HH |
15 |
|
|
|
16 |
|
|
#include <dumux/material/components/base.hh> |
17 |
|
|
|
18 |
|
|
namespace Dumux { |
19 |
|
|
namespace Components { |
20 |
|
|
|
21 |
|
|
/*! \ingroup Components |
22 |
|
|
* \brief A class for the Urea component properties |
23 |
|
|
*/ |
24 |
|
|
template <class Scalar> |
25 |
|
|
class Urea |
26 |
|
|
: public Components::Base<Scalar, Urea<Scalar> > |
27 |
|
|
{ |
28 |
|
|
public: |
29 |
|
|
|
30 |
|
|
/*! |
31 |
|
|
* \brief A human readable name for Urea. |
32 |
|
|
*/ |
33 |
|
|
static std::string name() |
34 |
|
4 |
{ return "Urea"; } |
35 |
|
|
|
36 |
|
|
/*! |
37 |
|
|
* \brief The molar mass in \f$\mathrm{[kg/mol]}\f$ of Urea. |
38 |
|
|
*/ |
39 |
|
|
static Scalar molarMass() |
40 |
|
|
{ return 0.0606; } // kg/mol |
41 |
|
|
|
42 |
|
|
}; |
43 |
|
|
|
44 |
|
|
} // end namespace Components |
45 |
|
|
} // end namespace Dumux |
46 |
|
|
|
47 |
|
|
#endif |
48 |
|
|
|