Skip to content
GitLab
Menu
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
d3716dfa
Commit
d3716dfa
authored
Apr 05, 2018
by
Sina Ackermann
Browse files
[common] Fix intendation
parent
a31a9488
Changes
1
Hide whitespace changes
Inline
Side-by-side
dumux/common/fvproblem.hh
View file @
d3716dfa
...
...
@@ -249,9 +249,9 @@ public:
* E.g. for the mass balance that would the mass flux in \f$ [ kg / (m^2 \cdot s)] \f$.
*/
NumEqVector
neumann
(
const
Element
&
element
,
const
FVElementGeometry
&
fvGeometry
,
const
ElementVolumeVariables
&
elemVolVars
,
const
SubControlVolumeFace
&
scvf
)
const
const
FVElementGeometry
&
fvGeometry
,
const
ElementVolumeVariables
&
elemVolVars
,
const
SubControlVolumeFace
&
scvf
)
const
{
// forward it to the interface with only the global position
return
asImp_
().
neumannAtPos
(
scvf
.
ipGlobal
());
...
...
@@ -292,9 +292,9 @@ public:
* E.g. for the mass balance that would be a mass rate in \f$ [ kg / (m^3 \cdot s)] \f$.
*/
NumEqVector
source
(
const
Element
&
element
,
const
FVElementGeometry
&
fvGeometry
,
const
ElementVolumeVariables
&
elemVolVars
,
const
SubControlVolume
&
scv
)
const
const
FVElementGeometry
&
fvGeometry
,
const
ElementVolumeVariables
&
elemVolVars
,
const
SubControlVolume
&
scv
)
const
{
// forward to solution independent, fully-implicit specific interface
return
asImp_
().
sourceAtPos
(
scv
.
center
());
...
...
@@ -400,9 +400,9 @@ public:
* what you are doing.
*/
NumEqVector
scvPointSources
(
const
Element
&
element
,
const
FVElementGeometry
&
fvGeometry
,
const
ElementVolumeVariables
&
elemVolVars
,
const
SubControlVolume
&
scv
)
const
const
FVElementGeometry
&
fvGeometry
,
const
ElementVolumeVariables
&
elemVolVars
,
const
SubControlVolume
&
scv
)
const
{
NumEqVector
source
(
0
);
auto
scvIdx
=
scv
.
indexInElement
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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