Skip to content
Snippets Groups Projects
Commit 70fc1c36 authored by Bernd Flemisch's avatar Bernd Flemisch
Browse files

fixed compiler errors due to changed temperature signature

git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@6343 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent 86a2491e
No related branches found
No related tags found
No related merge requests found
......@@ -209,9 +209,7 @@ public:
*
* This problem assumes a temperature of 10 degrees Celsius.
*/
Scalar temperature(const Element &element,
const FVElementGeometry &fvElemGeom,
int scvIdx) const
Scalar temperature() const
{
return 273.15 + 10; // -> 10��C
};
......
......@@ -227,9 +227,7 @@ public:
*
* This problem assumes a temperature of 10 degrees Celsius.
*/
Scalar temperature(const Element &element,
const FVElementGeometry &fvElemGeom,
int scvIdx) const
Scalar temperature() const
{
return 273.15 + 10; // -> 10°C
};
......
......@@ -161,9 +161,7 @@ public:
// Return the temperature within a finite volume. We use constant
// 10 degrees Celsius.
Scalar temperature(const Element &element,
const FVElementGeometry &fvElemGeom,
int scvIdx) const
Scalar temperature() const
{ return 283.15; };
// Specifies which kind of boundary condition should be used for
......
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