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
5ea11d96
Commit
5ea11d96
authored
8 years ago
by
Kilian Weishaupt
Committed by
Timo Koch
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[staggeredGrid][JacobianMatrix] Fix sizes of submatrix blocks
*numbers were switched
parent
1e0f3e2e
No related branches found
No related tags found
Loading
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dumux/implicit/staggered/propertydefaults.hh
+2
-2
2 additions, 2 deletions
dumux/implicit/staggered/propertydefaults.hh
with
2 additions
and
2 deletions
dumux/implicit/staggered/propertydefaults.hh
+
2
−
2
View file @
5ea11d96
...
@@ -199,10 +199,10 @@ private:
...
@@ -199,10 +199,10 @@ private:
public
:
public
:
// the sub-blocks
// the sub-blocks
using
MatrixLittleBlockCCToCC
=
typename
Dune
::
FieldMatrix
<
Scalar
,
numEqCellCenter
,
numEqCellCenter
>
;
// 2x2
using
MatrixLittleBlockCCToCC
=
typename
Dune
::
FieldMatrix
<
Scalar
,
numEqCellCenter
,
numEqCellCenter
>
;
// 2x2
using
MatrixLittleBlockCCToFace
=
typename
Dune
::
FieldMatrix
<
Scalar
,
numEq
Face
,
numEqCellCenter
>
;
//
1x2
using
MatrixLittleBlockCCToFace
=
typename
Dune
::
FieldMatrix
<
Scalar
,
numEq
CellCenter
,
numEqFace
>
;
//
2x1
using
MatrixLittleBlockFaceToFace
=
typename
Dune
::
FieldMatrix
<
Scalar
,
numEqFace
,
numEqFace
>
;
// 1x1
using
MatrixLittleBlockFaceToFace
=
typename
Dune
::
FieldMatrix
<
Scalar
,
numEqFace
,
numEqFace
>
;
// 1x1
using
MatrixLittleBlockFaceToCC
=
typename
Dune
::
FieldMatrix
<
Scalar
,
numEq
CellCenter
,
numEqFace
>
;
//
2x1
using
MatrixLittleBlockFaceToCC
=
typename
Dune
::
FieldMatrix
<
Scalar
,
numEq
Face
,
numEqCellCenter
>
;
//
1x2
// the BCRS matrices of the subproblems as big blocks
// the BCRS matrices of the subproblems as big blocks
using
MatrixBlockCCToCC
=
typename
Dune
::
BCRSMatrix
<
MatrixLittleBlockCCToCC
>
;
using
MatrixBlockCCToCC
=
typename
Dune
::
BCRSMatrix
<
MatrixLittleBlockCCToCC
>
;
...
...
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