Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
dumux-repositories
dumux
Commits
5a0a8a1a
Commit
5a0a8a1a
authored
Jan 20, 2017
by
Timo Koch
Browse files
Return perm by reference from volvars
for all ported models (1p, 1p2c, 2p, 2p2c, 2pnc, richards)
parent
a0893a3c
Changes
6
Hide whitespace changes
Inline
Side-by-side
dumux/porousmediumflow/1p/implicit/volumevariables.hh
View file @
5a0a8a1a
...
...
@@ -171,7 +171,7 @@ public:
/*!
* \brief Returns the permeability within the control volume in \f$[m^2]\f$.
*/
PermeabilityType
permeability
()
const
const
PermeabilityType
&
permeability
()
const
{
return
permeability_
;
}
/*!
...
...
dumux/porousmediumflow/1p2c/implicit/volumevariables.hh
View file @
5a0a8a1a
...
...
@@ -276,7 +276,7 @@ public:
/*!
* \brief Returns the permeability within the control volume in \f$[m^2]\f$.
*/
PermeabilityType
permeability
()
const
const
PermeabilityType
&
permeability
()
const
{
return
permeability_
;
}
protected:
...
...
dumux/porousmediumflow/2p/implicit/volumevariables.hh
View file @
5a0a8a1a
...
...
@@ -239,7 +239,7 @@ public:
/*!
* \brief Returns the permeability within the control volume in \f$[m^2]\f$.
*/
PermeabilityType
permeability
()
const
const
PermeabilityType
&
permeability
()
const
{
return
permeability_
;
}
protected:
...
...
dumux/porousmediumflow/2p2c/implicit/volumevariables.hh
View file @
5a0a8a1a
...
...
@@ -559,7 +559,7 @@ public:
/*!
* \brief Returns the average permeability within the control volume in \f$[m^2]\f$.
*/
PermeabilityType
permeability
()
const
const
PermeabilityType
&
permeability
()
const
{
return
permeability_
;
}
/*!
...
...
dumux/porousmediumflow/2pnc/implicit/volumevariables.hh
View file @
5a0a8a1a
...
...
@@ -452,7 +452,7 @@ public:
/*!
* \brief Returns the permeability within the control volume.
*/
PermeabilityType
permeability
()
const
const
PermeabilityType
&
permeability
()
const
{
return
permeability_
;
}
...
...
dumux/porousmediumflow/richards/implicit/volumevariables.hh
View file @
5a0a8a1a
...
...
@@ -156,7 +156,7 @@ public:
/*!
* \brief Returns the permeability within the control volume in \f$[m^2]\f$.
*/
PermeabilityType
permeability
()
const
const
PermeabilityType
&
permeability
()
const
{
return
permeability_
;
}
/*!
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment