Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dumux
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dumux-repositories
dumux
Commits
0e785a8e
Commit
0e785a8e
authored
6 years ago
by
Dennis Gläser
Browse files
Options
Downloads
Patches
Plain Diff
[box][fluxvarscache] allow retrieving the position for which the cache was updated
parent
2bc54df5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!981
Feature/poroelasticity
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dumux/discretization/box/fluxvariablescache.hh
+5
-1
5 additions, 1 deletion
dumux/discretization/box/fluxvariablescache.hh
with
5 additions
and
1 deletion
dumux/discretization/box/fluxvariablescache.hh
+
5
−
1
View file @
0e785a8e
...
...
@@ -81,7 +81,8 @@ public:
const
auto
&
localBasis
=
fvGeometry
.
feLocalBasis
();
// evaluate shape functions and gradients at the integration point
const
auto
ipLocal
=
geometry
.
local
(
globalPos
);
ipGlobal_
=
globalPos
;
const
auto
ipLocal
=
geometry
.
local
(
ipGlobal_
);
jacInvT_
=
geometry
.
jacobianInverseTransposed
(
ipLocal
);
localBasis
.
evaluateJacobian
(
ipLocal
,
shapeJacobian_
);
localBasis
.
evaluateFunction
(
ipLocal
,
shapeValues_
);
// shape values for rho
...
...
@@ -92,6 +93,8 @@ public:
jacInvT_
.
mv
(
shapeJacobian_
[
scv
.
localDofIndex
()][
0
],
gradN_
[
scv
.
indexInElement
()]);
}
//! returns the global position for which this cache has been updated
const
GlobalPosition
&
ipGlobal
()
const
{
return
ipGlobal_
;
}
//! returns the shape function gradients in local coordinates at the integration point
const
std
::
vector
<
ShapeJacobian
>&
shapeJacobian
()
const
{
return
shapeJacobian_
;
}
//! returns the shape function values at the integration point
...
...
@@ -102,6 +105,7 @@ public:
const
GlobalPosition
&
gradN
(
unsigned
int
scvIdxInElement
)
const
{
return
gradN_
[
scvIdxInElement
];
}
private
:
GlobalPosition
ipGlobal_
;
std
::
vector
<
GlobalPosition
>
gradN_
;
std
::
vector
<
ShapeJacobian
>
shapeJacobian_
;
std
::
vector
<
ShapeValue
>
shapeValues_
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment