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
8da46c5f
Commit
8da46c5f
authored
3 years ago
by
Ivan Buntic
Committed by
Timo Koch
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[disc][geomechanics] Use discretization tag instead of enum as template argument.
parent
d4335281
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!2844
Feature/discretization tags introduction
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dumux/geomechanics/stressvariablescache.hh
+5
-5
5 additions, 5 deletions
dumux/geomechanics/stressvariablescache.hh
with
5 additions
and
5 deletions
dumux/geomechanics/stressvariablescache.hh
+
5
−
5
View file @
8da46c5f
...
...
@@ -37,18 +37,18 @@ namespace Dumux {
* \brief The stress variables cache classes for models involving geomechanics.
* Store data required for stress calculation.
*/
template
<
class
Scalar
,
class
GridGeometry
,
DiscretizationMethod
dm
=
GridGeometry
::
d
iscMethod
>
template
<
class
Scalar
,
class
GridGeometry
,
class
DiscretizationMethod
=
typename
GridGeometry
::
D
isc
retization
Method
>
class
StressVariablesCache
;
//! We only store discretization-related quantities for the box method.
template
<
class
Scalar
,
class
GridGeometry
>
class
StressVariablesCache
<
Scalar
,
GridGeometry
,
DiscretizationMethod
::
b
ox
>
class
StressVariablesCache
<
Scalar
,
GridGeometry
,
DiscretizationMethod
s
::
B
ox
>
:
public
BoxFluxVariablesCache
<
Scalar
,
GridGeometry
>
{};
// specialization for the cell centered tpfa method
template
<
class
Scalar
,
class
GridGeometry
>
class
StressVariablesCache
<
Scalar
,
GridGeometry
,
DiscretizationMethod
::
cct
pfa
>
class
StressVariablesCache
<
Scalar
,
GridGeometry
,
DiscretizationMethod
s
::
CCT
pfa
>
:
public
FluxVariablesCaching
::
_EmptyCache
{
public:
...
...
@@ -76,8 +76,8 @@ public:
// specialization for the cell centered mpfa method
template
<
class
Scalar
,
class
GridGeometry
>
class
StressVariablesCache
<
Scalar
,
GridGeometry
,
DiscretizationMethod
::
ccm
pfa
>
:
public
StressVariablesCache
<
Scalar
,
GridGeometry
,
DiscretizationMethod
::
cct
pfa
>
class
StressVariablesCache
<
Scalar
,
GridGeometry
,
DiscretizationMethod
s
::
CCM
pfa
>
:
public
StressVariablesCache
<
Scalar
,
GridGeometry
,
DiscretizationMethod
s
::
CCT
pfa
>
{};
}
// end namespace Dumux
...
...
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